diff --git a/test_suite/process_test_suite.py b/test_suite/process_test_suite.py index cecc00f7..bbda8788 100755 --- a/test_suite/process_test_suite.py +++ b/test_suite/process_test_suite.py @@ -9,10 +9,16 @@ import glob import os +import pickle +import shutil import sys +import time import warnings +import zipfile import matplotlib +import requests +import yaml from pyneuroml.sbml import validate_sbml_files from pyneuroml.sedml import validate_sedml_files @@ -20,9 +26,10 @@ import utils md_description = """ -Markdown file description goes here. +SBML Test Suite validation and simulation results using Tellurium installed natively and Tellurium and COPASI run remotely through BioSimulators. """ +tmp_dir = "tmplocalfiles" # suppress stdout output from validation functions to make progress counter readable suppress_stdout = True @@ -51,7 +58,16 @@ def parse_arguments(): nargs="+", type=str, default=[], - help="Limit to the cases listed in the file. Empty list means no limit", + help="Limit to the cases listed. No specific cases will be tested when an empty list is provided.", + ) + + parser.add_argument( + "--skip", + action="extend", + nargs="+", + type=str, + default=[], + help="Skip cases listed.", ) parser.add_argument( @@ -104,21 +120,261 @@ def add_case_url(case, fpath, url_base): return new_item +def get_test_suite_files_paths(suite_path_abs, sbml_level_version, subfolders): + start_dir = os.getcwd() + # get lists of sedml and sbml file paths in subfolders + file_paths = {} + + for subfolder in subfolders: + dir_path = os.path.join(suite_path_abs, subfolder) + os.chdir(dir_path) + if sbml_level_version == "highest": + sedml_file_paths = sorted(glob.glob("*-sbml-*sedml.xml")) + highest_sedml_path = ( + os.path.abspath(sedml_file_paths[-1]) if sedml_file_paths else "" + ) + highest_sbml_path = ( + os.path.abspath(highest_sedml_path.replace("-sedml.xml", ".xml")) + if highest_sedml_path + else "" + ) + else: + sbml_file_name = f"*-sbml-{sbml_level_version}.xml" + sedml_file_name = f"*-sbml-{sbml_level_version}-sedml.xml" + highest_sbml_path = ( + os.path.abspath(glob.glob(sbml_file_name)[0]) + if glob.glob(sbml_file_name) + else "" + ) + highest_sedml_path = ( + os.path.abspath(glob.glob(sedml_file_name)[0]) + if glob.glob(sedml_file_name) + else "" + ) + + if not highest_sedml_path or not highest_sbml_path: + print( + f"Folder {subfolder} has no SBML or SED-ML files {sbml_level_version}" + ) + continue + + file_paths[subfolder] = {"sbml": highest_sbml_path, "sedml": highest_sedml_path} + + os.chdir(start_dir) + return file_paths + + +def load_pickle(file_path): + if os.path.exists(file_path): + try: + with open(file_path, "rb") as f: + return pickle.load(f) + except Exception as e: + print(f"Error loading pickle file {file_path}: {e}") + return {} + return {} + + +def save_pickle(data, file_path): + try: + with open(file_path, "wb") as f: + pickle.dump(data, f) + except Exception as e: + print(f"Error saving pickle file {file_path}: {e}") + + +def run_test_suite_batch_remotely(engine_keys, file_paths, limit=0, use_pickle=True): + file_paths_items = list(file_paths.items()) # Convert dict_items to a list + results_remote_links = {} # Initialize results_remote_links + + for subfolder, paths in ( + file_paths_items if limit == 0 else file_paths_items[:limit] + ): + sbml_file_path = paths["sbml"] + sedml_file_path = paths["sedml"] + file_path_dir = os.path.dirname(sedml_file_path) + os.chdir(file_path_dir) + + pickle_file_path = os.path.join(file_path_dir, f"{subfolder}_remote_links.p") + results_remote_links = {subfolder: {"folder_dir": file_path_dir}} + + if use_pickle: + if os.path.exists(pickle_file_path): + print(f"Pickled links found for test suite example {subfolder}") + continue + else: + print(f"No pickled links found for test suite example {subfolder}") + + new_results_remote_links = {} + for engine in engine_keys: + try: + results_remote = utils.run_biosimulators_remote( + engine, + os.path.basename(sedml_file_path), + os.path.basename(sbml_file_path), + ) + new_results_remote_links[engine] = results_remote + except Exception as e: + print(f"Error processing {subfolder} with engine {engine}: {e}") + new_results_remote_links[engine] = {"error": str(e)} + + results_remote_links[subfolder].update(new_results_remote_links) + save_pickle(results_remote_links, pickle_file_path) + print("All test suite examples submitted for remote testing.") + return + + +def merge_pickled_links(file_paths, limit=0): + file_paths_items = list(file_paths.items()) + merged_links = {} + + for subfolder, paths in ( + file_paths_items if limit == 0 else file_paths_items[:limit] + ): + file_path_dir = os.path.dirname(paths["sedml"]) + pickle_file_path = os.path.join(file_path_dir, f"{subfolder}_remote_links.p") + pickled_data = load_pickle(pickle_file_path) + merged_links.update(pickled_data) + + return merged_links + + +def get_remote_results_from_links(links_dict): + """Run with directory pointing towards the location of the sedml and sbml files""" + extract_dir_dict = download_remote_test_suite_results(links_dict) + log_yml_dict = create_log_yml_dict(extract_dir_dict) + # remove_output_folders(extract_dir_dict) + return log_yml_dict + + +def download_remote_test_suite_results(links_dict, refresh=False, limit=0): + """ + If refresh is True, download results even if a zip file is already present in the folder. + limit is the number of subfolders to process, 0 means no limit. + """ + extract_dir_dict = {} + for subfolder, links in ( + links_dict.items() if limit == 0 else list(links_dict.items())[:limit] + ): + folder_dir = links["folder_dir"] + links.pop("folder_dir") # remove folder_dir key from links_dict + subfolder_dict = {"folder_dir": folder_dir, "extract_dir": {}} + + for engine, engine_links in links.items(): + if engine in utils.ENGINES.keys() and "download" in engine_links: + os.chdir(folder_dir) + folder = os.path.join("results_remote", engine) + if not os.path.exists(folder): + os.makedirs(folder) + os.chdir(folder) + zip_in_folder = any([f.endswith(".zip") for f in os.listdir()]) + if not zip_in_folder or refresh: + extract_dir = utils.download_file_from_link( + engine, engine_links["download"] + ) + print(f"Downloaded {engine} results to {extract_dir}") + else: + zip_path = [f for f in os.listdir() if f.endswith(".zip")][0] + extract_dir = os.path.join(folder_dir, folder, zip_path) + + subfolder_dict["extract_dir"][engine] = extract_dir + + extract_dir_dict[subfolder] = subfolder_dict + + return extract_dir_dict + + +def unzip_files(file_paths=[]): + """Unzip all zip files in the current directory if no file paths are provided""" + if file_paths != []: + zip_files = file_paths + zip_files = [f for f in os.listdir() if f.endswith(".zip")] + for zip_file in zip_files: + with zipfile.ZipFile(zip_file, "r") as zip_ref: + zip_ref.extractall() + + +def create_log_yml_dict(extract_dir_dict): + log_yml_dict = {} + for subfolder, extract_dirs in extract_dir_dict.items(): + log_yml_dict[subfolder] = {} + for engine, zip_file in extract_dirs["extract_dir"].items(): + output_folder = os.path.dirname(zip_file) + os.chdir(output_folder) + unzip_files() + log_yml_files = utils.find_files(output_folder, "log.yml") + if log_yml_files: + log_yml_path = log_yml_files[0] + with open(log_yml_path) as f: + log_yml = yaml.safe_load(f) + else: + log_yml = {} + log_yml_dict[subfolder][engine] = {"log_yml": log_yml} + return log_yml_dict + + +def process_log_yml_dict(log_yml_dict): + results_remote = {} + for subfolder in list(log_yml_dict.keys()): + print(f"Processing log yml file for {subfolder}") + if subfolder in log_yml_dict: + results_remote[subfolder] = {} + for e in list(log_yml_dict[subfolder].keys()): + # only if log_yml key is present + if "log_yml" in log_yml_dict[subfolder][e]: + results_remote[subfolder][e] = utils.process_log_yml_dict( + log_yml_dict[subfolder][e]["log_yml"] + ) + else: + results_remote[subfolder][e] = { + "status": "ERROR", + "error_message": "log_yml key not found", + "exception_type": "KeyError", + } + return results_remote + + +def remove_output_folders(extract_dir_dict): + for _, extract_dirs in extract_dir_dict.items(): + os.chdir(extract_dirs["folder_dir"]) + if os.path.exists("results_remote"): + shutil.rmtree("results_remote") + return + + +def download_test_suite( + url="https://github.com/sbmlteam/sbml-test-suite/releases/download/3.4.0/semantic_tests_with_sedml_and_graphs.v3.4.0.zip", +): + """Download and unzip the test suite zip file, replacing existing files if they exist""" + + if os.path.exists("SBML_test_suite"): + shutil.rmtree("SBML_test_suite") + os.makedirs("SBML_test_suite", exist_ok=True) + os.chdir("SBML_test_suite") + url_filename = os.path.basename(url) + + # Download and extract the zip file + response = requests.get(url) + with open(url_filename, "wb") as f: + f.write(response.content) + with zipfile.ZipFile(url_filename, "r") as zip_ref: + zip_ref.extractall() + return + + def process_cases(args): """ process the test cases and write results out as a markdown table with links to the test case files online (as noted above the sedml files are actually in a zip file) with a summary of how many cases were tested and how many tests failed """ + # set up the markdown table - column_labels = ( - "case|valid-sbml|valid-sbml-units|valid-sedml|tellurium|xmlns-sbml-missing" - ) - column_keys = "case|valid_sbml|valid_sbml_units|valid_sedml|tellurium_outcome|xmlns_sbml_missing" + column_labels = "case|valid-sbml|valid-sbml-units|valid-sedml|tellurium|xmlns-sbml-missing|tellurium-remote|copasi-remote" + column_keys = "case|valid_sbml|valid_sbml_units|valid_sedml|tellurium_outcome|xmlns_sbml_missing|tellurium_remote_outcome|copasi_remote_outcome" mtab = utils.MarkdownTable(column_labels, column_keys) # set the path to the test suite - starting_dir = os.getcwd() # where results will be written os.chdir(args.suite_path) # change to test suite directory suite_path_abs = os.getcwd() # absolute path to test suite @@ -132,16 +388,31 @@ def process_cases(args): category=UserWarning, message="FigureCanvasAgg is non-interactive, and thus cannot be shown", ) - subfolders = ( - os.listdir(suite_path_abs) - if args.limit == 0 - else os.listdir(suite_path_abs)[: args.limit] + + if args.cases: + subfolders = args.cases + else: + subfolders = [ + f + for f in os.listdir(suite_path_abs) + if os.path.isdir(os.path.join(suite_path_abs, f)) + ] + if args.limit != 0: + subfolders = subfolders[: args.limit] + + # submit remote runs and get results or use pickled results + remote_results, remote_links = get_remote_results( + suite_path=suite_path_abs, + sbml_level_version=args.sbml_level_version, + subfolders=subfolders, ) for subfolder in subfolders: + subfolder_dir = os.path.join(suite_path_abs, subfolder) + os.chdir(subfolder_dir) # if sbml_level_version is empty string (default), find the highest level and version in the folder if args.sbml_level_version == "highest": - sedml_file_paths = glob.glob(os.path.join(subfolder, "*-sbml-*sedml.xml")) + sedml_file_paths = glob.glob("*-sbml-*sedml.xml") # get last entry in list of sedml_file_paths (because it has the highest level and version number considering the alphabetical order and naming convention) sedml_file_path = sedml_file_paths[-1] if sedml_file_paths != [] else [] sbml_file_path = ( @@ -154,13 +425,13 @@ def process_cases(args): sbml_file_name = f"*-sbml-{args.sbml_level_version}.xml" sedml_file_name = f"*-sbml-{args.sbml_level_version}-sedml.xml" sbml_file_path = ( - glob.glob(os.path.join(subfolder, sbml_file_name))[0] - if len(glob.glob(os.path.join(subfolder, sbml_file_name))) > 0 + glob.glob(sbml_file_name)[0] + if len(glob.glob(sbml_file_name)) > 0 else [] ) sedml_file_path = ( - glob.glob(os.path.join(subfolder, sedml_file_name))[0] - if len(glob.glob(os.path.join(subfolder, sedml_file_name))) > 0 + glob.glob(sedml_file_name)[0] + if len(glob.glob(subfolder, sedml_file_name)) > 0 else [] ) @@ -169,7 +440,6 @@ def process_cases(args): f"Folder {subfolder} has no SBML or SED-ML files {args.sbml_level_version}" ) continue - print(f"Processing {sbml_file_path} and {sedml_file_path}") # create table with results mtab.new_row() @@ -186,35 +456,184 @@ def process_cases(args): [sbml_file_path], strict_units=True ) mtab["valid_sedml"] = validate_sedml_files([sedml_file_path]) - mtab["tellurium_outcome"] = utils.test_engine( - "tellurium", sedml_file_path - ) # run tellurium directly + + # these give float errors when running the models in tellurium natively which leads to 'reset' errors in subsequent cases that would otherwise pass. + # For now these cases are skipped. + subfolders_float_errors = [ + "00952", + "00953", + "00962", + "00963", + "00964", + "00965", + "00966", + "00967", + "01588", + "01590", + "01591", + "01599", + "01605", + "01627", + ] + + if subfolder in subfolders_float_errors: + print(f"Skipping subfolder {subfolder} with float errors") + mtab["tellurium_outcome"] = ( + "
skippedCase is skipped because it leads to a float error when trying to run it in tellurium natively, which leads to reset errors in subsequent cases that would otherwise pass.
" + ) + + elif subfolder in args.skip: + print(f"Skipping subfolder {subfolder}") + mtab["tellurium_outcome"] = ( + "
skippedCase in skip list
" + ) + + else: + mtab["tellurium_outcome"] = utils.test_engine( + "tellurium", sedml_file_path + ) # run tellurium directly + sup.restore() mtab["xmlns_sbml_missing"] = utils.xmlns_sbml_attribute_missing(sedml_file_path) + + if subfolder in remote_results.keys(): + for e in list(remote_results[subfolder].keys()): + print(f"Processing remote results for {subfolder} with engine {e}") + + if remote_results[subfolder][e]["error_message"] != "": + error_message = utils.safe_md_string( + remote_results[subfolder][e]["error_message"] + ) + exception_type = utils.safe_md_string( + remote_results[subfolder][e]["exception_type"] + ) + error_message_string = f"Error message: ```{error_message}```

Exception type: ```{exception_type}```" + info_submission = f'
{remote_results[subfolder][e]["status"]}[Download]({remote_links[subfolder][e]["download"]})
[Logs]({remote_links[subfolder][e]["logs"]})
[View]({remote_links[subfolder][e]["view"]})

HTTP response: {str(remote_links[subfolder][e]["response"])}

{error_message_string}' + else: + info_submission = f'
{remote_results[subfolder][e]["status"]}[Download]({remote_links[subfolder][e]["download"]})
[Logs]({remote_links[subfolder][e]["logs"]})
[View]({remote_links[subfolder][e]["view"]})

HTTP response: {str(remote_links[subfolder][e]["response"])}' + + mtab_remote_outcome_key = f"{e}_remote_outcome" + mtab[mtab_remote_outcome_key] = info_submission + matplotlib.pyplot.close("all") # supresses error from building up plots # give failure counts - for key in ["valid_sbml", "valid_sbml_units", "valid_sedml"]: - mtab.add_count(key, lambda x: not x, "n_fail={count}") + for key in [ + "valid_sbml", + "valid_sbml_units", + "valid_sedml", + ]: + mtab.add_count(key, lambda x: x is False, "n_fail={count}") mtab.transform_column(key, lambda x: "pass" if x else "FAIL") + for key in [ + "tellurium_remote_outcome", + "copasi_remote_outcome", + ]: + mtab.add_count( + key, lambda x: "
pass" in x, "pass={count}" + ) + # add counts for cases and missing xmlns_sbml attributes mtab.add_count("case", lambda _: True, "n={count}") - mtab.add_count("xmlns_sbml_missing", lambda x: x, "n={count}") + mtab.add_count("xmlns_sbml_missing", lambda x: x is True, "n={count}") # process engine outcomes column(s) mtab.simple_summary("tellurium_outcome") mtab.transform_column("tellurium_outcome") # write out to file - os.chdir(starting_dir) + os.chdir(os.path.dirname(os.path.realpath(__file__))) + print(f"Writing results to {args.output_file}") with open(args.output_file, "w") as fout: fout.write(md_description) mtab.write(fout) +def get_remote_results( + suite_path, sbml_level_version, subfolders, use_pickle=True, remove_output=False +): + """Run with directory pointing towards the location of the sedml and sbml files""" + + # pickle of all results_remote and remote_links together + if use_pickle: + os.chdir(suite_path) + if os.path.exists("results_remote.p") and os.path.exists("remote_links.p"): + results_remote = load_pickle("results_remote.p") + remote_links = load_pickle("remote_links.p") + return results_remote, remote_links + else: + print("No pickled results found. Running remote tests.") + print("Running remote tests.") + file_paths = get_test_suite_files_paths(suite_path, sbml_level_version, subfolders) + run_test_suite_batch_remotely(["copasi", "tellurium"], file_paths, limit=0) + remote_links = merge_pickled_links(file_paths, limit=0) + extract_dir_dict = download_remote_test_suite_results(remote_links) + log_yml_dict = create_log_yml_dict(extract_dir_dict) + results_remote = process_log_yml_dict(log_yml_dict) + os.chdir(os.path.dirname(os.path.realpath(__file__))) + # in suite_path, save pickled results + os.chdir(suite_path) + save_pickle(results_remote, "results_remote.p") + save_pickle(remote_links, "remote_links.p") + if remove_output: + remove_output_folders(extract_dir_dict) + return results_remote, remote_links + + +def remove_all_pickles_in_dir(dir_path): + for root, _, files in os.walk(dir_path): + for file in files: + if file.endswith(".p"): + os.remove(os.path.join(root, file)) + return + + +def remove_all_pickles_in_folder(dir_path): + for file in os.listdir(dir_path): + if file.endswith(".p"): + os.remove(os.path.join(dir_path, file)) + return + + +def remove_certain_pickles_in_dir(dir_path, subfolders): + for subfolder in subfolders: + pickle_file_path = os.path.join(dir_path, subfolder) + remove_all_pickles_in_dir(pickle_file_path) + return + + +def run_test_suite_with_retries(max_retries=10): + retries = 0 + time_out = 10 + while retries < max_retries: + try: + process_cases(args) + break + except Exception as e: + print(f"Error processing cases: {e}") + retries += 1 + if retries < max_retries: + print( + f"Retrying in {time_out} seconds... (Attempt {retries}/{max_retries})" + ) + time.sleep(time_out) + else: + print("Max retries exceeded. Exiting script.") + + if __name__ == "__main__": + refresh = False + if refresh: + download_test_suite( + url="https://github.com/sbmlteam/sbml-test-suite/releases/download/3.4.0/semantic_tests_with_sedml_and_graphs.v3.4.0.zip" + ) + args = parse_arguments() + args.suite_path = os.path.join( + os.path.dirname(os.path.realpath(__file__)), "SBML_test_suite", "semantic" + ) + args.limit = 0 - process_cases(args) + run_test_suite_with_retries() diff --git a/test_suite/results.md b/test_suite/results.md index 72050007..c31ca277 100644 --- a/test_suite/results.md +++ b/test_suite/results.md @@ -1,1826 +1,1826 @@ -Markdown file description goes here. -|case|valid-sbml|valid-sbml-units|valid-sedml|tellurium|xmlns-sbml-missing| -|---|---|---|---|---|---| -|n=1821|n_fail=1|n_fail=5|n_fail=0|
pass=863 FAIL=958n_algebraic=124 n_delay=51 n_float=14 n_reset=759 n_stochiometry=6 n_SpeciesRef=4
|n=1821| -|[00001\00001-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00001\00001-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00002\00002-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00002\00002-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00003\00003-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00003\00003-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00004\00004-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00004\00004-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00005\00005-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00005\00005-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00006\00006-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00006\00006-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00007\00007-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00007\00007-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00008\00008-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00008\00008-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00009\00009-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00009\00009-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00010\00010-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00010\00010-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00011\00011-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00011\00011-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00012\00012-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00012\00012-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00013\00013-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00013\00013-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00014\00014-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00014\00014-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00015\00015-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00015\00015-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00016\00016-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00016\00016-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00017\00017-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00017\00017-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00018\00018-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00018\00018-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00019\00019-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00019\00019-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00020\00020-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00020\00020-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00021\00021-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00021\00021-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00022\00022-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00022\00022-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00023\00023-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00023\00023-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00024\00024-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00024\00024-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00025\00025-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00025\00025-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00026\00026-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00026\00026-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00027\00027-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00027\00027-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00028\00028-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00028\00028-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00029\00029-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00029\00029-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00030\00030-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00030\00030-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00031\00031-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00031\00031-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00032\00032-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00032\00032-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00033\00033-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00033\00033-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00034\00034-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00034\00034-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00035\00035-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00035\00035-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00036\00036-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00036\00036-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00037\00037-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00037\00037-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00038\00038-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00038\00038-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00039\00039-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00039\00039-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = -1 * k1 + S1 + S2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00040\00040-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00040\00040-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = -1 * k2 + S1 + S2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00041\00041-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00041\00041-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00042\00042-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00042\00042-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00043\00043-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00043\00043-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00044\00044-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00044\00044-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00045\00045-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00045\00045-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00046\00046-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00046\00046-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00047\00047-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00047\00047-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00048\00048-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00048\00048-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00049\00049-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00049\00049-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00050\00050-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00050\00050-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00051\00051-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00051\00051-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00052\00052-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00052\00052-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00053\00053-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00053\00053-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00054\00054-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00054\00054-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00055\00055-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00055\00055-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00056\00056-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00056\00056-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00057\00057-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00057\00057-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00058\00058-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00058\00058-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00059\00059-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00059\00059-sbml-l3v1.xml)|pass|pass|pass|pass|True| -|[00060\00060-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00060\00060-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00061\00061-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00061\00061-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00062\00062-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00062\00062-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00063\00063-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00063\00063-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00064\00064-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00064\00064-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00065\00065-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00065\00065-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00066\00066-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00066\00066-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00067\00067-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00067\00067-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00068\00068-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00068\00068-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00069\00069-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00069\00069-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00070\00070-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00070\00070-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00071\00071-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00071\00071-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00072\00072-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00072\00072-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00073\00073-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00073\00073-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00074\00074-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00074\00074-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00075\00075-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00075\00075-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00076\00076-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00076\00076-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00077\00077-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00077\00077-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00078\00078-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00078\00078-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00079\00079-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00079\00079-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00080\00080-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00080\00080-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00081\00081-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00081\00081-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00082\00082-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00082\00082-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00083\00083-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00083\00083-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00084\00084-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00084\00084-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00085\00085-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00085\00085-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00086\00086-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00086\00086-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00087\00087-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00087\00087-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00088\00088-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00088\00088-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00089\00089-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00089\00089-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00090\00090-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00090\00090-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00091\00091-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00091\00091-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00092\00092-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00092\00092-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00093\00093-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00093\00093-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00094\00094-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00094\00094-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00095\00095-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00095\00095-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00096\00096-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00096\00096-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00097\00097-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00097\00097-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00098\00098-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00098\00098-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00099\00099-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00099\00099-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00100\00100-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00100\00100-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00101\00101-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00101\00101-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00102\00102-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00102\00102-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00103\00103-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00103\00103-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00104\00104-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00104\00104-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00105\00105-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00105\00105-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00106\00106-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00106\00106-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00107\00107-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00107\00107-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00108\00108-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00108\00108-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00109\00109-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00109\00109-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00110\00110-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00110\00110-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00111\00111-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00111\00111-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00112\00112-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00112\00112-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00113\00113-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00113\00113-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00114\00114-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00114\00114-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00115\00115-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00115\00115-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00116\00116-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00116\00116-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00117\00117-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00117\00117-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00118\00118-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00118\00118-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00119\00119-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00119\00119-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00120\00120-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00120\00120-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00121\00121-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00121\00121-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00122\00122-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00122\00122-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00123\00123-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00123\00123-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00124\00124-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00124\00124-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00125\00125-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00125\00125-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00126\00126-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00126\00126-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00127\00127-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00127\00127-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00128\00128-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00128\00128-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00129\00129-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00129\00129-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00130\00130-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00130\00130-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00131\00131-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00131\00131-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00132\00132-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00132\00132-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00133\00133-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00133\00133-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00134\00134-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00134\00134-sbml-l3v1.xml)|pass|pass|pass|pass|True| -|[00135\00135-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00135\00135-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00136\00136-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00136\00136-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00137\00137-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00137\00137-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00138\00138-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00138\00138-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00139\00139-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00139\00139-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00140\00140-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00140\00140-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00141\00141-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00141\00141-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00142\00142-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00142\00142-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00143\00143-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00143\00143-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00144\00144-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00144\00144-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00145\00145-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00145\00145-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00146\00146-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00146\00146-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00147\00147-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00147\00147-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00148\00148-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00148\00148-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00149\00149-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00149\00149-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00150\00150-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00150\00150-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00151\00151-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00151\00151-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00152\00152-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00152\00152-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00153\00153-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00153\00153-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00154\00154-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00154\00154-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00155\00155-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00155\00155-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00156\00156-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00156\00156-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00157\00157-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00157\00157-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00158\00158-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00158\00158-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00159\00159-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00159\00159-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00160\00160-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00160\00160-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00161\00161-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00161\00161-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00162\00162-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00162\00162-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00163\00163-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00163\00163-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00164\00164-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00164\00164-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00165\00165-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00165\00165-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00166\00166-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00166\00166-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00167\00167-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00167\00167-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00168\00168-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00168\00168-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00169\00169-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00169\00169-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00170\00170-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00170\00170-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00171\00171-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00171\00171-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00172\00172-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00172\00172-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00173\00173-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00173\00173-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00174\00174-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00174\00174-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00175\00175-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00175\00175-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00176\00176-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00176\00176-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00177\00177-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00177\00177-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00178\00178-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00178\00178-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00179\00179-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00179\00179-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00180\00180-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00180\00180-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00181\00181-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00181\00181-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00182\00182-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00182\00182-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = -1 * k1 + S1 + S2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00183\00183-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00183\00183-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00184\00184-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00184\00184-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = add(S1, add(S2, -1 * k1))' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00185\00185-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00185\00185-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00186\00186-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00186\00186-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00187\00187-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00187\00187-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00188\00188-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00188\00188-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00189\00189-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00189\00189-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00190\00190-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00190\00190-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00191\00191-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00191\00191-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00192\00192-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00192\00192-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00193\00193-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00193\00193-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00194\00194-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00194\00194-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00195\00195-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00195\00195-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00196\00196-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00196\00196-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00197\00197-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00197\00197-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00198\00198-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00198\00198-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00199\00199-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00199\00199-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00200\00200-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00200\00200-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00201\00201-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00201\00201-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00202\00202-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00202\00202-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00203\00203-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00203\00203-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00204\00204-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00204\00204-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00205\00205-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00205\00205-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00206\00206-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00206\00206-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00207\00207-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00207\00207-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00208\00208-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00208\00208-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00209\00209-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00209\00209-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00210\00210-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00210\00210-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00211\00211-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00211\00211-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00212\00212-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00212\00212-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00213\00213-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00213\00213-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00214\00214-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00214\00214-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00215\00215-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00215\00215-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00216\00216-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00216\00216-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00217\00217-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00217\00217-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00218\00218-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00218\00218-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00219\00219-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00219\00219-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00220\00220-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00220\00220-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00221\00221-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00221\00221-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00222\00222-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00222\00222-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00223\00223-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00223\00223-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00224\00224-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00224\00224-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00225\00225-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00225\00225-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00226\00226-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00226\00226-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00227\00227-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00227\00227-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00228\00228-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00228\00228-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00229\00229-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00229\00229-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00230\00230-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00230\00230-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00231\00231-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00231\00231-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00232\00232-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00232\00232-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00233\00233-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00233\00233-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00234\00234-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00234\00234-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00235\00235-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00235\00235-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00236\00236-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00236\00236-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00237\00237-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00237\00237-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00238\00238-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00238\00238-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00239\00239-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00239\00239-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00240\00240-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00240\00240-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00241\00241-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00241\00241-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00242\00242-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00242\00242-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00243\00243-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00243\00243-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00244\00244-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00244\00244-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00245\00245-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00245\00245-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00246\00246-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00246\00246-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00247\00247-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00247\00247-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00248\00248-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00248\00248-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00249\00249-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00249\00249-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00250\00250-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00250\00250-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00251\00251-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00251\00251-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00252\00252-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00252\00252-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00253\00253-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00253\00253-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00254\00254-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00254\00254-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00255\00255-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00255\00255-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00256\00256-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00256\00256-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00257\00257-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00257\00257-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00258\00258-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00258\00258-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00259\00259-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00259\00259-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00260\00260-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00260\00260-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00261\00261-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00261\00261-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00262\00262-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00262\00262-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00263\00263-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00263\00263-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00264\00264-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00264\00264-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00265\00265-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00265\00265-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00266\00266-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00266\00266-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00267\00267-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00267\00267-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00268\00268-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00268\00268-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00269\00269-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00269\00269-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00270\00270-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00270\00270-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00271\00271-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00271\00271-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00272\00272-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00272\00272-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00273\00273-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00273\00273-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00274\00274-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00274\00274-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00275\00275-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00275\00275-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00276\00276-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00276\00276-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00277\00277-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00277\00277-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00278\00278-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00278\00278-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00279\00279-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00279\00279-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00280\00280-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00280\00280-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00281\00281-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00281\00281-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00282\00282-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00282\00282-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00283\00283-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00283\00283-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00284\00284-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00284\00284-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00285\00285-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00285\00285-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00286\00286-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00286\00286-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00287\00287-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00287\00287-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00288\00288-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00288\00288-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00289\00289-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00289\00289-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00290\00290-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00290\00290-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00291\00291-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00291\00291-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00292\00292-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00292\00292-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00293\00293-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00293\00293-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00294\00294-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00294\00294-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00295\00295-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00295\00295-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00296\00296-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00296\00296-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00297\00297-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00297\00297-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00298\00298-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00298\00298-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00299\00299-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00299\00299-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00300\00300-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00300\00300-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00301\00301-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00301\00301-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00302\00302-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00302\00302-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00303\00303-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00303\00303-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00304\00304-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00304\00304-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00305\00305-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00305\00305-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00306\00306-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00306\00306-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00307\00307-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00307\00307-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00308\00308-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00308\00308-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00309\00309-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00309\00309-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00310\00310-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00310\00310-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00311\00311-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00311\00311-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00312\00312-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00312\00312-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00313\00313-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00313\00313-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00314\00314-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00314\00314-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00315\00315-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00315\00315-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00316\00316-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00316\00316-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00317\00317-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00317\00317-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00318\00318-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00318\00318-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00319\00319-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00319\00319-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00320\00320-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00320\00320-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00321\00321-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00321\00321-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00322\00322-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00322\00322-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00323\00323-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00323\00323-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00324\00324-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00324\00324-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00325\00325-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00325\00325-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00326\00326-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00326\00326-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00327\00327-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00327\00327-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00328\00328-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00328\00328-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00329\00329-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00329\00329-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00330\00330-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00330\00330-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00331\00331-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00331\00331-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00332\00332-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00332\00332-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00333\00333-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00333\00333-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00334\00334-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00334\00334-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00335\00335-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00335\00335-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00336\00336-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00336\00336-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00337\00337-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00337\00337-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00338\00338-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00338\00338-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00339\00339-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00339\00339-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00340\00340-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00340\00340-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00341\00341-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00341\00341-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00342\00342-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00342\00342-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00343\00343-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00343\00343-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00344\00344-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00344\00344-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00345\00345-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00345\00345-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00346\00346-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00346\00346-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00347\00347-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00347\00347-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00348\00348-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00348\00348-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00349\00349-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00349\00349-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00350\00350-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00350\00350-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00351\00351-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00351\00351-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00352\00352-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00352\00352-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00353\00353-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00353\00353-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00354\00354-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00354\00354-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00355\00355-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00355\00355-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00356\00356-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00356\00356-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00357\00357-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00357\00357-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00358\00358-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00358\00358-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00359\00359-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00359\00359-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00360\00360-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00360\00360-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00361\00361-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00361\00361-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00362\00362-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00362\00362-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00363\00363-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00363\00363-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00364\00364-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00364\00364-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00365\00365-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00365\00365-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00366\00366-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00366\00366-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00367\00367-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00367\00367-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00368\00368-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00368\00368-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00369\00369-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00369\00369-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00370\00370-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00370\00370-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00371\00371-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00371\00371-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00372\00372-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00372\00372-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00373\00373-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00373\00373-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00374\00374-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00374\00374-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00375\00375-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00375\00375-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00376\00376-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00376\00376-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00377\00377-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00377\00377-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00378\00378-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00378\00378-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00379\00379-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00379\00379-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00380\00380-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00380\00380-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00381\00381-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00381\00381-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00382\00382-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00382\00382-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00383\00383-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00383\00383-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00384\00384-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00384\00384-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00385\00385-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00385\00385-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00386\00386-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00386\00386-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00387\00387-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00387\00387-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00388\00388-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00388\00388-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00389\00389-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00389\00389-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00390\00390-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00390\00390-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00391\00391-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00391\00391-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00392\00392-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00392\00392-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00393\00393-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00393\00393-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00394\00394-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00394\00394-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00395\00395-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00395\00395-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00396\00396-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00396\00396-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00397\00397-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00397\00397-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00398\00398-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00398\00398-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00399\00399-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00399\00399-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00400\00400-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00400\00400-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00401\00401-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00401\00401-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00402\00402-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00402\00402-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00403\00403-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00403\00403-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00404\00404-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00404\00404-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00405\00405-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00405\00405-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00406\00406-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00406\00406-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00407\00407-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00407\00407-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00408\00408-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00408\00408-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00409\00409-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00409\00409-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00410\00410-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00410\00410-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00411\00411-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00411\00411-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00412\00412-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00412\00412-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00413\00413-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00413\00413-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00414\00414-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00414\00414-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00415\00415-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00415\00415-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00416\00416-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00416\00416-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00417\00417-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00417\00417-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00418\00418-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00418\00418-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00419\00419-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00419\00419-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00420\00420-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00420\00420-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00421\00421-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00421\00421-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00422\00422-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00422\00422-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00423\00423-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00423\00423-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00424\00424-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00424\00424-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00425\00425-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00425\00425-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00426\00426-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00426\00426-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00427\00427-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00427\00427-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00428\00428-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00428\00428-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00429\00429-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00429\00429-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00430\00430-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00430\00430-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00431\00431-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00431\00431-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00432\00432-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00432\00432-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00433\00433-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00433\00433-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00434\00434-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00434\00434-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00435\00435-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00435\00435-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00436\00436-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00436\00436-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00437\00437-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00437\00437-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00438\00438-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00438\00438-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00439\00439-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00439\00439-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00440\00440-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00440\00440-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00441\00441-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00441\00441-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00442\00442-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00442\00442-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00443\00443-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00443\00443-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00444\00444-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00444\00444-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00445\00445-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00445\00445-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00446\00446-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00446\00446-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00447\00447-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00447\00447-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00448\00448-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00448\00448-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00449\00449-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00449\00449-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00450\00450-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00450\00450-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00451\00451-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00451\00451-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00452\00452-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00452\00452-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00453\00453-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00453\00453-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00454\00454-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00454\00454-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00455\00455-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00455\00455-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00456\00456-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00456\00456-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00457\00457-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00457\00457-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00458\00458-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00458\00458-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00459\00459-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00459\00459-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00460\00460-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00460\00460-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00461\00461-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00461\00461-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00462\00462-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00462\00462-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00463\00463-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00463\00463-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00464\00464-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00464\00464-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00465\00465-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00465\00465-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00466\00466-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00466\00466-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00467\00467-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00467\00467-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00468\00468-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00468\00468-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00469\00469-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00469\00469-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00470\00470-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00470\00470-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00471\00471-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00471\00471-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00472\00472-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00472\00472-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00473\00473-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00473\00473-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00474\00474-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00474\00474-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00475\00475-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00475\00475-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00476\00476-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00476\00476-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00477\00477-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00477\00477-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00478\00478-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00478\00478-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00479\00479-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00479\00479-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00480\00480-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00480\00480-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00481\00481-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00481\00481-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00482\00482-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00482\00482-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00483\00483-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00483\00483-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00484\00484-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00484\00484-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00485\00485-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00485\00485-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00486\00486-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00486\00486-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00487\00487-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00487\00487-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00488\00488-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00488\00488-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00489\00489-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00489\00489-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00490\00490-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00490\00490-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00491\00491-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00491\00491-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00492\00492-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00492\00492-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00493\00493-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00493\00493-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00494\00494-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00494\00494-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00495\00495-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00495\00495-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00496\00496-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00496\00496-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00497\00497-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00497\00497-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00498\00498-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00498\00498-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00499\00499-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00499\00499-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00500\00500-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00500\00500-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00501\00501-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00501\00501-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00502\00502-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00502\00502-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00503\00503-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00503\00503-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00504\00504-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00504\00504-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00505\00505-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00505\00505-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00506\00506-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00506\00506-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00507\00507-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00507\00507-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00508\00508-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00508\00508-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00509\00509-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00509\00509-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00510\00510-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00510\00510-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00511\00511-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00511\00511-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00512\00512-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00512\00512-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00513\00513-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00513\00513-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00514\00514-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00514\00514-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00515\00515-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00515\00515-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00516\00516-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00516\00516-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00517\00517-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00517\00517-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00518\00518-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00518\00518-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00519\00519-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00519\00519-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00520\00520-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00520\00520-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00521\00521-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00521\00521-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00522\00522-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00522\00522-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00523\00523-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00523\00523-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00524\00524-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00524\00524-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00525\00525-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00525\00525-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00526\00526-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00526\00526-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00527\00527-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00527\00527-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00528\00528-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00528\00528-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00529\00529-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00529\00529-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00530\00530-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00530\00530-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00531\00531-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00531\00531-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 - T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00532\00532-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00532\00532-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = -1 * S1 + T + X0 + X1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00533\00533-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00533\00533-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = k2 + -0.9' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00534\00534-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00534\00534-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = k2 + -1 * k3 + -0.2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00535\00535-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00535\00535-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00536\00536-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00536\00536-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = k1 + -0.1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00537\00537-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00537\00537-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = k2 + -0.2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00538\00538-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00538\00538-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = k2 + -0.25' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00539\00539-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00539\00539-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = C + -1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00540\00540-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00540\00540-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = C + -1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00541\00541-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00541\00541-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = C + -1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00542\00542-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00542\00542-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = C + -1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00543\00543-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00543\00543-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00544\00544-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00544\00544-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = C + -1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00545\00545-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00545\00545-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = C + -1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00546\00546-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00546\00546-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00547\00547-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00547\00547-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = C + -2.5' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00548\00548-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00548\00548-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = C + -0.75' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00549\00549-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00549\00549-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00550\00550-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00550\00550-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00551\00551-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00551\00551-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00552\00552-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00552\00552-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00553\00553-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00553\00553-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00554\00554-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00554\00554-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00555\00555-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00555\00555-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + S2 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00556\00556-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00556\00556-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = -1 * S1 + S4 + -1 * S5' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00557\00557-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00557\00557-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00558\00558-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00558\00558-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00559\00559-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00559\00559-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00560\00560-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00560\00560-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00561\00561-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00561\00561-sbml-l2v5.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00562\00562-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00562\00562-sbml-l2v5.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00563\00563-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00563\00563-sbml-l2v5.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00564\00564-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00564\00564-sbml-l2v5.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00565\00565-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00565\00565-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00566\00566-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00566\00566-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00567\00567-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00567\00567-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = multiply(k3 + 1, S1) + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00568\00568-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00568\00568-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = -1 * S1 + T + add(X0, X1)' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00569\00569-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00569\00569-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = subtract(k2, 0.9)' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00570\00570-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00570\00570-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = subtract(k2, k3) + -0.2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00571\00571-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00571\00571-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = subtract(multiply(k3 + 1, S1), T)' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00572\00572-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00572\00572-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = add(add(X0, X1), T) + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00573\00573-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00573\00573-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * p4 + -1 * p3' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00574\00574-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00574\00574-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = p1 + p2 + p3 + -1 * p4' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00575\00575-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00575\00575-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = k2 + -0.9' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00576\00576-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00576\00576-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = p4 + -1 * p1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00577\00577-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00577\00577-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00578\00578-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00578\00578-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00579\00579-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00579\00579-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00580\00580-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00580\00580-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00581\00581-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00581\00581-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00582\00582-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00582\00582-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00583\00583-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00583\00583-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00584\00584-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00584\00584-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00585\00585-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00585\00585-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00586\00586-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00586\00586-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00587\00587-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00587\00587-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00588\00588-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00588\00588-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00589\00589-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00589\00589-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00590\00590-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00590\00590-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00591\00591-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00591\00591-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00592\00592-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00592\00592-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00593\00593-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00593\00593-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00594\00594-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00594\00594-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00595\00595-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00595\00595-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00596\00596-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00596\00596-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00597\00597-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00597\00597-sbml-l3v1.xml)|pass|pass|pass|pass|True| -|[00598\00598-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00598\00598-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00599\00599-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00599\00599-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00600\00600-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00600\00600-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00601\00601-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00601\00601-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00602\00602-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00602\00602-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00603\00603-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00603\00603-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00604\00604-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00604\00604-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00605\00605-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00605\00605-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00606\00606-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00606\00606-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00607\00607-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00607\00607-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00608\00608-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00608\00608-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00609\00609-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00609\00609-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00610\00610-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00610\00610-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00611\00611-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00611\00611-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00612\00612-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00612\00612-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00613\00613-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00613\00613-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00614\00614-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00614\00614-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00615\00615-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00615\00615-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00616\00616-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00616\00616-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00617\00617-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00617\00617-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00618\00618-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00618\00618-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00619\00619-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00619\00619-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00620\00620-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00620\00620-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00621\00621-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00621\00621-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00622\00622-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00622\00622-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00623\00623-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00623\00623-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00624\00624-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00624\00624-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00625\00625-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00625\00625-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00626\00626-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00626\00626-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00627\00627-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00627\00627-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00628\00628-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00628\00628-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00629\00629-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00629\00629-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00630\00630-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00630\00630-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00631\00631-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00631\00631-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00632\00632-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00632\00632-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00633\00633-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00633\00633-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00634\00634-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00634\00634-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00635\00635-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00635\00635-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00636\00636-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00636\00636-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00637\00637-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00637\00637-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00638\00638-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00638\00638-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00639\00639-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00639\00639-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00640\00640-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00640\00640-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00641\00641-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00641\00641-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00642\00642-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00642\00642-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00643\00643-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00643\00643-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00644\00644-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00644\00644-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00645\00645-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00645\00645-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00646\00646-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00646\00646-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00647\00647-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00647\00647-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00648\00648-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00648\00648-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00649\00649-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00649\00649-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00650\00650-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00650\00650-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00651\00651-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00651\00651-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00652\00652-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00652\00652-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00653\00653-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00653\00653-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00654\00654-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00654\00654-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00655\00655-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00655\00655-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00656\00656-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00656\00656-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00657\00657-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00657\00657-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00658\00658-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00658\00658-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = -1 * k1 + S1 + S2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00659\00659-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00659\00659-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = -1 * k1 + S1 + S2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00660\00660-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00660\00660-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = -1 * k1 + S1 + S2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00661\00661-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00661\00661-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = -1 * S1 + T + X0 + X1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00662\00662-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00662\00662-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00663\00663-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00663\00663-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = k2 + -0.9' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00664\00664-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00664\00664-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = k2 + -0.9' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00665\00665-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00665\00665-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = -1 * S1 + T + X0 + X1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00666\00666-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00666\00666-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00667\00667-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00667\00667-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00668\00668-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00668\00668-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00669\00669-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00669\00669-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00670\00670-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00670\00670-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00671\00671-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00671\00671-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00672\00672-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00672\00672-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00673\00673-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00673\00673-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00674\00674-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00674\00674-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00675\00675-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00675\00675-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00676\00676-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00676\00676-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00677\00677-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00677\00677-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00678\00678-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00678\00678-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00679\00679-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00679\00679-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00680\00680-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00680\00680-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00681\00681-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00681\00681-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00682\00682-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00682\00682-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00683\00683-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00683\00683-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00684\00684-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00684\00684-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00685\00685-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00685\00685-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00686\00686-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00686\00686-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00687\00687-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00687\00687-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00688\00688-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00688\00688-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00689\00689-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00689\00689-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00690\00690-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00690\00690-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00691\00691-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00691\00691-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00692\00692-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00692\00692-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00693\00693-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00693\00693-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00694\00694-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00694\00694-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00695\00695-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00695\00695-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00696\00696-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00696\00696-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00697\00697-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00697\00697-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00698\00698-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00698\00698-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00699\00699-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00699\00699-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00700\00700-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00700\00700-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00701\00701-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00701\00701-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00702\00702-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00702\00702-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00703\00703-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00703\00703-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00704\00704-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00704\00704-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00705\00705-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00705\00705-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00706\00706-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00706\00706-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00707\00707-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00707\00707-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00708\00708-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00708\00708-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00709\00709-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00709\00709-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00710\00710-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00710\00710-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00711\00711-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00711\00711-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00712\00712-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00712\00712-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00713\00713-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00713\00713-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00714\00714-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00714\00714-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00715\00715-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00715\00715-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00716\00716-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00716\00716-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00717\00717-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00717\00717-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00718\00718-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00718\00718-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00719\00719-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00719\00719-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00720\00720-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00720\00720-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00721\00721-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00721\00721-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00722\00722-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00722\00722-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00723\00723-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00723\00723-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00724\00724-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00724\00724-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00725\00725-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00725\00725-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00726\00726-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00726\00726-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00727\00727-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00727\00727-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00728\00728-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00728\00728-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00729\00729-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00729\00729-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00730\00730-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00730\00730-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00731\00731-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00731\00731-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00732\00732-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00732\00732-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00733\00733-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00733\00733-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00734\00734-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00734\00734-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00735\00735-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00735\00735-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00736\00736-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00736\00736-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00737\00737-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00737\00737-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00738\00738-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00738\00738-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00739\00739-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00739\00739-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00740\00740-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00740\00740-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00741\00741-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00741\00741-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00742\00742-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00742\00742-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00743\00743-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00743\00743-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00744\00744-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00744\00744-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00745\00745-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00745\00745-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00746\00746-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00746\00746-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00747\00747-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00747\00747-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00748\00748-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00748\00748-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00749\00749-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00749\00749-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00750\00750-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00750\00750-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00751\00751-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00751\00751-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00752\00752-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00752\00752-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00753\00753-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00753\00753-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00754\00754-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00754\00754-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00755\00755-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00755\00755-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00756\00756-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00756\00756-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00757\00757-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00757\00757-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00758\00758-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00758\00758-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00759\00759-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00759\00759-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00760\00760-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00760\00760-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = -1 * S1 + T + add(X0, X1)' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00761\00761-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00761\00761-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = S1 * add(1, k3) + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00762\00762-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00762\00762-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = subtract(k2, 0.9)' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00763\00763-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00763\00763-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00764\00764-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00764\00764-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00765\00765-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00765\00765-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00766\00766-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00766\00766-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00767\00767-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00767\00767-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00768\00768-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00768\00768-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00769\00769-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00769\00769-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00770\00770-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00770\00770-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00771\00771-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00771\00771-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00772\00772-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00772\00772-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00773\00773-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00773\00773-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00774\00774-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00774\00774-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00775\00775-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00775\00775-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00776\00776-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00776\00776-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00777\00777-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00777\00777-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = k2 + -2.5' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00778\00778-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00778\00778-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = -1 * S1 + T + X0 + X1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00779\00779-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00779\00779-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = -1 * S1 + T + X0 + X1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00780\00780-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00780\00780-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = -1 * S1 + T + X0 + X1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00781\00781-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00781\00781-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00782\00782-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00782\00782-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00783\00783-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00783\00783-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00784\00784-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00784\00784-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00785\00785-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00785\00785-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00786\00786-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00786\00786-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00787\00787-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00787\00787-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00788\00788-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00788\00788-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00789\00789-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00789\00789-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00790\00790-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00790\00790-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00791\00791-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00791\00791-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00792\00792-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00792\00792-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00793\00793-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00793\00793-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00794\00794-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00794\00794-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00795\00795-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00795\00795-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00796\00796-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00796\00796-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00797\00797-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00797\00797-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00798\00798-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00798\00798-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00799\00799-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00799\00799-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00800\00800-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00800\00800-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00801\00801-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00801\00801-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00802\00802-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00802\00802-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00803\00803-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00803\00803-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00804\00804-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00804\00804-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00805\00805-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00805\00805-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00806\00806-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00806\00806-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00807\00807-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00807\00807-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00808\00808-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00808\00808-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00809\00809-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00809\00809-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00810\00810-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00810\00810-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00811\00811-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00811\00811-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00812\00812-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00812\00812-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00813\00813-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00813\00813-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00814\00814-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00814\00814-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00815\00815-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00815\00815-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00816\00816-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00816\00816-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00817\00817-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00817\00817-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00818\00818-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00818\00818-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00819\00819-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00819\00819-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00820\00820-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00820\00820-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00821\00821-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00821\00821-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00822\00822-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00822\00822-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00823\00823-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00823\00823-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00824\00824-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00824\00824-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00825\00825-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00825\00825-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00826\00826-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00826\00826-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00827\00827-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00827\00827-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00828\00828-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00828\00828-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00829\00829-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00829\00829-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00830\00830-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00830\00830-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00831\00831-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00831\00831-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00832\00832-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00832\00832-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00833\00833-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00833\00833-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00834\00834-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00834\00834-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00835\00835-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00835\00835-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00836\00836-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00836\00836-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00837\00837-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00837\00837-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00838\00838-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00838\00838-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00839\00839-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00839\00839-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00840\00840-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00840\00840-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00841\00841-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00841\00841-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00842\00842-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00842\00842-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00843\00843-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00843\00843-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00844\00844-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00844\00844-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = kf + -0.75' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00845\00845-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00845\00845-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00846\00846-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00846\00846-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00847\00847-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00847\00847-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00848\00848-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00848\00848-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00849\00849-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00849\00849-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00850\00850-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00850\00850-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00851\00851-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00851\00851-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00852\00852-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00852\00852-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00853\00853-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00853\00853-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00854\00854-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00854\00854-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00855\00855-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00855\00855-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00856\00856-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00856\00856-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00857\00857-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00857\00857-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00858\00858-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00858\00858-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00859\00859-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00859\00859-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00860\00860-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00860\00860-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00861\00861-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00861\00861-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00862\00862-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00862\00862-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00863\00863-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00863\00863-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00864\00864-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00864\00864-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00865\00865-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00865\00865-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00866\00866-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00866\00866-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00867\00867-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00867\00867-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00868\00868-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00868\00868-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00869\00869-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00869\00869-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00870\00870-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00870\00870-sbml-l3v1.xml)|pass|pass|pass|pass|True| -|[00871\00871-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00871\00871-sbml-l3v1.xml)|pass|pass|pass|pass|True| -|[00872\00872-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00872\00872-sbml-l3v1.xml)|pass|pass|pass|pass|True| -|[00873\00873-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00873\00873-sbml-l3v1.xml)|pass|pass|pass|pass|True| -|[00874\00874-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00874\00874-sbml-l3v1.xml)|pass|pass|pass|pass|True| -|[00875\00875-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00875\00875-sbml-l3v1.xml)|pass|pass|pass|pass|True| -|[00876\00876-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00876\00876-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00877\00877-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00877\00877-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00878\00878-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00878\00878-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00879\00879-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00879\00879-sbml-l3v2.xml)|pass|FAIL|pass|pass|True| -|[00880\00880-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00880\00880-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00881\00881-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00881\00881-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00882\00882-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00882\00882-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00883\00883-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00883\00883-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00884\00884-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00884\00884-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00885\00885-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00885\00885-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00886\00886-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00886\00886-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00887\00887-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00887\00887-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00888\00888-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00888\00888-sbml-l3v2.xml)|pass|FAIL|pass|pass|True| -|[00889\00889-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00889\00889-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00890\00890-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00890\00890-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00891\00891-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00891\00891-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00892\00892-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00892\00892-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00893\00893-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00893\00893-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00894\00894-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00894\00894-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00895\00895-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00895\00895-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00896\00896-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00896\00896-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00897\00897-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00897\00897-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00898\00898-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00898\00898-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00899\00899-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00899\00899-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00900\00900-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00900\00900-sbml-l2v5.xml)|pass|pass|pass|pass|True| -|[00901\00901-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00901\00901-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00902\00902-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00902\00902-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00903\00903-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00903\00903-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00904\00904-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00904\00904-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00905\00905-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00905\00905-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00906\00906-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00906\00906-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00907\00907-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00907\00907-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00908\00908-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00908\00908-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00909\00909-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00909\00909-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00910\00910-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00910\00910-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00911\00911-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00911\00911-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00912\00912-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00912\00912-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00913\00913-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00913\00913-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00914\00914-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00914\00914-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00915\00915-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00915\00915-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00916\00916-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00916\00916-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00917\00917-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00917\00917-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00918\00918-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00918\00918-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00919\00919-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00919\00919-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00920\00920-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00920\00920-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00921\00921-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00921\00921-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00922\00922-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00922\00922-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00923\00923-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00923\00923-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00924\00924-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00924\00924-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00925\00925-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00925\00925-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00926\00926-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00926\00926-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00927\00927-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00927\00927-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00928\00928-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00928\00928-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00929\00929-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00929\00929-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00930\00930-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00930\00930-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00931\00931-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00931\00931-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00932\00932-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00932\00932-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00933\00933-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00933\00933-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00934\00934-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00934\00934-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00935\00935-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00935\00935-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00936\00936-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00936\00936-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00937\00937-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00937\00937-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(x, 0.2)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[00938\00938-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00938\00938-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(x, 0.2)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[00939\00939-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00939\00939-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(x, 0.2)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[00940\00940-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00940\00940-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(x, 0.5)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[00941\00941-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00941\00941-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(x, 0.5)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[00942\00942-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00942\00942-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(x, 0.5)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[00943\00943-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00943\00943-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(x, 0.5)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[00944\00944-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00944\00944-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00945\00945-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00945\00945-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00946\00946-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00946\00946-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00947\00947-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00947\00947-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00948\00948-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00948\00948-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00949\00949-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00949\00949-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00950\00950-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00950\00950-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00951\00951-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00951\00951-sbml-l3v2.xml)|pass|pass|pass|pass|True| -|[00952\00952-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00952\00952-sbml-l3v2.xml)|pass|pass|pass|
float```'float' object is not callable```
|True| -|[00953\00953-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00953\00953-sbml-l3v2.xml)|pass|pass|pass|
float```'float' object is not callable```
|True| -|[00954\00954-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00954\00954-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[00955\00955-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00955\00955-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[00956\00956-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00956\00956-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[00957\00957-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00957\00957-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[00958\00958-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00958\00958-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[00959\00959-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00959\00959-sbml-l3v2.xml)|FAIL|FAIL|pass|
reset```reset```
|True| -|[00960\00960-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00960\00960-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[00961\00961-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00961\00961-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[00962\00962-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00962\00962-sbml-l3v2.xml)|pass|pass|pass|
float```'float' object is not callable```
|True| -|[00963\00963-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00963\00963-sbml-l3v2.xml)|pass|pass|pass|
float```'float' object is not callable```
|True| -|[00964\00964-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00964\00964-sbml-l3v2.xml)|pass|pass|pass|
float```'float' object is not callable```
|True| -|[00965\00965-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00965\00965-sbml-l3v2.xml)|pass|pass|pass|
float```'float' object is not callable```
|True| -|[00966\00966-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00966\00966-sbml-l3v2.xml)|pass|pass|pass|
float```'float' object is not callable```
|True| -|[00967\00967-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00967\00967-sbml-l3v2.xml)|pass|pass|pass|
float```'float' object is not callable```
|True| -|[00968\00968-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00968\00968-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[00969\00969-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00969\00969-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[00970\00970-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00970\00970-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[00971\00971-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00971\00971-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[00972\00972-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00972\00972-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[00973\00973-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00973\00973-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[00974\00974-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00974\00974-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[00975\00975-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00975\00975-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[00976\00976-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00976\00976-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[00977\00977-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00977\00977-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[00978\00978-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00978\00978-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[00979\00979-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00979\00979-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[00980\00980-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00980\00980-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[00981\00981-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00981\00981-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(x, time / 2)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[00982\00982-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00982\00982-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(x, temp)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[00983\00983-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00983\00983-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = -1 * temp + time / 2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00984\00984-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00984\00984-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(x, temp)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[00985\00985-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00985\00985-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(x, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[00986\00986-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00986\00986-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[00987\00987-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00987\00987-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[00988\00988-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00988\00988-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[00989\00989-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00989\00989-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[00990\00990-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00990\00990-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[00991\00991-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00991\00991-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[00992\00992-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00992\00992-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[00993\00993-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00993\00993-sbml-l2v5.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = X - p1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[00994\00994-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00994\00994-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[00995\00995-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00995\00995-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[00996\00996-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00996\00996-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[00997\00997-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00997\00997-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[00998\00998-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00998\00998-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[00999\00999-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00999\00999-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01000\01000-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01000\01000-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01001\01001-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01001\01001-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01002\01002-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01002\01002-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01003\01003-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01003\01003-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01004\01004-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01004\01004-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01005\01005-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01005\01005-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01006\01006-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01006\01006-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01007\01007-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01007\01007-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01008\01008-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01008\01008-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01009\01009-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01009\01009-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01010\01010-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01010\01010-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01011\01011-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01011\01011-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01012\01012-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01012\01012-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01013\01013-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01013\01013-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01014\01014-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01014\01014-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01015\01015-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01015\01015-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01016\01016-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01016\01016-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01017\01017-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01017\01017-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01018\01018-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01018\01018-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01019\01019-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01019\01019-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01020\01020-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01020\01020-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01021\01021-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01021\01021-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01022\01022-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01022\01022-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01023\01023-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01023\01023-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01024\01024-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01024\01024-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01025\01025-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01025\01025-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01026\01026-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01026\01026-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01027\01027-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01027\01027-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01028\01028-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01028\01028-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01029\01029-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01029\01029-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01030\01030-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01030\01030-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01031\01031-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01031\01031-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01032\01032-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01032\01032-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01033\01033-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01033\01033-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01034\01034-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01034\01034-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01035\01035-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01035\01035-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01036\01036-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01036\01036-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01037\01037-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01037\01037-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01038\01038-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01038\01038-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01039\01039-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01039\01039-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01040\01040-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01040\01040-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01041\01041-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01041\01041-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01042\01042-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01042\01042-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01043\01043-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01043\01043-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01044\01044-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01044\01044-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = kf + -0.75' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01045\01045-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01045\01045-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01046\01046-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01046\01046-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01047\01047-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01047\01047-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01048\01048-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01048\01048-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01049\01049-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01049\01049-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01050\01050-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01050\01050-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01051\01051-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01051\01051-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01052\01052-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01052\01052-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01053\01053-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01053\01053-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01054\01054-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01054\01054-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01055\01055-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01055\01055-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01056\01056-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01056\01056-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01057\01057-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01057\01057-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01058\01058-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01058\01058-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01059\01059-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01059\01059-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01060\01060-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01060\01060-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01061\01061-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01061\01061-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01062\01062-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01062\01062-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01063\01063-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01063\01063-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01064\01064-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01064\01064-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01065\01065-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01065\01065-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01066\01066-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01066\01066-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01067\01067-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01067\01067-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01068\01068-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01068\01068-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01069\01069-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01069\01069-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01070\01070-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01070\01070-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01071\01071-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01071\01071-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01072\01072-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01072\01072-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01073\01073-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01073\01073-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01074\01074-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01074\01074-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01075\01075-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01075\01075-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01076\01076-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01076\01076-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01077\01077-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01077\01077-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01078\01078-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01078\01078-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01079\01079-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01079\01079-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01080\01080-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01080\01080-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01081\01081-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01081\01081-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01082\01082-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01082\01082-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01083\01083-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01083\01083-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01084\01084-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01084\01084-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01085\01085-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01085\01085-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01086\01086-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01086\01086-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01087\01087-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01087\01087-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01088\01088-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01088\01088-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01089\01089-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01089\01089-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01090\01090-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01090\01090-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01091\01091-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01091\01091-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01092\01092-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01092\01092-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01093\01093-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01093\01093-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01094\01094-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01094\01094-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01095\01095-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01095\01095-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01096\01096-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01096\01096-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01097\01097-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01097\01097-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01098\01098-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01098\01098-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01099\01099-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01099\01099-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01100\01100-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01100\01100-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01101\01101-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01101\01101-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01102\01102-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01102\01102-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01103\01103-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01103\01103-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01104\01104-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01104\01104-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01105\01105-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01105\01105-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01106\01106-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01106\01106-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01107\01107-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01107\01107-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01108\01108-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01108\01108-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = X - p1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01109\01109-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01109\01109-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01110\01110-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01110\01110-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01111\01111-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01111\01111-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01112\01112-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01112\01112-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01113\01113-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01113\01113-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01114\01114-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01114\01114-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01115\01115-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01115\01115-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01116\01116-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01116\01116-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01117\01117-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01117\01117-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01118\01118-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01118\01118-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01119\01119-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01119\01119-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01120\01120-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01120\01120-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01121\01121-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01121\01121-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01122\01122-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01122\01122-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01123\01123-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01123\01123-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01124\01124-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01124\01124-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01125\01125-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01125\01125-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01126\01126-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01126\01126-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01127\01127-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01127\01127-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01128\01128-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01128\01128-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01129\01129-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01129\01129-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01130\01130-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01130\01130-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01131\01131-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01131\01131-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01132\01132-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01132\01132-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01133\01133-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01133\01133-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01134\01134-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01134\01134-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01135\01135-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01135\01135-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01136\01136-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01136\01136-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01137\01137-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01137\01137-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01138\01138-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01138\01138-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01139\01139-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01139\01139-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01140\01140-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01140\01140-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01141\01141-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01141\01141-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01142\01142-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01142\01142-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = t4 - delay(t3, timeconv * (time / timeconv / 2))' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01143\01143-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01143\01143-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01144\01144-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01144\01144-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01145\01145-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01145\01145-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01146\01146-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01146\01146-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01147\01147-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01147\01147-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01148\01148-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01148\01148-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01149\01149-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01149\01149-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01150\01150-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01150\01150-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01151\01151-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01151\01151-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01152\01152-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01152\01152-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01153\01153-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01153\01153-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01154\01154-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01154\01154-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01155\01155-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01155\01155-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01156\01156-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01156\01156-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01157\01157-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01157\01157-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01158\01158-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01158\01158-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01159\01159-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01159\01159-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01160\01160-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01160\01160-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01161\01161-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01161\01161-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01162\01162-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01162\01162-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01163\01163-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01163\01163-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01164\01164-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01164\01164-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01165\01165-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01165\01165-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01166\01166-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01166\01166-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01167\01167-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01167\01167-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01168\01168-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01168\01168-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01169\01169-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01169\01169-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01170\01170-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01170\01170-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01171\01171-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01171\01171-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01172\01172-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01172\01172-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01173\01173-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01173\01173-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(t1, timeconv * 3)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01174\01174-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01174\01174-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = t4 - delay(t3, timeconv * (time / timeconv / 2))' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01175\01175-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01175\01175-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01176\01176-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01176\01176-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(t5, timeconv * 0.2)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01177\01177-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01177\01177-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01178\01178-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01178\01178-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01179\01179-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01179\01179-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01180\01180-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01180\01180-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01181\01181-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01181\01181-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01182\01182-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01182\01182-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01183\01183-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01183\01183-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01184\01184-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01184\01184-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01185\01185-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01185\01185-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01186\01186-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01186\01186-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01187\01187-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01187\01187-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01188\01188-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01188\01188-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01189\01189-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01189\01189-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01190\01190-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01190\01190-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01191\01191-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01191\01191-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01192\01192-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01192\01192-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01193\01193-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01193\01193-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01194\01194-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01194\01194-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01195\01195-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01195\01195-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01196\01196-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01196\01196-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01197\01197-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01197\01197-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01198\01198-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01198\01198-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01199\01199-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01199\01199-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01200\01200-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01200\01200-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01201\01201-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01201\01201-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01202\01202-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01202\01202-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01203\01203-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01203\01203-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01204\01204-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01204\01204-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01205\01205-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01205\01205-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01206\01206-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01206\01206-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01207\01207-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01207\01207-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01208\01208-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01208\01208-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01209\01209-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01209\01209-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01210\01210-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01210\01210-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01211\01211-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01211\01211-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01212\01212-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01212\01212-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01213\01213-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01213\01213-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01214\01214-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01214\01214-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01215\01215-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01215\01215-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01216\01216-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01216\01216-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01217\01217-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01217\01217-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01218\01218-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01218\01218-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01219\01219-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01219\01219-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01220\01220-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01220\01220-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01221\01221-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01221\01221-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01222\01222-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01222\01222-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01223\01223-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01223\01223-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01224\01224-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01224\01224-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01225\01225-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01225\01225-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01226\01226-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01226\01226-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01227\01227-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01227\01227-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01228\01228-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01228\01228-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01229\01229-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01229\01229-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01230\01230-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01230\01230-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01231\01231-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01231\01231-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01232\01232-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01232\01232-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01233\01233-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01233\01233-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01234\01234-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01234\01234-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01235\01235-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01235\01235-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01236\01236-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01236\01236-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01237\01237-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01237\01237-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01238\01238-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01238\01238-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01239\01239-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01239\01239-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01240\01240-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01240\01240-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01241\01241-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01241\01241-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01242\01242-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01242\01242-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01243\01243-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01243\01243-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01244\01244-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01244\01244-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01245\01245-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01245\01245-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01246\01246-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01246\01246-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01247\01247-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01247\01247-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01248\01248-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01248\01248-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01249\01249-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01249\01249-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01250\01250-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01250\01250-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01251\01251-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01251\01251-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01252\01252-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01252\01252-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01253\01253-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01253\01253-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01254\01254-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01254\01254-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01255\01255-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01255\01255-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01256\01256-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01256\01256-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01257\01257-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01257\01257-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01258\01258-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01258\01258-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01259\01259-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01259\01259-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01260\01260-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01260\01260-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01261\01261-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01261\01261-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01262\01262-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01262\01262-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01263\01263-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01263\01263-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01264\01264-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01264\01264-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01265\01265-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01265\01265-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01266\01266-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01266\01266-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01267\01267-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01267\01267-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01268\01268-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01268\01268-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01269\01269-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01269\01269-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01270\01270-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01270\01270-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01271\01271-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01271\01271-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01272\01272-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01272\01272-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01273\01273-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01273\01273-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01274\01274-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01274\01274-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01275\01275-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01275\01275-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01276\01276-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01276\01276-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01277\01277-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01277\01277-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01278\01278-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01278\01278-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01279\01279-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01279\01279-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01280\01280-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01280\01280-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01281\01281-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01281\01281-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01282\01282-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01282\01282-sbml-l3v2.xml)|pass|FAIL|pass|
reset```reset```
|True| -|[01283\01283-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01283\01283-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01284\01284-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01284\01284-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01285\01285-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01285\01285-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01286\01286-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01286\01286-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01287\01287-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01287\01287-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01288\01288-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01288\01288-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01289\01289-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01289\01289-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01290\01290-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01290\01290-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01291\01291-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01291\01291-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01292\01292-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01292\01292-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = p1 - true' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01293\01293-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01293\01293-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01294\01294-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01294\01294-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01295\01295-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01295\01295-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01296\01296-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01296\01296-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01297\01297-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01297\01297-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01298\01298-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01298\01298-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01299\01299-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01299\01299-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01300\01300-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01300\01300-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01301\01301-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01301\01301-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01302\01302-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01302\01302-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01303\01303-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01303\01303-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01304\01304-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01304\01304-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01305\01305-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01305\01305-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01306\01306-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01306\01306-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01307\01307-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01307\01307-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01308\01308-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01308\01308-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01309\01309-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01309\01309-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01310\01310-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01310\01310-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01311\01311-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01311\01311-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01312\01312-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01312\01312-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01313\01313-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01313\01313-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01314\01314-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01314\01314-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01315\01315-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01315\01315-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01316\01316-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01316\01316-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01317\01317-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01317\01317-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01318\01318-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01318\01318-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(p2, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01319\01319-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01319\01319-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(p2, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01320\01320-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01320\01320-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01321\01321-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01321\01321-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01322\01322-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01322\01322-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01323\01323-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01323\01323-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01324\01324-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01324\01324-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01325\01325-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01325\01325-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01326\01326-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01326\01326-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01327\01327-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01327\01327-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01328\01328-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01328\01328-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01329\01329-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01329\01329-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01330\01330-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01330\01330-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01331\01331-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01331\01331-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01332\01332-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01332\01332-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01333\01333-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01333\01333-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01334\01334-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01334\01334-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01335\01335-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01335\01335-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01336\01336-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01336\01336-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01337\01337-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01337\01337-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01338\01338-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01338\01338-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01339\01339-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01339\01339-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01340\01340-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01340\01340-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01341\01341-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01341\01341-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01342\01342-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01342\01342-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01343\01343-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01343\01343-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01344\01344-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01344\01344-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01345\01345-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01345\01345-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01346\01346-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01346\01346-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01347\01347-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01347\01347-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01348\01348-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01348\01348-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01349\01349-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01349\01349-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01350\01350-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01350\01350-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = A__x - J1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01351\01351-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01351\01351-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01352\01352-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01352\01352-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01353\01353-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01353\01353-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01354\01354-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01354\01354-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01355\01355-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01355\01355-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01356\01356-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01356\01356-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01357\01357-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01357\01357-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01358\01358-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01358\01358-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01359\01359-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01359\01359-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = A__x - J1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01360\01360-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01360\01360-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01361\01361-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01361\01361-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01362\01362-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01362\01362-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01363\01363-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01363\01363-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01364\01364-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01364\01364-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01365\01365-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01365\01365-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01366\01366-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01366\01366-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01367\01367-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01367\01367-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01368\01368-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01368\01368-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = A__x - J1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01369\01369-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01369\01369-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01370\01370-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01370\01370-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01371\01371-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01371\01371-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01372\01372-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01372\01372-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01373\01373-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01373\01373-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01374\01374-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01374\01374-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01375\01375-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01375\01375-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01376\01376-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01376\01376-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01377\01377-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01377\01377-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = A__x - J1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01378\01378-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01378\01378-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01379\01379-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01379\01379-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01380\01380-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01380\01380-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01381\01381-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01381\01381-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01382\01382-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01382\01382-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01383\01383-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01383\01383-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01384\01384-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01384\01384-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01385\01385-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01385\01385-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01386\01386-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01386\01386-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = A__x - J1_sr' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01387\01387-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01387\01387-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01388\01388-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01388\01388-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01389\01389-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01389\01389-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01390\01390-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01390\01390-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01391\01391-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01391\01391-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01392\01392-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01392\01392-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01393\01393-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01393\01393-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01394\01394-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01394\01394-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01395\01395-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01395\01395-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01396\01396-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01396\01396-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01397\01397-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01397\01397-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01398\01398-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01398\01398-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01399\01399-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01399\01399-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01400\01400-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01400\01400-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(rateOf(S1), 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01401\01401-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01401\01401-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(rateOf(S1), 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01402\01402-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01402\01402-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01403\01403-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01403\01403-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(rateOf(S1), 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01404\01404-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01404\01404-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01405\01405-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01405\01405-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01406\01406-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01406\01406-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(rateOf(S1), 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01407\01407-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01407\01407-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01408\01408-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01408\01408-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01409\01409-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01409\01409-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(rateOf(S1), 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01410\01410-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01410\01410-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01411\01411-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01411\01411-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(addtwo(S1, S2), 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01412\01412-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01412\01412-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(addtwo(S1, S2), 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01413\01413-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01413\01413-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(S1, addtwo(0.5, 0.5))' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01414\01414-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01414\01414-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(P1, k)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01415\01415-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01415\01415-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(P1, k)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01416\01416-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01416\01416-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01417\01417-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01417\01417-sbml-l3v2.xml)|pass|FAIL|pass|
delay```Unable to support delay differential equations. The function 'delay(S1, S1_stoich)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01418\01418-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01418\01418-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(S1_stoich, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01419\01419-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01419\01419-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(S1_stoich, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01420\01420-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01420\01420-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01421\01421-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01421\01421-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01422\01422-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01422\01422-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01423\01423-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01423\01423-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01424\01424-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01424\01424-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01425\01425-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01425\01425-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01426\01426-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01426\01426-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01427\01427-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01427\01427-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01428\01428-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01428\01428-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01429\01429-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01429\01429-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01430\01430-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01430\01430-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01431\01431-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01431\01431-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01432\01432-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01432\01432-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01433\01433-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01433\01433-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01434\01434-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01434\01434-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01435\01435-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01435\01435-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01436\01436-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01436\01436-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01437\01437-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01437\01437-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01438\01438-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01438\01438-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01439\01439-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01439\01439-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01440\01440-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01440\01440-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01441\01441-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01441\01441-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01442\01442-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01442\01442-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01443\01443-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01443\01443-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01444\01444-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01444\01444-sbml-l3v2.xml)|pass|pass|pass|
stochiometry```Mutable stochiometry for species which appear multiple times in a single reaction is not currently supported, species reference id: A1_sr, at ?storeSymbolValue@ModelDataStoreSymbolResolver@rrllvm@@UEAAPEAVValue@llvm@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEAV34@@Z```
|True| -|[01445\01445-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01445\01445-sbml-l3v2.xml)|pass|pass|pass|
stochiometry```Mutable stochiometry for species which appear multiple times in a single reaction is not currently supported, species reference id: A1_sr, at ?storeSymbolValue@ModelDataStoreSymbolResolver@rrllvm@@UEAAPEAVValue@llvm@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEAV34@@Z```
|True| -|[01446\01446-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01446\01446-sbml-l3v2.xml)|pass|pass|pass|
stochiometry```Mutable stochiometry for species which appear multiple times in a single reaction is not currently supported, species reference id: A1_sr, at ?storeSymbolValue@ModelDataStoreSymbolResolver@rrllvm@@UEAAPEAVValue@llvm@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEAV34@@Z```
|True| -|[01447\01447-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01447\01447-sbml-l3v2.xml)|pass|pass|pass|
stochiometry```Mutable stochiometry for species which appear multiple times in a single reaction is not currently supported, species reference id: A_sr1, at ?storeSymbolValue@ModelDataStoreSymbolResolver@rrllvm@@UEAAPEAVValue@llvm@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEAV34@@Z```
|True| -|[01448\01448-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01448\01448-sbml-l3v2.xml)|pass|pass|pass|
stochiometry```Mutable stochiometry for species which appear multiple times in a single reaction is not currently supported, species reference id: A_sr1, at ?storeSymbolValue@ModelDataStoreSymbolResolver@rrllvm@@UEAAPEAVValue@llvm@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEAV34@@Z```
|True| -|[01449\01449-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01449\01449-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01450\01450-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01450\01450-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01451\01451-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01451\01451-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01452\01452-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01452\01452-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01453\01453-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01453\01453-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01454\01454-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01454\01454-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(S1, 0.1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01455\01455-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01455\01455-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01456\01456-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01456\01456-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01457\01457-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01457\01457-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01458\01458-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01458\01458-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01459\01459-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01459\01459-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01460\01460-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01460\01460-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01461\01461-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01461\01461-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01462\01462-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01462\01462-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01463\01463-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01463\01463-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01464\01464-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01464\01464-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01465\01465-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01465\01465-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01466\01466-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01466\01466-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01467\01467-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01467\01467-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01468\01468-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01468\01468-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01469\01469-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01469\01469-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01470\01470-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01470\01470-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01471\01471-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01471\01471-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01472\01472-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01472\01472-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01473\01473-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01473\01473-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01474\01474-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01474\01474-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01475\01475-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01475\01475-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01476\01476-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01476\01476-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01477\01477-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01477\01477-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01478\01478-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01478\01478-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01479\01479-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01479\01479-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = avogadro / 1e23 - P1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01480\01480-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01480\01480-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01481\01481-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01481\01481-sbml-l2v5.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01482\01482-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01482\01482-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = rateOf(S1) - P1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01483\01483-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01483\01483-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = rateOf(S1) - P1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01484\01484-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01484\01484-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = P1 - S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01485\01485-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01485\01485-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01486\01486-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01486\01486-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01487\01487-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01487\01487-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01488\01488-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01488\01488-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01489\01489-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01489\01489-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01490\01490-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01490\01490-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01491\01491-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01491\01491-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01492\01492-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01492\01492-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01493\01493-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01493\01493-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01494\01494-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01494\01494-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01495\01495-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01495\01495-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01496\01496-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01496\01496-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01497\01497-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01497\01497-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01498\01498-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01498\01498-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01499\01499-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01499\01499-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = P0 - S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01500\01500-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01500\01500-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = P0 - S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01501\01501-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01501\01501-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = P0 - S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01502\01502-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01502\01502-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = P2 - abs(-1)' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01503\01503-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01503\01503-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = P1 - plus()' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01504\01504-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01504\01504-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01505\01505-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01505\01505-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01506\01506-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01506\01506-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01507\01507-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01507\01507-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01508\01508-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01508\01508-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01509\01509-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01509\01509-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01510\01510-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01510\01510-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01511\01511-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01511\01511-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01512\01512-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01512\01512-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01513\01513-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01513\01513-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01514\01514-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01514\01514-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01515\01515-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01515\01515-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01516\01516-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01516\01516-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01517\01517-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01517\01517-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01518\01518-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01518\01518-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(P1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01519\01519-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01519\01519-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(P1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01520\01520-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01520\01520-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(P1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01521\01521-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01521\01521-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(P1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01522\01522-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01522\01522-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(P1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01523\01523-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01523\01523-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(P1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01524\01524-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01524\01524-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(P1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01525\01525-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01525\01525-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01526\01526-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01526\01526-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01527\01527-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01527\01527-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01528\01528-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01528\01528-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01529\01529-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01529\01529-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01530\01530-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01530\01530-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01531\01531-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01531\01531-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01532\01532-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01532\01532-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01533\01533-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01533\01533-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01534\01534-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01534\01534-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01535\01535-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01535\01535-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01536\01536-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01536\01536-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(P1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01537\01537-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01537\01537-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01538\01538-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01538\01538-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01539\01539-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01539\01539-sbml-l3v1.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(S1, 1.5)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01540\01540-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01540\01540-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01541\01541-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01541\01541-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01542\01542-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01542\01542-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01543\01543-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01543\01543-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01544\01544-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01544\01544-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01545\01545-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01545\01545-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01546\01546-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01546\01546-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01547\01547-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01547\01547-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01548\01548-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01548\01548-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01549\01549-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01549\01549-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01550\01550-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01550\01550-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01551\01551-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01551\01551-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01552\01552-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01552\01552-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01553\01553-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01553\01553-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01554\01554-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01554\01554-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01555\01555-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01555\01555-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01556\01556-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01556\01556-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01557\01557-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01557\01557-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01558\01558-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01558\01558-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01559\01559-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01559\01559-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01560\01560-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01560\01560-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01561\01561-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01561\01561-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01562\01562-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01562\01562-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01563\01563-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01563\01563-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01564\01564-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01564\01564-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01565\01565-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01565\01565-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01566\01566-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01566\01566-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01567\01567-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01567\01567-sbml-l3v1.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = k + 3' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01568\01568-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01568\01568-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01569\01569-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01569\01569-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01570\01570-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01570\01570-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01571\01571-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01571\01571-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01572\01572-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01572\01572-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01573\01573-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01573\01573-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01574\01574-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01574\01574-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01575\01575-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01575\01575-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = k1 - k2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01576\01576-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01576\01576-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = k1 - k2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01577\01577-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01577\01577-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = 10 - k1 - k2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01578\01578-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01578\01578-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = 10 - k1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01579\01579-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01579\01579-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = k1 - k2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01580\01580-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01580\01580-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01581\01581-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01581\01581-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01582\01582-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01582\01582-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01583\01583-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01583\01583-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01584\01584-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01584\01584-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01585\01585-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01585\01585-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01586\01586-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01586\01586-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01587\01587-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01587\01587-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01588\01588-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01588\01588-sbml-l3v2.xml)|pass|pass|pass|
float```'float' object is not callable```
|True| -|[01589\01589-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01589\01589-sbml-l3v2.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = Q + R - S' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01590\01590-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01590\01590-sbml-l3v2.xml)|pass|pass|pass|
float```'float' object is not callable```
|True| -|[01591\01591-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01591\01591-sbml-l3v2.xml)|pass|pass|pass|
float```'float' object is not callable```
|True| -|[01592\01592-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01592\01592-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(reset, 0.005)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01593\01593-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01593\01593-sbml-l3v2.xml)|pass|pass|pass|
delay```Unable to support delay differential equations. The function 'delay(Q, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z```
|True| -|[01594\01594-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01594\01594-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01595\01595-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01595\01595-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01596\01596-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01596\01596-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01597\01597-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01597\01597-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01598\01598-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01598\01598-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01599\01599-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01599\01599-sbml-l3v2.xml)|pass|pass|pass|
float```'float' object is not callable```
|True| -|[01600\01600-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01600\01600-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01601\01601-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01601\01601-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01602\01602-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01602\01602-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01603\01603-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01603\01603-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01604\01604-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01604\01604-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01605\01605-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01605\01605-sbml-l3v2.xml)|pass|pass|pass|
float```'float' object is not callable```
|True| -|[01606\01606-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01606\01606-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01607\01607-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01607\01607-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01608\01608-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01608\01608-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01609\01609-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01609\01609-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01610\01610-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01610\01610-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01611\01611-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01611\01611-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01612\01612-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01612\01612-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01613\01613-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01613\01613-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01614\01614-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01614\01614-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01615\01615-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01615\01615-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01616\01616-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01616\01616-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01617\01617-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01617\01617-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01618\01618-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01618\01618-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01619\01619-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01619\01619-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01620\01620-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01620\01620-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01621\01621-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01621\01621-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01622\01622-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01622\01622-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01623\01623-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01623\01623-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01624\01624-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01624\01624-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01625\01625-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01625\01625-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01626\01626-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01626\01626-sbml-l3v2.xml)|pass|pass|pass|
stochiometry```Mutable stochiometry for species which appear multiple times in a single reaction is not currently supported, species reference id: Q, at ?loadSymbolValue@ModelDataLoadSymbolResolver@rrllvm@@UEAAPEAVValue@llvm@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEBV?$ArrayRef@PEAVValue@llvm@@@4@@Z```
|True| -|[01627\01627-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01627\01627-sbml-l3v2.xml)|pass|pass|pass|
float```'float' object is not callable```
|True| -|[01628\01628-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01628\01628-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01629\01629-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01629\01629-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01630\01630-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01630\01630-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01631\01631-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01631\01631-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01632\01632-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01632\01632-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01633\01633-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01633\01633-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01634\01634-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01634\01634-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01635\01635-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01635\01635-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01636\01636-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01636\01636-sbml-l2v5.xml)|pass|pass|pass|
SpeciesRef```S1_stoich is not a named SpeciesReference, at ?getNamedSpeciesReferenceInfo@LLVMModelDataSymbols@rrllvm@@QEAAAEBUSpeciesReferenceInfo@12@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z```
|True| -|[01637\01637-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01637\01637-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01638\01638-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01638\01638-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01639\01639-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01639\01639-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01640\01640-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01640\01640-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01641\01641-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01641\01641-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01642\01642-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01642\01642-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01643\01643-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01643\01643-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01644\01644-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01644\01644-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01645\01645-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01645\01645-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01646\01646-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01646\01646-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01647\01647-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01647\01647-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01648\01648-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01648\01648-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01649\01649-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01649\01649-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01650\01650-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01650\01650-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01651\01651-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01651\01651-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01652\01652-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01652\01652-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01653\01653-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01653\01653-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01654\01654-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01654\01654-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01655\01655-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01655\01655-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01656\01656-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01656\01656-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01657\01657-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01657\01657-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01658\01658-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01658\01658-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01659\01659-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01659\01659-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01660\01660-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01660\01660-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01661\01661-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01661\01661-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01662\01662-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01662\01662-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01663\01663-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01663\01663-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01664\01664-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01664\01664-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01665\01665-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01665\01665-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01666\01666-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01666\01666-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01667\01667-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01667\01667-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01668\01668-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01668\01668-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01669\01669-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01669\01669-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01670\01670-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01670\01670-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01671\01671-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01671\01671-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01672\01672-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01672\01672-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01673\01673-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01673\01673-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01674\01674-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01674\01674-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01675\01675-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01675\01675-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01676\01676-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01676\01676-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01677\01677-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01677\01677-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01678\01678-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01678\01678-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01679\01679-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01679\01679-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01680\01680-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01680\01680-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01681\01681-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01681\01681-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01682\01682-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01682\01682-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01683\01683-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01683\01683-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01684\01684-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01684\01684-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01685\01685-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01685\01685-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01686\01686-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01686\01686-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01687\01687-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01687\01687-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01688\01688-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01688\01688-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01689\01689-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01689\01689-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01690\01690-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01690\01690-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01691\01691-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01691\01691-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01692\01692-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01692\01692-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01693\01693-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01693\01693-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01694\01694-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01694\01694-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01695\01695-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01695\01695-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01696\01696-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01696\01696-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01697\01697-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01697\01697-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01698\01698-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01698\01698-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01699\01699-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01699\01699-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01700\01700-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01700\01700-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01701\01701-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01701\01701-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01702\01702-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01702\01702-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01703\01703-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01703\01703-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01704\01704-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01704\01704-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01705\01705-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01705\01705-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01706\01706-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01706\01706-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01707\01707-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01707\01707-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01708\01708-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01708\01708-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01709\01709-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01709\01709-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01710\01710-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01710\01710-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01711\01711-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01711\01711-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01712\01712-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01712\01712-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01713\01713-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01713\01713-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01714\01714-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01714\01714-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01715\01715-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01715\01715-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01716\01716-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01716\01716-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01717\01717-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01717\01717-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01718\01718-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01718\01718-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01719\01719-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01719\01719-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01720\01720-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01720\01720-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01721\01721-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01721\01721-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01722\01722-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01722\01722-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01723\01723-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01723\01723-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01724\01724-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01724\01724-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01725\01725-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01725\01725-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01726\01726-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01726\01726-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01727\01727-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01727\01727-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01728\01728-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01728\01728-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01729\01729-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01729\01729-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01730\01730-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01730\01730-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01731\01731-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01731\01731-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01732\01732-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01732\01732-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01733\01733-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01733\01733-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01734\01734-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01734\01734-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01735\01735-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01735\01735-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01736\01736-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01736\01736-sbml-l3v2.xml)|pass|pass|pass|
SpeciesRef```S4_stoich is not a named SpeciesReference, at ?getNamedSpeciesReferenceInfo@LLVMModelDataSymbols@rrllvm@@QEAAAEBUSpeciesReferenceInfo@12@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z```
|True| -|[01737\01737-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01737\01737-sbml-l3v2.xml)|pass|pass|pass|
SpeciesRef```S4_stoich is not a named SpeciesReference, at ?getNamedSpeciesReferenceInfo@LLVMModelDataSymbols@rrllvm@@QEAAAEBUSpeciesReferenceInfo@12@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z```
|True| -|[01738\01738-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01738\01738-sbml-l3v2.xml)|pass|pass|pass|
SpeciesRef```S4_stoich is not a named SpeciesReference, at ?getNamedSpeciesReferenceInfo@LLVMModelDataSymbols@rrllvm@@QEAAAEBUSpeciesReferenceInfo@12@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z```
|True| -|[01739\01739-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01739\01739-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01740\01740-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01740\01740-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01741\01741-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01741\01741-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01742\01742-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01742\01742-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01743\01743-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01743\01743-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01744\01744-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01744\01744-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01745\01745-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01745\01745-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01746\01746-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01746\01746-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01747\01747-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01747\01747-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01748\01748-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01748\01748-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01749\01749-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01749\01749-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01750\01750-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01750\01750-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01751\01751-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01751\01751-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01752\01752-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01752\01752-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01753\01753-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01753\01753-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01754\01754-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01754\01754-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01755\01755-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01755\01755-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01756\01756-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01756\01756-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01757\01757-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01757\01757-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01758\01758-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01758\01758-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01759\01759-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01759\01759-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01760\01760-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01760\01760-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01761\01761-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01761\01761-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01762\01762-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01762\01762-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01763\01763-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01763\01763-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01764\01764-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01764\01764-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01765\01765-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01765\01765-sbml-l3v1.xml)|pass|pass|pass|
reset```reset```
|True| -|[01766\01766-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01766\01766-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01767\01767-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01767\01767-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01768\01768-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01768\01768-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01769\01769-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01769\01769-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01770\01770-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01770\01770-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01771\01771-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01771\01771-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01772\01772-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01772\01772-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01773\01773-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01773\01773-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01774\01774-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01774\01774-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01775\01775-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01775\01775-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01776\01776-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01776\01776-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01777\01777-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01777\01777-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01778\01778-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01778\01778-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01779\01779-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01779\01779-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01780\01780-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01780\01780-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01781\01781-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01781\01781-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01782\01782-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01782\01782-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01783\01783-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01783\01783-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01784\01784-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01784\01784-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01785\01785-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01785\01785-sbml-l2v5.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = C2 - C1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01786\01786-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01786\01786-sbml-l2v5.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = C2 - C1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01787\01787-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01787\01787-sbml-l2v5.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = S2 - S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01788\01788-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01788\01788-sbml-l2v5.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = S2 - S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01789\01789-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01789\01789-sbml-l2v5.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = P2 - P1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01790\01790-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01790\01790-sbml-l2v5.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = P2 - P1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01791\01791-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01791\01791-sbml-l2v5.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = P2 - C1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01792\01792-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01792\01792-sbml-l2v5.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = P2 - C1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01793\01793-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01793\01793-sbml-l2v5.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = 1 * C1 - S2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01794\01794-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01794\01794-sbml-l2v5.xml)|pass|pass|pass|
algebraic```Unable to support algebraic rules. The formula '0 = P1 - S2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z```
|True| -|[01795\01795-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01795\01795-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01796\01796-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01796\01796-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01797\01797-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01797\01797-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01798\01798-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01798\01798-sbml-l2v5.xml)|pass|pass|pass|
reset```reset```
|True| -|[01799\01799-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01799\01799-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01800\01800-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01800\01800-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01801\01801-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01801\01801-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01802\01802-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01802\01802-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01803\01803-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01803\01803-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01804\01804-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01804\01804-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01805\01805-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01805\01805-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01806\01806-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01806\01806-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01807\01807-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01807\01807-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01808\01808-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01808\01808-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01809\01809-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01809\01809-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01810\01810-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01810\01810-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01811\01811-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01811\01811-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01812\01812-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01812\01812-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01813\01813-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01813\01813-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01814\01814-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01814\01814-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01815\01815-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01815\01815-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01816\01816-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01816\01816-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01817\01817-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01817\01817-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01818\01818-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01818\01818-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01819\01819-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01819\01819-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01820\01820-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01820\01820-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| -|[01821\01821-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01821\01821-sbml-l3v2.xml)|pass|pass|pass|
reset```reset```
|True| +SBML Test Suite validation and simulation results using Tellurium installed natively and Tellurium and COPASI run remotely through BioSimulators. +|case|valid-sbml|valid-sbml-units|valid-sedml|tellurium|xmlns-sbml-missing|tellurium-remote|copasi-remote| +|---|---|---|---|---|---|---|---| +|n=1821|n_fail=1|n_fail=5|n_fail=0|
pass=1576 FAIL=245n_algebraic=124 n_delay=51 n_
skippedCase is skipped because it leads to a float error when trying to run it in tellurium natively, which leads to reset errors in subsequent cases that would otherwise pass.
=14 n_other=46 n_stochiometry=6 n_SpeciesRef=4
|n=1821|pass=1543|pass=1688| +|[00001-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00001-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d1a813e750b90a426019d/download)
[Logs](https://api.biosimulations.org/logs/677d1a813e750b90a426019d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1a813e750b90a426019d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d1a7ef8016f90e7cb63cd/download)
[Logs](https://api.biosimulations.org/logs/677d1a7ef8016f90e7cb63cd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1a7ef8016f90e7cb63cd)

HTTP response: 201| +|[00002-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00002-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d1a8567468f9f3fc57e1b/download)
[Logs](https://api.biosimulations.org/logs/677d1a8567468f9f3fc57e1b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1a8567468f9f3fc57e1b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d1a83f8016f90e7cb63d1/download)
[Logs](https://api.biosimulations.org/logs/677d1a83f8016f90e7cb63d1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1a83f8016f90e7cb63d1)

HTTP response: 201| +|[00003-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00003-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d1a8b3e750b90a42601a5/download)
[Logs](https://api.biosimulations.org/logs/677d1a8b3e750b90a42601a5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1a8b3e750b90a42601a5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d1a893e750b90a42601a1/download)
[Logs](https://api.biosimulations.org/logs/677d1a893e750b90a42601a1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1a893e750b90a42601a1)

HTTP response: 201| +|[00004-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00004-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d1a9067468f9f3fc57e2a/download)
[Logs](https://api.biosimulations.org/logs/677d1a9067468f9f3fc57e2a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1a9067468f9f3fc57e2a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d1a8e67468f9f3fc57e25/download)
[Logs](https://api.biosimulations.org/logs/677d1a8e67468f9f3fc57e25?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1a8e67468f9f3fc57e25)

HTTP response: 201| +|[00005-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00005-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d1a9467468f9f3fc57e36/download)
[Logs](https://api.biosimulations.org/logs/677d1a9467468f9f3fc57e36?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1a9467468f9f3fc57e36)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d1a9267468f9f3fc57e2d/download)
[Logs](https://api.biosimulations.org/logs/677d1a9267468f9f3fc57e2d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1a9267468f9f3fc57e2d)

HTTP response: 201| +|[00006-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00006-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d1d943e750b90a4260225/download)
[Logs](https://api.biosimulations.org/logs/677d1d943e750b90a4260225?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1d943e750b90a4260225)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d1d923e750b90a4260222/download)
[Logs](https://api.biosimulations.org/logs/677d1d923e750b90a4260222?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1d923e750b90a4260222)

HTTP response: 201| +|[00007-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00007-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d1db03e750b90a426023f/download)
[Logs](https://api.biosimulations.org/logs/677d1db03e750b90a426023f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1db03e750b90a426023f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d1dae67468f9f3fc57ed8/download)
[Logs](https://api.biosimulations.org/logs/677d1dae67468f9f3fc57ed8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1dae67468f9f3fc57ed8)

HTTP response: 201| +|[00008-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00008-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d1db467468f9f3fc57edc/download)
[Logs](https://api.biosimulations.org/logs/677d1db467468f9f3fc57edc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1db467468f9f3fc57edc)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d1db33e750b90a4260243/download)
[Logs](https://api.biosimulations.org/logs/677d1db33e750b90a4260243?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1db33e750b90a4260243)

HTTP response: 201| +|[00009-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00009-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d1dba67468f9f3fc57ee2/download)
[Logs](https://api.biosimulations.org/logs/677d1dba67468f9f3fc57ee2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1dba67468f9f3fc57ee2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d1db73e750b90a4260246/download)
[Logs](https://api.biosimulations.org/logs/677d1db73e750b90a4260246?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1db73e750b90a4260246)

HTTP response: 201| +|[00010-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00010-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d1dbef8016f90e7cb64a0/download)
[Logs](https://api.biosimulations.org/logs/677d1dbef8016f90e7cb64a0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1dbef8016f90e7cb64a0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d1dbc67468f9f3fc57ee7/download)
[Logs](https://api.biosimulations.org/logs/677d1dbc67468f9f3fc57ee7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1dbc67468f9f3fc57ee7)

HTTP response: 201| +|[00011-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00011-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d1dc267468f9f3fc57ef7/download)
[Logs](https://api.biosimulations.org/logs/677d1dc267468f9f3fc57ef7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1dc267468f9f3fc57ef7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d1dc0f8016f90e7cb64a5/download)
[Logs](https://api.biosimulations.org/logs/677d1dc0f8016f90e7cb64a5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1dc0f8016f90e7cb64a5)

HTTP response: 201| +|[00012-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00012-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d1dc667468f9f3fc57f0a/download)
[Logs](https://api.biosimulations.org/logs/677d1dc667468f9f3fc57f0a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1dc667468f9f3fc57f0a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d1dc43e750b90a426025a/download)
[Logs](https://api.biosimulations.org/logs/677d1dc43e750b90a426025a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1dc43e750b90a426025a)

HTTP response: 201| +|[00013-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00013-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d1dca67468f9f3fc57f15/download)
[Logs](https://api.biosimulations.org/logs/677d1dca67468f9f3fc57f15?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1dca67468f9f3fc57f15)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d1dc83e750b90a4260279/download)
[Logs](https://api.biosimulations.org/logs/677d1dc83e750b90a4260279?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1dc83e750b90a4260279)

HTTP response: 201| +|[00014-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00014-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d1dce67468f9f3fc57f2b/download)
[Logs](https://api.biosimulations.org/logs/677d1dce67468f9f3fc57f2b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1dce67468f9f3fc57f2b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d1dccf8016f90e7cb64dc/download)
[Logs](https://api.biosimulations.org/logs/677d1dccf8016f90e7cb64dc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1dccf8016f90e7cb64dc)

HTTP response: 201| +|[00015-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00015-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d1de3f8016f90e7cb6543/download)
[Logs](https://api.biosimulations.org/logs/677d1de3f8016f90e7cb6543?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1de3f8016f90e7cb6543)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d1dd13e750b90a42602a4/download)
[Logs](https://api.biosimulations.org/logs/677d1dd13e750b90a42602a4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1dd13e750b90a42602a4)

HTTP response: 201| +|[00016-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00016-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d1de8f8016f90e7cb654a/download)
[Logs](https://api.biosimulations.org/logs/677d1de8f8016f90e7cb654a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1de8f8016f90e7cb654a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d1de667468f9f3fc57f76/download)
[Logs](https://api.biosimulations.org/logs/677d1de667468f9f3fc57f76?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1de667468f9f3fc57f76)

HTTP response: 201| +|[00017-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00017-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d1dec67468f9f3fc57f7d/download)
[Logs](https://api.biosimulations.org/logs/677d1dec67468f9f3fc57f7d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1dec67468f9f3fc57f7d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d1dea67468f9f3fc57f7a/download)
[Logs](https://api.biosimulations.org/logs/677d1dea67468f9f3fc57f7a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1dea67468f9f3fc57f7a)

HTTP response: 201| +|[00018-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00018-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d1df767468f9f3fc57f8a/download)
[Logs](https://api.biosimulations.org/logs/677d1df767468f9f3fc57f8a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1df767468f9f3fc57f8a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d1deff8016f90e7cb6550/download)
[Logs](https://api.biosimulations.org/logs/677d1deff8016f90e7cb6550?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1deff8016f90e7cb6550)

HTTP response: 201| +|[00019-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00019-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d1dff3e750b90a4260321/download)
[Logs](https://api.biosimulations.org/logs/677d1dff3e750b90a4260321?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1dff3e750b90a4260321)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d1dfc67468f9f3fc57fa7/download)
[Logs](https://api.biosimulations.org/logs/677d1dfc67468f9f3fc57fa7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d1dfc67468f9f3fc57fa7)

HTTP response: 201| +|[00020-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00020-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677e71cef8016f90e7cc0698/download)
[Logs](https://api.biosimulations.org/logs/677e71cef8016f90e7cc0698?includeOutput=true)
[View](https://api.biosimulations.org/runs/677e71cef8016f90e7cc0698)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677e71cc3e750b90a426a299/download)
[Logs](https://api.biosimulations.org/logs/677e71cc3e750b90a426a299?includeOutput=true)
[View](https://api.biosimulations.org/runs/677e71cc3e750b90a426a299)

HTTP response: 201| +|[00021-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00021-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3062f8016f90e7cb660b/download)
[Logs](https://api.biosimulations.org/logs/677d3062f8016f90e7cb660b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3062f8016f90e7cb660b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3058f8016f90e7cb6607/download)
[Logs](https://api.biosimulations.org/logs/677d3058f8016f90e7cb6607?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3058f8016f90e7cb6607)

HTTP response: 201| +|[00022-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00022-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d306c67468f9f3fc5803b/download)
[Logs](https://api.biosimulations.org/logs/677d306c67468f9f3fc5803b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d306c67468f9f3fc5803b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d306767468f9f3fc58028/download)
[Logs](https://api.biosimulations.org/logs/677d306767468f9f3fc58028?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d306767468f9f3fc58028)

HTTP response: 201| +|[00023-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00023-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d30743e750b90a42603d0/download)
[Logs](https://api.biosimulations.org/logs/677d30743e750b90a42603d0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30743e750b90a42603d0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3070f8016f90e7cb6625/download)
[Logs](https://api.biosimulations.org/logs/677d3070f8016f90e7cb6625?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3070f8016f90e7cb6625)

HTTP response: 201| +|[00024-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00024-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d307c67468f9f3fc5804e/download)
[Logs](https://api.biosimulations.org/logs/677d307c67468f9f3fc5804e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d307c67468f9f3fc5804e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3078f8016f90e7cb662d/download)
[Logs](https://api.biosimulations.org/logs/677d3078f8016f90e7cb662d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3078f8016f90e7cb662d)

HTTP response: 201| +|[00025-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00025-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3083f8016f90e7cb6644/download)
[Logs](https://api.biosimulations.org/logs/677d3083f8016f90e7cb6644?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3083f8016f90e7cb6644)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d307ff8016f90e7cb663f/download)
[Logs](https://api.biosimulations.org/logs/677d307ff8016f90e7cb663f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d307ff8016f90e7cb663f)

HTTP response: 201| +|[00026-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00026-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d308af8016f90e7cb665a/download)
[Logs](https://api.biosimulations.org/logs/677d308af8016f90e7cb665a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d308af8016f90e7cb665a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d30873e750b90a4260404/download)
[Logs](https://api.biosimulations.org/logs/677d30873e750b90a4260404?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30873e750b90a4260404)

HTTP response: 201| +|[00027-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00027-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d309267468f9f3fc5808b/download)
[Logs](https://api.biosimulations.org/logs/677d309267468f9f3fc5808b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d309267468f9f3fc5808b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d308ef8016f90e7cb6669/download)
[Logs](https://api.biosimulations.org/logs/677d308ef8016f90e7cb6669?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d308ef8016f90e7cb6669)

HTTP response: 201| +|[00028-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00028-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d309967468f9f3fc5809f/download)
[Logs](https://api.biosimulations.org/logs/677d309967468f9f3fc5809f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d309967468f9f3fc5809f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d30963e750b90a4260424/download)
[Logs](https://api.biosimulations.org/logs/677d30963e750b90a4260424?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30963e750b90a4260424)

HTTP response: 201| +|[00029-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00029-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d30a167468f9f3fc580b5/download)
[Logs](https://api.biosimulations.org/logs/677d30a167468f9f3fc580b5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30a167468f9f3fc580b5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d309d3e750b90a426044d/download)
[Logs](https://api.biosimulations.org/logs/677d309d3e750b90a426044d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d309d3e750b90a426044d)

HTTP response: 201| +|[00030-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00030-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d30a867468f9f3fc580c5/download)
[Logs](https://api.biosimulations.org/logs/677d30a867468f9f3fc580c5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30a867468f9f3fc580c5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d30a53e750b90a4260465/download)
[Logs](https://api.biosimulations.org/logs/677d30a53e750b90a4260465?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30a53e750b90a4260465)

HTTP response: 201| +|[00031-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00031-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d30aef8016f90e7cb66c2/download)
[Logs](https://api.biosimulations.org/logs/677d30aef8016f90e7cb66c2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30aef8016f90e7cb66c2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d30abf8016f90e7cb66b4/download)
[Logs](https://api.biosimulations.org/logs/677d30abf8016f90e7cb66b4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30abf8016f90e7cb66b4)

HTTP response: 201| +|[00032-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00032-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d30b53e750b90a4260488/download)
[Logs](https://api.biosimulations.org/logs/677d30b53e750b90a4260488?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30b53e750b90a4260488)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d30b23e750b90a4260484/download)
[Logs](https://api.biosimulations.org/logs/677d30b23e750b90a4260484?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30b23e750b90a4260484)

HTTP response: 201| +|[00033-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00033-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d30bc3e750b90a42604a1/download)
[Logs](https://api.biosimulations.org/logs/677d30bc3e750b90a42604a1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30bc3e750b90a42604a1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d30b93e750b90a4260490/download)
[Logs](https://api.biosimulations.org/logs/677d30b93e750b90a4260490?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30b93e750b90a4260490)

HTTP response: 201| +|[00034-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00034-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d30c2f8016f90e7cb6708/download)
[Logs](https://api.biosimulations.org/logs/677d30c2f8016f90e7cb6708?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30c2f8016f90e7cb6708)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d30bf3e750b90a42604ae/download)
[Logs](https://api.biosimulations.org/logs/677d30bf3e750b90a42604ae?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30bf3e750b90a42604ae)

HTTP response: 201| +|[00035-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00035-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d30c93e750b90a42604cb/download)
[Logs](https://api.biosimulations.org/logs/677d30c93e750b90a42604cb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30c93e750b90a42604cb)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d30c53e750b90a42604bf/download)
[Logs](https://api.biosimulations.org/logs/677d30c53e750b90a42604bf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30c53e750b90a42604bf)

HTTP response: 201| +|[00036-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00036-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d30d067468f9f3fc58140/download)
[Logs](https://api.biosimulations.org/logs/677d30d067468f9f3fc58140?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30d067468f9f3fc58140)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d30cdf8016f90e7cb672f/download)
[Logs](https://api.biosimulations.org/logs/677d30cdf8016f90e7cb672f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30cdf8016f90e7cb672f)

HTTP response: 201| +|[00037-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00037-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d30d7f8016f90e7cb6742/download)
[Logs](https://api.biosimulations.org/logs/677d30d7f8016f90e7cb6742?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30d7f8016f90e7cb6742)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d30d33e750b90a42604f8/download)
[Logs](https://api.biosimulations.org/logs/677d30d33e750b90a42604f8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30d33e750b90a42604f8)

HTTP response: 201| +|[00038-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00038-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d30dd67468f9f3fc5816a/download)
[Logs](https://api.biosimulations.org/logs/677d30dd67468f9f3fc5816a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30dd67468f9f3fc5816a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d30daf8016f90e7cb674b/download)
[Logs](https://api.biosimulations.org/logs/677d30daf8016f90e7cb674b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30daf8016f90e7cb674b)

HTTP response: 201| +|[00039-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00039-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = -1 * k1 + S1 + S2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d30e4f8016f90e7cb6778/download)
[Logs](https://api.biosimulations.org/logs/677d30e4f8016f90e7cb6778?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30e4f8016f90e7cb6778)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d30e1f8016f90e7cb676a/download)
[Logs](https://api.biosimulations.org/logs/677d30e1f8016f90e7cb676a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30e1f8016f90e7cb676a)

HTTP response: 201| +|[00040-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00040-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = -1 * k2 + S1 + S2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d30ebf8016f90e7cb6791/download)
[Logs](https://api.biosimulations.org/logs/677d30ebf8016f90e7cb6791?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30ebf8016f90e7cb6791)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d30e83e750b90a4260533/download)
[Logs](https://api.biosimulations.org/logs/677d30e83e750b90a4260533?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30e83e750b90a4260533)

HTTP response: 201| +|[00041-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00041-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d30f2f8016f90e7cb67aa/download)
[Logs](https://api.biosimulations.org/logs/677d30f2f8016f90e7cb67aa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30f2f8016f90e7cb67aa)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d30ef67468f9f3fc5819c/download)
[Logs](https://api.biosimulations.org/logs/677d30ef67468f9f3fc5819c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30ef67468f9f3fc5819c)

HTTP response: 201| +|[00042-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00042-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d30faf8016f90e7cb67bd/download)
[Logs](https://api.biosimulations.org/logs/677d30faf8016f90e7cb67bd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30faf8016f90e7cb67bd)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d30f6f8016f90e7cb67b5/download)
[Logs](https://api.biosimulations.org/logs/677d30f6f8016f90e7cb67b5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30f6f8016f90e7cb67b5)

HTTP response: 201| +|[00043-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00043-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d310067468f9f3fc581d0/download)
[Logs](https://api.biosimulations.org/logs/677d310067468f9f3fc581d0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d310067468f9f3fc581d0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d30fdf8016f90e7cb67c5/download)
[Logs](https://api.biosimulations.org/logs/677d30fdf8016f90e7cb67c5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d30fdf8016f90e7cb67c5)

HTTP response: 201| +|[00044-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00044-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3109f8016f90e7cb67de/download)
[Logs](https://api.biosimulations.org/logs/677d3109f8016f90e7cb67de?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3109f8016f90e7cb67de)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3105f8016f90e7cb67db/download)
[Logs](https://api.biosimulations.org/logs/677d3105f8016f90e7cb67db?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3105f8016f90e7cb67db)

HTTP response: 201| +|[00045-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00045-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d310f67468f9f3fc581fb/download)
[Logs](https://api.biosimulations.org/logs/677d310f67468f9f3fc581fb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d310f67468f9f3fc581fb)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d310cf8016f90e7cb67f4/download)
[Logs](https://api.biosimulations.org/logs/677d310cf8016f90e7cb67f4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d310cf8016f90e7cb67f4)

HTTP response: 201| +|[00046-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00046-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3117f8016f90e7cb6807/download)
[Logs](https://api.biosimulations.org/logs/677d3117f8016f90e7cb6807?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3117f8016f90e7cb6807)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3114f8016f90e7cb6802/download)
[Logs](https://api.biosimulations.org/logs/677d3114f8016f90e7cb6802?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3114f8016f90e7cb6802)

HTTP response: 201| +|[00047-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00047-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d311e67468f9f3fc5822b/download)
[Logs](https://api.biosimulations.org/logs/677d311e67468f9f3fc5822b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d311e67468f9f3fc5822b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d311bf8016f90e7cb6812/download)
[Logs](https://api.biosimulations.org/logs/677d311bf8016f90e7cb6812?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d311bf8016f90e7cb6812)

HTTP response: 201| +|[00048-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00048-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3124f8016f90e7cb6829/download)
[Logs](https://api.biosimulations.org/logs/677d3124f8016f90e7cb6829?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3124f8016f90e7cb6829)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3122f8016f90e7cb6823/download)
[Logs](https://api.biosimulations.org/logs/677d3122f8016f90e7cb6823?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3122f8016f90e7cb6823)

HTTP response: 201| +|[00049-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00049-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d312b67468f9f3fc58249/download)
[Logs](https://api.biosimulations.org/logs/677d312b67468f9f3fc58249?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d312b67468f9f3fc58249)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3128f8016f90e7cb6839/download)
[Logs](https://api.biosimulations.org/logs/677d3128f8016f90e7cb6839?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3128f8016f90e7cb6839)

HTTP response: 201| +|[00050-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00050-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d31313e750b90a426062d/download)
[Logs](https://api.biosimulations.org/logs/677d31313e750b90a426062d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31313e750b90a426062d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d312f3e750b90a426060b/download)
[Logs](https://api.biosimulations.org/logs/677d312f3e750b90a426060b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d312f3e750b90a426060b)

HTTP response: 201| +|[00051-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00051-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d31383e750b90a4260642/download)
[Logs](https://api.biosimulations.org/logs/677d31383e750b90a4260642?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31383e750b90a4260642)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3135f8016f90e7cb6864/download)
[Logs](https://api.biosimulations.org/logs/677d3135f8016f90e7cb6864?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3135f8016f90e7cb6864)

HTTP response: 201| +|[00052-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00052-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d313e67468f9f3fc58281/download)
[Logs](https://api.biosimulations.org/logs/677d313e67468f9f3fc58281?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d313e67468f9f3fc58281)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d313bf8016f90e7cb6870/download)
[Logs](https://api.biosimulations.org/logs/677d313bf8016f90e7cb6870?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d313bf8016f90e7cb6870)

HTTP response: 201| +|[00053-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00053-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3145f8016f90e7cb6895/download)
[Logs](https://api.biosimulations.org/logs/677d3145f8016f90e7cb6895?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3145f8016f90e7cb6895)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3142f8016f90e7cb688d/download)
[Logs](https://api.biosimulations.org/logs/677d3142f8016f90e7cb688d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3142f8016f90e7cb688d)

HTTP response: 201| +|[00054-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00054-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d314b67468f9f3fc582a8/download)
[Logs](https://api.biosimulations.org/logs/677d314b67468f9f3fc582a8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d314b67468f9f3fc582a8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d31483e750b90a4260671/download)
[Logs](https://api.biosimulations.org/logs/677d31483e750b90a4260671?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31483e750b90a4260671)

HTTP response: 201| +|[00055-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00055-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d315267468f9f3fc582b8/download)
[Logs](https://api.biosimulations.org/logs/677d315267468f9f3fc582b8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d315267468f9f3fc582b8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d314f67468f9f3fc582b5/download)
[Logs](https://api.biosimulations.org/logs/677d314f67468f9f3fc582b5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d314f67468f9f3fc582b5)

HTTP response: 201| +|[00056-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00056-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d315967468f9f3fc582cc/download)
[Logs](https://api.biosimulations.org/logs/677d315967468f9f3fc582cc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d315967468f9f3fc582cc)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d31553e750b90a4260695/download)
[Logs](https://api.biosimulations.org/logs/677d31553e750b90a4260695?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31553e750b90a4260695)

HTTP response: 201| +|[00057-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00057-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d316067468f9f3fc582e2/download)
[Logs](https://api.biosimulations.org/logs/677d316067468f9f3fc582e2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d316067468f9f3fc582e2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d315cf8016f90e7cb68e9/download)
[Logs](https://api.biosimulations.org/logs/677d315cf8016f90e7cb68e9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d315cf8016f90e7cb68e9)

HTTP response: 201| +|[00058-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00058-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3167f8016f90e7cb6927/download)
[Logs](https://api.biosimulations.org/logs/677d3167f8016f90e7cb6927?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3167f8016f90e7cb6927)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3164f8016f90e7cb691b/download)
[Logs](https://api.biosimulations.org/logs/677d3164f8016f90e7cb691b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3164f8016f90e7cb691b)

HTTP response: 201| +|[00059-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00059-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d316ef8016f90e7cb6933/download)
[Logs](https://api.biosimulations.org/logs/677d316ef8016f90e7cb6933?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d316ef8016f90e7cb6933)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d316b3e750b90a42606d1/download)
[Logs](https://api.biosimulations.org/logs/677d316b3e750b90a42606d1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d316b3e750b90a42606d1)

HTTP response: 201| +|[00060-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00060-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3174f8016f90e7cb6946/download)
[Logs](https://api.biosimulations.org/logs/677d3174f8016f90e7cb6946?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3174f8016f90e7cb6946)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3171f8016f90e7cb693d/download)
[Logs](https://api.biosimulations.org/logs/677d3171f8016f90e7cb693d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3171f8016f90e7cb693d)

HTTP response: 201| +|[00061-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00061-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d317bf8016f90e7cb6955/download)
[Logs](https://api.biosimulations.org/logs/677d317bf8016f90e7cb6955?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d317bf8016f90e7cb6955)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d31783e750b90a42606f3/download)
[Logs](https://api.biosimulations.org/logs/677d31783e750b90a42606f3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31783e750b90a42606f3)

HTTP response: 201| +|[00062-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00062-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3182f8016f90e7cb6981/download)
[Logs](https://api.biosimulations.org/logs/677d3182f8016f90e7cb6981?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3182f8016f90e7cb6981)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d317f3e750b90a4260705/download)
[Logs](https://api.biosimulations.org/logs/677d317f3e750b90a4260705?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d317f3e750b90a4260705)

HTTP response: 201| +|[00063-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00063-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3188f8016f90e7cb6997/download)
[Logs](https://api.biosimulations.org/logs/677d3188f8016f90e7cb6997?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3188f8016f90e7cb6997)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d31853e750b90a4260713/download)
[Logs](https://api.biosimulations.org/logs/677d31853e750b90a4260713?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31853e750b90a4260713)

HTTP response: 201| +|[00064-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00064-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d318f3e750b90a426072f/download)
[Logs](https://api.biosimulations.org/logs/677d318f3e750b90a426072f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d318f3e750b90a426072f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d318cf8016f90e7cb699c/download)
[Logs](https://api.biosimulations.org/logs/677d318cf8016f90e7cb699c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d318cf8016f90e7cb699c)

HTTP response: 201| +|[00065-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00065-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d31953e750b90a4260742/download)
[Logs](https://api.biosimulations.org/logs/677d31953e750b90a4260742?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31953e750b90a4260742)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d31923e750b90a426073b/download)
[Logs](https://api.biosimulations.org/logs/677d31923e750b90a426073b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31923e750b90a426073b)

HTTP response: 201| +|[00066-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00066-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d319c67468f9f3fc583a9/download)
[Logs](https://api.biosimulations.org/logs/677d319c67468f9f3fc583a9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d319c67468f9f3fc583a9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d319967468f9f3fc5839e/download)
[Logs](https://api.biosimulations.org/logs/677d319967468f9f3fc5839e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d319967468f9f3fc5839e)

HTTP response: 201| +|[00067-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00067-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d31a33e750b90a4260763/download)
[Logs](https://api.biosimulations.org/logs/677d31a33e750b90a4260763?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31a33e750b90a4260763)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d31a067468f9f3fc583b6/download)
[Logs](https://api.biosimulations.org/logs/677d31a067468f9f3fc583b6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31a067468f9f3fc583b6)

HTTP response: 201| +|[00068-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00068-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d31aa67468f9f3fc583d5/download)
[Logs](https://api.biosimulations.org/logs/677d31aa67468f9f3fc583d5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31aa67468f9f3fc583d5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d31a6f8016f90e7cb6a05/download)
[Logs](https://api.biosimulations.org/logs/677d31a6f8016f90e7cb6a05?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31a6f8016f90e7cb6a05)

HTTP response: 201| +|[00069-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00069-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d31b03e750b90a4260795/download)
[Logs](https://api.biosimulations.org/logs/677d31b03e750b90a4260795?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31b03e750b90a4260795)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d31ad3e750b90a4260786/download)
[Logs](https://api.biosimulations.org/logs/677d31ad3e750b90a4260786?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31ad3e750b90a4260786)

HTTP response: 201| +|[00070-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00070-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d31b7f8016f90e7cb6a45/download)
[Logs](https://api.biosimulations.org/logs/677d31b7f8016f90e7cb6a45?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31b7f8016f90e7cb6a45)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d31b467468f9f3fc583e7/download)
[Logs](https://api.biosimulations.org/logs/677d31b467468f9f3fc583e7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31b467468f9f3fc583e7)

HTTP response: 201| +|[00071-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00071-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d31bd67468f9f3fc58408/download)
[Logs](https://api.biosimulations.org/logs/677d31bd67468f9f3fc58408?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31bd67468f9f3fc58408)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d31ba67468f9f3fc583f9/download)
[Logs](https://api.biosimulations.org/logs/677d31ba67468f9f3fc583f9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31ba67468f9f3fc583f9)

HTTP response: 201| +|[00072-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00072-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d31c4f8016f90e7cb6a6a/download)
[Logs](https://api.biosimulations.org/logs/677d31c4f8016f90e7cb6a6a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31c4f8016f90e7cb6a6a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d31c03e750b90a42607bd/download)
[Logs](https://api.biosimulations.org/logs/677d31c03e750b90a42607bd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31c03e750b90a42607bd)

HTTP response: 201| +|[00073-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00073-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d31caf8016f90e7cb6a81/download)
[Logs](https://api.biosimulations.org/logs/677d31caf8016f90e7cb6a81?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31caf8016f90e7cb6a81)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d31c7f8016f90e7cb6a74/download)
[Logs](https://api.biosimulations.org/logs/677d31c7f8016f90e7cb6a74?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31c7f8016f90e7cb6a74)

HTTP response: 201| +|[00074-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00074-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d31d13e750b90a42607fa/download)
[Logs](https://api.biosimulations.org/logs/677d31d13e750b90a42607fa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31d13e750b90a42607fa)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d31cef8016f90e7cb6a90/download)
[Logs](https://api.biosimulations.org/logs/677d31cef8016f90e7cb6a90?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31cef8016f90e7cb6a90)

HTTP response: 201| +|[00075-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00075-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d31d83e750b90a426080f/download)
[Logs](https://api.biosimulations.org/logs/677d31d83e750b90a426080f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31d83e750b90a426080f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d31d5f8016f90e7cb6aa0/download)
[Logs](https://api.biosimulations.org/logs/677d31d5f8016f90e7cb6aa0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31d5f8016f90e7cb6aa0)

HTTP response: 201| +|[00076-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00076-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d31df67468f9f3fc58482/download)
[Logs](https://api.biosimulations.org/logs/677d31df67468f9f3fc58482?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31df67468f9f3fc58482)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d31dc67468f9f3fc58479/download)
[Logs](https://api.biosimulations.org/logs/677d31dc67468f9f3fc58479?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31dc67468f9f3fc58479)

HTTP response: 201| +|[00077-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00077-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d31e6f8016f90e7cb6ad2/download)
[Logs](https://api.biosimulations.org/logs/677d31e6f8016f90e7cb6ad2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31e6f8016f90e7cb6ad2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d31e367468f9f3fc5848d/download)
[Logs](https://api.biosimulations.org/logs/677d31e367468f9f3fc5848d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31e367468f9f3fc5848d)

HTTP response: 201| +|[00078-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00078-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d31ee67468f9f3fc584a3/download)
[Logs](https://api.biosimulations.org/logs/677d31ee67468f9f3fc584a3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31ee67468f9f3fc584a3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d31eaf8016f90e7cb6ad7/download)
[Logs](https://api.biosimulations.org/logs/677d31eaf8016f90e7cb6ad7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31eaf8016f90e7cb6ad7)

HTTP response: 201| +|[00079-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00079-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d31f467468f9f3fc584bf/download)
[Logs](https://api.biosimulations.org/logs/677d31f467468f9f3fc584bf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31f467468f9f3fc584bf)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d31f13e750b90a426085f/download)
[Logs](https://api.biosimulations.org/logs/677d31f13e750b90a426085f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31f13e750b90a426085f)

HTTP response: 201| +|[00080-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00080-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d31fbf8016f90e7cb6b0a/download)
[Logs](https://api.biosimulations.org/logs/677d31fbf8016f90e7cb6b0a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31fbf8016f90e7cb6b0a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d31f83e750b90a4260870/download)
[Logs](https://api.biosimulations.org/logs/677d31f83e750b90a4260870?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31f83e750b90a4260870)

HTTP response: 201| +|[00081-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00081-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d320267468f9f3fc584e3/download)
[Logs](https://api.biosimulations.org/logs/677d320267468f9f3fc584e3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d320267468f9f3fc584e3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d31ff67468f9f3fc584d9/download)
[Logs](https://api.biosimulations.org/logs/677d31ff67468f9f3fc584d9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d31ff67468f9f3fc584d9)

HTTP response: 201| +|[00082-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00082-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d320967468f9f3fc584f2/download)
[Logs](https://api.biosimulations.org/logs/677d320967468f9f3fc584f2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d320967468f9f3fc584f2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3205f8016f90e7cb6b33/download)
[Logs](https://api.biosimulations.org/logs/677d3205f8016f90e7cb6b33?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3205f8016f90e7cb6b33)

HTTP response: 201| +|[00083-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00083-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d32113e750b90a42608c0/download)
[Logs](https://api.biosimulations.org/logs/677d32113e750b90a42608c0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32113e750b90a42608c0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d320d67468f9f3fc58500/download)
[Logs](https://api.biosimulations.org/logs/677d320d67468f9f3fc58500?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d320d67468f9f3fc58500)

HTTP response: 201| +|[00084-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00084-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d321867468f9f3fc58520/download)
[Logs](https://api.biosimulations.org/logs/677d321867468f9f3fc58520?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d321867468f9f3fc58520)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d321567468f9f3fc5851c/download)
[Logs](https://api.biosimulations.org/logs/677d321567468f9f3fc5851c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d321567468f9f3fc5851c)

HTTP response: 201| +|[00085-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00085-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d32203e750b90a42608e3/download)
[Logs](https://api.biosimulations.org/logs/677d32203e750b90a42608e3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32203e750b90a42608e3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d321cf8016f90e7cb6b70/download)
[Logs](https://api.biosimulations.org/logs/677d321cf8016f90e7cb6b70?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d321cf8016f90e7cb6b70)

HTTP response: 201| +|[00086-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00086-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d32263e750b90a42608f9/download)
[Logs](https://api.biosimulations.org/logs/677d32263e750b90a42608f9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32263e750b90a42608f9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3223f8016f90e7cb6b87/download)
[Logs](https://api.biosimulations.org/logs/677d3223f8016f90e7cb6b87?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3223f8016f90e7cb6b87)

HTTP response: 201| +|[00087-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00087-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d322d67468f9f3fc58558/download)
[Logs](https://api.biosimulations.org/logs/677d322d67468f9f3fc58558?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d322d67468f9f3fc58558)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d322a3e750b90a426090f/download)
[Logs](https://api.biosimulations.org/logs/677d322a3e750b90a426090f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d322a3e750b90a426090f)

HTTP response: 201| +|[00088-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00088-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d323467468f9f3fc58575/download)
[Logs](https://api.biosimulations.org/logs/677d323467468f9f3fc58575?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d323467468f9f3fc58575)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d32313e750b90a4260928/download)
[Logs](https://api.biosimulations.org/logs/677d32313e750b90a4260928?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32313e750b90a4260928)

HTTP response: 201| +|[00089-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00089-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d323c3e750b90a426094b/download)
[Logs](https://api.biosimulations.org/logs/677d323c3e750b90a426094b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d323c3e750b90a426094b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d32383e750b90a4260936/download)
[Logs](https://api.biosimulations.org/logs/677d32383e750b90a4260936?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32383e750b90a4260936)

HTTP response: 201| +|[00090-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00090-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d32443e750b90a426095b/download)
[Logs](https://api.biosimulations.org/logs/677d32443e750b90a426095b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32443e750b90a426095b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d324167468f9f3fc58596/download)
[Logs](https://api.biosimulations.org/logs/677d324167468f9f3fc58596?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d324167468f9f3fc58596)

HTTP response: 201| +|[00091-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00091-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d324b67468f9f3fc585b3/download)
[Logs](https://api.biosimulations.org/logs/677d324b67468f9f3fc585b3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d324b67468f9f3fc585b3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3248f8016f90e7cb6bef/download)
[Logs](https://api.biosimulations.org/logs/677d3248f8016f90e7cb6bef?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3248f8016f90e7cb6bef)

HTTP response: 201| +|[00092-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00092-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3252f8016f90e7cb6bff/download)
[Logs](https://api.biosimulations.org/logs/677d3252f8016f90e7cb6bff?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3252f8016f90e7cb6bff)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d324f67468f9f3fc585c5/download)
[Logs](https://api.biosimulations.org/logs/677d324f67468f9f3fc585c5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d324f67468f9f3fc585c5)

HTTP response: 201| +|[00093-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00093-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d325967468f9f3fc585de/download)
[Logs](https://api.biosimulations.org/logs/677d325967468f9f3fc585de?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d325967468f9f3fc585de)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3256f8016f90e7cb6c0a/download)
[Logs](https://api.biosimulations.org/logs/677d3256f8016f90e7cb6c0a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3256f8016f90e7cb6c0a)

HTTP response: 201| +|[00094-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00094-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d326167468f9f3fc585fb/download)
[Logs](https://api.biosimulations.org/logs/677d326167468f9f3fc585fb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d326167468f9f3fc585fb)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d325c3e750b90a426099a/download)
[Logs](https://api.biosimulations.org/logs/677d325c3e750b90a426099a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d325c3e750b90a426099a)

HTTP response: 201| +|[00095-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00095-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3269f8016f90e7cb6c45/download)
[Logs](https://api.biosimulations.org/logs/677d3269f8016f90e7cb6c45?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3269f8016f90e7cb6c45)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3266f8016f90e7cb6c36/download)
[Logs](https://api.biosimulations.org/logs/677d3266f8016f90e7cb6c36?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3266f8016f90e7cb6c36)

HTTP response: 201| +|[00096-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00096-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3270f8016f90e7cb6c57/download)
[Logs](https://api.biosimulations.org/logs/677d3270f8016f90e7cb6c57?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3270f8016f90e7cb6c57)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d326d3e750b90a42609d2/download)
[Logs](https://api.biosimulations.org/logs/677d326d3e750b90a42609d2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d326d3e750b90a42609d2)

HTTP response: 201| +|[00097-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00097-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3277f8016f90e7cb6c68/download)
[Logs](https://api.biosimulations.org/logs/677d3277f8016f90e7cb6c68?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3277f8016f90e7cb6c68)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d32743e750b90a42609e5/download)
[Logs](https://api.biosimulations.org/logs/677d32743e750b90a42609e5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32743e750b90a42609e5)

HTTP response: 201| +|[00098-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00098-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3280f8016f90e7cb6c88/download)
[Logs](https://api.biosimulations.org/logs/677d3280f8016f90e7cb6c88?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3280f8016f90e7cb6c88)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d327df8016f90e7cb6c83/download)
[Logs](https://api.biosimulations.org/logs/677d327df8016f90e7cb6c83?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d327df8016f90e7cb6c83)

HTTP response: 201| +|[00099-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00099-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d328667468f9f3fc58662/download)
[Logs](https://api.biosimulations.org/logs/677d328667468f9f3fc58662?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d328667468f9f3fc58662)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d328367468f9f3fc58653/download)
[Logs](https://api.biosimulations.org/logs/677d328367468f9f3fc58653?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d328367468f9f3fc58653)

HTTP response: 201| +|[00100-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00100-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d328d67468f9f3fc58673/download)
[Logs](https://api.biosimulations.org/logs/677d328d67468f9f3fc58673?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d328d67468f9f3fc58673)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3289f8016f90e7cb6cb4/download)
[Logs](https://api.biosimulations.org/logs/677d3289f8016f90e7cb6cb4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3289f8016f90e7cb6cb4)

HTTP response: 201| +|[00101-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00101-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d329367468f9f3fc58683/download)
[Logs](https://api.biosimulations.org/logs/677d329367468f9f3fc58683?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d329367468f9f3fc58683)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d32903e750b90a4260a2c/download)
[Logs](https://api.biosimulations.org/logs/677d32903e750b90a4260a2c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32903e750b90a4260a2c)

HTTP response: 201| +|[00102-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00102-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d329a3e750b90a4260a4a/download)
[Logs](https://api.biosimulations.org/logs/677d329a3e750b90a4260a4a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d329a3e750b90a4260a4a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d32973e750b90a4260a42/download)
[Logs](https://api.biosimulations.org/logs/677d32973e750b90a4260a42?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32973e750b90a4260a42)

HTTP response: 201| +|[00103-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00103-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d32a0f8016f90e7cb6cfd/download)
[Logs](https://api.biosimulations.org/logs/677d32a0f8016f90e7cb6cfd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32a0f8016f90e7cb6cfd)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d329d67468f9f3fc586a1/download)
[Logs](https://api.biosimulations.org/logs/677d329d67468f9f3fc586a1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d329d67468f9f3fc586a1)

HTTP response: 201| +|[00104-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00104-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d32a73e750b90a4260a6c/download)
[Logs](https://api.biosimulations.org/logs/677d32a73e750b90a4260a6c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32a73e750b90a4260a6c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d32a367468f9f3fc586cf/download)
[Logs](https://api.biosimulations.org/logs/677d32a367468f9f3fc586cf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32a367468f9f3fc586cf)

HTTP response: 201| +|[00105-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00105-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d32aff8016f90e7cb6d28/download)
[Logs](https://api.biosimulations.org/logs/677d32aff8016f90e7cb6d28?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32aff8016f90e7cb6d28)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d32ab3e750b90a4260a7c/download)
[Logs](https://api.biosimulations.org/logs/677d32ab3e750b90a4260a7c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32ab3e750b90a4260a7c)

HTTP response: 201| +|[00106-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00106-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d32b667468f9f3fc586f4/download)
[Logs](https://api.biosimulations.org/logs/677d32b667468f9f3fc586f4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32b667468f9f3fc586f4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d32b23e750b90a4260a8b/download)
[Logs](https://api.biosimulations.org/logs/677d32b23e750b90a4260a8b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32b23e750b90a4260a8b)

HTTP response: 201| +|[00107-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00107-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d32bc3e750b90a4260aa7/download)
[Logs](https://api.biosimulations.org/logs/677d32bc3e750b90a4260aa7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32bc3e750b90a4260aa7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d32b967468f9f3fc586fe/download)
[Logs](https://api.biosimulations.org/logs/677d32b967468f9f3fc586fe?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32b967468f9f3fc586fe)

HTTP response: 201| +|[00108-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00108-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d32c367468f9f3fc58737/download)
[Logs](https://api.biosimulations.org/logs/677d32c367468f9f3fc58737?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32c367468f9f3fc58737)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d32c03e750b90a4260ab1/download)
[Logs](https://api.biosimulations.org/logs/677d32c03e750b90a4260ab1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32c03e750b90a4260ab1)

HTTP response: 201| +|[00109-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00109-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d32cbf8016f90e7cb6d86/download)
[Logs](https://api.biosimulations.org/logs/677d32cbf8016f90e7cb6d86?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32cbf8016f90e7cb6d86)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d32c73e750b90a4260ac6/download)
[Logs](https://api.biosimulations.org/logs/677d32c73e750b90a4260ac6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32c73e750b90a4260ac6)

HTTP response: 201| +|[00110-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00110-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d32d13e750b90a4260ae1/download)
[Logs](https://api.biosimulations.org/logs/677d32d13e750b90a4260ae1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32d13e750b90a4260ae1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d32ce67468f9f3fc58758/download)
[Logs](https://api.biosimulations.org/logs/677d32ce67468f9f3fc58758?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32ce67468f9f3fc58758)

HTTP response: 201| +|[00111-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00111-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d32d83e750b90a4260afe/download)
[Logs](https://api.biosimulations.org/logs/677d32d83e750b90a4260afe?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32d83e750b90a4260afe)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d32d567468f9f3fc58766/download)
[Logs](https://api.biosimulations.org/logs/677d32d567468f9f3fc58766?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32d567468f9f3fc58766)

HTTP response: 201| +|[00112-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00112-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d32de67468f9f3fc58784/download)
[Logs](https://api.biosimulations.org/logs/677d32de67468f9f3fc58784?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32de67468f9f3fc58784)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d32db67468f9f3fc5877d/download)
[Logs](https://api.biosimulations.org/logs/677d32db67468f9f3fc5877d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32db67468f9f3fc5877d)

HTTP response: 201| +|[00113-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00113-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d32e567468f9f3fc5879e/download)
[Logs](https://api.biosimulations.org/logs/677d32e567468f9f3fc5879e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32e567468f9f3fc5879e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d32e2f8016f90e7cb6dd3/download)
[Logs](https://api.biosimulations.org/logs/677d32e2f8016f90e7cb6dd3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32e2f8016f90e7cb6dd3)

HTTP response: 201| +|[00114-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00114-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d32ec3e750b90a4260b2c/download)
[Logs](https://api.biosimulations.org/logs/677d32ec3e750b90a4260b2c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32ec3e750b90a4260b2c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d32e8f8016f90e7cb6de7/download)
[Logs](https://api.biosimulations.org/logs/677d32e8f8016f90e7cb6de7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32e8f8016f90e7cb6de7)

HTTP response: 201| +|[00115-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00115-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d32f2f8016f90e7cb6e0d/download)
[Logs](https://api.biosimulations.org/logs/677d32f2f8016f90e7cb6e0d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32f2f8016f90e7cb6e0d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d32eff8016f90e7cb6e01/download)
[Logs](https://api.biosimulations.org/logs/677d32eff8016f90e7cb6e01?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32eff8016f90e7cb6e01)

HTTP response: 201| +|[00116-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00116-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d32f8f8016f90e7cb6e18/download)
[Logs](https://api.biosimulations.org/logs/677d32f8f8016f90e7cb6e18?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32f8f8016f90e7cb6e18)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d32f6f8016f90e7cb6e11/download)
[Logs](https://api.biosimulations.org/logs/677d32f6f8016f90e7cb6e11?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32f6f8016f90e7cb6e11)

HTTP response: 201| +|[00117-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00117-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d32ff67468f9f3fc587fc/download)
[Logs](https://api.biosimulations.org/logs/677d32ff67468f9f3fc587fc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32ff67468f9f3fc587fc)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d32fc3e750b90a4260b4b/download)
[Logs](https://api.biosimulations.org/logs/677d32fc3e750b90a4260b4b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d32fc3e750b90a4260b4b)

HTTP response: 201| +|[00118-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00118-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d33053e750b90a4260b75/download)
[Logs](https://api.biosimulations.org/logs/677d33053e750b90a4260b75?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33053e750b90a4260b75)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d330367468f9f3fc58806/download)
[Logs](https://api.biosimulations.org/logs/677d330367468f9f3fc58806?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d330367468f9f3fc58806)

HTTP response: 201| +|[00119-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00119-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d330c67468f9f3fc58823/download)
[Logs](https://api.biosimulations.org/logs/677d330c67468f9f3fc58823?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d330c67468f9f3fc58823)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d33093e750b90a4260b83/download)
[Logs](https://api.biosimulations.org/logs/677d33093e750b90a4260b83?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33093e750b90a4260b83)

HTTP response: 201| +|[00120-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00120-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d33133e750b90a4260ba6/download)
[Logs](https://api.biosimulations.org/logs/677d33133e750b90a4260ba6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33133e750b90a4260ba6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d330ff8016f90e7cb6e6b/download)
[Logs](https://api.biosimulations.org/logs/677d330ff8016f90e7cb6e6b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d330ff8016f90e7cb6e6b)

HTTP response: 201| +|[00121-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00121-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d33193e750b90a4260bb7/download)
[Logs](https://api.biosimulations.org/logs/677d33193e750b90a4260bb7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33193e750b90a4260bb7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d331667468f9f3fc58843/download)
[Logs](https://api.biosimulations.org/logs/677d331667468f9f3fc58843?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d331667468f9f3fc58843)

HTTP response: 201| +|[00122-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00122-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d33203e750b90a4260bc7/download)
[Logs](https://api.biosimulations.org/logs/677d33203e750b90a4260bc7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33203e750b90a4260bc7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d331d67468f9f3fc58859/download)
[Logs](https://api.biosimulations.org/logs/677d331d67468f9f3fc58859?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d331d67468f9f3fc58859)

HTTP response: 201| +|[00123-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00123-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d332667468f9f3fc58881/download)
[Logs](https://api.biosimulations.org/logs/677d332667468f9f3fc58881?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d332667468f9f3fc58881)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3323f8016f90e7cb6ea3/download)
[Logs](https://api.biosimulations.org/logs/677d3323f8016f90e7cb6ea3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3323f8016f90e7cb6ea3)

HTTP response: 201| +|[00124-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00124-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d332d67468f9f3fc58895/download)
[Logs](https://api.biosimulations.org/logs/677d332d67468f9f3fc58895?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d332d67468f9f3fc58895)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d332a3e750b90a4260bec/download)
[Logs](https://api.biosimulations.org/logs/677d332a3e750b90a4260bec?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d332a3e750b90a4260bec)

HTTP response: 201| +|[00125-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00125-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d333467468f9f3fc588ac/download)
[Logs](https://api.biosimulations.org/logs/677d333467468f9f3fc588ac?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d333467468f9f3fc588ac)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3331f8016f90e7cb6ec7/download)
[Logs](https://api.biosimulations.org/logs/677d3331f8016f90e7cb6ec7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3331f8016f90e7cb6ec7)

HTTP response: 201| +|[00126-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00126-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d333b67468f9f3fc588bc/download)
[Logs](https://api.biosimulations.org/logs/677d333b67468f9f3fc588bc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d333b67468f9f3fc588bc)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3338f8016f90e7cb6ee1/download)
[Logs](https://api.biosimulations.org/logs/677d3338f8016f90e7cb6ee1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3338f8016f90e7cb6ee1)

HTTP response: 201| +|[00127-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00127-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3341f8016f90e7cb6f0a/download)
[Logs](https://api.biosimulations.org/logs/677d3341f8016f90e7cb6f0a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3341f8016f90e7cb6f0a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d333ef8016f90e7cb6efe/download)
[Logs](https://api.biosimulations.org/logs/677d333ef8016f90e7cb6efe?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d333ef8016f90e7cb6efe)

HTTP response: 201| +|[00128-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00128-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d334967468f9f3fc588e8/download)
[Logs](https://api.biosimulations.org/logs/677d334967468f9f3fc588e8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d334967468f9f3fc588e8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d33463e750b90a4260c37/download)
[Logs](https://api.biosimulations.org/logs/677d33463e750b90a4260c37?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33463e750b90a4260c37)

HTTP response: 201| +|[00129-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00129-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d33513e750b90a4260c56/download)
[Logs](https://api.biosimulations.org/logs/677d33513e750b90a4260c56?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33513e750b90a4260c56)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d334e3e750b90a4260c4e/download)
[Logs](https://api.biosimulations.org/logs/677d334e3e750b90a4260c4e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d334e3e750b90a4260c4e)

HTTP response: 201| +|[00130-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00130-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d335867468f9f3fc5890f/download)
[Logs](https://api.biosimulations.org/logs/677d335867468f9f3fc5890f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d335867468f9f3fc5890f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3354f8016f90e7cb6f3c/download)
[Logs](https://api.biosimulations.org/logs/677d3354f8016f90e7cb6f3c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3354f8016f90e7cb6f3c)

HTTP response: 201| +|[00131-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00131-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d335e67468f9f3fc58921/download)
[Logs](https://api.biosimulations.org/logs/677d335e67468f9f3fc58921?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d335e67468f9f3fc58921)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d335b67468f9f3fc58918/download)
[Logs](https://api.biosimulations.org/logs/677d335b67468f9f3fc58918?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d335b67468f9f3fc58918)

HTTP response: 201| +|[00132-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00132-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d336567468f9f3fc58938/download)
[Logs](https://api.biosimulations.org/logs/677d336567468f9f3fc58938?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d336567468f9f3fc58938)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3361f8016f90e7cb6f78/download)
[Logs](https://api.biosimulations.org/logs/677d3361f8016f90e7cb6f78?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3361f8016f90e7cb6f78)

HTTP response: 201| +|[00133-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00133-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d336b67468f9f3fc58949/download)
[Logs](https://api.biosimulations.org/logs/677d336b67468f9f3fc58949?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d336b67468f9f3fc58949)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d336867468f9f3fc58945/download)
[Logs](https://api.biosimulations.org/logs/677d336867468f9f3fc58945?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d336867468f9f3fc58945)

HTTP response: 201| +|[00134-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00134-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d337367468f9f3fc58972/download)
[Logs](https://api.biosimulations.org/logs/677d337367468f9f3fc58972?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d337367468f9f3fc58972)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d336f67468f9f3fc58965/download)
[Logs](https://api.biosimulations.org/logs/677d336f67468f9f3fc58965?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d336f67468f9f3fc58965)

HTTP response: 201| +|[00135-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00135-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d33793e750b90a4260ccd/download)
[Logs](https://api.biosimulations.org/logs/677d33793e750b90a4260ccd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33793e750b90a4260ccd)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d33763e750b90a4260cc1/download)
[Logs](https://api.biosimulations.org/logs/677d33763e750b90a4260cc1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33763e750b90a4260cc1)

HTTP response: 201| +|[00136-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00136-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d337ff8016f90e7cb6fb6/download)
[Logs](https://api.biosimulations.org/logs/677d337ff8016f90e7cb6fb6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d337ff8016f90e7cb6fb6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d337c3e750b90a4260cde/download)
[Logs](https://api.biosimulations.org/logs/677d337c3e750b90a4260cde?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d337c3e750b90a4260cde)

HTTP response: 201| +|[00137-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00137-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d338667468f9f3fc589ac/download)
[Logs](https://api.biosimulations.org/logs/677d338667468f9f3fc589ac?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d338667468f9f3fc589ac)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3383f8016f90e7cb6fc4/download)
[Logs](https://api.biosimulations.org/logs/677d3383f8016f90e7cb6fc4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3383f8016f90e7cb6fc4)

HTTP response: 201| +|[00138-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00138-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d338d67468f9f3fc589bb/download)
[Logs](https://api.biosimulations.org/logs/677d338d67468f9f3fc589bb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d338d67468f9f3fc589bb)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d338af8016f90e7cb6fda/download)
[Logs](https://api.biosimulations.org/logs/677d338af8016f90e7cb6fda?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d338af8016f90e7cb6fda)

HTTP response: 201| +|[00139-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00139-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3393f8016f90e7cb7001/download)
[Logs](https://api.biosimulations.org/logs/677d3393f8016f90e7cb7001?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3393f8016f90e7cb7001)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3390f8016f90e7cb6ff2/download)
[Logs](https://api.biosimulations.org/logs/677d3390f8016f90e7cb6ff2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3390f8016f90e7cb6ff2)

HTTP response: 201| +|[00140-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00140-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d339a3e750b90a4260d3e/download)
[Logs](https://api.biosimulations.org/logs/677d339a3e750b90a4260d3e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d339a3e750b90a4260d3e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3397f8016f90e7cb700c/download)
[Logs](https://api.biosimulations.org/logs/677d3397f8016f90e7cb700c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3397f8016f90e7cb700c)

HTTP response: 201| +|[00141-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00141-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d33a0f8016f90e7cb702a/download)
[Logs](https://api.biosimulations.org/logs/677d33a0f8016f90e7cb702a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33a0f8016f90e7cb702a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d339d3e750b90a4260d47/download)
[Logs](https://api.biosimulations.org/logs/677d339d3e750b90a4260d47?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d339d3e750b90a4260d47)

HTTP response: 201| +|[00142-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00142-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d33a8f8016f90e7cb703d/download)
[Logs](https://api.biosimulations.org/logs/677d33a8f8016f90e7cb703d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33a8f8016f90e7cb703d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d33a43e750b90a4260d6b/download)
[Logs](https://api.biosimulations.org/logs/677d33a43e750b90a4260d6b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33a43e750b90a4260d6b)

HTTP response: 201| +|[00143-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00143-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d33af67468f9f3fc58a29/download)
[Logs](https://api.biosimulations.org/logs/677d33af67468f9f3fc58a29?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33af67468f9f3fc58a29)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d33abf8016f90e7cb7045/download)
[Logs](https://api.biosimulations.org/logs/677d33abf8016f90e7cb7045?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33abf8016f90e7cb7045)

HTTP response: 201| +|[00144-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00144-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d33b63e750b90a4260da3/download)
[Logs](https://api.biosimulations.org/logs/677d33b63e750b90a4260da3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33b63e750b90a4260da3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d33b267468f9f3fc58a38/download)
[Logs](https://api.biosimulations.org/logs/677d33b267468f9f3fc58a38?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33b267468f9f3fc58a38)

HTTP response: 201| +|[00145-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00145-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d33bcf8016f90e7cb7070/download)
[Logs](https://api.biosimulations.org/logs/677d33bcf8016f90e7cb7070?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33bcf8016f90e7cb7070)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d33b93e750b90a4260da8/download)
[Logs](https://api.biosimulations.org/logs/677d33b93e750b90a4260da8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33b93e750b90a4260da8)

HTTP response: 201| +|[00146-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00146-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d33c367468f9f3fc58a76/download)
[Logs](https://api.biosimulations.org/logs/677d33c367468f9f3fc58a76?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33c367468f9f3fc58a76)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d33bf3e750b90a4260dc1/download)
[Logs](https://api.biosimulations.org/logs/677d33bf3e750b90a4260dc1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33bf3e750b90a4260dc1)

HTTP response: 201| +|[00147-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00147-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d33c93e750b90a4260dde/download)
[Logs](https://api.biosimulations.org/logs/677d33c93e750b90a4260dde?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33c93e750b90a4260dde)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d33c63e750b90a4260dd6/download)
[Logs](https://api.biosimulations.org/logs/677d33c63e750b90a4260dd6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33c63e750b90a4260dd6)

HTTP response: 201| +|[00148-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00148-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d33d067468f9f3fc58a99/download)
[Logs](https://api.biosimulations.org/logs/677d33d067468f9f3fc58a99?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33d067468f9f3fc58a99)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d33cd3e750b90a4260de6/download)
[Logs](https://api.biosimulations.org/logs/677d33cd3e750b90a4260de6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33cd3e750b90a4260de6)

HTTP response: 201| +|[00149-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00149-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d33d767468f9f3fc58aba/download)
[Logs](https://api.biosimulations.org/logs/677d33d767468f9f3fc58aba?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33d767468f9f3fc58aba)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d33d367468f9f3fc58aa9/download)
[Logs](https://api.biosimulations.org/logs/677d33d367468f9f3fc58aa9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33d367468f9f3fc58aa9)

HTTP response: 201| +|[00150-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00150-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d33ddf8016f90e7cb7103/download)
[Logs](https://api.biosimulations.org/logs/677d33ddf8016f90e7cb7103?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33ddf8016f90e7cb7103)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d33daf8016f90e7cb70ec/download)
[Logs](https://api.biosimulations.org/logs/677d33daf8016f90e7cb70ec?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33daf8016f90e7cb70ec)

HTTP response: 201| +|[00151-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00151-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d33e467468f9f3fc58ada/download)
[Logs](https://api.biosimulations.org/logs/677d33e467468f9f3fc58ada?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33e467468f9f3fc58ada)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d33e167468f9f3fc58ad5/download)
[Logs](https://api.biosimulations.org/logs/677d33e167468f9f3fc58ad5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33e167468f9f3fc58ad5)

HTTP response: 201| +|[00152-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00152-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d33ea67468f9f3fc58aeb/download)
[Logs](https://api.biosimulations.org/logs/677d33ea67468f9f3fc58aeb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33ea67468f9f3fc58aeb)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d33e73e750b90a4260e22/download)
[Logs](https://api.biosimulations.org/logs/677d33e73e750b90a4260e22?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33e73e750b90a4260e22)

HTTP response: 201| +|[00153-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00153-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d33f13e750b90a4260e3e/download)
[Logs](https://api.biosimulations.org/logs/677d33f13e750b90a4260e3e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33f13e750b90a4260e3e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d33ee67468f9f3fc58af1/download)
[Logs](https://api.biosimulations.org/logs/677d33ee67468f9f3fc58af1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33ee67468f9f3fc58af1)

HTTP response: 201| +|[00154-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00154-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d33f867468f9f3fc58b25/download)
[Logs](https://api.biosimulations.org/logs/677d33f867468f9f3fc58b25?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33f867468f9f3fc58b25)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d33f567468f9f3fc58b0f/download)
[Logs](https://api.biosimulations.org/logs/677d33f567468f9f3fc58b0f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33f567468f9f3fc58b0f)

HTTP response: 201| +|[00155-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00155-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d33fe3e750b90a4260e68/download)
[Logs](https://api.biosimulations.org/logs/677d33fe3e750b90a4260e68?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33fe3e750b90a4260e68)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d33fbf8016f90e7cb7172/download)
[Logs](https://api.biosimulations.org/logs/677d33fbf8016f90e7cb7172?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d33fbf8016f90e7cb7172)

HTTP response: 201| +|[00156-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00156-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d340567468f9f3fc58b49/download)
[Logs](https://api.biosimulations.org/logs/677d340567468f9f3fc58b49?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d340567468f9f3fc58b49)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d340267468f9f3fc58b34/download)
[Logs](https://api.biosimulations.org/logs/677d340267468f9f3fc58b34?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d340267468f9f3fc58b34)

HTTP response: 201| +|[00157-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00157-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d340b3e750b90a4260e92/download)
[Logs](https://api.biosimulations.org/logs/677d340b3e750b90a4260e92?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d340b3e750b90a4260e92)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3408f8016f90e7cb719d/download)
[Logs](https://api.biosimulations.org/logs/677d3408f8016f90e7cb719d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3408f8016f90e7cb719d)

HTTP response: 201| +|[00158-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00158-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d34123e750b90a4260eae/download)
[Logs](https://api.biosimulations.org/logs/677d34123e750b90a4260eae?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34123e750b90a4260eae)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d340ff8016f90e7cb71ab/download)
[Logs](https://api.biosimulations.org/logs/677d340ff8016f90e7cb71ab?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d340ff8016f90e7cb71ab)

HTTP response: 201| +|[00159-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00159-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d34183e750b90a4260ecf/download)
[Logs](https://api.biosimulations.org/logs/677d34183e750b90a4260ecf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34183e750b90a4260ecf)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d341567468f9f3fc58b77/download)
[Logs](https://api.biosimulations.org/logs/677d341567468f9f3fc58b77?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d341567468f9f3fc58b77)

HTTP response: 201| +|[00160-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00160-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d341f3e750b90a4260ee8/download)
[Logs](https://api.biosimulations.org/logs/677d341f3e750b90a4260ee8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d341f3e750b90a4260ee8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d341b3e750b90a4260edf/download)
[Logs](https://api.biosimulations.org/logs/677d341b3e750b90a4260edf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d341b3e750b90a4260edf)

HTTP response: 201| +|[00161-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00161-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3426f8016f90e7cb7204/download)
[Logs](https://api.biosimulations.org/logs/677d3426f8016f90e7cb7204?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3426f8016f90e7cb7204)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d342267468f9f3fc58ba0/download)
[Logs](https://api.biosimulations.org/logs/677d342267468f9f3fc58ba0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d342267468f9f3fc58ba0)

HTTP response: 201| +|[00162-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00162-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d342d3e750b90a4260f18/download)
[Logs](https://api.biosimulations.org/logs/677d342d3e750b90a4260f18?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d342d3e750b90a4260f18)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d342a3e750b90a4260f0a/download)
[Logs](https://api.biosimulations.org/logs/677d342a3e750b90a4260f0a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d342a3e750b90a4260f0a)

HTTP response: 201| +|[00163-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00163-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d34343e750b90a4260f2e/download)
[Logs](https://api.biosimulations.org/logs/677d34343e750b90a4260f2e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34343e750b90a4260f2e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3430f8016f90e7cb7217/download)
[Logs](https://api.biosimulations.org/logs/677d3430f8016f90e7cb7217?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3430f8016f90e7cb7217)

HTTP response: 201| +|[00164-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00164-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d343bf8016f90e7cb723b/download)
[Logs](https://api.biosimulations.org/logs/677d343bf8016f90e7cb723b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d343bf8016f90e7cb723b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d343867468f9f3fc58bd6/download)
[Logs](https://api.biosimulations.org/logs/677d343867468f9f3fc58bd6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d343867468f9f3fc58bd6)

HTTP response: 201| +|[00165-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00165-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d344367468f9f3fc58bf5/download)
[Logs](https://api.biosimulations.org/logs/677d344367468f9f3fc58bf5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d344367468f9f3fc58bf5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3440f8016f90e7cb7241/download)
[Logs](https://api.biosimulations.org/logs/677d3440f8016f90e7cb7241?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3440f8016f90e7cb7241)

HTTP response: 201| +|[00166-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00166-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d34493e750b90a4260f7b/download)
[Logs](https://api.biosimulations.org/logs/677d34493e750b90a4260f7b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34493e750b90a4260f7b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d34463e750b90a4260f71/download)
[Logs](https://api.biosimulations.org/logs/677d34463e750b90a4260f71?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34463e750b90a4260f71)

HTTP response: 201| +|[00167-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00167-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d345067468f9f3fc58c1a/download)
[Logs](https://api.biosimulations.org/logs/677d345067468f9f3fc58c1a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d345067468f9f3fc58c1a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d344df8016f90e7cb726f/download)
[Logs](https://api.biosimulations.org/logs/677d344df8016f90e7cb726f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d344df8016f90e7cb726f)

HTTP response: 201| +|[00168-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00168-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d34583e750b90a4260fa5/download)
[Logs](https://api.biosimulations.org/logs/677d34583e750b90a4260fa5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34583e750b90a4260fa5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d345467468f9f3fc58c26/download)
[Logs](https://api.biosimulations.org/logs/677d345467468f9f3fc58c26?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d345467468f9f3fc58c26)

HTTP response: 201| +|[00169-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00169-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d345f67468f9f3fc58c56/download)
[Logs](https://api.biosimulations.org/logs/677d345f67468f9f3fc58c56?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d345f67468f9f3fc58c56)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d345b3e750b90a4260fae/download)
[Logs](https://api.biosimulations.org/logs/677d345b3e750b90a4260fae?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d345b3e750b90a4260fae)

HTTP response: 201| +|[00170-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00170-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d346567468f9f3fc58c69/download)
[Logs](https://api.biosimulations.org/logs/677d346567468f9f3fc58c69?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d346567468f9f3fc58c69)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d34623e750b90a4260fc0/download)
[Logs](https://api.biosimulations.org/logs/677d34623e750b90a4260fc0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34623e750b90a4260fc0)

HTTP response: 201| +|[00171-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00171-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d346d67468f9f3fc58c76/download)
[Logs](https://api.biosimulations.org/logs/677d346d67468f9f3fc58c76?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d346d67468f9f3fc58c76)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d34693e750b90a4260fd8/download)
[Logs](https://api.biosimulations.org/logs/677d34693e750b90a4260fd8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34693e750b90a4260fd8)

HTTP response: 201| +|[00172-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00172-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3473f8016f90e7cb72d1/download)
[Logs](https://api.biosimulations.org/logs/677d3473f8016f90e7cb72d1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3473f8016f90e7cb72d1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d347067468f9f3fc58c87/download)
[Logs](https://api.biosimulations.org/logs/677d347067468f9f3fc58c87?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d347067468f9f3fc58c87)

HTTP response: 201| +|[00173-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00173-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d347a67468f9f3fc58ca3/download)
[Logs](https://api.biosimulations.org/logs/677d347a67468f9f3fc58ca3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d347a67468f9f3fc58ca3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d34773e750b90a4261002/download)
[Logs](https://api.biosimulations.org/logs/677d34773e750b90a4261002?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34773e750b90a4261002)

HTTP response: 201| +|[00174-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00174-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3481f8016f90e7cb72f5/download)
[Logs](https://api.biosimulations.org/logs/677d3481f8016f90e7cb72f5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3481f8016f90e7cb72f5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d347ef8016f90e7cb72ef/download)
[Logs](https://api.biosimulations.org/logs/677d347ef8016f90e7cb72ef?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d347ef8016f90e7cb72ef)

HTTP response: 201| +|[00175-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00175-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d34883e750b90a426103c/download)
[Logs](https://api.biosimulations.org/logs/677d34883e750b90a426103c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34883e750b90a426103c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d34853e750b90a4261030/download)
[Logs](https://api.biosimulations.org/logs/677d34853e750b90a4261030?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34853e750b90a4261030)

HTTP response: 201| +|[00176-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00176-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d348f67468f9f3fc58ce2/download)
[Logs](https://api.biosimulations.org/logs/677d348f67468f9f3fc58ce2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d348f67468f9f3fc58ce2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d348b67468f9f3fc58cd1/download)
[Logs](https://api.biosimulations.org/logs/677d348b67468f9f3fc58cd1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d348b67468f9f3fc58cd1)

HTTP response: 201| +|[00177-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00177-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3496f8016f90e7cb733e/download)
[Logs](https://api.biosimulations.org/logs/677d3496f8016f90e7cb733e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3496f8016f90e7cb733e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d34923e750b90a4261059/download)
[Logs](https://api.biosimulations.org/logs/677d34923e750b90a4261059?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34923e750b90a4261059)

HTTP response: 201| +|[00178-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00178-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d349c3e750b90a4261090/download)
[Logs](https://api.biosimulations.org/logs/677d349c3e750b90a4261090?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d349c3e750b90a4261090)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d349967468f9f3fc58cfa/download)
[Logs](https://api.biosimulations.org/logs/677d349967468f9f3fc58cfa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d349967468f9f3fc58cfa)

HTTP response: 201| +|[00179-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00179-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d34a3f8016f90e7cb7376/download)
[Logs](https://api.biosimulations.org/logs/677d34a3f8016f90e7cb7376?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34a3f8016f90e7cb7376)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d34a0f8016f90e7cb735f/download)
[Logs](https://api.biosimulations.org/logs/677d34a0f8016f90e7cb735f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34a0f8016f90e7cb735f)

HTTP response: 201| +|[00180-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00180-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d34ab3e750b90a42610b7/download)
[Logs](https://api.biosimulations.org/logs/677d34ab3e750b90a42610b7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34ab3e750b90a42610b7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d34a73e750b90a42610ac/download)
[Logs](https://api.biosimulations.org/logs/677d34a73e750b90a42610ac?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34a73e750b90a42610ac)

HTTP response: 201| +|[00181-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00181-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d34b1f8016f90e7cb739f/download)
[Logs](https://api.biosimulations.org/logs/677d34b1f8016f90e7cb739f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34b1f8016f90e7cb739f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d34ae3e750b90a42610c3/download)
[Logs](https://api.biosimulations.org/logs/677d34ae3e750b90a42610c3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34ae3e750b90a42610c3)

HTTP response: 201| +|[00182-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00182-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = -1 * k1 + S1 + S2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d34bbf8016f90e7cb73b5/download)
[Logs](https://api.biosimulations.org/logs/677d34bbf8016f90e7cb73b5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34bbf8016f90e7cb73b5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d34b5f8016f90e7cb73a9/download)
[Logs](https://api.biosimulations.org/logs/677d34b5f8016f90e7cb73a9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34b5f8016f90e7cb73a9)

HTTP response: 201| +|[00183-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00183-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d34c23e750b90a4261103/download)
[Logs](https://api.biosimulations.org/logs/677d34c23e750b90a4261103?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34c23e750b90a4261103)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d34bf67468f9f3fc58d70/download)
[Logs](https://api.biosimulations.org/logs/677d34bf67468f9f3fc58d70?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34bf67468f9f3fc58d70)

HTTP response: 201| +|[00184-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00184-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = add(S1, add(S2, -1 * k1))' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d34ca3e750b90a426111b/download)
[Logs](https://api.biosimulations.org/logs/677d34ca3e750b90a426111b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34ca3e750b90a426111b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d34c7f8016f90e7cb73cf/download)
[Logs](https://api.biosimulations.org/logs/677d34c7f8016f90e7cb73cf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34c7f8016f90e7cb73cf)

HTTP response: 201| +|[00185-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00185-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d34d1f8016f90e7cb73f2/download)
[Logs](https://api.biosimulations.org/logs/677d34d1f8016f90e7cb73f2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34d1f8016f90e7cb73f2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d34ce3e750b90a4261120/download)
[Logs](https://api.biosimulations.org/logs/677d34ce3e750b90a4261120?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34ce3e750b90a4261120)

HTTP response: 201| +|[00186-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00186-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d34d867468f9f3fc58daf/download)
[Logs](https://api.biosimulations.org/logs/677d34d867468f9f3fc58daf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34d867468f9f3fc58daf)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d34d5f8016f90e7cb73fd/download)
[Logs](https://api.biosimulations.org/logs/677d34d5f8016f90e7cb73fd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34d5f8016f90e7cb73fd)

HTTP response: 201| +|[00187-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00187-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d34df3e750b90a4261150/download)
[Logs](https://api.biosimulations.org/logs/677d34df3e750b90a4261150?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34df3e750b90a4261150)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d34dc67468f9f3fc58db8/download)
[Logs](https://api.biosimulations.org/logs/677d34dc67468f9f3fc58db8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34dc67468f9f3fc58db8)

HTTP response: 201| +|[00188-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00188-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d34e6f8016f90e7cb7434/download)
[Logs](https://api.biosimulations.org/logs/677d34e6f8016f90e7cb7434?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34e6f8016f90e7cb7434)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d34e2f8016f90e7cb742c/download)
[Logs](https://api.biosimulations.org/logs/677d34e2f8016f90e7cb742c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34e2f8016f90e7cb742c)

HTTP response: 201| +|[00189-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00189-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d34ed67468f9f3fc58de8/download)
[Logs](https://api.biosimulations.org/logs/677d34ed67468f9f3fc58de8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34ed67468f9f3fc58de8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d34e967468f9f3fc58ddf/download)
[Logs](https://api.biosimulations.org/logs/677d34e967468f9f3fc58ddf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34e967468f9f3fc58ddf)

HTTP response: 201| +|[00190-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00190-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d34f6f8016f90e7cb7460/download)
[Logs](https://api.biosimulations.org/logs/677d34f6f8016f90e7cb7460?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34f6f8016f90e7cb7460)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d34f267468f9f3fc58dfe/download)
[Logs](https://api.biosimulations.org/logs/677d34f267468f9f3fc58dfe?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34f267468f9f3fc58dfe)

HTTP response: 201| +|[00191-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00191-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d34fd3e750b90a42611a8/download)
[Logs](https://api.biosimulations.org/logs/677d34fd3e750b90a42611a8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34fd3e750b90a42611a8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d34fa3e750b90a426119e/download)
[Logs](https://api.biosimulations.org/logs/677d34fa3e750b90a426119e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d34fa3e750b90a426119e)

HTTP response: 201| +|[00192-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00192-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d350367468f9f3fc58e27/download)
[Logs](https://api.biosimulations.org/logs/677d350367468f9f3fc58e27?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d350367468f9f3fc58e27)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d350067468f9f3fc58e1c/download)
[Logs](https://api.biosimulations.org/logs/677d350067468f9f3fc58e1c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d350067468f9f3fc58e1c)

HTTP response: 201| +|[00193-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00193-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d350af8016f90e7cb7499/download)
[Logs](https://api.biosimulations.org/logs/677d350af8016f90e7cb7499?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d350af8016f90e7cb7499)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d350767468f9f3fc58e30/download)
[Logs](https://api.biosimulations.org/logs/677d350767468f9f3fc58e30?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d350767468f9f3fc58e30)

HTTP response: 201| +|[00194-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00194-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3514f8016f90e7cb74c5/download)
[Logs](https://api.biosimulations.org/logs/677d3514f8016f90e7cb74c5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3514f8016f90e7cb74c5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d351167468f9f3fc58e47/download)
[Logs](https://api.biosimulations.org/logs/677d351167468f9f3fc58e47?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d351167468f9f3fc58e47)

HTTP response: 201| +|[00195-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00195-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d351af8016f90e7cb74d3/download)
[Logs](https://api.biosimulations.org/logs/677d351af8016f90e7cb74d3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d351af8016f90e7cb74d3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3517f8016f90e7cb74cd/download)
[Logs](https://api.biosimulations.org/logs/677d3517f8016f90e7cb74cd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3517f8016f90e7cb74cd)

HTTP response: 201| +|[00196-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00196-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d35213e750b90a42611fa/download)
[Logs](https://api.biosimulations.org/logs/677d35213e750b90a42611fa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35213e750b90a42611fa)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d351e67468f9f3fc58e74/download)
[Logs](https://api.biosimulations.org/logs/677d351e67468f9f3fc58e74?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d351e67468f9f3fc58e74)

HTTP response: 201| +|[00197-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00197-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d35283e750b90a426120b/download)
[Logs](https://api.biosimulations.org/logs/677d35283e750b90a426120b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35283e750b90a426120b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d35243e750b90a4261203/download)
[Logs](https://api.biosimulations.org/logs/677d35243e750b90a4261203?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35243e750b90a4261203)

HTTP response: 201| +|[00198-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00198-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d352ef8016f90e7cb7501/download)
[Logs](https://api.biosimulations.org/logs/677d352ef8016f90e7cb7501?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d352ef8016f90e7cb7501)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d352b67468f9f3fc58e94/download)
[Logs](https://api.biosimulations.org/logs/677d352b67468f9f3fc58e94?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d352b67468f9f3fc58e94)

HTTP response: 201| +|[00199-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00199-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3534f8016f90e7cb7519/download)
[Logs](https://api.biosimulations.org/logs/677d3534f8016f90e7cb7519?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3534f8016f90e7cb7519)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d35313e750b90a4261223/download)
[Logs](https://api.biosimulations.org/logs/677d35313e750b90a4261223?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35313e750b90a4261223)

HTTP response: 201| +|[00200-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00200-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d353b67468f9f3fc58ec3/download)
[Logs](https://api.biosimulations.org/logs/677d353b67468f9f3fc58ec3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d353b67468f9f3fc58ec3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d353867468f9f3fc58eb5/download)
[Logs](https://api.biosimulations.org/logs/677d353867468f9f3fc58eb5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d353867468f9f3fc58eb5)

HTTP response: 201| +|[00201-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00201-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3542f8016f90e7cb7540/download)
[Logs](https://api.biosimulations.org/logs/677d3542f8016f90e7cb7540?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3542f8016f90e7cb7540)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d353f67468f9f3fc58ed3/download)
[Logs](https://api.biosimulations.org/logs/677d353f67468f9f3fc58ed3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d353f67468f9f3fc58ed3)

HTTP response: 201| +|[00202-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00202-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d35493e750b90a4261281/download)
[Logs](https://api.biosimulations.org/logs/677d35493e750b90a4261281?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35493e750b90a4261281)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d35463e750b90a426127c/download)
[Logs](https://api.biosimulations.org/logs/677d35463e750b90a426127c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35463e750b90a426127c)

HTTP response: 201| +|[00203-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00203-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d354f67468f9f3fc58f0d/download)
[Logs](https://api.biosimulations.org/logs/677d354f67468f9f3fc58f0d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d354f67468f9f3fc58f0d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d354c67468f9f3fc58efa/download)
[Logs](https://api.biosimulations.org/logs/677d354c67468f9f3fc58efa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d354c67468f9f3fc58efa)

HTTP response: 201| +|[00204-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00204-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d35563e750b90a42612a9/download)
[Logs](https://api.biosimulations.org/logs/677d35563e750b90a42612a9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35563e750b90a42612a9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d355367468f9f3fc58f11/download)
[Logs](https://api.biosimulations.org/logs/677d355367468f9f3fc58f11?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d355367468f9f3fc58f11)

HTTP response: 201| +|[00205-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00205-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d355d3e750b90a42612be/download)
[Logs](https://api.biosimulations.org/logs/677d355d3e750b90a42612be?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d355d3e750b90a42612be)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d355a67468f9f3fc58f23/download)
[Logs](https://api.biosimulations.org/logs/677d355a67468f9f3fc58f23?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d355a67468f9f3fc58f23)

HTTP response: 201| +|[00206-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00206-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3564f8016f90e7cb75a9/download)
[Logs](https://api.biosimulations.org/logs/677d3564f8016f90e7cb75a9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3564f8016f90e7cb75a9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d356067468f9f3fc58f3f/download)
[Logs](https://api.biosimulations.org/logs/677d356067468f9f3fc58f3f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d356067468f9f3fc58f3f)

HTTP response: 201| +|[00207-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00207-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d356b67468f9f3fc58f61/download)
[Logs](https://api.biosimulations.org/logs/677d356b67468f9f3fc58f61?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d356b67468f9f3fc58f61)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3568f8016f90e7cb75b6/download)
[Logs](https://api.biosimulations.org/logs/677d3568f8016f90e7cb75b6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3568f8016f90e7cb75b6)

HTTP response: 201| +|[00208-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00208-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d35723e750b90a42612f3/download)
[Logs](https://api.biosimulations.org/logs/677d35723e750b90a42612f3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35723e750b90a42612f3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d356e3e750b90a42612ea/download)
[Logs](https://api.biosimulations.org/logs/677d356e3e750b90a42612ea?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d356e3e750b90a42612ea)

HTTP response: 201| +|[00209-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00209-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d35793e750b90a426130f/download)
[Logs](https://api.biosimulations.org/logs/677d35793e750b90a426130f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35793e750b90a426130f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d35763e750b90a42612ff/download)
[Logs](https://api.biosimulations.org/logs/677d35763e750b90a42612ff?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35763e750b90a42612ff)

HTTP response: 201| +|[00210-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00210-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d357ff8016f90e7cb75ff/download)
[Logs](https://api.biosimulations.org/logs/677d357ff8016f90e7cb75ff?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d357ff8016f90e7cb75ff)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d357cf8016f90e7cb75f7/download)
[Logs](https://api.biosimulations.org/logs/677d357cf8016f90e7cb75f7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d357cf8016f90e7cb75f7)

HTTP response: 201| +|[00211-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00211-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d35863e750b90a426133b/download)
[Logs](https://api.biosimulations.org/logs/677d35863e750b90a426133b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35863e750b90a426133b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d358367468f9f3fc58fa1/download)
[Logs](https://api.biosimulations.org/logs/677d358367468f9f3fc58fa1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d358367468f9f3fc58fa1)

HTTP response: 201| +|[00212-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00212-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d358d3e750b90a426134c/download)
[Logs](https://api.biosimulations.org/logs/677d358d3e750b90a426134c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d358d3e750b90a426134c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d358a3e750b90a4261346/download)
[Logs](https://api.biosimulations.org/logs/677d358a3e750b90a4261346?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d358a3e750b90a4261346)

HTTP response: 201| +|[00213-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00213-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d35953e750b90a4261364/download)
[Logs](https://api.biosimulations.org/logs/677d35953e750b90a4261364?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35953e750b90a4261364)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3592f8016f90e7cb7636/download)
[Logs](https://api.biosimulations.org/logs/677d3592f8016f90e7cb7636?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3592f8016f90e7cb7636)

HTTP response: 201| +|[00214-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00214-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d359cf8016f90e7cb765c/download)
[Logs](https://api.biosimulations.org/logs/677d359cf8016f90e7cb765c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d359cf8016f90e7cb765c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d35983e750b90a426136e/download)
[Logs](https://api.biosimulations.org/logs/677d35983e750b90a426136e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35983e750b90a426136e)

HTTP response: 201| +|[00215-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00215-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d35a23e750b90a4261392/download)
[Logs](https://api.biosimulations.org/logs/677d35a23e750b90a4261392?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35a23e750b90a4261392)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d359ff8016f90e7cb7665/download)
[Logs](https://api.biosimulations.org/logs/677d359ff8016f90e7cb7665?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d359ff8016f90e7cb7665)

HTTP response: 201| +|[00216-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00216-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d35aaf8016f90e7cb7688/download)
[Logs](https://api.biosimulations.org/logs/677d35aaf8016f90e7cb7688?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35aaf8016f90e7cb7688)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d35a6f8016f90e7cb7670/download)
[Logs](https://api.biosimulations.org/logs/677d35a6f8016f90e7cb7670?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35a6f8016f90e7cb7670)

HTTP response: 201| +|[00217-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00217-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d35b067468f9f3fc5902e/download)
[Logs](https://api.biosimulations.org/logs/677d35b067468f9f3fc5902e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35b067468f9f3fc5902e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d35ad67468f9f3fc59021/download)
[Logs](https://api.biosimulations.org/logs/677d35ad67468f9f3fc59021?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35ad67468f9f3fc59021)

HTTP response: 201| +|[00218-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00218-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d35b867468f9f3fc5903e/download)
[Logs](https://api.biosimulations.org/logs/677d35b867468f9f3fc5903e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35b867468f9f3fc5903e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d35b43e750b90a42613c4/download)
[Logs](https://api.biosimulations.org/logs/677d35b43e750b90a42613c4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35b43e750b90a42613c4)

HTTP response: 201| +|[00219-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00219-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d35bef8016f90e7cb76c9/download)
[Logs](https://api.biosimulations.org/logs/677d35bef8016f90e7cb76c9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35bef8016f90e7cb76c9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d35bb67468f9f3fc59048/download)
[Logs](https://api.biosimulations.org/logs/677d35bb67468f9f3fc59048?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35bb67468f9f3fc59048)

HTTP response: 201| +|[00220-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00220-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d35c567468f9f3fc5906d/download)
[Logs](https://api.biosimulations.org/logs/677d35c567468f9f3fc5906d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35c567468f9f3fc5906d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d35c267468f9f3fc59062/download)
[Logs](https://api.biosimulations.org/logs/677d35c267468f9f3fc59062?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35c267468f9f3fc59062)

HTTP response: 201| +|[00221-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00221-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d35ccf8016f90e7cb76e5/download)
[Logs](https://api.biosimulations.org/logs/677d35ccf8016f90e7cb76e5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35ccf8016f90e7cb76e5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d35c867468f9f3fc5907a/download)
[Logs](https://api.biosimulations.org/logs/677d35c867468f9f3fc5907a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35c867468f9f3fc5907a)

HTTP response: 201| +|[00222-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00222-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d35d3f8016f90e7cb76fe/download)
[Logs](https://api.biosimulations.org/logs/677d35d3f8016f90e7cb76fe?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35d3f8016f90e7cb76fe)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d35d0f8016f90e7cb76f1/download)
[Logs](https://api.biosimulations.org/logs/677d35d0f8016f90e7cb76f1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35d0f8016f90e7cb76f1)

HTTP response: 201| +|[00223-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00223-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d35db67468f9f3fc590b2/download)
[Logs](https://api.biosimulations.org/logs/677d35db67468f9f3fc590b2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35db67468f9f3fc590b2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d35d867468f9f3fc590ad/download)
[Logs](https://api.biosimulations.org/logs/677d35d867468f9f3fc590ad?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35d867468f9f3fc590ad)

HTTP response: 201| +|[00224-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00224-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d35e167468f9f3fc590bd/download)
[Logs](https://api.biosimulations.org/logs/677d35e167468f9f3fc590bd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35e167468f9f3fc590bd)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d35de3e750b90a4261456/download)
[Logs](https://api.biosimulations.org/logs/677d35de3e750b90a4261456?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35de3e750b90a4261456)

HTTP response: 201| +|[00225-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00225-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d35e8f8016f90e7cb7733/download)
[Logs](https://api.biosimulations.org/logs/677d35e8f8016f90e7cb7733?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35e8f8016f90e7cb7733)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d35e53e750b90a4261466/download)
[Logs](https://api.biosimulations.org/logs/677d35e53e750b90a4261466?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35e53e750b90a4261466)

HTTP response: 201| +|[00226-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00226-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d35ef3e750b90a4261493/download)
[Logs](https://api.biosimulations.org/logs/677d35ef3e750b90a4261493?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35ef3e750b90a4261493)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d35ecf8016f90e7cb7745/download)
[Logs](https://api.biosimulations.org/logs/677d35ecf8016f90e7cb7745?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35ecf8016f90e7cb7745)

HTTP response: 201| +|[00227-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00227-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d35f6f8016f90e7cb7761/download)
[Logs](https://api.biosimulations.org/logs/677d35f6f8016f90e7cb7761?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35f6f8016f90e7cb7761)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d35f267468f9f3fc590ff/download)
[Logs](https://api.biosimulations.org/logs/677d35f267468f9f3fc590ff?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35f267468f9f3fc590ff)

HTTP response: 201| +|[00228-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00228-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d35fc3e750b90a42614c1/download)
[Logs](https://api.biosimulations.org/logs/677d35fc3e750b90a42614c1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35fc3e750b90a42614c1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d35f967468f9f3fc5910f/download)
[Logs](https://api.biosimulations.org/logs/677d35f967468f9f3fc5910f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d35f967468f9f3fc5910f)

HTTP response: 201| +|[00229-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00229-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d360367468f9f3fc59127/download)
[Logs](https://api.biosimulations.org/logs/677d360367468f9f3fc59127?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d360367468f9f3fc59127)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3600f8016f90e7cb7783/download)
[Logs](https://api.biosimulations.org/logs/677d3600f8016f90e7cb7783?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3600f8016f90e7cb7783)

HTTP response: 201| +|[00230-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00230-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d360bf8016f90e7cb77b2/download)
[Logs](https://api.biosimulations.org/logs/677d360bf8016f90e7cb77b2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d360bf8016f90e7cb77b2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d36073e750b90a42614e0/download)
[Logs](https://api.biosimulations.org/logs/677d36073e750b90a42614e0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36073e750b90a42614e0)

HTTP response: 201| +|[00231-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00231-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3612f8016f90e7cb77c5/download)
[Logs](https://api.biosimulations.org/logs/677d3612f8016f90e7cb77c5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3612f8016f90e7cb77c5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d360e3e750b90a42614f2/download)
[Logs](https://api.biosimulations.org/logs/677d360e3e750b90a42614f2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d360e3e750b90a42614f2)

HTTP response: 201| +|[00232-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00232-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d361a67468f9f3fc5916c/download)
[Logs](https://api.biosimulations.org/logs/677d361a67468f9f3fc5916c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d361a67468f9f3fc5916c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d36163e750b90a4261508/download)
[Logs](https://api.biosimulations.org/logs/677d36163e750b90a4261508?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36163e750b90a4261508)

HTTP response: 201| +|[00233-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00233-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d362067468f9f3fc59187/download)
[Logs](https://api.biosimulations.org/logs/677d362067468f9f3fc59187?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d362067468f9f3fc59187)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d361df8016f90e7cb77e7/download)
[Logs](https://api.biosimulations.org/logs/677d361df8016f90e7cb77e7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d361df8016f90e7cb77e7)

HTTP response: 201| +|[00234-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00234-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3626f8016f90e7cb781a/download)
[Logs](https://api.biosimulations.org/logs/677d3626f8016f90e7cb781a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3626f8016f90e7cb781a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d362367468f9f3fc59198/download)
[Logs](https://api.biosimulations.org/logs/677d362367468f9f3fc59198?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d362367468f9f3fc59198)

HTTP response: 201| +|[00235-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00235-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d362df8016f90e7cb7825/download)
[Logs](https://api.biosimulations.org/logs/677d362df8016f90e7cb7825?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d362df8016f90e7cb7825)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d362a3e750b90a4261532/download)
[Logs](https://api.biosimulations.org/logs/677d362a3e750b90a4261532?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d362a3e750b90a4261532)

HTTP response: 201| +|[00236-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00236-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d363467468f9f3fc591ce/download)
[Logs](https://api.biosimulations.org/logs/677d363467468f9f3fc591ce?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d363467468f9f3fc591ce)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3631f8016f90e7cb7831/download)
[Logs](https://api.biosimulations.org/logs/677d3631f8016f90e7cb7831?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3631f8016f90e7cb7831)

HTTP response: 201| +|[00237-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00237-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d363b3e750b90a4261575/download)
[Logs](https://api.biosimulations.org/logs/677d363b3e750b90a4261575?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d363b3e750b90a4261575)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3638f8016f90e7cb784b/download)
[Logs](https://api.biosimulations.org/logs/677d3638f8016f90e7cb784b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3638f8016f90e7cb784b)

HTTP response: 201| +|[00238-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00238-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d364167468f9f3fc591fa/download)
[Logs](https://api.biosimulations.org/logs/677d364167468f9f3fc591fa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d364167468f9f3fc591fa)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d363e67468f9f3fc591e9/download)
[Logs](https://api.biosimulations.org/logs/677d363e67468f9f3fc591e9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d363e67468f9f3fc591e9)

HTTP response: 201| +|[00239-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00239-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d36483e750b90a426159c/download)
[Logs](https://api.biosimulations.org/logs/677d36483e750b90a426159c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36483e750b90a426159c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3645f8016f90e7cb7871/download)
[Logs](https://api.biosimulations.org/logs/677d3645f8016f90e7cb7871?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3645f8016f90e7cb7871)

HTTP response: 201| +|[00240-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00240-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d364f67468f9f3fc5921e/download)
[Logs](https://api.biosimulations.org/logs/677d364f67468f9f3fc5921e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d364f67468f9f3fc5921e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d364bf8016f90e7cb7888/download)
[Logs](https://api.biosimulations.org/logs/677d364bf8016f90e7cb7888?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d364bf8016f90e7cb7888)

HTTP response: 201| +|[00241-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00241-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3655f8016f90e7cb78a7/download)
[Logs](https://api.biosimulations.org/logs/677d3655f8016f90e7cb78a7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3655f8016f90e7cb78a7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3652f8016f90e7cb789f/download)
[Logs](https://api.biosimulations.org/logs/677d3652f8016f90e7cb789f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3652f8016f90e7cb789f)

HTTP response: 201| +|[00242-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00242-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d365df8016f90e7cb78c4/download)
[Logs](https://api.biosimulations.org/logs/677d365df8016f90e7cb78c4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d365df8016f90e7cb78c4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3659f8016f90e7cb78ac/download)
[Logs](https://api.biosimulations.org/logs/677d3659f8016f90e7cb78ac?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3659f8016f90e7cb78ac)

HTTP response: 201| +|[00243-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00243-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3663f8016f90e7cb78e0/download)
[Logs](https://api.biosimulations.org/logs/677d3663f8016f90e7cb78e0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3663f8016f90e7cb78e0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3660f8016f90e7cb78ca/download)
[Logs](https://api.biosimulations.org/logs/677d3660f8016f90e7cb78ca?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3660f8016f90e7cb78ca)

HTTP response: 201| +|[00244-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00244-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d366a3e750b90a4261607/download)
[Logs](https://api.biosimulations.org/logs/677d366a3e750b90a4261607?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d366a3e750b90a4261607)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d36673e750b90a4261602/download)
[Logs](https://api.biosimulations.org/logs/677d36673e750b90a4261602?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36673e750b90a4261602)

HTTP response: 201| +|[00245-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00245-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d36713e750b90a4261621/download)
[Logs](https://api.biosimulations.org/logs/677d36713e750b90a4261621?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36713e750b90a4261621)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d366df8016f90e7cb78f6/download)
[Logs](https://api.biosimulations.org/logs/677d366df8016f90e7cb78f6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d366df8016f90e7cb78f6)

HTTP response: 201| +|[00246-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00246-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3678f8016f90e7cb791f/download)
[Logs](https://api.biosimulations.org/logs/677d3678f8016f90e7cb791f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3678f8016f90e7cb791f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d367567468f9f3fc5927f/download)
[Logs](https://api.biosimulations.org/logs/677d367567468f9f3fc5927f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d367567468f9f3fc5927f)

HTTP response: 201| +|[00247-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00247-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d367e3e750b90a426164f/download)
[Logs](https://api.biosimulations.org/logs/677d367e3e750b90a426164f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d367e3e750b90a426164f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d367b67468f9f3fc59295/download)
[Logs](https://api.biosimulations.org/logs/677d367b67468f9f3fc59295?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d367b67468f9f3fc59295)

HTTP response: 201| +|[00248-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00248-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d36853e750b90a426166b/download)
[Logs](https://api.biosimulations.org/logs/677d36853e750b90a426166b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36853e750b90a426166b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3682f8016f90e7cb7933/download)
[Logs](https://api.biosimulations.org/logs/677d3682f8016f90e7cb7933?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3682f8016f90e7cb7933)

HTTP response: 201| +|[00249-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00249-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d368c67468f9f3fc592cb/download)
[Logs](https://api.biosimulations.org/logs/677d368c67468f9f3fc592cb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d368c67468f9f3fc592cb)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3688f8016f90e7cb7948/download)
[Logs](https://api.biosimulations.org/logs/677d3688f8016f90e7cb7948?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3688f8016f90e7cb7948)

HTTP response: 201| +|[00250-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00250-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d369267468f9f3fc592e1/download)
[Logs](https://api.biosimulations.org/logs/677d369267468f9f3fc592e1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d369267468f9f3fc592e1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d368ff8016f90e7cb795a/download)
[Logs](https://api.biosimulations.org/logs/677d368ff8016f90e7cb795a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d368ff8016f90e7cb795a)

HTTP response: 201| +|[00251-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00251-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d36993e750b90a426169d/download)
[Logs](https://api.biosimulations.org/logs/677d36993e750b90a426169d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36993e750b90a426169d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3696f8016f90e7cb796a/download)
[Logs](https://api.biosimulations.org/logs/677d3696f8016f90e7cb796a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3696f8016f90e7cb796a)

HTTP response: 201| +|[00252-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00252-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d36a067468f9f3fc59310/download)
[Logs](https://api.biosimulations.org/logs/677d36a067468f9f3fc59310?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36a067468f9f3fc59310)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d369d3e750b90a42616aa/download)
[Logs](https://api.biosimulations.org/logs/677d369d3e750b90a42616aa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d369d3e750b90a42616aa)

HTTP response: 201| +|[00253-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00253-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d36a63e750b90a42616c8/download)
[Logs](https://api.biosimulations.org/logs/677d36a63e750b90a42616c8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36a63e750b90a42616c8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d36a3f8016f90e7cb7998/download)
[Logs](https://api.biosimulations.org/logs/677d36a3f8016f90e7cb7998?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36a3f8016f90e7cb7998)

HTTP response: 201| +|[00254-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00254-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d36adf8016f90e7cb79c5/download)
[Logs](https://api.biosimulations.org/logs/677d36adf8016f90e7cb79c5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36adf8016f90e7cb79c5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d36aa3e750b90a42616d1/download)
[Logs](https://api.biosimulations.org/logs/677d36aa3e750b90a42616d1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36aa3e750b90a42616d1)

HTTP response: 201| +|[00255-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00255-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d36b43e750b90a42616ed/download)
[Logs](https://api.biosimulations.org/logs/677d36b43e750b90a42616ed?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36b43e750b90a42616ed)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d36b1f8016f90e7cb79d0/download)
[Logs](https://api.biosimulations.org/logs/677d36b1f8016f90e7cb79d0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36b1f8016f90e7cb79d0)

HTTP response: 201| +|[00256-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00256-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d36bb3e750b90a4261702/download)
[Logs](https://api.biosimulations.org/logs/677d36bb3e750b90a4261702?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36bb3e750b90a4261702)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d36b867468f9f3fc59360/download)
[Logs](https://api.biosimulations.org/logs/677d36b867468f9f3fc59360?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36b867468f9f3fc59360)

HTTP response: 201| +|[00257-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00257-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d36c267468f9f3fc5937e/download)
[Logs](https://api.biosimulations.org/logs/677d36c267468f9f3fc5937e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36c267468f9f3fc5937e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d36bf3e750b90a426170b/download)
[Logs](https://api.biosimulations.org/logs/677d36bf3e750b90a426170b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36bf3e750b90a426170b)

HTTP response: 201| +|[00258-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00258-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d36c8f8016f90e7cb7a0b/download)
[Logs](https://api.biosimulations.org/logs/677d36c8f8016f90e7cb7a0b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36c8f8016f90e7cb7a0b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d36c667468f9f3fc59387/download)
[Logs](https://api.biosimulations.org/logs/677d36c667468f9f3fc59387?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36c667468f9f3fc59387)

HTTP response: 201| +|[00259-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00259-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d36cf3e750b90a426174d/download)
[Logs](https://api.biosimulations.org/logs/677d36cf3e750b90a426174d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36cf3e750b90a426174d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d36ccf8016f90e7cb7a13/download)
[Logs](https://api.biosimulations.org/logs/677d36ccf8016f90e7cb7a13?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36ccf8016f90e7cb7a13)

HTTP response: 201| +|[00260-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00260-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d36d667468f9f3fc593bc/download)
[Logs](https://api.biosimulations.org/logs/677d36d667468f9f3fc593bc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36d667468f9f3fc593bc)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d36d23e750b90a4261752/download)
[Logs](https://api.biosimulations.org/logs/677d36d23e750b90a4261752?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36d23e750b90a4261752)

HTTP response: 201| +|[00261-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00261-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d36dc3e750b90a4261769/download)
[Logs](https://api.biosimulations.org/logs/677d36dc3e750b90a4261769?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36dc3e750b90a4261769)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d36d867468f9f3fc593c9/download)
[Logs](https://api.biosimulations.org/logs/677d36d867468f9f3fc593c9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36d867468f9f3fc593c9)

HTTP response: 201| +|[00262-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00262-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d36e267468f9f3fc593fb/download)
[Logs](https://api.biosimulations.org/logs/677d36e267468f9f3fc593fb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36e267468f9f3fc593fb)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d36df67468f9f3fc593e0/download)
[Logs](https://api.biosimulations.org/logs/677d36df67468f9f3fc593e0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36df67468f9f3fc593e0)

HTTP response: 201| +|[00263-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00263-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d36e93e750b90a4261797/download)
[Logs](https://api.biosimulations.org/logs/677d36e93e750b90a4261797?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36e93e750b90a4261797)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d36e6f8016f90e7cb7a65/download)
[Logs](https://api.biosimulations.org/logs/677d36e6f8016f90e7cb7a65?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36e6f8016f90e7cb7a65)

HTTP response: 201| +|[00264-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00264-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d36f03e750b90a42617af/download)
[Logs](https://api.biosimulations.org/logs/677d36f03e750b90a42617af?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36f03e750b90a42617af)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d36ed3e750b90a42617a5/download)
[Logs](https://api.biosimulations.org/logs/677d36ed3e750b90a42617a5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36ed3e750b90a42617a5)

HTTP response: 201| +|[00265-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00265-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d36f6f8016f90e7cb7aa1/download)
[Logs](https://api.biosimulations.org/logs/677d36f6f8016f90e7cb7aa1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36f6f8016f90e7cb7aa1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d36f367468f9f3fc5941d/download)
[Logs](https://api.biosimulations.org/logs/677d36f367468f9f3fc5941d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36f367468f9f3fc5941d)

HTTP response: 201| +|[00266-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00266-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d36fd3e750b90a42617d6/download)
[Logs](https://api.biosimulations.org/logs/677d36fd3e750b90a42617d6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36fd3e750b90a42617d6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d36fa3e750b90a42617cb/download)
[Logs](https://api.biosimulations.org/logs/677d36fa3e750b90a42617cb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d36fa3e750b90a42617cb)

HTTP response: 201| +|[00267-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00267-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3705f8016f90e7cb7adb/download)
[Logs](https://api.biosimulations.org/logs/677d3705f8016f90e7cb7adb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3705f8016f90e7cb7adb)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d370167468f9f3fc5943e/download)
[Logs](https://api.biosimulations.org/logs/677d370167468f9f3fc5943e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d370167468f9f3fc5943e)

HTTP response: 201| +|[00268-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00268-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d370b67468f9f3fc59462/download)
[Logs](https://api.biosimulations.org/logs/677d370b67468f9f3fc59462?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d370b67468f9f3fc59462)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d37083e750b90a42617f7/download)
[Logs](https://api.biosimulations.org/logs/677d37083e750b90a42617f7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37083e750b90a42617f7)

HTTP response: 201| +|[00269-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00269-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3712f8016f90e7cb7b07/download)
[Logs](https://api.biosimulations.org/logs/677d3712f8016f90e7cb7b07?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3712f8016f90e7cb7b07)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d370f67468f9f3fc59468/download)
[Logs](https://api.biosimulations.org/logs/677d370f67468f9f3fc59468?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d370f67468f9f3fc59468)

HTTP response: 201| +|[00270-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00270-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d371867468f9f3fc59482/download)
[Logs](https://api.biosimulations.org/logs/677d371867468f9f3fc59482?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d371867468f9f3fc59482)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d37153e750b90a4261825/download)
[Logs](https://api.biosimulations.org/logs/677d37153e750b90a4261825?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37153e750b90a4261825)

HTTP response: 201| +|[00271-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00271-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d371ff8016f90e7cb7b2a/download)
[Logs](https://api.biosimulations.org/logs/677d371ff8016f90e7cb7b2a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d371ff8016f90e7cb7b2a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d371cf8016f90e7cb7b1e/download)
[Logs](https://api.biosimulations.org/logs/677d371cf8016f90e7cb7b1e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d371cf8016f90e7cb7b1e)

HTTP response: 201| +|[00272-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00272-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3726f8016f90e7cb7b48/download)
[Logs](https://api.biosimulations.org/logs/677d3726f8016f90e7cb7b48?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3726f8016f90e7cb7b48)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3723f8016f90e7cb7b38/download)
[Logs](https://api.biosimulations.org/logs/677d3723f8016f90e7cb7b38?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3723f8016f90e7cb7b38)

HTTP response: 201| +|[00273-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00273-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d372e67468f9f3fc594c3/download)
[Logs](https://api.biosimulations.org/logs/677d372e67468f9f3fc594c3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d372e67468f9f3fc594c3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d372af8016f90e7cb7b53/download)
[Logs](https://api.biosimulations.org/logs/677d372af8016f90e7cb7b53?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d372af8016f90e7cb7b53)

HTTP response: 201| +|[00274-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00274-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d37353e750b90a426187e/download)
[Logs](https://api.biosimulations.org/logs/677d37353e750b90a426187e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37353e750b90a426187e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d37313e750b90a4261871/download)
[Logs](https://api.biosimulations.org/logs/677d37313e750b90a4261871?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37313e750b90a4261871)

HTTP response: 201| +|[00275-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00275-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d373bf8016f90e7cb7b87/download)
[Logs](https://api.biosimulations.org/logs/677d373bf8016f90e7cb7b87?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d373bf8016f90e7cb7b87)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d373867468f9f3fc594e5/download)
[Logs](https://api.biosimulations.org/logs/677d373867468f9f3fc594e5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d373867468f9f3fc594e5)

HTTP response: 201| +|[00276-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00276-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3742f8016f90e7cb7b9c/download)
[Logs](https://api.biosimulations.org/logs/677d3742f8016f90e7cb7b9c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3742f8016f90e7cb7b9c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d373f3e750b90a426189a/download)
[Logs](https://api.biosimulations.org/logs/677d373f3e750b90a426189a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d373f3e750b90a426189a)

HTTP response: 201| +|[00277-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00277-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3749f8016f90e7cb7bb0/download)
[Logs](https://api.biosimulations.org/logs/677d3749f8016f90e7cb7bb0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3749f8016f90e7cb7bb0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d374667468f9f3fc59506/download)
[Logs](https://api.biosimulations.org/logs/677d374667468f9f3fc59506?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d374667468f9f3fc59506)

HTTP response: 201| +|[00278-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00278-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d37503e750b90a42618ca/download)
[Logs](https://api.biosimulations.org/logs/677d37503e750b90a42618ca?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37503e750b90a42618ca)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d374c67468f9f3fc59517/download)
[Logs](https://api.biosimulations.org/logs/677d374c67468f9f3fc59517?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d374c67468f9f3fc59517)

HTTP response: 201| +|[00279-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00279-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d37563e750b90a42618de/download)
[Logs](https://api.biosimulations.org/logs/677d37563e750b90a42618de?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37563e750b90a42618de)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3753f8016f90e7cb7be0/download)
[Logs](https://api.biosimulations.org/logs/677d3753f8016f90e7cb7be0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3753f8016f90e7cb7be0)

HTTP response: 201| +|[00280-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00280-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d375d67468f9f3fc59558/download)
[Logs](https://api.biosimulations.org/logs/677d375d67468f9f3fc59558?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d375d67468f9f3fc59558)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d37593e750b90a42618e4/download)
[Logs](https://api.biosimulations.org/logs/677d37593e750b90a42618e4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37593e750b90a42618e4)

HTTP response: 201| +|[00281-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00281-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d376467468f9f3fc59574/download)
[Logs](https://api.biosimulations.org/logs/677d376467468f9f3fc59574?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d376467468f9f3fc59574)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3760f8016f90e7cb7c09/download)
[Logs](https://api.biosimulations.org/logs/677d3760f8016f90e7cb7c09?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3760f8016f90e7cb7c09)

HTTP response: 201| +|[00282-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00282-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d376a67468f9f3fc5958f/download)
[Logs](https://api.biosimulations.org/logs/677d376a67468f9f3fc5958f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d376a67468f9f3fc5958f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d37673e750b90a426190a/download)
[Logs](https://api.biosimulations.org/logs/677d37673e750b90a426190a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37673e750b90a426190a)

HTTP response: 201| +|[00283-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00283-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d377167468f9f3fc5959f/download)
[Logs](https://api.biosimulations.org/logs/677d377167468f9f3fc5959f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d377167468f9f3fc5959f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d376ef8016f90e7cb7c36/download)
[Logs](https://api.biosimulations.org/logs/677d376ef8016f90e7cb7c36?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d376ef8016f90e7cb7c36)

HTTP response: 201| +|[00284-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00284-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3777f8016f90e7cb7c4c/download)
[Logs](https://api.biosimulations.org/logs/677d3777f8016f90e7cb7c4c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3777f8016f90e7cb7c4c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d377467468f9f3fc595a8/download)
[Logs](https://api.biosimulations.org/logs/677d377467468f9f3fc595a8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d377467468f9f3fc595a8)

HTTP response: 201| +|[00285-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00285-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d377f67468f9f3fc595c8/download)
[Logs](https://api.biosimulations.org/logs/677d377f67468f9f3fc595c8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d377f67468f9f3fc595c8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d377bf8016f90e7cb7c5d/download)
[Logs](https://api.biosimulations.org/logs/677d377bf8016f90e7cb7c5d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d377bf8016f90e7cb7c5d)

HTTP response: 201| +|[00286-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00286-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d37863e750b90a4261965/download)
[Logs](https://api.biosimulations.org/logs/677d37863e750b90a4261965?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37863e750b90a4261965)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3782f8016f90e7cb7c72/download)
[Logs](https://api.biosimulations.org/logs/677d3782f8016f90e7cb7c72?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3782f8016f90e7cb7c72)

HTTP response: 201| +|[00287-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00287-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d378cf8016f90e7cb7c93/download)
[Logs](https://api.biosimulations.org/logs/677d378cf8016f90e7cb7c93?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d378cf8016f90e7cb7c93)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d378967468f9f3fc595e0/download)
[Logs](https://api.biosimulations.org/logs/677d378967468f9f3fc595e0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d378967468f9f3fc595e0)

HTTP response: 201| +|[00288-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00288-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d379367468f9f3fc595fa/download)
[Logs](https://api.biosimulations.org/logs/677d379367468f9f3fc595fa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d379367468f9f3fc595fa)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d378f67468f9f3fc595f7/download)
[Logs](https://api.biosimulations.org/logs/677d378f67468f9f3fc595f7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d378f67468f9f3fc595f7)

HTTP response: 201| +|[00289-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00289-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d379a3e750b90a42619ab/download)
[Logs](https://api.biosimulations.org/logs/677d379a3e750b90a42619ab?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d379a3e750b90a42619ab)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d37963e750b90a42619a5/download)
[Logs](https://api.biosimulations.org/logs/677d37963e750b90a42619a5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37963e750b90a42619a5)

HTTP response: 201| +|[00290-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00290-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d37a167468f9f3fc59633/download)
[Logs](https://api.biosimulations.org/logs/677d37a167468f9f3fc59633?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37a167468f9f3fc59633)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d379d67468f9f3fc59628/download)
[Logs](https://api.biosimulations.org/logs/677d379d67468f9f3fc59628?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d379d67468f9f3fc59628)

HTTP response: 201| +|[00291-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00291-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d37a767468f9f3fc59641/download)
[Logs](https://api.biosimulations.org/logs/677d37a767468f9f3fc59641?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37a767468f9f3fc59641)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d37a43e750b90a42619c5/download)
[Logs](https://api.biosimulations.org/logs/677d37a43e750b90a42619c5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37a43e750b90a42619c5)

HTTP response: 201| +|[00292-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00292-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d37ae67468f9f3fc59664/download)
[Logs](https://api.biosimulations.org/logs/677d37ae67468f9f3fc59664?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37ae67468f9f3fc59664)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d37ab3e750b90a42619d3/download)
[Logs](https://api.biosimulations.org/logs/677d37ab3e750b90a42619d3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37ab3e750b90a42619d3)

HTTP response: 201| +|[00293-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00293-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d37b73e750b90a42619f4/download)
[Logs](https://api.biosimulations.org/logs/677d37b73e750b90a42619f4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37b73e750b90a42619f4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d37b23e750b90a42619eb/download)
[Logs](https://api.biosimulations.org/logs/677d37b23e750b90a42619eb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37b23e750b90a42619eb)

HTTP response: 201| +|[00294-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00294-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d37be3e750b90a4261a10/download)
[Logs](https://api.biosimulations.org/logs/677d37be3e750b90a4261a10?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37be3e750b90a4261a10)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d37ba67468f9f3fc5968b/download)
[Logs](https://api.biosimulations.org/logs/677d37ba67468f9f3fc5968b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37ba67468f9f3fc5968b)

HTTP response: 201| +|[00295-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00295-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d37c63e750b90a4261a20/download)
[Logs](https://api.biosimulations.org/logs/677d37c63e750b90a4261a20?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37c63e750b90a4261a20)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d37c2f8016f90e7cb7d3e/download)
[Logs](https://api.biosimulations.org/logs/677d37c2f8016f90e7cb7d3e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37c2f8016f90e7cb7d3e)

HTTP response: 201| +|[00296-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00296-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d37ce67468f9f3fc596be/download)
[Logs](https://api.biosimulations.org/logs/677d37ce67468f9f3fc596be?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37ce67468f9f3fc596be)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d37cb67468f9f3fc596bb/download)
[Logs](https://api.biosimulations.org/logs/677d37cb67468f9f3fc596bb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37cb67468f9f3fc596bb)

HTTP response: 201| +|[00297-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00297-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d37d63e750b90a4261a48/download)
[Logs](https://api.biosimulations.org/logs/677d37d63e750b90a4261a48?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37d63e750b90a4261a48)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d37d267468f9f3fc596d5/download)
[Logs](https://api.biosimulations.org/logs/677d37d267468f9f3fc596d5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37d267468f9f3fc596d5)

HTTP response: 201| +|[00298-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00298-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d37dd67468f9f3fc596e9/download)
[Logs](https://api.biosimulations.org/logs/677d37dd67468f9f3fc596e9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37dd67468f9f3fc596e9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d37daf8016f90e7cb7d72/download)
[Logs](https://api.biosimulations.org/logs/677d37daf8016f90e7cb7d72?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37daf8016f90e7cb7d72)

HTTP response: 201| +|[00299-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00299-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d37e5f8016f90e7cb7d98/download)
[Logs](https://api.biosimulations.org/logs/677d37e5f8016f90e7cb7d98?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37e5f8016f90e7cb7d98)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d37e167468f9f3fc596f7/download)
[Logs](https://api.biosimulations.org/logs/677d37e167468f9f3fc596f7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37e167468f9f3fc596f7)

HTTP response: 201| +|[00300-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00300-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d37ec3e750b90a4261a79/download)
[Logs](https://api.biosimulations.org/logs/677d37ec3e750b90a4261a79?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37ec3e750b90a4261a79)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d37e9f8016f90e7cb7da2/download)
[Logs](https://api.biosimulations.org/logs/677d37e9f8016f90e7cb7da2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37e9f8016f90e7cb7da2)

HTTP response: 201| +|[00301-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00301-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d37f43e750b90a4261a99/download)
[Logs](https://api.biosimulations.org/logs/677d37f43e750b90a4261a99?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37f43e750b90a4261a99)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d37f1f8016f90e7cb7dc0/download)
[Logs](https://api.biosimulations.org/logs/677d37f1f8016f90e7cb7dc0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37f1f8016f90e7cb7dc0)

HTTP response: 201| +|[00302-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00302-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d37fcf8016f90e7cb7dde/download)
[Logs](https://api.biosimulations.org/logs/677d37fcf8016f90e7cb7dde?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37fcf8016f90e7cb7dde)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d37f867468f9f3fc59731/download)
[Logs](https://api.biosimulations.org/logs/677d37f867468f9f3fc59731?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37f867468f9f3fc59731)

HTTP response: 201| +|[00303-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00303-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3803f8016f90e7cb7df3/download)
[Logs](https://api.biosimulations.org/logs/677d3803f8016f90e7cb7df3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3803f8016f90e7cb7df3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d37ff67468f9f3fc59743/download)
[Logs](https://api.biosimulations.org/logs/677d37ff67468f9f3fc59743?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d37ff67468f9f3fc59743)

HTTP response: 201| +|[00304-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00304-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d380967468f9f3fc5975b/download)
[Logs](https://api.biosimulations.org/logs/677d380967468f9f3fc5975b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d380967468f9f3fc5975b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d38073e750b90a4261ad2/download)
[Logs](https://api.biosimulations.org/logs/677d38073e750b90a4261ad2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38073e750b90a4261ad2)

HTTP response: 201| +|[00305-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00305-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d381167468f9f3fc59770/download)
[Logs](https://api.biosimulations.org/logs/677d381167468f9f3fc59770?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d381167468f9f3fc59770)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d380d67468f9f3fc59769/download)
[Logs](https://api.biosimulations.org/logs/677d380d67468f9f3fc59769?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d380d67468f9f3fc59769)

HTTP response: 201| +|[00306-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00306-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d38173e750b90a4261b02/download)
[Logs](https://api.biosimulations.org/logs/677d38173e750b90a4261b02?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38173e750b90a4261b02)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d381467468f9f3fc5977d/download)
[Logs](https://api.biosimulations.org/logs/677d381467468f9f3fc5977d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d381467468f9f3fc5977d)

HTTP response: 201| +|[00307-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00307-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d381e3e750b90a4261b1b/download)
[Logs](https://api.biosimulations.org/logs/677d381e3e750b90a4261b1b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d381e3e750b90a4261b1b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d381a67468f9f3fc5978d/download)
[Logs](https://api.biosimulations.org/logs/677d381a67468f9f3fc5978d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d381a67468f9f3fc5978d)

HTTP response: 201| +|[00308-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00308-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d382567468f9f3fc597ad/download)
[Logs](https://api.biosimulations.org/logs/677d382567468f9f3fc597ad?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d382567468f9f3fc597ad)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d38213e750b90a4261b27/download)
[Logs](https://api.biosimulations.org/logs/677d38213e750b90a4261b27?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38213e750b90a4261b27)

HTTP response: 201| +|[00309-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00309-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d382cf8016f90e7cb7e75/download)
[Logs](https://api.biosimulations.org/logs/677d382cf8016f90e7cb7e75?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d382cf8016f90e7cb7e75)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d382867468f9f3fc597b5/download)
[Logs](https://api.biosimulations.org/logs/677d382867468f9f3fc597b5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d382867468f9f3fc597b5)

HTTP response: 201| +|[00310-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00310-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d383267468f9f3fc597d0/download)
[Logs](https://api.biosimulations.org/logs/677d383267468f9f3fc597d0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d383267468f9f3fc597d0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d382ff8016f90e7cb7e7d/download)
[Logs](https://api.biosimulations.org/logs/677d382ff8016f90e7cb7e7d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d382ff8016f90e7cb7e7d)

HTTP response: 201| +|[00311-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00311-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d38383e750b90a4261b80/download)
[Logs](https://api.biosimulations.org/logs/677d38383e750b90a4261b80?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38383e750b90a4261b80)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d38363e750b90a4261b72/download)
[Logs](https://api.biosimulations.org/logs/677d38363e750b90a4261b72?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38363e750b90a4261b72)

HTTP response: 201| +|[00312-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00312-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d383f3e750b90a4261b94/download)
[Logs](https://api.biosimulations.org/logs/677d383f3e750b90a4261b94?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d383f3e750b90a4261b94)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d383cf8016f90e7cb7e9f/download)
[Logs](https://api.biosimulations.org/logs/677d383cf8016f90e7cb7e9f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d383cf8016f90e7cb7e9f)

HTTP response: 201| +|[00313-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00313-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3846f8016f90e7cb7ec0/download)
[Logs](https://api.biosimulations.org/logs/677d3846f8016f90e7cb7ec0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3846f8016f90e7cb7ec0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d384367468f9f3fc597fb/download)
[Logs](https://api.biosimulations.org/logs/677d384367468f9f3fc597fb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d384367468f9f3fc597fb)

HTTP response: 201| +|[00314-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00314-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d384df8016f90e7cb7edd/download)
[Logs](https://api.biosimulations.org/logs/677d384df8016f90e7cb7edd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d384df8016f90e7cb7edd)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d38493e750b90a4261bba/download)
[Logs](https://api.biosimulations.org/logs/677d38493e750b90a4261bba?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38493e750b90a4261bba)

HTTP response: 201| +|[00315-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00315-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3854f8016f90e7cb7eed/download)
[Logs](https://api.biosimulations.org/logs/677d3854f8016f90e7cb7eed?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3854f8016f90e7cb7eed)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d38513e750b90a4261bcc/download)
[Logs](https://api.biosimulations.org/logs/677d38513e750b90a4261bcc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38513e750b90a4261bcc)

HTTP response: 201| +|[00316-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00316-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d385a67468f9f3fc59850/download)
[Logs](https://api.biosimulations.org/logs/677d385a67468f9f3fc59850?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d385a67468f9f3fc59850)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d385767468f9f3fc59846/download)
[Logs](https://api.biosimulations.org/logs/677d385767468f9f3fc59846?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d385767468f9f3fc59846)

HTTP response: 201| +|[00317-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00317-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d38613e750b90a4261bfe/download)
[Logs](https://api.biosimulations.org/logs/677d38613e750b90a4261bfe?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38613e750b90a4261bfe)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d385ef8016f90e7cb7f08/download)
[Logs](https://api.biosimulations.org/logs/677d385ef8016f90e7cb7f08?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d385ef8016f90e7cb7f08)

HTTP response: 201| +|[00318-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00318-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d38673e750b90a4261c0d/download)
[Logs](https://api.biosimulations.org/logs/677d38673e750b90a4261c0d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38673e750b90a4261c0d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3864f8016f90e7cb7f1a/download)
[Logs](https://api.biosimulations.org/logs/677d3864f8016f90e7cb7f1a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3864f8016f90e7cb7f1a)

HTTP response: 201| +|[00319-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00319-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d386e67468f9f3fc59894/download)
[Logs](https://api.biosimulations.org/logs/677d386e67468f9f3fc59894?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d386e67468f9f3fc59894)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d386b3e750b90a4261c17/download)
[Logs](https://api.biosimulations.org/logs/677d386b3e750b90a4261c17?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d386b3e750b90a4261c17)

HTTP response: 201| +|[00320-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00320-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3875f8016f90e7cb7f5b/download)
[Logs](https://api.biosimulations.org/logs/677d3875f8016f90e7cb7f5b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3875f8016f90e7cb7f5b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d387267468f9f3fc5989c/download)
[Logs](https://api.biosimulations.org/logs/677d387267468f9f3fc5989c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d387267468f9f3fc5989c)

HTTP response: 201| +|[00321-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00321-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d387b67468f9f3fc598b8/download)
[Logs](https://api.biosimulations.org/logs/677d387b67468f9f3fc598b8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d387b67468f9f3fc598b8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d387867468f9f3fc598ae/download)
[Logs](https://api.biosimulations.org/logs/677d387867468f9f3fc598ae?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d387867468f9f3fc598ae)

HTTP response: 201| +|[00322-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00322-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d388167468f9f3fc598c9/download)
[Logs](https://api.biosimulations.org/logs/677d388167468f9f3fc598c9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d388167468f9f3fc598c9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d387f67468f9f3fc598c2/download)
[Logs](https://api.biosimulations.org/logs/677d387f67468f9f3fc598c2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d387f67468f9f3fc598c2)

HTTP response: 201| +|[00323-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00323-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d38883e750b90a4261c74/download)
[Logs](https://api.biosimulations.org/logs/677d38883e750b90a4261c74?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38883e750b90a4261c74)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3885f8016f90e7cb7f8c/download)
[Logs](https://api.biosimulations.org/logs/677d3885f8016f90e7cb7f8c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3885f8016f90e7cb7f8c)

HTTP response: 201| +|[00324-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00324-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d388f67468f9f3fc598f7/download)
[Logs](https://api.biosimulations.org/logs/677d388f67468f9f3fc598f7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d388f67468f9f3fc598f7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d388b3e750b90a4261c7a/download)
[Logs](https://api.biosimulations.org/logs/677d388b3e750b90a4261c7a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d388b3e750b90a4261c7a)

HTTP response: 201| +|[00325-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00325-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3896f8016f90e7cb7fc2/download)
[Logs](https://api.biosimulations.org/logs/677d3896f8016f90e7cb7fc2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3896f8016f90e7cb7fc2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d38933e750b90a4261c95/download)
[Logs](https://api.biosimulations.org/logs/677d38933e750b90a4261c95?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38933e750b90a4261c95)

HTTP response: 201| +|[00326-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00326-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d389c67468f9f3fc5992e/download)
[Logs](https://api.biosimulations.org/logs/677d389c67468f9f3fc5992e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d389c67468f9f3fc5992e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3899f8016f90e7cb7fc8/download)
[Logs](https://api.biosimulations.org/logs/677d3899f8016f90e7cb7fc8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3899f8016f90e7cb7fc8)

HTTP response: 201| +|[00327-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00327-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d38a367468f9f3fc59941/download)
[Logs](https://api.biosimulations.org/logs/677d38a367468f9f3fc59941?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38a367468f9f3fc59941)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d38a067468f9f3fc59937/download)
[Logs](https://api.biosimulations.org/logs/677d38a067468f9f3fc59937?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38a067468f9f3fc59937)

HTTP response: 201| +|[00328-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00328-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d38aaf8016f90e7cb7ffe/download)
[Logs](https://api.biosimulations.org/logs/677d38aaf8016f90e7cb7ffe?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38aaf8016f90e7cb7ffe)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d38a767468f9f3fc59945/download)
[Logs](https://api.biosimulations.org/logs/677d38a767468f9f3fc59945?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38a767468f9f3fc59945)

HTTP response: 201| +|[00329-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00329-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d38b167468f9f3fc59969/download)
[Logs](https://api.biosimulations.org/logs/677d38b167468f9f3fc59969?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38b167468f9f3fc59969)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d38ad3e750b90a4261cde/download)
[Logs](https://api.biosimulations.org/logs/677d38ad3e750b90a4261cde?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38ad3e750b90a4261cde)

HTTP response: 201| +|[00330-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00330-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d38b867468f9f3fc5997e/download)
[Logs](https://api.biosimulations.org/logs/677d38b867468f9f3fc5997e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38b867468f9f3fc5997e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d38b567468f9f3fc59974/download)
[Logs](https://api.biosimulations.org/logs/677d38b567468f9f3fc59974?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38b567468f9f3fc59974)

HTTP response: 201| +|[00331-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00331-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d38c0f8016f90e7cb803e/download)
[Logs](https://api.biosimulations.org/logs/677d38c0f8016f90e7cb803e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38c0f8016f90e7cb803e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d38bc67468f9f3fc5998c/download)
[Logs](https://api.biosimulations.org/logs/677d38bc67468f9f3fc5998c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38bc67468f9f3fc5998c)

HTTP response: 201| +|[00332-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00332-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d38c667468f9f3fc599b9/download)
[Logs](https://api.biosimulations.org/logs/677d38c667468f9f3fc599b9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38c667468f9f3fc599b9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d38c33e750b90a4261d26/download)
[Logs](https://api.biosimulations.org/logs/677d38c33e750b90a4261d26?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38c33e750b90a4261d26)

HTTP response: 201| +|[00333-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00333-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d38cc67468f9f3fc599d8/download)
[Logs](https://api.biosimulations.org/logs/677d38cc67468f9f3fc599d8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38cc67468f9f3fc599d8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d38c9f8016f90e7cb8057/download)
[Logs](https://api.biosimulations.org/logs/677d38c9f8016f90e7cb8057?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38c9f8016f90e7cb8057)

HTTP response: 201| +|[00334-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00334-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d38d567468f9f3fc599ed/download)
[Logs](https://api.biosimulations.org/logs/677d38d567468f9f3fc599ed?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38d567468f9f3fc599ed)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d38d2f8016f90e7cb807b/download)
[Logs](https://api.biosimulations.org/logs/677d38d2f8016f90e7cb807b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38d2f8016f90e7cb807b)

HTTP response: 201| +|[00335-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00335-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d38dc67468f9f3fc599fd/download)
[Logs](https://api.biosimulations.org/logs/677d38dc67468f9f3fc599fd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38dc67468f9f3fc599fd)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d38d93e750b90a4261d5e/download)
[Logs](https://api.biosimulations.org/logs/677d38d93e750b90a4261d5e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38d93e750b90a4261d5e)

HTTP response: 201| +|[00336-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00336-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d38e2f8016f90e7cb80ab/download)
[Logs](https://api.biosimulations.org/logs/677d38e2f8016f90e7cb80ab?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38e2f8016f90e7cb80ab)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d38df3e750b90a4261d6a/download)
[Logs](https://api.biosimulations.org/logs/677d38df3e750b90a4261d6a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38df3e750b90a4261d6a)

HTTP response: 201| +|[00337-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00337-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d38e967468f9f3fc59a23/download)
[Logs](https://api.biosimulations.org/logs/677d38e967468f9f3fc59a23?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38e967468f9f3fc59a23)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d38e6f8016f90e7cb80b0/download)
[Logs](https://api.biosimulations.org/logs/677d38e6f8016f90e7cb80b0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38e6f8016f90e7cb80b0)

HTTP response: 201| +|[00338-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00338-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d38ef67468f9f3fc59a3c/download)
[Logs](https://api.biosimulations.org/logs/677d38ef67468f9f3fc59a3c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38ef67468f9f3fc59a3c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d38ed3e750b90a4261d90/download)
[Logs](https://api.biosimulations.org/logs/677d38ed3e750b90a4261d90?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38ed3e750b90a4261d90)

HTTP response: 201| +|[00339-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00339-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d38f7f8016f90e7cb80ec/download)
[Logs](https://api.biosimulations.org/logs/677d38f7f8016f90e7cb80ec?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38f7f8016f90e7cb80ec)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d38f367468f9f3fc59a4a/download)
[Logs](https://api.biosimulations.org/logs/677d38f367468f9f3fc59a4a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38f367468f9f3fc59a4a)

HTTP response: 201| +|[00340-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00340-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d38fd67468f9f3fc59a67/download)
[Logs](https://api.biosimulations.org/logs/677d38fd67468f9f3fc59a67?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38fd67468f9f3fc59a67)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d38fa3e750b90a4261db7/download)
[Logs](https://api.biosimulations.org/logs/677d38fa3e750b90a4261db7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d38fa3e750b90a4261db7)

HTTP response: 201| +|[00341-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00341-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d390567468f9f3fc59a80/download)
[Logs](https://api.biosimulations.org/logs/677d390567468f9f3fc59a80?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d390567468f9f3fc59a80)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d390167468f9f3fc59a71/download)
[Logs](https://api.biosimulations.org/logs/677d390167468f9f3fc59a71?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d390167468f9f3fc59a71)

HTTP response: 201| +|[00342-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00342-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d390c3e750b90a4261df2/download)
[Logs](https://api.biosimulations.org/logs/677d390c3e750b90a4261df2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d390c3e750b90a4261df2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d39093e750b90a4261deb/download)
[Logs](https://api.biosimulations.org/logs/677d39093e750b90a4261deb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39093e750b90a4261deb)

HTTP response: 201| +|[00343-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00343-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d391367468f9f3fc59aa8/download)
[Logs](https://api.biosimulations.org/logs/677d391367468f9f3fc59aa8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d391367468f9f3fc59aa8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d39103e750b90a4261dfd/download)
[Logs](https://api.biosimulations.org/logs/677d39103e750b90a4261dfd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39103e750b90a4261dfd)

HTTP response: 201| +|[00344-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00344-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3919f8016f90e7cb8148/download)
[Logs](https://api.biosimulations.org/logs/677d3919f8016f90e7cb8148?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3919f8016f90e7cb8148)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d391667468f9f3fc59ac2/download)
[Logs](https://api.biosimulations.org/logs/677d391667468f9f3fc59ac2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d391667468f9f3fc59ac2)

HTTP response: 201| +|[00345-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00345-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d39213e750b90a4261e2b/download)
[Logs](https://api.biosimulations.org/logs/677d39213e750b90a4261e2b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39213e750b90a4261e2b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d391e3e750b90a4261e24/download)
[Logs](https://api.biosimulations.org/logs/677d391e3e750b90a4261e24?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d391e3e750b90a4261e24)

HTTP response: 201| +|[00346-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00346-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d39293e750b90a4261e39/download)
[Logs](https://api.biosimulations.org/logs/677d39293e750b90a4261e39?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39293e750b90a4261e39)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d39253e750b90a4261e34/download)
[Logs](https://api.biosimulations.org/logs/677d39253e750b90a4261e34?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39253e750b90a4261e34)

HTTP response: 201| +|[00347-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00347-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d392ff8016f90e7cb8183/download)
[Logs](https://api.biosimulations.org/logs/677d392ff8016f90e7cb8183?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d392ff8016f90e7cb8183)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d392c3e750b90a4261e4c/download)
[Logs](https://api.biosimulations.org/logs/677d392c3e750b90a4261e4c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d392c3e750b90a4261e4c)

HTTP response: 201| +|[00348-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00348-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3936f8016f90e7cb8195/download)
[Logs](https://api.biosimulations.org/logs/677d3936f8016f90e7cb8195?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3936f8016f90e7cb8195)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d393367468f9f3fc59b1a/download)
[Logs](https://api.biosimulations.org/logs/677d393367468f9f3fc59b1a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d393367468f9f3fc59b1a)

HTTP response: 201| +|[00349-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00349-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d393c3e750b90a4261e85/download)
[Logs](https://api.biosimulations.org/logs/677d393c3e750b90a4261e85?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d393c3e750b90a4261e85)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3939f8016f90e7cb81a7/download)
[Logs](https://api.biosimulations.org/logs/677d3939f8016f90e7cb81a7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3939f8016f90e7cb81a7)

HTTP response: 201| +|[00350-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00350-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d39423e750b90a4261e9f/download)
[Logs](https://api.biosimulations.org/logs/677d39423e750b90a4261e9f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39423e750b90a4261e9f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d393ff8016f90e7cb81b4/download)
[Logs](https://api.biosimulations.org/logs/677d393ff8016f90e7cb81b4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d393ff8016f90e7cb81b4)

HTTP response: 201| +|[00351-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00351-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d39493e750b90a4261ebb/download)
[Logs](https://api.biosimulations.org/logs/677d39493e750b90a4261ebb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39493e750b90a4261ebb)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d394567468f9f3fc59b4f/download)
[Logs](https://api.biosimulations.org/logs/677d394567468f9f3fc59b4f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d394567468f9f3fc59b4f)

HTTP response: 201| +|[00352-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00352-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d394f3e750b90a4261ed0/download)
[Logs](https://api.biosimulations.org/logs/677d394f3e750b90a4261ed0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d394f3e750b90a4261ed0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d394c67468f9f3fc59b61/download)
[Logs](https://api.biosimulations.org/logs/677d394c67468f9f3fc59b61?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d394c67468f9f3fc59b61)

HTTP response: 201| +|[00353-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00353-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d39573e750b90a4261eda/download)
[Logs](https://api.biosimulations.org/logs/677d39573e750b90a4261eda?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39573e750b90a4261eda)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d39533e750b90a4261ed7/download)
[Logs](https://api.biosimulations.org/logs/677d39533e750b90a4261ed7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39533e750b90a4261ed7)

HTTP response: 201| +|[00354-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00354-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d395e3e750b90a4261eea/download)
[Logs](https://api.biosimulations.org/logs/677d395e3e750b90a4261eea?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d395e3e750b90a4261eea)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d395a3e750b90a4261ee1/download)
[Logs](https://api.biosimulations.org/logs/677d395a3e750b90a4261ee1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d395a3e750b90a4261ee1)

HTTP response: 201| +|[00355-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00355-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d39653e750b90a4261f04/download)
[Logs](https://api.biosimulations.org/logs/677d39653e750b90a4261f04?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39653e750b90a4261f04)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3961f8016f90e7cb8207/download)
[Logs](https://api.biosimulations.org/logs/677d3961f8016f90e7cb8207?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3961f8016f90e7cb8207)

HTTP response: 201| +|[00356-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00356-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d396bf8016f90e7cb822b/download)
[Logs](https://api.biosimulations.org/logs/677d396bf8016f90e7cb822b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d396bf8016f90e7cb822b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d396867468f9f3fc59bbf/download)
[Logs](https://api.biosimulations.org/logs/677d396867468f9f3fc59bbf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d396867468f9f3fc59bbf)

HTTP response: 201| +|[00357-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00357-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d397167468f9f3fc59be6/download)
[Logs](https://api.biosimulations.org/logs/677d397167468f9f3fc59be6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d397167468f9f3fc59be6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d396ef8016f90e7cb8243/download)
[Logs](https://api.biosimulations.org/logs/677d396ef8016f90e7cb8243?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d396ef8016f90e7cb8243)

HTTP response: 201| +|[00358-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00358-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d39783e750b90a4261f49/download)
[Logs](https://api.biosimulations.org/logs/677d39783e750b90a4261f49?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39783e750b90a4261f49)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d397567468f9f3fc59bf3/download)
[Logs](https://api.biosimulations.org/logs/677d397567468f9f3fc59bf3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d397567468f9f3fc59bf3)

HTTP response: 201| +|[00359-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00359-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d39803e750b90a4261f5b/download)
[Logs](https://api.biosimulations.org/logs/677d39803e750b90a4261f5b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39803e750b90a4261f5b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d397c3e750b90a4261f4e/download)
[Logs](https://api.biosimulations.org/logs/677d397c3e750b90a4261f4e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d397c3e750b90a4261f4e)

HTTP response: 201| +|[00360-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00360-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d398667468f9f3fc59c3b/download)
[Logs](https://api.biosimulations.org/logs/677d398667468f9f3fc59c3b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d398667468f9f3fc59c3b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d39833e750b90a4261f67/download)
[Logs](https://api.biosimulations.org/logs/677d39833e750b90a4261f67?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39833e750b90a4261f67)

HTTP response: 201| +|[00361-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00361-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d398c3e750b90a4261f79/download)
[Logs](https://api.biosimulations.org/logs/677d398c3e750b90a4261f79?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d398c3e750b90a4261f79)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3989f8016f90e7cb828a/download)
[Logs](https://api.biosimulations.org/logs/677d3989f8016f90e7cb828a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3989f8016f90e7cb828a)

HTTP response: 201| +|[00362-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00362-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d399267468f9f3fc59c61/download)
[Logs](https://api.biosimulations.org/logs/677d399267468f9f3fc59c61?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d399267468f9f3fc59c61)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d398f67468f9f3fc59c51/download)
[Logs](https://api.biosimulations.org/logs/677d398f67468f9f3fc59c51?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d398f67468f9f3fc59c51)

HTTP response: 201| +|[00363-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00363-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3999f8016f90e7cb82c6/download)
[Logs](https://api.biosimulations.org/logs/677d3999f8016f90e7cb82c6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3999f8016f90e7cb82c6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d39963e750b90a4261f93/download)
[Logs](https://api.biosimulations.org/logs/677d39963e750b90a4261f93?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39963e750b90a4261f93)

HTTP response: 201| +|[00364-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00364-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d39a167468f9f3fc59c93/download)
[Logs](https://api.biosimulations.org/logs/677d39a167468f9f3fc59c93?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39a167468f9f3fc59c93)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d399d67468f9f3fc59c84/download)
[Logs](https://api.biosimulations.org/logs/677d399d67468f9f3fc59c84?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d399d67468f9f3fc59c84)

HTTP response: 201| +|[00365-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00365-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d39a867468f9f3fc59ca2/download)
[Logs](https://api.biosimulations.org/logs/677d39a867468f9f3fc59ca2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39a867468f9f3fc59ca2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d39a567468f9f3fc59c9c/download)
[Logs](https://api.biosimulations.org/logs/677d39a567468f9f3fc59c9c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39a567468f9f3fc59c9c)

HTTP response: 201| +|[00366-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00366-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d39aff8016f90e7cb82fa/download)
[Logs](https://api.biosimulations.org/logs/677d39aff8016f90e7cb82fa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39aff8016f90e7cb82fa)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d39ac3e750b90a4261fe0/download)
[Logs](https://api.biosimulations.org/logs/677d39ac3e750b90a4261fe0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39ac3e750b90a4261fe0)

HTTP response: 201| +|[00367-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00367-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d39b53e750b90a4261fff/download)
[Logs](https://api.biosimulations.org/logs/677d39b53e750b90a4261fff?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39b53e750b90a4261fff)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d39b3f8016f90e7cb8308/download)
[Logs](https://api.biosimulations.org/logs/677d39b3f8016f90e7cb8308?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39b3f8016f90e7cb8308)

HTTP response: 201| +|[00368-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00368-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d39bc3e750b90a426200d/download)
[Logs](https://api.biosimulations.org/logs/677d39bc3e750b90a426200d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39bc3e750b90a426200d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d39b9f8016f90e7cb8318/download)
[Logs](https://api.biosimulations.org/logs/677d39b9f8016f90e7cb8318?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39b9f8016f90e7cb8318)

HTTP response: 201| +|[00369-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00369-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d39c53e750b90a4262028/download)
[Logs](https://api.biosimulations.org/logs/677d39c53e750b90a4262028?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39c53e750b90a4262028)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d39c067468f9f3fc59ced/download)
[Logs](https://api.biosimulations.org/logs/677d39c067468f9f3fc59ced?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39c067468f9f3fc59ced)

HTTP response: 201| +|[00370-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00370-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d39cc67468f9f3fc59d0d/download)
[Logs](https://api.biosimulations.org/logs/677d39cc67468f9f3fc59d0d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39cc67468f9f3fc59d0d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d39c967468f9f3fc59d06/download)
[Logs](https://api.biosimulations.org/logs/677d39c967468f9f3fc59d06?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39c967468f9f3fc59d06)

HTTP response: 201| +|[00371-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00371-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d39d3f8016f90e7cb8366/download)
[Logs](https://api.biosimulations.org/logs/677d39d3f8016f90e7cb8366?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39d3f8016f90e7cb8366)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d39d0f8016f90e7cb8361/download)
[Logs](https://api.biosimulations.org/logs/677d39d0f8016f90e7cb8361?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39d0f8016f90e7cb8361)

HTTP response: 201| +|[00372-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00372-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d39daf8016f90e7cb838a/download)
[Logs](https://api.biosimulations.org/logs/677d39daf8016f90e7cb838a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39daf8016f90e7cb838a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d39d767468f9f3fc59d26/download)
[Logs](https://api.biosimulations.org/logs/677d39d767468f9f3fc59d26?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39d767468f9f3fc59d26)

HTTP response: 201| +|[00373-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00373-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d39e3f8016f90e7cb839d/download)
[Logs](https://api.biosimulations.org/logs/677d39e3f8016f90e7cb839d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39e3f8016f90e7cb839d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d39e03e750b90a4262067/download)
[Logs](https://api.biosimulations.org/logs/677d39e03e750b90a4262067?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39e03e750b90a4262067)

HTTP response: 201| +|[00374-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00374-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d39ea67468f9f3fc59d5b/download)
[Logs](https://api.biosimulations.org/logs/677d39ea67468f9f3fc59d5b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39ea67468f9f3fc59d5b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d39e767468f9f3fc59d52/download)
[Logs](https://api.biosimulations.org/logs/677d39e767468f9f3fc59d52?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39e767468f9f3fc59d52)

HTTP response: 201| +|[00375-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00375-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d39f1f8016f90e7cb83c8/download)
[Logs](https://api.biosimulations.org/logs/677d39f1f8016f90e7cb83c8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39f1f8016f90e7cb83c8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d39eef8016f90e7cb83c2/download)
[Logs](https://api.biosimulations.org/logs/677d39eef8016f90e7cb83c2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39eef8016f90e7cb83c2)

HTTP response: 201| +|[00376-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00376-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d39f8f8016f90e7cb83e0/download)
[Logs](https://api.biosimulations.org/logs/677d39f8f8016f90e7cb83e0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39f8f8016f90e7cb83e0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d39f43e750b90a42620a9/download)
[Logs](https://api.biosimulations.org/logs/677d39f43e750b90a42620a9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39f43e750b90a42620a9)

HTTP response: 201| +|[00377-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00377-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d39fef8016f90e7cb83ed/download)
[Logs](https://api.biosimulations.org/logs/677d39fef8016f90e7cb83ed?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39fef8016f90e7cb83ed)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d39fb67468f9f3fc59d85/download)
[Logs](https://api.biosimulations.org/logs/677d39fb67468f9f3fc59d85?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d39fb67468f9f3fc59d85)

HTTP response: 201| +|[00378-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00378-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3a0567468f9f3fc59da2/download)
[Logs](https://api.biosimulations.org/logs/677d3a0567468f9f3fc59da2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a0567468f9f3fc59da2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3a023e750b90a42620dc/download)
[Logs](https://api.biosimulations.org/logs/677d3a023e750b90a42620dc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a023e750b90a42620dc)

HTTP response: 201| +|[00379-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00379-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3a0b3e750b90a42620f7/download)
[Logs](https://api.biosimulations.org/logs/677d3a0b3e750b90a42620f7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a0b3e750b90a42620f7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3a08f8016f90e7cb8410/download)
[Logs](https://api.biosimulations.org/logs/677d3a08f8016f90e7cb8410?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a08f8016f90e7cb8410)

HTTP response: 201| +|[00380-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00380-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3a1167468f9f3fc59dca/download)
[Logs](https://api.biosimulations.org/logs/677d3a1167468f9f3fc59dca?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a1167468f9f3fc59dca)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3a0e3e750b90a4262105/download)
[Logs](https://api.biosimulations.org/logs/677d3a0e3e750b90a4262105?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a0e3e750b90a4262105)

HTTP response: 201| +|[00381-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00381-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3a1767468f9f3fc59dde/download)
[Logs](https://api.biosimulations.org/logs/677d3a1767468f9f3fc59dde?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a1767468f9f3fc59dde)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3a153e750b90a426210e/download)
[Logs](https://api.biosimulations.org/logs/677d3a153e750b90a426210e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a153e750b90a426210e)

HTTP response: 201| +|[00382-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00382-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3a1e67468f9f3fc59deb/download)
[Logs](https://api.biosimulations.org/logs/677d3a1e67468f9f3fc59deb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a1e67468f9f3fc59deb)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3a1b3e750b90a4262127/download)
[Logs](https://api.biosimulations.org/logs/677d3a1b3e750b90a4262127?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a1b3e750b90a4262127)

HTTP response: 201| +|[00383-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00383-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3a243e750b90a4262144/download)
[Logs](https://api.biosimulations.org/logs/677d3a243e750b90a4262144?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a243e750b90a4262144)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3a213e750b90a426213b/download)
[Logs](https://api.biosimulations.org/logs/677d3a213e750b90a426213b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a213e750b90a426213b)

HTTP response: 201| +|[00384-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00384-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3a2b3e750b90a426215e/download)
[Logs](https://api.biosimulations.org/logs/677d3a2b3e750b90a426215e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a2b3e750b90a426215e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3a283e750b90a4262152/download)
[Logs](https://api.biosimulations.org/logs/677d3a283e750b90a4262152?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a283e750b90a4262152)

HTTP response: 201| +|[00385-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00385-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3a3367468f9f3fc59e34/download)
[Logs](https://api.biosimulations.org/logs/677d3a3367468f9f3fc59e34?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a3367468f9f3fc59e34)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3a303e750b90a4262167/download)
[Logs](https://api.biosimulations.org/logs/677d3a303e750b90a4262167?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a303e750b90a4262167)

HTTP response: 201| +|[00386-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00386-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3a3af8016f90e7cb84b5/download)
[Logs](https://api.biosimulations.org/logs/677d3a3af8016f90e7cb84b5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a3af8016f90e7cb84b5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3a373e750b90a426217d/download)
[Logs](https://api.biosimulations.org/logs/677d3a373e750b90a426217d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a373e750b90a426217d)

HTTP response: 201| +|[00387-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00387-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3a403e750b90a4262198/download)
[Logs](https://api.biosimulations.org/logs/677d3a403e750b90a4262198?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a403e750b90a4262198)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3a3df8016f90e7cb84bd/download)
[Logs](https://api.biosimulations.org/logs/677d3a3df8016f90e7cb84bd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a3df8016f90e7cb84bd)

HTTP response: 201| +|[00388-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00388-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3a463e750b90a42621a7/download)
[Logs](https://api.biosimulations.org/logs/677d3a463e750b90a42621a7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a463e750b90a42621a7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3a43f8016f90e7cb84d0/download)
[Logs](https://api.biosimulations.org/logs/677d3a43f8016f90e7cb84d0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a43f8016f90e7cb84d0)

HTTP response: 201| +|[00389-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00389-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3a4e67468f9f3fc59e86/download)
[Logs](https://api.biosimulations.org/logs/677d3a4e67468f9f3fc59e86?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a4e67468f9f3fc59e86)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3a4af8016f90e7cb84f1/download)
[Logs](https://api.biosimulations.org/logs/677d3a4af8016f90e7cb84f1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a4af8016f90e7cb84f1)

HTTP response: 201| +|[00390-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00390-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3a55f8016f90e7cb8515/download)
[Logs](https://api.biosimulations.org/logs/677d3a55f8016f90e7cb8515?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a55f8016f90e7cb8515)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3a523e750b90a42621c7/download)
[Logs](https://api.biosimulations.org/logs/677d3a523e750b90a42621c7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a523e750b90a42621c7)

HTTP response: 201| +|[00391-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00391-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3a5b67468f9f3fc59ead/download)
[Logs](https://api.biosimulations.org/logs/677d3a5b67468f9f3fc59ead?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a5b67468f9f3fc59ead)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3a58f8016f90e7cb8526/download)
[Logs](https://api.biosimulations.org/logs/677d3a58f8016f90e7cb8526?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a58f8016f90e7cb8526)

HTTP response: 201| +|[00392-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00392-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3a6267468f9f3fc59ec3/download)
[Logs](https://api.biosimulations.org/logs/677d3a6267468f9f3fc59ec3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a6267468f9f3fc59ec3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3a5f67468f9f3fc59ebb/download)
[Logs](https://api.biosimulations.org/logs/677d3a5f67468f9f3fc59ebb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a5f67468f9f3fc59ebb)

HTTP response: 201| +|[00393-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00393-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3a683e750b90a426220a/download)
[Logs](https://api.biosimulations.org/logs/677d3a683e750b90a426220a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a683e750b90a426220a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3a6567468f9f3fc59ec8/download)
[Logs](https://api.biosimulations.org/logs/677d3a6567468f9f3fc59ec8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a6567468f9f3fc59ec8)

HTTP response: 201| +|[00394-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00394-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3a6ff8016f90e7cb8578/download)
[Logs](https://api.biosimulations.org/logs/677d3a6ff8016f90e7cb8578?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a6ff8016f90e7cb8578)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3a6b3e750b90a4262213/download)
[Logs](https://api.biosimulations.org/logs/677d3a6b3e750b90a4262213?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a6b3e750b90a4262213)

HTTP response: 201| +|[00395-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00395-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3a753e750b90a4262231/download)
[Logs](https://api.biosimulations.org/logs/677d3a753e750b90a4262231?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a753e750b90a4262231)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3a72f8016f90e7cb8586/download)
[Logs](https://api.biosimulations.org/logs/677d3a72f8016f90e7cb8586?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a72f8016f90e7cb8586)

HTTP response: 201| +|[00396-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00396-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3a7cf8016f90e7cb85ab/download)
[Logs](https://api.biosimulations.org/logs/677d3a7cf8016f90e7cb85ab?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a7cf8016f90e7cb85ab)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3a79f8016f90e7cb85a2/download)
[Logs](https://api.biosimulations.org/logs/677d3a79f8016f90e7cb85a2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a79f8016f90e7cb85a2)

HTTP response: 201| +|[00397-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00397-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3a82f8016f90e7cb85bf/download)
[Logs](https://api.biosimulations.org/logs/677d3a82f8016f90e7cb85bf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a82f8016f90e7cb85bf)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3a7ff8016f90e7cb85b2/download)
[Logs](https://api.biosimulations.org/logs/677d3a7ff8016f90e7cb85b2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a7ff8016f90e7cb85b2)

HTTP response: 201| +|[00398-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00398-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3a893e750b90a4262277/download)
[Logs](https://api.biosimulations.org/logs/677d3a893e750b90a4262277?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a893e750b90a4262277)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3a8667468f9f3fc59f2e/download)
[Logs](https://api.biosimulations.org/logs/677d3a8667468f9f3fc59f2e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a8667468f9f3fc59f2e)

HTTP response: 201| +|[00399-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00399-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3a903e750b90a426228d/download)
[Logs](https://api.biosimulations.org/logs/677d3a903e750b90a426228d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a903e750b90a426228d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3a8df8016f90e7cb85e3/download)
[Logs](https://api.biosimulations.org/logs/677d3a8df8016f90e7cb85e3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a8df8016f90e7cb85e3)

HTTP response: 201| +|[00400-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00400-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3a973e750b90a426229e/download)
[Logs](https://api.biosimulations.org/logs/677d3a973e750b90a426229e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a973e750b90a426229e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3a9467468f9f3fc59f58/download)
[Logs](https://api.biosimulations.org/logs/677d3a9467468f9f3fc59f58?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a9467468f9f3fc59f58)

HTTP response: 201| +|[00401-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00401-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3a9e3e750b90a42622b7/download)
[Logs](https://api.biosimulations.org/logs/677d3a9e3e750b90a42622b7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a9e3e750b90a42622b7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3a9b67468f9f3fc59f65/download)
[Logs](https://api.biosimulations.org/logs/677d3a9b67468f9f3fc59f65?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3a9b67468f9f3fc59f65)

HTTP response: 201| +|[00402-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00402-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3aa567468f9f3fc59f88/download)
[Logs](https://api.biosimulations.org/logs/677d3aa567468f9f3fc59f88?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3aa567468f9f3fc59f88)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3aa267468f9f3fc59f83/download)
[Logs](https://api.biosimulations.org/logs/677d3aa267468f9f3fc59f83?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3aa267468f9f3fc59f83)

HTTP response: 201| +|[00403-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00403-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3aac67468f9f3fc59f9b/download)
[Logs](https://api.biosimulations.org/logs/677d3aac67468f9f3fc59f9b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3aac67468f9f3fc59f9b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3aa8f8016f90e7cb863a/download)
[Logs](https://api.biosimulations.org/logs/677d3aa8f8016f90e7cb863a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3aa8f8016f90e7cb863a)

HTTP response: 201| +|[00404-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00404-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3ab367468f9f3fc59fad/download)
[Logs](https://api.biosimulations.org/logs/677d3ab367468f9f3fc59fad?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ab367468f9f3fc59fad)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3aaf3e750b90a42622ef/download)
[Logs](https://api.biosimulations.org/logs/677d3aaf3e750b90a42622ef?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3aaf3e750b90a42622ef)

HTTP response: 201| +|[00405-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00405-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3ab9f8016f90e7cb866d/download)
[Logs](https://api.biosimulations.org/logs/677d3ab9f8016f90e7cb866d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ab9f8016f90e7cb866d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3ab63e750b90a4262306/download)
[Logs](https://api.biosimulations.org/logs/677d3ab63e750b90a4262306?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ab63e750b90a4262306)

HTTP response: 201| +|[00406-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00406-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3ac03e750b90a426231e/download)
[Logs](https://api.biosimulations.org/logs/677d3ac03e750b90a426231e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ac03e750b90a426231e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3abd67468f9f3fc59fc4/download)
[Logs](https://api.biosimulations.org/logs/677d3abd67468f9f3fc59fc4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3abd67468f9f3fc59fc4)

HTTP response: 201| +|[00407-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00407-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3ac6f8016f90e7cb8698/download)
[Logs](https://api.biosimulations.org/logs/677d3ac6f8016f90e7cb8698?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ac6f8016f90e7cb8698)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3ac467468f9f3fc59fec/download)
[Logs](https://api.biosimulations.org/logs/677d3ac467468f9f3fc59fec?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ac467468f9f3fc59fec)

HTTP response: 201| +|[00408-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00408-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3acdf8016f90e7cb86a8/download)
[Logs](https://api.biosimulations.org/logs/677d3acdf8016f90e7cb86a8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3acdf8016f90e7cb86a8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3aca3e750b90a4262335/download)
[Logs](https://api.biosimulations.org/logs/677d3aca3e750b90a4262335?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3aca3e750b90a4262335)

HTTP response: 201| +|[00409-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00409-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3ad43e750b90a426235a/download)
[Logs](https://api.biosimulations.org/logs/677d3ad43e750b90a426235a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ad43e750b90a426235a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3ad1f8016f90e7cb86b1/download)
[Logs](https://api.biosimulations.org/logs/677d3ad1f8016f90e7cb86b1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ad1f8016f90e7cb86b1)

HTTP response: 201| +|[00410-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00410-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3ada3e750b90a426236a/download)
[Logs](https://api.biosimulations.org/logs/677d3ada3e750b90a426236a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ada3e750b90a426236a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3ad867468f9f3fc5a039/download)
[Logs](https://api.biosimulations.org/logs/677d3ad867468f9f3fc5a039?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ad867468f9f3fc5a039)

HTTP response: 201| +|[00411-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00411-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3ae13e750b90a426237f/download)
[Logs](https://api.biosimulations.org/logs/677d3ae13e750b90a426237f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ae13e750b90a426237f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3add67468f9f3fc5a052/download)
[Logs](https://api.biosimulations.org/logs/677d3add67468f9f3fc5a052?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3add67468f9f3fc5a052)

HTTP response: 201| +|[00412-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00412-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3ae83e750b90a4262393/download)
[Logs](https://api.biosimulations.org/logs/677d3ae83e750b90a4262393?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ae83e750b90a4262393)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3ae4f8016f90e7cb86e4/download)
[Logs](https://api.biosimulations.org/logs/677d3ae4f8016f90e7cb86e4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ae4f8016f90e7cb86e4)

HTTP response: 201| +|[00413-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00413-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3aeff8016f90e7cb870c/download)
[Logs](https://api.biosimulations.org/logs/677d3aeff8016f90e7cb870c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3aeff8016f90e7cb870c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3aebf8016f90e7cb86f0/download)
[Logs](https://api.biosimulations.org/logs/677d3aebf8016f90e7cb86f0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3aebf8016f90e7cb86f0)

HTTP response: 201| +|[00414-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00414-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3af567468f9f3fc5a09e/download)
[Logs](https://api.biosimulations.org/logs/677d3af567468f9f3fc5a09e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3af567468f9f3fc5a09e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3af33e750b90a42623ad/download)
[Logs](https://api.biosimulations.org/logs/677d3af33e750b90a42623ad?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3af33e750b90a42623ad)

HTTP response: 201| +|[00415-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00415-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3afdf8016f90e7cb8734/download)
[Logs](https://api.biosimulations.org/logs/677d3afdf8016f90e7cb8734?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3afdf8016f90e7cb8734)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3af9f8016f90e7cb8725/download)
[Logs](https://api.biosimulations.org/logs/677d3af9f8016f90e7cb8725?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3af9f8016f90e7cb8725)

HTTP response: 201| +|[00416-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00416-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3b03f8016f90e7cb874c/download)
[Logs](https://api.biosimulations.org/logs/677d3b03f8016f90e7cb874c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b03f8016f90e7cb874c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3b003e750b90a42623d9/download)
[Logs](https://api.biosimulations.org/logs/677d3b003e750b90a42623d9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b003e750b90a42623d9)

HTTP response: 201| +|[00417-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00417-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3b0af8016f90e7cb8762/download)
[Logs](https://api.biosimulations.org/logs/677d3b0af8016f90e7cb8762?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b0af8016f90e7cb8762)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3b073e750b90a42623f0/download)
[Logs](https://api.biosimulations.org/logs/677d3b073e750b90a42623f0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b073e750b90a42623f0)

HTTP response: 201| +|[00418-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00418-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3b11f8016f90e7cb8777/download)
[Logs](https://api.biosimulations.org/logs/677d3b11f8016f90e7cb8777?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b11f8016f90e7cb8777)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3b0e3e750b90a4262404/download)
[Logs](https://api.biosimulations.org/logs/677d3b0e3e750b90a4262404?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b0e3e750b90a4262404)

HTTP response: 201| +|[00419-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00419-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3b18f8016f90e7cb878d/download)
[Logs](https://api.biosimulations.org/logs/677d3b18f8016f90e7cb878d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b18f8016f90e7cb878d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3b1567468f9f3fc5a0f1/download)
[Logs](https://api.biosimulations.org/logs/677d3b1567468f9f3fc5a0f1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b1567468f9f3fc5a0f1)

HTTP response: 201| +|[00420-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00420-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3b1f67468f9f3fc5a11b/download)
[Logs](https://api.biosimulations.org/logs/677d3b1f67468f9f3fc5a11b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b1f67468f9f3fc5a11b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3b1cf8016f90e7cb8797/download)
[Logs](https://api.biosimulations.org/logs/677d3b1cf8016f90e7cb8797?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b1cf8016f90e7cb8797)

HTTP response: 201| +|[00421-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00421-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3b27f8016f90e7cb87b0/download)
[Logs](https://api.biosimulations.org/logs/677d3b27f8016f90e7cb87b0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b27f8016f90e7cb87b0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3b23f8016f90e7cb87a8/download)
[Logs](https://api.biosimulations.org/logs/677d3b23f8016f90e7cb87a8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b23f8016f90e7cb87a8)

HTTP response: 201| +|[00422-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00422-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3b2e67468f9f3fc5a138/download)
[Logs](https://api.biosimulations.org/logs/677d3b2e67468f9f3fc5a138?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b2e67468f9f3fc5a138)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3b2b3e750b90a426245f/download)
[Logs](https://api.biosimulations.org/logs/677d3b2b3e750b90a426245f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b2b3e750b90a426245f)

HTTP response: 201| +|[00423-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00423-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3b343e750b90a426247b/download)
[Logs](https://api.biosimulations.org/logs/677d3b343e750b90a426247b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b343e750b90a426247b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3b3167468f9f3fc5a146/download)
[Logs](https://api.biosimulations.org/logs/677d3b3167468f9f3fc5a146?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b3167468f9f3fc5a146)

HTTP response: 201| +|[00424-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00424-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3b3c3e750b90a426248e/download)
[Logs](https://api.biosimulations.org/logs/677d3b3c3e750b90a426248e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b3c3e750b90a426248e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3b3867468f9f3fc5a154/download)
[Logs](https://api.biosimulations.org/logs/677d3b3867468f9f3fc5a154?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b3867468f9f3fc5a154)

HTTP response: 201| +|[00425-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00425-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3b43f8016f90e7cb880f/download)
[Logs](https://api.biosimulations.org/logs/677d3b43f8016f90e7cb880f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b43f8016f90e7cb880f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3b3f67468f9f3fc5a16e/download)
[Logs](https://api.biosimulations.org/logs/677d3b3f67468f9f3fc5a16e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b3f67468f9f3fc5a16e)

HTTP response: 201| +|[00426-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00426-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3b49f8016f90e7cb8825/download)
[Logs](https://api.biosimulations.org/logs/677d3b49f8016f90e7cb8825?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b49f8016f90e7cb8825)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3b4667468f9f3fc5a17f/download)
[Logs](https://api.biosimulations.org/logs/677d3b4667468f9f3fc5a17f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b4667468f9f3fc5a17f)

HTTP response: 201| +|[00427-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00427-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3b503e750b90a42624ce/download)
[Logs](https://api.biosimulations.org/logs/677d3b503e750b90a42624ce?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b503e750b90a42624ce)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3b4d67468f9f3fc5a197/download)
[Logs](https://api.biosimulations.org/logs/677d3b4d67468f9f3fc5a197?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b4d67468f9f3fc5a197)

HTTP response: 201| +|[00428-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00428-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3b563e750b90a42624e8/download)
[Logs](https://api.biosimulations.org/logs/677d3b563e750b90a42624e8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b563e750b90a42624e8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3b533e750b90a42624de/download)
[Logs](https://api.biosimulations.org/logs/677d3b533e750b90a42624de?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b533e750b90a42624de)

HTTP response: 201| +|[00429-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00429-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3b5cf8016f90e7cb8859/download)
[Logs](https://api.biosimulations.org/logs/677d3b5cf8016f90e7cb8859?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b5cf8016f90e7cb8859)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3b5a67468f9f3fc5a1b9/download)
[Logs](https://api.biosimulations.org/logs/677d3b5a67468f9f3fc5a1b9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b5a67468f9f3fc5a1b9)

HTTP response: 201| +|[00430-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00430-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3b63f8016f90e7cb8878/download)
[Logs](https://api.biosimulations.org/logs/677d3b63f8016f90e7cb8878?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b63f8016f90e7cb8878)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3b6067468f9f3fc5a1cc/download)
[Logs](https://api.biosimulations.org/logs/677d3b6067468f9f3fc5a1cc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b6067468f9f3fc5a1cc)

HTTP response: 201| +|[00431-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00431-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3b693e750b90a4262517/download)
[Logs](https://api.biosimulations.org/logs/677d3b693e750b90a4262517?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b693e750b90a4262517)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3b6667468f9f3fc5a1ea/download)
[Logs](https://api.biosimulations.org/logs/677d3b6667468f9f3fc5a1ea?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b6667468f9f3fc5a1ea)

HTTP response: 201| +|[00432-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00432-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3b7067468f9f3fc5a20c/download)
[Logs](https://api.biosimulations.org/logs/677d3b7067468f9f3fc5a20c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b7067468f9f3fc5a20c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3b6d67468f9f3fc5a1f7/download)
[Logs](https://api.biosimulations.org/logs/677d3b6d67468f9f3fc5a1f7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b6d67468f9f3fc5a1f7)

HTTP response: 201| +|[00433-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00433-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3b783e750b90a4262541/download)
[Logs](https://api.biosimulations.org/logs/677d3b783e750b90a4262541?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b783e750b90a4262541)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3b75f8016f90e7cb88a1/download)
[Logs](https://api.biosimulations.org/logs/677d3b75f8016f90e7cb88a1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b75f8016f90e7cb88a1)

HTTP response: 201| +|[00434-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00434-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677e71d43e750b90a426a29e/download)
[Logs](https://api.biosimulations.org/logs/677e71d43e750b90a426a29e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677e71d43e750b90a426a29e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677e71d1f8016f90e7cc069b/download)
[Logs](https://api.biosimulations.org/logs/677e71d1f8016f90e7cc069b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677e71d1f8016f90e7cc069b)

HTTP response: 201| +|[00435-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00435-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3b843e750b90a4262569/download)
[Logs](https://api.biosimulations.org/logs/677d3b843e750b90a4262569?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b843e750b90a4262569)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3b813e750b90a4262565/download)
[Logs](https://api.biosimulations.org/logs/677d3b813e750b90a4262565?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b813e750b90a4262565)

HTTP response: 201| +|[00436-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00436-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3b8b3e750b90a4262577/download)
[Logs](https://api.biosimulations.org/logs/677d3b8b3e750b90a4262577?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b8b3e750b90a4262577)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3b8767468f9f3fc5a24b/download)
[Logs](https://api.biosimulations.org/logs/677d3b8767468f9f3fc5a24b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b8767468f9f3fc5a24b)

HTTP response: 201| +|[00437-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00437-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3b9167468f9f3fc5a275/download)
[Logs](https://api.biosimulations.org/logs/677d3b9167468f9f3fc5a275?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b9167468f9f3fc5a275)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3b8e3e750b90a4262580/download)
[Logs](https://api.biosimulations.org/logs/677d3b8e3e750b90a4262580?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b8e3e750b90a4262580)

HTTP response: 201| +|[00438-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00438-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3b9967468f9f3fc5a291/download)
[Logs](https://api.biosimulations.org/logs/677d3b9967468f9f3fc5a291?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b9967468f9f3fc5a291)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3b9567468f9f3fc5a278/download)
[Logs](https://api.biosimulations.org/logs/677d3b9567468f9f3fc5a278?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b9567468f9f3fc5a278)

HTTP response: 201| +|[00439-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00439-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3ba0f8016f90e7cb8923/download)
[Logs](https://api.biosimulations.org/logs/677d3ba0f8016f90e7cb8923?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ba0f8016f90e7cb8923)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3b9d67468f9f3fc5a296/download)
[Logs](https://api.biosimulations.org/logs/677d3b9d67468f9f3fc5a296?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3b9d67468f9f3fc5a296)

HTTP response: 201| +|[00440-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00440-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3ba73e750b90a42625c5/download)
[Logs](https://api.biosimulations.org/logs/677d3ba73e750b90a42625c5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ba73e750b90a42625c5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3ba3f8016f90e7cb892b/download)
[Logs](https://api.biosimulations.org/logs/677d3ba3f8016f90e7cb892b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ba3f8016f90e7cb892b)

HTTP response: 201| +|[00441-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00441-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3bae3e750b90a42625db/download)
[Logs](https://api.biosimulations.org/logs/677d3bae3e750b90a42625db?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3bae3e750b90a42625db)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3babf8016f90e7cb893f/download)
[Logs](https://api.biosimulations.org/logs/677d3babf8016f90e7cb893f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3babf8016f90e7cb893f)

HTTP response: 201| +|[00442-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00442-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3bb667468f9f3fc5a2ee/download)
[Logs](https://api.biosimulations.org/logs/677d3bb667468f9f3fc5a2ee?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3bb667468f9f3fc5a2ee)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3bb23e750b90a42625e9/download)
[Logs](https://api.biosimulations.org/logs/677d3bb23e750b90a42625e9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3bb23e750b90a42625e9)

HTTP response: 201| +|[00443-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00443-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3bbdf8016f90e7cb8981/download)
[Logs](https://api.biosimulations.org/logs/677d3bbdf8016f90e7cb8981?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3bbdf8016f90e7cb8981)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3bbaf8016f90e7cb8966/download)
[Logs](https://api.biosimulations.org/logs/677d3bbaf8016f90e7cb8966?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3bbaf8016f90e7cb8966)

HTTP response: 201| +|[00444-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00444-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3bc4f8016f90e7cb8994/download)
[Logs](https://api.biosimulations.org/logs/677d3bc4f8016f90e7cb8994?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3bc4f8016f90e7cb8994)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3bc067468f9f3fc5a30c/download)
[Logs](https://api.biosimulations.org/logs/677d3bc067468f9f3fc5a30c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3bc067468f9f3fc5a30c)

HTTP response: 201| +|[00445-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00445-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3bcb67468f9f3fc5a331/download)
[Logs](https://api.biosimulations.org/logs/677d3bcb67468f9f3fc5a331?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3bcb67468f9f3fc5a331)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3bc867468f9f3fc5a323/download)
[Logs](https://api.biosimulations.org/logs/677d3bc867468f9f3fc5a323?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3bc867468f9f3fc5a323)

HTTP response: 201| +|[00446-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00446-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3bd2f8016f90e7cb89b0/download)
[Logs](https://api.biosimulations.org/logs/677d3bd2f8016f90e7cb89b0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3bd2f8016f90e7cb89b0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3bcf67468f9f3fc5a33d/download)
[Logs](https://api.biosimulations.org/logs/677d3bcf67468f9f3fc5a33d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3bcf67468f9f3fc5a33d)

HTTP response: 201| +|[00447-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00447-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3bd8f8016f90e7cb89c9/download)
[Logs](https://api.biosimulations.org/logs/677d3bd8f8016f90e7cb89c9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3bd8f8016f90e7cb89c9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3bd53e750b90a426264b/download)
[Logs](https://api.biosimulations.org/logs/677d3bd53e750b90a426264b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3bd53e750b90a426264b)

HTTP response: 201| +|[00448-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00448-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3bdff8016f90e7cb89df/download)
[Logs](https://api.biosimulations.org/logs/677d3bdff8016f90e7cb89df?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3bdff8016f90e7cb89df)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3bdc67468f9f3fc5a361/download)
[Logs](https://api.biosimulations.org/logs/677d3bdc67468f9f3fc5a361?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3bdc67468f9f3fc5a361)

HTTP response: 201| +|[00449-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00449-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3be6f8016f90e7cb89f4/download)
[Logs](https://api.biosimulations.org/logs/677d3be6f8016f90e7cb89f4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3be6f8016f90e7cb89f4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3be3f8016f90e7cb89e9/download)
[Logs](https://api.biosimulations.org/logs/677d3be3f8016f90e7cb89e9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3be3f8016f90e7cb89e9)

HTTP response: 201| +|[00450-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00450-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3bed3e750b90a42626ae/download)
[Logs](https://api.biosimulations.org/logs/677d3bed3e750b90a42626ae?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3bed3e750b90a42626ae)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3beaf8016f90e7cb89fd/download)
[Logs](https://api.biosimulations.org/logs/677d3beaf8016f90e7cb89fd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3beaf8016f90e7cb89fd)

HTTP response: 201| +|[00451-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00451-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3bf367468f9f3fc5a39d/download)
[Logs](https://api.biosimulations.org/logs/677d3bf367468f9f3fc5a39d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3bf367468f9f3fc5a39d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3bf067468f9f3fc5a394/download)
[Logs](https://api.biosimulations.org/logs/677d3bf067468f9f3fc5a394?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3bf067468f9f3fc5a394)

HTTP response: 201| +|[00452-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00452-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3bfaf8016f90e7cb8a3f/download)
[Logs](https://api.biosimulations.org/logs/677d3bfaf8016f90e7cb8a3f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3bfaf8016f90e7cb8a3f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3bf767468f9f3fc5a3a7/download)
[Logs](https://api.biosimulations.org/logs/677d3bf767468f9f3fc5a3a7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3bf767468f9f3fc5a3a7)

HTTP response: 201| +|[00453-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00453-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3c013e750b90a42626de/download)
[Logs](https://api.biosimulations.org/logs/677d3c013e750b90a42626de?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c013e750b90a42626de)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3bfe3e750b90a42626d6/download)
[Logs](https://api.biosimulations.org/logs/677d3bfe3e750b90a42626d6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3bfe3e750b90a42626d6)

HTTP response: 201| +|[00454-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00454-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3c07f8016f90e7cb8a6f/download)
[Logs](https://api.biosimulations.org/logs/677d3c07f8016f90e7cb8a6f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c07f8016f90e7cb8a6f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3c043e750b90a42626e9/download)
[Logs](https://api.biosimulations.org/logs/677d3c043e750b90a42626e9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c043e750b90a42626e9)

HTTP response: 201| +|[00455-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00455-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3c0f3e750b90a4262702/download)
[Logs](https://api.biosimulations.org/logs/677d3c0f3e750b90a4262702?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c0f3e750b90a4262702)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3c0bf8016f90e7cb8a80/download)
[Logs](https://api.biosimulations.org/logs/677d3c0bf8016f90e7cb8a80?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c0bf8016f90e7cb8a80)

HTTP response: 201| +|[00456-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00456-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3c16f8016f90e7cb8aaa/download)
[Logs](https://api.biosimulations.org/logs/677d3c16f8016f90e7cb8aaa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c16f8016f90e7cb8aaa)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3c12f8016f90e7cb8a9a/download)
[Logs](https://api.biosimulations.org/logs/677d3c12f8016f90e7cb8a9a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c12f8016f90e7cb8a9a)

HTTP response: 201| +|[00457-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00457-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3c1c67468f9f3fc5a40a/download)
[Logs](https://api.biosimulations.org/logs/677d3c1c67468f9f3fc5a40a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c1c67468f9f3fc5a40a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3c19f8016f90e7cb8ab3/download)
[Logs](https://api.biosimulations.org/logs/677d3c19f8016f90e7cb8ab3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c19f8016f90e7cb8ab3)

HTTP response: 201| +|[00458-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00458-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3c263e750b90a4262750/download)
[Logs](https://api.biosimulations.org/logs/677d3c263e750b90a4262750?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c263e750b90a4262750)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3c20f8016f90e7cb8ac6/download)
[Logs](https://api.biosimulations.org/logs/677d3c20f8016f90e7cb8ac6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c20f8016f90e7cb8ac6)

HTTP response: 201| +|[00459-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00459-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3c2e3e750b90a4262764/download)
[Logs](https://api.biosimulations.org/logs/677d3c2e3e750b90a4262764?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c2e3e750b90a4262764)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3c2bf8016f90e7cb8ae1/download)
[Logs](https://api.biosimulations.org/logs/677d3c2bf8016f90e7cb8ae1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c2bf8016f90e7cb8ae1)

HTTP response: 201| +|[00460-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00460-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3c353e750b90a4262775/download)
[Logs](https://api.biosimulations.org/logs/677d3c353e750b90a4262775?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c353e750b90a4262775)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3c323e750b90a426276c/download)
[Logs](https://api.biosimulations.org/logs/677d3c323e750b90a426276c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c323e750b90a426276c)

HTTP response: 201| +|[00461-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00461-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3c3c3e750b90a4262781/download)
[Logs](https://api.biosimulations.org/logs/677d3c3c3e750b90a4262781?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c3c3e750b90a4262781)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3c39f8016f90e7cb8b01/download)
[Logs](https://api.biosimulations.org/logs/677d3c39f8016f90e7cb8b01?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c39f8016f90e7cb8b01)

HTTP response: 201| +|[00462-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00462-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3c43f8016f90e7cb8b1b/download)
[Logs](https://api.biosimulations.org/logs/677d3c43f8016f90e7cb8b1b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c43f8016f90e7cb8b1b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3c40f8016f90e7cb8b0a/download)
[Logs](https://api.biosimulations.org/logs/677d3c40f8016f90e7cb8b0a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c40f8016f90e7cb8b0a)

HTTP response: 201| +|[00463-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00463-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3c4b67468f9f3fc5a497/download)
[Logs](https://api.biosimulations.org/logs/677d3c4b67468f9f3fc5a497?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c4b67468f9f3fc5a497)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3c4767468f9f3fc5a48b/download)
[Logs](https://api.biosimulations.org/logs/677d3c4767468f9f3fc5a48b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c4767468f9f3fc5a48b)

HTTP response: 201| +|[00464-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00464-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3c52f8016f90e7cb8b50/download)
[Logs](https://api.biosimulations.org/logs/677d3c52f8016f90e7cb8b50?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c52f8016f90e7cb8b50)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3c4f67468f9f3fc5a4a1/download)
[Logs](https://api.biosimulations.org/logs/677d3c4f67468f9f3fc5a4a1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c4f67468f9f3fc5a4a1)

HTTP response: 201| +|[00465-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00465-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3c59f8016f90e7cb8b5d/download)
[Logs](https://api.biosimulations.org/logs/677d3c59f8016f90e7cb8b5d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c59f8016f90e7cb8b5d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3c56f8016f90e7cb8b5a/download)
[Logs](https://api.biosimulations.org/logs/677d3c56f8016f90e7cb8b5a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c56f8016f90e7cb8b5a)

HTTP response: 201| +|[00466-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00466-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3c6067468f9f3fc5a4d5/download)
[Logs](https://api.biosimulations.org/logs/677d3c6067468f9f3fc5a4d5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c6067468f9f3fc5a4d5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3c5d3e750b90a42627dd/download)
[Logs](https://api.biosimulations.org/logs/677d3c5d3e750b90a42627dd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c5d3e750b90a42627dd)

HTTP response: 201| +|[00467-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00467-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3c6767468f9f3fc5a4f2/download)
[Logs](https://api.biosimulations.org/logs/677d3c6767468f9f3fc5a4f2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c6767468f9f3fc5a4f2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3c6467468f9f3fc5a4e9/download)
[Logs](https://api.biosimulations.org/logs/677d3c6467468f9f3fc5a4e9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c6467468f9f3fc5a4e9)

HTTP response: 201| +|[00468-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00468-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3c6ff8016f90e7cb8b90/download)
[Logs](https://api.biosimulations.org/logs/677d3c6ff8016f90e7cb8b90?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c6ff8016f90e7cb8b90)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3c6b3e750b90a4262813/download)
[Logs](https://api.biosimulations.org/logs/677d3c6b3e750b90a4262813?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c6b3e750b90a4262813)

HTTP response: 201| +|[00469-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00469-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3c76f8016f90e7cb8ba4/download)
[Logs](https://api.biosimulations.org/logs/677d3c76f8016f90e7cb8ba4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c76f8016f90e7cb8ba4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3c72f8016f90e7cb8b99/download)
[Logs](https://api.biosimulations.org/logs/677d3c72f8016f90e7cb8b99?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c72f8016f90e7cb8b99)

HTTP response: 201| +|[00470-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00470-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3c7d3e750b90a426284b/download)
[Logs](https://api.biosimulations.org/logs/677d3c7d3e750b90a426284b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c7d3e750b90a426284b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3c79f8016f90e7cb8bab/download)
[Logs](https://api.biosimulations.org/logs/677d3c79f8016f90e7cb8bab?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c79f8016f90e7cb8bab)

HTTP response: 201| +|[00471-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00471-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3c843e750b90a426285d/download)
[Logs](https://api.biosimulations.org/logs/677d3c843e750b90a426285d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c843e750b90a426285d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3c8067468f9f3fc5a538/download)
[Logs](https://api.biosimulations.org/logs/677d3c8067468f9f3fc5a538?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c8067468f9f3fc5a538)

HTTP response: 201| +|[00472-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00472-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3c8c3e750b90a4262878/download)
[Logs](https://api.biosimulations.org/logs/677d3c8c3e750b90a4262878?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c8c3e750b90a4262878)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3c8967468f9f3fc5a551/download)
[Logs](https://api.biosimulations.org/logs/677d3c8967468f9f3fc5a551?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c8967468f9f3fc5a551)

HTTP response: 201| +|[00473-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00473-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3c9767468f9f3fc5a57a/download)
[Logs](https://api.biosimulations.org/logs/677d3c9767468f9f3fc5a57a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c9767468f9f3fc5a57a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3c93f8016f90e7cb8bf1/download)
[Logs](https://api.biosimulations.org/logs/677d3c93f8016f90e7cb8bf1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c93f8016f90e7cb8bf1)

HTTP response: 201| +|[00474-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00474-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3ca067468f9f3fc5a58a/download)
[Logs](https://api.biosimulations.org/logs/677d3ca067468f9f3fc5a58a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ca067468f9f3fc5a58a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3c9bf8016f90e7cb8bfd/download)
[Logs](https://api.biosimulations.org/logs/677d3c9bf8016f90e7cb8bfd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3c9bf8016f90e7cb8bfd)

HTTP response: 201| +|[00475-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00475-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3caa67468f9f3fc5a59b/download)
[Logs](https://api.biosimulations.org/logs/677d3caa67468f9f3fc5a59b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3caa67468f9f3fc5a59b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3ca6f8016f90e7cb8c19/download)
[Logs](https://api.biosimulations.org/logs/677d3ca6f8016f90e7cb8c19?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ca6f8016f90e7cb8c19)

HTTP response: 201| +|[00476-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00476-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3cb2f8016f90e7cb8c35/download)
[Logs](https://api.biosimulations.org/logs/677d3cb2f8016f90e7cb8c35?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3cb2f8016f90e7cb8c35)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3cae67468f9f3fc5a5a7/download)
[Logs](https://api.biosimulations.org/logs/677d3cae67468f9f3fc5a5a7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3cae67468f9f3fc5a5a7)

HTTP response: 201| +|[00477-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00477-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3cb867468f9f3fc5a5be/download)
[Logs](https://api.biosimulations.org/logs/677d3cb867468f9f3fc5a5be?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3cb867468f9f3fc5a5be)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3cb5f8016f90e7cb8c46/download)
[Logs](https://api.biosimulations.org/logs/677d3cb5f8016f90e7cb8c46?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3cb5f8016f90e7cb8c46)

HTTP response: 201| +|[00478-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00478-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3cbf67468f9f3fc5a5d0/download)
[Logs](https://api.biosimulations.org/logs/677d3cbf67468f9f3fc5a5d0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3cbf67468f9f3fc5a5d0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3cbcf8016f90e7cb8c59/download)
[Logs](https://api.biosimulations.org/logs/677d3cbcf8016f90e7cb8c59?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3cbcf8016f90e7cb8c59)

HTTP response: 201| +|[00479-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00479-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3cc73e750b90a42628fe/download)
[Logs](https://api.biosimulations.org/logs/677d3cc73e750b90a42628fe?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3cc73e750b90a42628fe)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3cc367468f9f3fc5a5dd/download)
[Logs](https://api.biosimulations.org/logs/677d3cc367468f9f3fc5a5dd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3cc367468f9f3fc5a5dd)

HTTP response: 201| +|[00480-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00480-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3ccff8016f90e7cb8c97/download)
[Logs](https://api.biosimulations.org/logs/677d3ccff8016f90e7cb8c97?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ccff8016f90e7cb8c97)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3ccc3e750b90a426290a/download)
[Logs](https://api.biosimulations.org/logs/677d3ccc3e750b90a426290a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ccc3e750b90a426290a)

HTTP response: 201| +|[00481-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00481-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3cd667468f9f3fc5a607/download)
[Logs](https://api.biosimulations.org/logs/677d3cd667468f9f3fc5a607?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3cd667468f9f3fc5a607)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3cd33e750b90a4262918/download)
[Logs](https://api.biosimulations.org/logs/677d3cd33e750b90a4262918?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3cd33e750b90a4262918)

HTTP response: 201| +|[00482-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00482-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3cdd3e750b90a4262930/download)
[Logs](https://api.biosimulations.org/logs/677d3cdd3e750b90a4262930?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3cdd3e750b90a4262930)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3cdaf8016f90e7cb8cb1/download)
[Logs](https://api.biosimulations.org/logs/677d3cdaf8016f90e7cb8cb1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3cdaf8016f90e7cb8cb1)

HTTP response: 201| +|[00483-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00483-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3ce43e750b90a426293d/download)
[Logs](https://api.biosimulations.org/logs/677d3ce43e750b90a426293d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ce43e750b90a426293d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3ce1f8016f90e7cb8cce/download)
[Logs](https://api.biosimulations.org/logs/677d3ce1f8016f90e7cb8cce?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ce1f8016f90e7cb8cce)

HTTP response: 201| +|[00484-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00484-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3cebf8016f90e7cb8ce7/download)
[Logs](https://api.biosimulations.org/logs/677d3cebf8016f90e7cb8ce7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3cebf8016f90e7cb8ce7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3ce867468f9f3fc5a644/download)
[Logs](https://api.biosimulations.org/logs/677d3ce867468f9f3fc5a644?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ce867468f9f3fc5a644)

HTTP response: 201| +|[00485-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00485-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3cf2f8016f90e7cb8cfe/download)
[Logs](https://api.biosimulations.org/logs/677d3cf2f8016f90e7cb8cfe?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3cf2f8016f90e7cb8cfe)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3cef3e750b90a4262962/download)
[Logs](https://api.biosimulations.org/logs/677d3cef3e750b90a4262962?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3cef3e750b90a4262962)

HTTP response: 201| +|[00486-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00486-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3cfb3e750b90a426298e/download)
[Logs](https://api.biosimulations.org/logs/677d3cfb3e750b90a426298e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3cfb3e750b90a426298e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3cf7f8016f90e7cb8d09/download)
[Logs](https://api.biosimulations.org/logs/677d3cf7f8016f90e7cb8d09?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3cf7f8016f90e7cb8d09)

HTTP response: 201| +|[00487-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00487-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3d0167468f9f3fc5a698/download)
[Logs](https://api.biosimulations.org/logs/677d3d0167468f9f3fc5a698?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d0167468f9f3fc5a698)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3cfef8016f90e7cb8d20/download)
[Logs](https://api.biosimulations.org/logs/677d3cfef8016f90e7cb8d20?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3cfef8016f90e7cb8d20)

HTTP response: 201| +|[00488-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00488-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3d0a67468f9f3fc5a6a7/download)
[Logs](https://api.biosimulations.org/logs/677d3d0a67468f9f3fc5a6a7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d0a67468f9f3fc5a6a7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3d063e750b90a42629ae/download)
[Logs](https://api.biosimulations.org/logs/677d3d063e750b90a42629ae?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d063e750b90a42629ae)

HTTP response: 201| +|[00489-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00489-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3d1167468f9f3fc5a6c6/download)
[Logs](https://api.biosimulations.org/logs/677d3d1167468f9f3fc5a6c6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d1167468f9f3fc5a6c6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3d0ef8016f90e7cb8d4e/download)
[Logs](https://api.biosimulations.org/logs/677d3d0ef8016f90e7cb8d4e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d0ef8016f90e7cb8d4e)

HTTP response: 201| +|[00490-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00490-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3d183e750b90a42629d9/download)
[Logs](https://api.biosimulations.org/logs/677d3d183e750b90a42629d9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d183e750b90a42629d9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3d15f8016f90e7cb8d6e/download)
[Logs](https://api.biosimulations.org/logs/677d3d15f8016f90e7cb8d6e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d15f8016f90e7cb8d6e)

HTTP response: 201| +|[00491-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00491-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3d1f67468f9f3fc5a6e7/download)
[Logs](https://api.biosimulations.org/logs/677d3d1f67468f9f3fc5a6e7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d1f67468f9f3fc5a6e7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3d1c67468f9f3fc5a6db/download)
[Logs](https://api.biosimulations.org/logs/677d3d1c67468f9f3fc5a6db?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d1c67468f9f3fc5a6db)

HTTP response: 201| +|[00492-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00492-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3d273e750b90a42629f9/download)
[Logs](https://api.biosimulations.org/logs/677d3d273e750b90a42629f9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d273e750b90a42629f9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3d2367468f9f3fc5a6f4/download)
[Logs](https://api.biosimulations.org/logs/677d3d2367468f9f3fc5a6f4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d2367468f9f3fc5a6f4)

HTTP response: 201| +|[00493-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00493-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3d30f8016f90e7cb8dc5/download)
[Logs](https://api.biosimulations.org/logs/677d3d30f8016f90e7cb8dc5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d30f8016f90e7cb8dc5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3d2b3e750b90a4262a03/download)
[Logs](https://api.biosimulations.org/logs/677d3d2b3e750b90a4262a03?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d2b3e750b90a4262a03)

HTTP response: 201| +|[00494-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00494-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3d38f8016f90e7cb8ddd/download)
[Logs](https://api.biosimulations.org/logs/677d3d38f8016f90e7cb8ddd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d38f8016f90e7cb8ddd)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3d353e750b90a4262a34/download)
[Logs](https://api.biosimulations.org/logs/677d3d353e750b90a4262a34?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d353e750b90a4262a34)

HTTP response: 201| +|[00495-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00495-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3d4167468f9f3fc5a774/download)
[Logs](https://api.biosimulations.org/logs/677d3d4167468f9f3fc5a774?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d4167468f9f3fc5a774)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3d3d3e750b90a4262a47/download)
[Logs](https://api.biosimulations.org/logs/677d3d3d3e750b90a4262a47?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d3d3e750b90a4262a47)

HTTP response: 201| +|[00496-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00496-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3d493e750b90a4262a65/download)
[Logs](https://api.biosimulations.org/logs/677d3d493e750b90a4262a65?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d493e750b90a4262a65)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3d463e750b90a4262a62/download)
[Logs](https://api.biosimulations.org/logs/677d3d463e750b90a4262a62?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d463e750b90a4262a62)

HTTP response: 201| +|[00497-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00497-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3d5067468f9f3fc5a7a3/download)
[Logs](https://api.biosimulations.org/logs/677d3d5067468f9f3fc5a7a3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d5067468f9f3fc5a7a3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3d4cf8016f90e7cb8e0c/download)
[Logs](https://api.biosimulations.org/logs/677d3d4cf8016f90e7cb8e0c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d4cf8016f90e7cb8e0c)

HTTP response: 201| +|[00498-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00498-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3d56f8016f90e7cb8e28/download)
[Logs](https://api.biosimulations.org/logs/677d3d56f8016f90e7cb8e28?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d56f8016f90e7cb8e28)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3d533e750b90a4262a86/download)
[Logs](https://api.biosimulations.org/logs/677d3d533e750b90a4262a86?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d533e750b90a4262a86)

HTTP response: 201| +|[00499-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00499-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3d5e3e750b90a4262a9c/download)
[Logs](https://api.biosimulations.org/logs/677d3d5e3e750b90a4262a9c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d5e3e750b90a4262a9c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3d5b67468f9f3fc5a7c1/download)
[Logs](https://api.biosimulations.org/logs/677d3d5b67468f9f3fc5a7c1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d5b67468f9f3fc5a7c1)

HTTP response: 201| +|[00500-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00500-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3d653e750b90a4262ab3/download)
[Logs](https://api.biosimulations.org/logs/677d3d653e750b90a4262ab3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d653e750b90a4262ab3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3d6267468f9f3fc5a7cf/download)
[Logs](https://api.biosimulations.org/logs/677d3d6267468f9f3fc5a7cf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d6267468f9f3fc5a7cf)

HTTP response: 201| +|[00501-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00501-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3d6cf8016f90e7cb8e6d/download)
[Logs](https://api.biosimulations.org/logs/677d3d6cf8016f90e7cb8e6d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d6cf8016f90e7cb8e6d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3d6967468f9f3fc5a7e5/download)
[Logs](https://api.biosimulations.org/logs/677d3d6967468f9f3fc5a7e5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d6967468f9f3fc5a7e5)

HTTP response: 201| +|[00502-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00502-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3d743e750b90a4262ad5/download)
[Logs](https://api.biosimulations.org/logs/677d3d743e750b90a4262ad5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d743e750b90a4262ad5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3d70f8016f90e7cb8e81/download)
[Logs](https://api.biosimulations.org/logs/677d3d70f8016f90e7cb8e81?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d70f8016f90e7cb8e81)

HTTP response: 201| +|[00503-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00503-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3d7bf8016f90e7cb8e99/download)
[Logs](https://api.biosimulations.org/logs/677d3d7bf8016f90e7cb8e99?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d7bf8016f90e7cb8e99)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3d773e750b90a4262ae5/download)
[Logs](https://api.biosimulations.org/logs/677d3d773e750b90a4262ae5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d773e750b90a4262ae5)

HTTP response: 201| +|[00504-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00504-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3d823e750b90a4262b03/download)
[Logs](https://api.biosimulations.org/logs/677d3d823e750b90a4262b03?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d823e750b90a4262b03)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3d7f67468f9f3fc5a81d/download)
[Logs](https://api.biosimulations.org/logs/677d3d7f67468f9f3fc5a81d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d7f67468f9f3fc5a81d)

HTTP response: 201| +|[00505-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00505-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3d8a3e750b90a4262b1a/download)
[Logs](https://api.biosimulations.org/logs/677d3d8a3e750b90a4262b1a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d8a3e750b90a4262b1a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3d87f8016f90e7cb8ebe/download)
[Logs](https://api.biosimulations.org/logs/677d3d87f8016f90e7cb8ebe?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d87f8016f90e7cb8ebe)

HTTP response: 201| +|[00506-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00506-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3d9267468f9f3fc5a84b/download)
[Logs](https://api.biosimulations.org/logs/677d3d9267468f9f3fc5a84b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d9267468f9f3fc5a84b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3d8ff8016f90e7cb8ede/download)
[Logs](https://api.biosimulations.org/logs/677d3d8ff8016f90e7cb8ede?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d8ff8016f90e7cb8ede)

HTTP response: 201| +|[00507-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00507-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3d9a3e750b90a4262b41/download)
[Logs](https://api.biosimulations.org/logs/677d3d9a3e750b90a4262b41?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d9a3e750b90a4262b41)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3d9767468f9f3fc5a861/download)
[Logs](https://api.biosimulations.org/logs/677d3d9767468f9f3fc5a861?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d9767468f9f3fc5a861)

HTTP response: 201| +|[00508-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00508-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3da267468f9f3fc5a879/download)
[Logs](https://api.biosimulations.org/logs/677d3da267468f9f3fc5a879?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3da267468f9f3fc5a879)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3d9e67468f9f3fc5a870/download)
[Logs](https://api.biosimulations.org/logs/677d3d9e67468f9f3fc5a870?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3d9e67468f9f3fc5a870)

HTTP response: 201| +|[00509-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00509-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3da9f8016f90e7cb8f1e/download)
[Logs](https://api.biosimulations.org/logs/677d3da9f8016f90e7cb8f1e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3da9f8016f90e7cb8f1e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3da567468f9f3fc5a883/download)
[Logs](https://api.biosimulations.org/logs/677d3da567468f9f3fc5a883?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3da567468f9f3fc5a883)

HTTP response: 201| +|[00510-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00510-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3db467468f9f3fc5a8a9/download)
[Logs](https://api.biosimulations.org/logs/677d3db467468f9f3fc5a8a9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3db467468f9f3fc5a8a9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3db067468f9f3fc5a8a4/download)
[Logs](https://api.biosimulations.org/logs/677d3db067468f9f3fc5a8a4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3db067468f9f3fc5a8a4)

HTTP response: 201| +|[00511-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00511-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3dbc67468f9f3fc5a8c0/download)
[Logs](https://api.biosimulations.org/logs/677d3dbc67468f9f3fc5a8c0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3dbc67468f9f3fc5a8c0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3db83e750b90a4262b85/download)
[Logs](https://api.biosimulations.org/logs/677d3db83e750b90a4262b85?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3db83e750b90a4262b85)

HTTP response: 201| +|[00512-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00512-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3dc3f8016f90e7cb8f63/download)
[Logs](https://api.biosimulations.org/logs/677d3dc3f8016f90e7cb8f63?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3dc3f8016f90e7cb8f63)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3dbff8016f90e7cb8f5e/download)
[Logs](https://api.biosimulations.org/logs/677d3dbff8016f90e7cb8f5e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3dbff8016f90e7cb8f5e)

HTTP response: 201| +|[00513-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00513-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3dcbf8016f90e7cb8f76/download)
[Logs](https://api.biosimulations.org/logs/677d3dcbf8016f90e7cb8f76?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3dcbf8016f90e7cb8f76)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3dc6f8016f90e7cb8f67/download)
[Logs](https://api.biosimulations.org/logs/677d3dc6f8016f90e7cb8f67?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3dc6f8016f90e7cb8f67)

HTTP response: 201| +|[00514-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00514-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3dd267468f9f3fc5a902/download)
[Logs](https://api.biosimulations.org/logs/677d3dd267468f9f3fc5a902?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3dd267468f9f3fc5a902)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3dcff8016f90e7cb8f86/download)
[Logs](https://api.biosimulations.org/logs/677d3dcff8016f90e7cb8f86?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3dcff8016f90e7cb8f86)

HTTP response: 201| +|[00515-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00515-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3dd967468f9f3fc5a911/download)
[Logs](https://api.biosimulations.org/logs/677d3dd967468f9f3fc5a911?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3dd967468f9f3fc5a911)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3dd63e750b90a4262bbd/download)
[Logs](https://api.biosimulations.org/logs/677d3dd63e750b90a4262bbd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3dd63e750b90a4262bbd)

HTTP response: 201| +|[00516-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00516-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3de0f8016f90e7cb8fb7/download)
[Logs](https://api.biosimulations.org/logs/677d3de0f8016f90e7cb8fb7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3de0f8016f90e7cb8fb7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3ddcf8016f90e7cb8fa6/download)
[Logs](https://api.biosimulations.org/logs/677d3ddcf8016f90e7cb8fa6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ddcf8016f90e7cb8fa6)

HTTP response: 201| +|[00517-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00517-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3de767468f9f3fc5a945/download)
[Logs](https://api.biosimulations.org/logs/677d3de767468f9f3fc5a945?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3de767468f9f3fc5a945)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3de4f8016f90e7cb8fbe/download)
[Logs](https://api.biosimulations.org/logs/677d3de4f8016f90e7cb8fbe?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3de4f8016f90e7cb8fbe)

HTTP response: 201| +|[00518-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00518-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3ded67468f9f3fc5a957/download)
[Logs](https://api.biosimulations.org/logs/677d3ded67468f9f3fc5a957?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ded67468f9f3fc5a957)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3debf8016f90e7cb8fcf/download)
[Logs](https://api.biosimulations.org/logs/677d3debf8016f90e7cb8fcf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3debf8016f90e7cb8fcf)

HTTP response: 201| +|[00519-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00519-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3df53e750b90a4262c18/download)
[Logs](https://api.biosimulations.org/logs/677d3df53e750b90a4262c18?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3df53e750b90a4262c18)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3df1f8016f90e7cb8fe8/download)
[Logs](https://api.biosimulations.org/logs/677d3df1f8016f90e7cb8fe8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3df1f8016f90e7cb8fe8)

HTTP response: 201| +|[00520-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00520-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3dfc67468f9f3fc5a982/download)
[Logs](https://api.biosimulations.org/logs/677d3dfc67468f9f3fc5a982?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3dfc67468f9f3fc5a982)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3df967468f9f3fc5a979/download)
[Logs](https://api.biosimulations.org/logs/677d3df967468f9f3fc5a979?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3df967468f9f3fc5a979)

HTTP response: 201| +|[00521-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00521-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3e0267468f9f3fc5a9a5/download)
[Logs](https://api.biosimulations.org/logs/677d3e0267468f9f3fc5a9a5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e0267468f9f3fc5a9a5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3dff3e750b90a4262c38/download)
[Logs](https://api.biosimulations.org/logs/677d3dff3e750b90a4262c38?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3dff3e750b90a4262c38)

HTTP response: 201| +|[00522-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00522-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3e0967468f9f3fc5a9b0/download)
[Logs](https://api.biosimulations.org/logs/677d3e0967468f9f3fc5a9b0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e0967468f9f3fc5a9b0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3e06f8016f90e7cb9029/download)
[Logs](https://api.biosimulations.org/logs/677d3e06f8016f90e7cb9029?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e06f8016f90e7cb9029)

HTTP response: 201| +|[00523-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00523-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3e103e750b90a4262c61/download)
[Logs](https://api.biosimulations.org/logs/677d3e103e750b90a4262c61?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e103e750b90a4262c61)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3e0d67468f9f3fc5a9bf/download)
[Logs](https://api.biosimulations.org/logs/677d3e0d67468f9f3fc5a9bf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e0d67468f9f3fc5a9bf)

HTTP response: 201| +|[00524-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00524-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3e17f8016f90e7cb9058/download)
[Logs](https://api.biosimulations.org/logs/677d3e17f8016f90e7cb9058?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e17f8016f90e7cb9058)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3e143e750b90a4262c6c/download)
[Logs](https://api.biosimulations.org/logs/677d3e143e750b90a4262c6c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e143e750b90a4262c6c)

HTTP response: 201| +|[00525-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00525-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3e1df8016f90e7cb9073/download)
[Logs](https://api.biosimulations.org/logs/677d3e1df8016f90e7cb9073?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e1df8016f90e7cb9073)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3e1b3e750b90a4262c7a/download)
[Logs](https://api.biosimulations.org/logs/677d3e1b3e750b90a4262c7a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e1b3e750b90a4262c7a)

HTTP response: 201| +|[00526-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00526-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3e243e750b90a4262c9e/download)
[Logs](https://api.biosimulations.org/logs/677d3e243e750b90a4262c9e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e243e750b90a4262c9e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3e213e750b90a4262c9a/download)
[Logs](https://api.biosimulations.org/logs/677d3e213e750b90a4262c9a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e213e750b90a4262c9a)

HTTP response: 201| +|[00527-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00527-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3e2b3e750b90a4262cb5/download)
[Logs](https://api.biosimulations.org/logs/677d3e2b3e750b90a4262cb5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e2b3e750b90a4262cb5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3e28f8016f90e7cb9093/download)
[Logs](https://api.biosimulations.org/logs/677d3e28f8016f90e7cb9093?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e28f8016f90e7cb9093)

HTTP response: 201| +|[00528-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00528-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3e3367468f9f3fc5aa38/download)
[Logs](https://api.biosimulations.org/logs/677d3e3367468f9f3fc5aa38?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e3367468f9f3fc5aa38)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3e2f67468f9f3fc5aa29/download)
[Logs](https://api.biosimulations.org/logs/677d3e2f67468f9f3fc5aa29?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e2f67468f9f3fc5aa29)

HTTP response: 201| +|[00529-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00529-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3e3a67468f9f3fc5aa52/download)
[Logs](https://api.biosimulations.org/logs/677d3e3a67468f9f3fc5aa52?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e3a67468f9f3fc5aa52)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3e37f8016f90e7cb90b9/download)
[Logs](https://api.biosimulations.org/logs/677d3e37f8016f90e7cb90b9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e37f8016f90e7cb90b9)

HTTP response: 201| +|[00530-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00530-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3e423e750b90a4262cfa/download)
[Logs](https://api.biosimulations.org/logs/677d3e423e750b90a4262cfa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e423e750b90a4262cfa)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3e3ef8016f90e7cb90cf/download)
[Logs](https://api.biosimulations.org/logs/677d3e3ef8016f90e7cb90cf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e3ef8016f90e7cb90cf)

HTTP response: 201| +|[00531-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00531-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 - T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3e4867468f9f3fc5aa6d/download)
[Logs](https://api.biosimulations.org/logs/677d3e4867468f9f3fc5aa6d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e4867468f9f3fc5aa6d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3e45f8016f90e7cb90da/download)
[Logs](https://api.biosimulations.org/logs/677d3e45f8016f90e7cb90da?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e45f8016f90e7cb90da)

HTTP response: 201| +|[00532-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00532-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = -1 * S1 + T + X0 + X1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3e4f3e750b90a4262d2e/download)
[Logs](https://api.biosimulations.org/logs/677d3e4f3e750b90a4262d2e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e4f3e750b90a4262d2e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3e4cf8016f90e7cb90ed/download)
[Logs](https://api.biosimulations.org/logs/677d3e4cf8016f90e7cb90ed?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e4cf8016f90e7cb90ed)

HTTP response: 201| +|[00533-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00533-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = k2 + -0.9' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d3e573e750b90a4262d3f/download)
[Logs](https://api.biosimulations.org/logs/677d3e573e750b90a4262d3f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e573e750b90a4262d3f)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'k2' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d3e53f8016f90e7cb9101/download)
[Logs](https://api.biosimulations.org/logs/677d3e53f8016f90e7cb9101?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e53f8016f90e7cb9101)

HTTP response: 201| +|[00534-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00534-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = k2 + -1 * k3 + -0.2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d3e603e750b90a4262d5a/download)
[Logs](https://api.biosimulations.org/logs/677d3e603e750b90a4262d5a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e603e750b90a4262d5a)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'k2' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d3e5cf8016f90e7cb911f/download)
[Logs](https://api.biosimulations.org/logs/677d3e5cf8016f90e7cb911f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e5cf8016f90e7cb911f)

HTTP response: 201| +|[00535-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00535-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3e69f8016f90e7cb913b/download)
[Logs](https://api.biosimulations.org/logs/677d3e69f8016f90e7cb913b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e69f8016f90e7cb913b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3e6567468f9f3fc5aad0/download)
[Logs](https://api.biosimulations.org/logs/677d3e6567468f9f3fc5aad0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e6567468f9f3fc5aad0)

HTTP response: 201| +|[00536-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00536-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = k1 + -0.1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d3e6ff8016f90e7cb915a/download)
[Logs](https://api.biosimulations.org/logs/677d3e6ff8016f90e7cb915a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e6ff8016f90e7cb915a)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'k1' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d3e6cf8016f90e7cb9149/download)
[Logs](https://api.biosimulations.org/logs/677d3e6cf8016f90e7cb9149?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e6cf8016f90e7cb9149)

HTTP response: 201| +|[00537-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00537-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = k2 + -0.2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d3e773e750b90a4262d88/download)
[Logs](https://api.biosimulations.org/logs/677d3e773e750b90a4262d88?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e773e750b90a4262d88)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'k2' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d3e733e750b90a4262d7f/download)
[Logs](https://api.biosimulations.org/logs/677d3e733e750b90a4262d7f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e733e750b90a4262d7f)

HTTP response: 201| +|[00538-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00538-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = k2 + -0.25' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d3e7e67468f9f3fc5ab11/download)
[Logs](https://api.biosimulations.org/logs/677d3e7e67468f9f3fc5ab11?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e7e67468f9f3fc5ab11)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'k2' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d3e7b3e750b90a4262d8f/download)
[Logs](https://api.biosimulations.org/logs/677d3e7b3e750b90a4262d8f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e7b3e750b90a4262d8f)

HTTP response: 201| +|[00539-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00539-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = C + -1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3e8567468f9f3fc5ab2a/download)
[Logs](https://api.biosimulations.org/logs/677d3e8567468f9f3fc5ab2a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e8567468f9f3fc5ab2a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3e8267468f9f3fc5ab27/download)
[Logs](https://api.biosimulations.org/logs/677d3e8267468f9f3fc5ab27?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e8267468f9f3fc5ab27)

HTTP response: 201| +|[00540-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00540-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = C + -1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3e8d67468f9f3fc5ab3f/download)
[Logs](https://api.biosimulations.org/logs/677d3e8d67468f9f3fc5ab3f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e8d67468f9f3fc5ab3f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3e893e750b90a4262db3/download)
[Logs](https://api.biosimulations.org/logs/677d3e893e750b90a4262db3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e893e750b90a4262db3)

HTTP response: 201| +|[00541-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00541-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = C + -1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3e9467468f9f3fc5ab5e/download)
[Logs](https://api.biosimulations.org/logs/677d3e9467468f9f3fc5ab5e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e9467468f9f3fc5ab5e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3e913e750b90a4262dd3/download)
[Logs](https://api.biosimulations.org/logs/677d3e913e750b90a4262dd3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e913e750b90a4262dd3)

HTTP response: 201| +|[00542-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00542-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = C + -1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3e9b67468f9f3fc5ab69/download)
[Logs](https://api.biosimulations.org/logs/677d3e9b67468f9f3fc5ab69?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e9b67468f9f3fc5ab69)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3e98f8016f90e7cb91b7/download)
[Logs](https://api.biosimulations.org/logs/677d3e98f8016f90e7cb91b7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e98f8016f90e7cb91b7)

HTTP response: 201| +|[00543-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00543-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3ea267468f9f3fc5ab87/download)
[Logs](https://api.biosimulations.org/logs/677d3ea267468f9f3fc5ab87?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ea267468f9f3fc5ab87)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3e9f67468f9f3fc5ab74/download)
[Logs](https://api.biosimulations.org/logs/677d3e9f67468f9f3fc5ab74?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3e9f67468f9f3fc5ab74)

HTTP response: 201| +|[00544-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00544-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = C + -1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3ea967468f9f3fc5ab96/download)
[Logs](https://api.biosimulations.org/logs/677d3ea967468f9f3fc5ab96?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ea967468f9f3fc5ab96)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3ea53e750b90a4262e16/download)
[Logs](https://api.biosimulations.org/logs/677d3ea53e750b90a4262e16?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ea53e750b90a4262e16)

HTTP response: 201| +|[00545-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00545-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = C + -1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3eb03e750b90a4262e37/download)
[Logs](https://api.biosimulations.org/logs/677d3eb03e750b90a4262e37?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3eb03e750b90a4262e37)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3ead3e750b90a4262e27/download)
[Logs](https://api.biosimulations.org/logs/677d3ead3e750b90a4262e27?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ead3e750b90a4262e27)

HTTP response: 201| +|[00546-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00546-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3eb93e750b90a4262e54/download)
[Logs](https://api.biosimulations.org/logs/677d3eb93e750b90a4262e54?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3eb93e750b90a4262e54)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3eb5f8016f90e7cb921c/download)
[Logs](https://api.biosimulations.org/logs/677d3eb5f8016f90e7cb921c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3eb5f8016f90e7cb921c)

HTTP response: 201| +|[00547-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00547-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = C + -2.5' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3ec13e750b90a4262e6e/download)
[Logs](https://api.biosimulations.org/logs/677d3ec13e750b90a4262e6e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ec13e750b90a4262e6e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3ebd3e750b90a4262e69/download)
[Logs](https://api.biosimulations.org/logs/677d3ebd3e750b90a4262e69?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ebd3e750b90a4262e69)

HTTP response: 201| +|[00548-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00548-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = C + -0.75' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3ec867468f9f3fc5abe3/download)
[Logs](https://api.biosimulations.org/logs/677d3ec867468f9f3fc5abe3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ec867468f9f3fc5abe3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3ec567468f9f3fc5abdd/download)
[Logs](https://api.biosimulations.org/logs/677d3ec567468f9f3fc5abdd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ec567468f9f3fc5abdd)

HTTP response: 201| +|[00549-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00549-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3ecf3e750b90a4262e9a/download)
[Logs](https://api.biosimulations.org/logs/677d3ecf3e750b90a4262e9a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ecf3e750b90a4262e9a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3ecc67468f9f3fc5abf6/download)
[Logs](https://api.biosimulations.org/logs/677d3ecc67468f9f3fc5abf6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ecc67468f9f3fc5abf6)

HTTP response: 201| +|[00550-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00550-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3ed73e750b90a4262eb9/download)
[Logs](https://api.biosimulations.org/logs/677d3ed73e750b90a4262eb9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ed73e750b90a4262eb9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3ed33e750b90a4262ea7/download)
[Logs](https://api.biosimulations.org/logs/677d3ed33e750b90a4262ea7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ed33e750b90a4262ea7)

HTTP response: 201| +|[00551-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00551-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3ee067468f9f3fc5ac25/download)
[Logs](https://api.biosimulations.org/logs/677d3ee067468f9f3fc5ac25?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ee067468f9f3fc5ac25)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3edbf8016f90e7cb9273/download)
[Logs](https://api.biosimulations.org/logs/677d3edbf8016f90e7cb9273?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3edbf8016f90e7cb9273)

HTTP response: 201| +|[00552-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00552-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3ee73e750b90a4262ef4/download)
[Logs](https://api.biosimulations.org/logs/677d3ee73e750b90a4262ef4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ee73e750b90a4262ef4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3ee43e750b90a4262ee4/download)
[Logs](https://api.biosimulations.org/logs/677d3ee43e750b90a4262ee4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ee43e750b90a4262ee4)

HTTP response: 201| +|[00553-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00553-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3eee67468f9f3fc5ac58/download)
[Logs](https://api.biosimulations.org/logs/677d3eee67468f9f3fc5ac58?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3eee67468f9f3fc5ac58)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3eebf8016f90e7cb9297/download)
[Logs](https://api.biosimulations.org/logs/677d3eebf8016f90e7cb9297?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3eebf8016f90e7cb9297)

HTTP response: 201| +|[00554-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00554-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3ef5f8016f90e7cb92ae/download)
[Logs](https://api.biosimulations.org/logs/677d3ef5f8016f90e7cb92ae?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ef5f8016f90e7cb92ae)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3ef2f8016f90e7cb92a4/download)
[Logs](https://api.biosimulations.org/logs/677d3ef2f8016f90e7cb92a4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ef2f8016f90e7cb92a4)

HTTP response: 201| +|[00555-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00555-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + S2 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3efc3e750b90a4262f18/download)
[Logs](https://api.biosimulations.org/logs/677d3efc3e750b90a4262f18?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3efc3e750b90a4262f18)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3ef967468f9f3fc5ac83/download)
[Logs](https://api.biosimulations.org/logs/677d3ef967468f9f3fc5ac83?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ef967468f9f3fc5ac83)

HTTP response: 201| +|[00556-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00556-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = -1 * S1 + S4 + -1 * S5' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3f033e750b90a4262f42/download)
[Logs](https://api.biosimulations.org/logs/677d3f033e750b90a4262f42?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f033e750b90a4262f42)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3eff3e750b90a4262f30/download)
[Logs](https://api.biosimulations.org/logs/677d3eff3e750b90a4262f30?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3eff3e750b90a4262f30)

HTTP response: 201| +|[00557-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00557-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3f0a67468f9f3fc5acb6/download)
[Logs](https://api.biosimulations.org/logs/677d3f0a67468f9f3fc5acb6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f0a67468f9f3fc5acb6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3f073e750b90a4262f4a/download)
[Logs](https://api.biosimulations.org/logs/677d3f073e750b90a4262f4a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f073e750b90a4262f4a)

HTTP response: 201| +|[00558-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00558-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3f1267468f9f3fc5acc5/download)
[Logs](https://api.biosimulations.org/logs/677d3f1267468f9f3fc5acc5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f1267468f9f3fc5acc5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3f0f67468f9f3fc5acc1/download)
[Logs](https://api.biosimulations.org/logs/677d3f0f67468f9f3fc5acc1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f0f67468f9f3fc5acc1)

HTTP response: 201| +|[00559-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00559-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3f1b3e750b90a4262f85/download)
[Logs](https://api.biosimulations.org/logs/677d3f1b3e750b90a4262f85?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f1b3e750b90a4262f85)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3f1867468f9f3fc5ace3/download)
[Logs](https://api.biosimulations.org/logs/677d3f1867468f9f3fc5ace3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f1867468f9f3fc5ace3)

HTTP response: 201| +|[00560-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00560-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3f22f8016f90e7cb932c/download)
[Logs](https://api.biosimulations.org/logs/677d3f22f8016f90e7cb932c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f22f8016f90e7cb932c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3f1f67468f9f3fc5ad03/download)
[Logs](https://api.biosimulations.org/logs/677d3f1f67468f9f3fc5ad03?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f1f67468f9f3fc5ad03)

HTTP response: 201| +|[00561-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00561-sbml-l2v5.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3f2867468f9f3fc5ad2b/download)
[Logs](https://api.biosimulations.org/logs/677d3f2867468f9f3fc5ad2b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f2867468f9f3fc5ad2b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3f253e750b90a4262f97/download)
[Logs](https://api.biosimulations.org/logs/677d3f253e750b90a4262f97?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f253e750b90a4262f97)

HTTP response: 201| +|[00562-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00562-sbml-l2v5.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3f3067468f9f3fc5ad41/download)
[Logs](https://api.biosimulations.org/logs/677d3f3067468f9f3fc5ad41?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f3067468f9f3fc5ad41)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3f2d67468f9f3fc5ad36/download)
[Logs](https://api.biosimulations.org/logs/677d3f2d67468f9f3fc5ad36?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f2d67468f9f3fc5ad36)

HTTP response: 201| +|[00563-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00563-sbml-l2v5.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3f37f8016f90e7cb936c/download)
[Logs](https://api.biosimulations.org/logs/677d3f37f8016f90e7cb936c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f37f8016f90e7cb936c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3f34f8016f90e7cb9353/download)
[Logs](https://api.biosimulations.org/logs/677d3f34f8016f90e7cb9353?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f34f8016f90e7cb9353)

HTTP response: 201| +|[00564-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00564-sbml-l2v5.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3f3ef8016f90e7cb9377/download)
[Logs](https://api.biosimulations.org/logs/677d3f3ef8016f90e7cb9377?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f3ef8016f90e7cb9377)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3f3b67468f9f3fc5ad5f/download)
[Logs](https://api.biosimulations.org/logs/677d3f3b67468f9f3fc5ad5f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f3b67468f9f3fc5ad5f)

HTTP response: 201| +|[00565-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00565-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3f46f8016f90e7cb9389/download)
[Logs](https://api.biosimulations.org/logs/677d3f46f8016f90e7cb9389?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f46f8016f90e7cb9389)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3f4267468f9f3fc5ad8c/download)
[Logs](https://api.biosimulations.org/logs/677d3f4267468f9f3fc5ad8c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f4267468f9f3fc5ad8c)

HTTP response: 201| +|[00566-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00566-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3f4d67468f9f3fc5adaf/download)
[Logs](https://api.biosimulations.org/logs/677d3f4d67468f9f3fc5adaf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f4d67468f9f3fc5adaf)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3f4af8016f90e7cb9392/download)
[Logs](https://api.biosimulations.org/logs/677d3f4af8016f90e7cb9392?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f4af8016f90e7cb9392)

HTTP response: 201| +|[00567-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00567-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = multiply(k3 + 1, S1) + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3f553e750b90a4263016/download)
[Logs](https://api.biosimulations.org/logs/677d3f553e750b90a4263016?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f553e750b90a4263016)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3f51f8016f90e7cb93aa/download)
[Logs](https://api.biosimulations.org/logs/677d3f51f8016f90e7cb93aa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f51f8016f90e7cb93aa)

HTTP response: 201| +|[00568-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00568-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = -1 * S1 + T + add(X0, X1)' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3f5ef8016f90e7cb93ce/download)
[Logs](https://api.biosimulations.org/logs/677d3f5ef8016f90e7cb93ce?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f5ef8016f90e7cb93ce)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3f5967468f9f3fc5adce/download)
[Logs](https://api.biosimulations.org/logs/677d3f5967468f9f3fc5adce?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f5967468f9f3fc5adce)

HTTP response: 201| +|[00569-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00569-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = subtract(k2, 0.9)' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d3f663e750b90a4263058/download)
[Logs](https://api.biosimulations.org/logs/677d3f663e750b90a4263058?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f663e750b90a4263058)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'k2' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d3f62f8016f90e7cb93d3/download)
[Logs](https://api.biosimulations.org/logs/677d3f62f8016f90e7cb93d3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f62f8016f90e7cb93d3)

HTTP response: 201| +|[00570-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00570-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = subtract(k2, k3) + -0.2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d3f6df8016f90e7cb93e9/download)
[Logs](https://api.biosimulations.org/logs/677d3f6df8016f90e7cb93e9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f6df8016f90e7cb93e9)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'k2' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d3f6a67468f9f3fc5ae00/download)
[Logs](https://api.biosimulations.org/logs/677d3f6a67468f9f3fc5ae00?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f6a67468f9f3fc5ae00)

HTTP response: 201| +|[00571-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00571-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = subtract(multiply(k3 + 1, S1), T)' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3f7567468f9f3fc5ae1c/download)
[Logs](https://api.biosimulations.org/logs/677d3f7567468f9f3fc5ae1c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f7567468f9f3fc5ae1c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3f7167468f9f3fc5ae10/download)
[Logs](https://api.biosimulations.org/logs/677d3f7167468f9f3fc5ae10?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f7167468f9f3fc5ae10)

HTTP response: 201| +|[00572-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00572-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = add(add(X0, X1), T) + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3f7cf8016f90e7cb9417/download)
[Logs](https://api.biosimulations.org/logs/677d3f7cf8016f90e7cb9417?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f7cf8016f90e7cb9417)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3f783e750b90a426307c/download)
[Logs](https://api.biosimulations.org/logs/677d3f783e750b90a426307c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f783e750b90a426307c)

HTTP response: 201| +|[00573-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00573-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * p4 + -1 * p3' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3f83f8016f90e7cb9421/download)
[Logs](https://api.biosimulations.org/logs/677d3f83f8016f90e7cb9421?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f83f8016f90e7cb9421)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3f8067468f9f3fc5ae2d/download)
[Logs](https://api.biosimulations.org/logs/677d3f8067468f9f3fc5ae2d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f8067468f9f3fc5ae2d)

HTTP response: 201| +|[00574-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00574-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = p1 + p2 + p3 + -1 * p4' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3f8af8016f90e7cb943f/download)
[Logs](https://api.biosimulations.org/logs/677d3f8af8016f90e7cb943f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f8af8016f90e7cb943f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3f873e750b90a42630ae/download)
[Logs](https://api.biosimulations.org/logs/677d3f873e750b90a42630ae?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f873e750b90a42630ae)

HTTP response: 201| +|[00575-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00575-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = k2 + -0.9' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d3f923e750b90a42630d2/download)
[Logs](https://api.biosimulations.org/logs/677d3f923e750b90a42630d2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f923e750b90a42630d2)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'k2' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d3f8e3e750b90a42630c3/download)
[Logs](https://api.biosimulations.org/logs/677d3f8e3e750b90a42630c3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f8e3e750b90a42630c3)

HTTP response: 201| +|[00576-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00576-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = p4 + -1 * p1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d3f993e750b90a42630e1/download)
[Logs](https://api.biosimulations.org/logs/677d3f993e750b90a42630e1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f993e750b90a42630e1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3f9667468f9f3fc5ae70/download)
[Logs](https://api.biosimulations.org/logs/677d3f9667468f9f3fc5ae70?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f9667468f9f3fc5ae70)

HTTP response: 201| +|[00577-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00577-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3fa167468f9f3fc5ae9c/download)
[Logs](https://api.biosimulations.org/logs/677d3fa167468f9f3fc5ae9c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3fa167468f9f3fc5ae9c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3f9e3e750b90a42630f2/download)
[Logs](https://api.biosimulations.org/logs/677d3f9e3e750b90a42630f2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3f9e3e750b90a42630f2)

HTTP response: 201| +|[00578-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00578-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3fa967468f9f3fc5aeae/download)
[Logs](https://api.biosimulations.org/logs/677d3fa967468f9f3fc5aeae?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3fa967468f9f3fc5aeae)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3fa5f8016f90e7cb9487/download)
[Logs](https://api.biosimulations.org/logs/677d3fa5f8016f90e7cb9487?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3fa5f8016f90e7cb9487)

HTTP response: 201| +|[00579-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00579-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3faff8016f90e7cb94a6/download)
[Logs](https://api.biosimulations.org/logs/677d3faff8016f90e7cb94a6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3faff8016f90e7cb94a6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3fac67468f9f3fc5aeb5/download)
[Logs](https://api.biosimulations.org/logs/677d3fac67468f9f3fc5aeb5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3fac67468f9f3fc5aeb5)

HTTP response: 201| +|[00580-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00580-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3fb8f8016f90e7cb94b8/download)
[Logs](https://api.biosimulations.org/logs/677d3fb8f8016f90e7cb94b8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3fb8f8016f90e7cb94b8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3fb4f8016f90e7cb94ae/download)
[Logs](https://api.biosimulations.org/logs/677d3fb4f8016f90e7cb94ae?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3fb4f8016f90e7cb94ae)

HTTP response: 201| +|[00581-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00581-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3fbf67468f9f3fc5aeec/download)
[Logs](https://api.biosimulations.org/logs/677d3fbf67468f9f3fc5aeec?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3fbf67468f9f3fc5aeec)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3fbc3e750b90a4263147/download)
[Logs](https://api.biosimulations.org/logs/677d3fbc3e750b90a4263147?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3fbc3e750b90a4263147)

HTTP response: 201| +|[00582-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00582-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3fc667468f9f3fc5aefe/download)
[Logs](https://api.biosimulations.org/logs/677d3fc667468f9f3fc5aefe?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3fc667468f9f3fc5aefe)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3fc367468f9f3fc5aefa/download)
[Logs](https://api.biosimulations.org/logs/677d3fc367468f9f3fc5aefa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3fc367468f9f3fc5aefa)

HTTP response: 201| +|[00583-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00583-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3fcd3e750b90a426318a/download)
[Logs](https://api.biosimulations.org/logs/677d3fcd3e750b90a426318a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3fcd3e750b90a426318a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3fca3e750b90a4263185/download)
[Logs](https://api.biosimulations.org/logs/677d3fca3e750b90a4263185?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3fca3e750b90a4263185)

HTTP response: 201| +|[00584-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00584-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3fd43e750b90a42631a8/download)
[Logs](https://api.biosimulations.org/logs/677d3fd43e750b90a42631a8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3fd43e750b90a42631a8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3fd0f8016f90e7cb94f2/download)
[Logs](https://api.biosimulations.org/logs/677d3fd0f8016f90e7cb94f2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3fd0f8016f90e7cb94f2)

HTTP response: 201| +|[00585-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00585-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3fdbf8016f90e7cb950c/download)
[Logs](https://api.biosimulations.org/logs/677d3fdbf8016f90e7cb950c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3fdbf8016f90e7cb950c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3fd7f8016f90e7cb9503/download)
[Logs](https://api.biosimulations.org/logs/677d3fd7f8016f90e7cb9503?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3fd7f8016f90e7cb9503)

HTTP response: 201| +|[00586-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00586-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3fe2f8016f90e7cb951e/download)
[Logs](https://api.biosimulations.org/logs/677d3fe2f8016f90e7cb951e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3fe2f8016f90e7cb951e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3fdef8016f90e7cb951b/download)
[Logs](https://api.biosimulations.org/logs/677d3fdef8016f90e7cb951b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3fdef8016f90e7cb951b)

HTTP response: 201| +|[00587-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00587-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3feaf8016f90e7cb953e/download)
[Logs](https://api.biosimulations.org/logs/677d3feaf8016f90e7cb953e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3feaf8016f90e7cb953e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3fe667468f9f3fc5af4a/download)
[Logs](https://api.biosimulations.org/logs/677d3fe667468f9f3fc5af4a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3fe667468f9f3fc5af4a)

HTTP response: 201| +|[00588-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00588-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3ff267468f9f3fc5af77/download)
[Logs](https://api.biosimulations.org/logs/677d3ff267468f9f3fc5af77?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ff267468f9f3fc5af77)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3fef67468f9f3fc5af6c/download)
[Logs](https://api.biosimulations.org/logs/677d3fef67468f9f3fc5af6c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3fef67468f9f3fc5af6c)

HTTP response: 201| +|[00589-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00589-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3ff9f8016f90e7cb9565/download)
[Logs](https://api.biosimulations.org/logs/677d3ff9f8016f90e7cb9565?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ff9f8016f90e7cb9565)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3ff6f8016f90e7cb9560/download)
[Logs](https://api.biosimulations.org/logs/677d3ff6f8016f90e7cb9560?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ff6f8016f90e7cb9560)

HTTP response: 201| +|[00590-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00590-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d3fff67468f9f3fc5af92/download)
[Logs](https://api.biosimulations.org/logs/677d3fff67468f9f3fc5af92?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3fff67468f9f3fc5af92)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d3ffc67468f9f3fc5af88/download)
[Logs](https://api.biosimulations.org/logs/677d3ffc67468f9f3fc5af88?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d3ffc67468f9f3fc5af88)

HTTP response: 201| +|[00591-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00591-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d400767468f9f3fc5afa1/download)
[Logs](https://api.biosimulations.org/logs/677d400767468f9f3fc5afa1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d400767468f9f3fc5afa1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d40043e750b90a426322e/download)
[Logs](https://api.biosimulations.org/logs/677d40043e750b90a426322e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40043e750b90a426322e)

HTTP response: 201| +|[00592-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00592-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d400e67468f9f3fc5afb2/download)
[Logs](https://api.biosimulations.org/logs/677d400e67468f9f3fc5afb2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d400e67468f9f3fc5afb2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d400b3e750b90a426323f/download)
[Logs](https://api.biosimulations.org/logs/677d400b3e750b90a426323f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d400b3e750b90a426323f)

HTTP response: 201| +|[00593-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00593-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d40143e750b90a426326f/download)
[Logs](https://api.biosimulations.org/logs/677d40143e750b90a426326f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40143e750b90a426326f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4011f8016f90e7cb95b2/download)
[Logs](https://api.biosimulations.org/logs/677d4011f8016f90e7cb95b2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4011f8016f90e7cb95b2)

HTTP response: 201| +|[00594-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00594-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d401d67468f9f3fc5afd9/download)
[Logs](https://api.biosimulations.org/logs/677d401d67468f9f3fc5afd9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d401d67468f9f3fc5afd9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d401867468f9f3fc5afd1/download)
[Logs](https://api.biosimulations.org/logs/677d401867468f9f3fc5afd1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d401867468f9f3fc5afd1)

HTTP response: 201| +|[00595-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00595-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d402667468f9f3fc5aff1/download)
[Logs](https://api.biosimulations.org/logs/677d402667468f9f3fc5aff1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d402667468f9f3fc5aff1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4021f8016f90e7cb95d9/download)
[Logs](https://api.biosimulations.org/logs/677d4021f8016f90e7cb95d9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4021f8016f90e7cb95d9)

HTTP response: 201| +|[00596-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00596-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d402d67468f9f3fc5b008/download)
[Logs](https://api.biosimulations.org/logs/677d402d67468f9f3fc5b008?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d402d67468f9f3fc5b008)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d402a3e750b90a42632b3/download)
[Logs](https://api.biosimulations.org/logs/677d402a3e750b90a42632b3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d402a3e750b90a42632b3)

HTTP response: 201| +|[00597-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00597-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d40343e750b90a42632d2/download)
[Logs](https://api.biosimulations.org/logs/677d40343e750b90a42632d2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40343e750b90a42632d2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d40303e750b90a42632cc/download)
[Logs](https://api.biosimulations.org/logs/677d40303e750b90a42632cc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40303e750b90a42632cc)

HTTP response: 201| +|[00598-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00598-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d403b67468f9f3fc5b02a/download)
[Logs](https://api.biosimulations.org/logs/677d403b67468f9f3fc5b02a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d403b67468f9f3fc5b02a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d40373e750b90a42632d8/download)
[Logs](https://api.biosimulations.org/logs/677d40373e750b90a42632d8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40373e750b90a42632d8)

HTTP response: 201| +|[00599-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00599-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d40423e750b90a42632fe/download)
[Logs](https://api.biosimulations.org/logs/677d40423e750b90a42632fe?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40423e750b90a42632fe)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d403f67468f9f3fc5b039/download)
[Logs](https://api.biosimulations.org/logs/677d403f67468f9f3fc5b039?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d403f67468f9f3fc5b039)

HTTP response: 201| +|[00600-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00600-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4049f8016f90e7cb9639/download)
[Logs](https://api.biosimulations.org/logs/677d4049f8016f90e7cb9639?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4049f8016f90e7cb9639)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d40463e750b90a4263306/download)
[Logs](https://api.biosimulations.org/logs/677d40463e750b90a4263306?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40463e750b90a4263306)

HTTP response: 201| +|[00601-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00601-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4050f8016f90e7cb9640/download)
[Logs](https://api.biosimulations.org/logs/677d4050f8016f90e7cb9640?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4050f8016f90e7cb9640)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d404c67468f9f3fc5b060/download)
[Logs](https://api.biosimulations.org/logs/677d404c67468f9f3fc5b060?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d404c67468f9f3fc5b060)

HTTP response: 201| +|[00602-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00602-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d40573e750b90a4263339/download)
[Logs](https://api.biosimulations.org/logs/677d40573e750b90a4263339?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40573e750b90a4263339)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d40533e750b90a4263328/download)
[Logs](https://api.biosimulations.org/logs/677d40533e750b90a4263328?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40533e750b90a4263328)

HTTP response: 201| +|[00603-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00603-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d405d67468f9f3fc5b0a1/download)
[Logs](https://api.biosimulations.org/logs/677d405d67468f9f3fc5b0a1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d405d67468f9f3fc5b0a1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d405a67468f9f3fc5b092/download)
[Logs](https://api.biosimulations.org/logs/677d405a67468f9f3fc5b092?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d405a67468f9f3fc5b092)

HTTP response: 201| +|[00604-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00604-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4064f8016f90e7cb968a/download)
[Logs](https://api.biosimulations.org/logs/677d4064f8016f90e7cb968a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4064f8016f90e7cb968a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4061f8016f90e7cb9684/download)
[Logs](https://api.biosimulations.org/logs/677d4061f8016f90e7cb9684?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4061f8016f90e7cb9684)

HTTP response: 201| +|[00605-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00605-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d406c3e750b90a4263371/download)
[Logs](https://api.biosimulations.org/logs/677d406c3e750b90a4263371?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d406c3e750b90a4263371)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d406867468f9f3fc5b0c4/download)
[Logs](https://api.biosimulations.org/logs/677d406867468f9f3fc5b0c4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d406867468f9f3fc5b0c4)

HTTP response: 201| +|[00606-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00606-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4073f8016f90e7cb96bd/download)
[Logs](https://api.biosimulations.org/logs/677d4073f8016f90e7cb96bd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4073f8016f90e7cb96bd)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4070f8016f90e7cb96b1/download)
[Logs](https://api.biosimulations.org/logs/677d4070f8016f90e7cb96b1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4070f8016f90e7cb96b1)

HTTP response: 201| +|[00607-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00607-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d407a67468f9f3fc5b0eb/download)
[Logs](https://api.biosimulations.org/logs/677d407a67468f9f3fc5b0eb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d407a67468f9f3fc5b0eb)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4077f8016f90e7cb96c3/download)
[Logs](https://api.biosimulations.org/logs/677d4077f8016f90e7cb96c3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4077f8016f90e7cb96c3)

HTTP response: 201| +|[00608-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00608-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d40813e750b90a42633b8/download)
[Logs](https://api.biosimulations.org/logs/677d40813e750b90a42633b8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40813e750b90a42633b8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d407ef8016f90e7cb96db/download)
[Logs](https://api.biosimulations.org/logs/677d407ef8016f90e7cb96db?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d407ef8016f90e7cb96db)

HTTP response: 201| +|[00609-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00609-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d40893e750b90a42633d3/download)
[Logs](https://api.biosimulations.org/logs/677d40893e750b90a42633d3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40893e750b90a42633d3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4085f8016f90e7cb96f8/download)
[Logs](https://api.biosimulations.org/logs/677d4085f8016f90e7cb96f8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4085f8016f90e7cb96f8)

HTTP response: 201| +|[00610-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00610-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4090f8016f90e7cb9711/download)
[Logs](https://api.biosimulations.org/logs/677d4090f8016f90e7cb9711?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4090f8016f90e7cb9711)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d408df8016f90e7cb970a/download)
[Logs](https://api.biosimulations.org/logs/677d408df8016f90e7cb970a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d408df8016f90e7cb970a)

HTTP response: 201| +|[00611-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00611-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d40963e750b90a42633f7/download)
[Logs](https://api.biosimulations.org/logs/677d40963e750b90a42633f7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40963e750b90a42633f7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4093f8016f90e7cb971a/download)
[Logs](https://api.biosimulations.org/logs/677d4093f8016f90e7cb971a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4093f8016f90e7cb971a)

HTTP response: 201| +|[00612-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00612-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d409df8016f90e7cb973e/download)
[Logs](https://api.biosimulations.org/logs/677d409df8016f90e7cb973e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d409df8016f90e7cb973e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d409a67468f9f3fc5b148/download)
[Logs](https://api.biosimulations.org/logs/677d409a67468f9f3fc5b148?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d409a67468f9f3fc5b148)

HTTP response: 201| +|[00613-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00613-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d40a467468f9f3fc5b163/download)
[Logs](https://api.biosimulations.org/logs/677d40a467468f9f3fc5b163?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40a467468f9f3fc5b163)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d40a167468f9f3fc5b15a/download)
[Logs](https://api.biosimulations.org/logs/677d40a167468f9f3fc5b15a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40a167468f9f3fc5b15a)

HTTP response: 201| +|[00614-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00614-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d40ab67468f9f3fc5b173/download)
[Logs](https://api.biosimulations.org/logs/677d40ab67468f9f3fc5b173?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40ab67468f9f3fc5b173)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d40a767468f9f3fc5b16e/download)
[Logs](https://api.biosimulations.org/logs/677d40a767468f9f3fc5b16e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40a767468f9f3fc5b16e)

HTTP response: 201| +|[00615-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00615-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d40b167468f9f3fc5b19d/download)
[Logs](https://api.biosimulations.org/logs/677d40b167468f9f3fc5b19d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40b167468f9f3fc5b19d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d40ae3e750b90a4263444/download)
[Logs](https://api.biosimulations.org/logs/677d40ae3e750b90a4263444?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40ae3e750b90a4263444)

HTTP response: 201| +|[00616-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00616-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d40b967468f9f3fc5b1ab/download)
[Logs](https://api.biosimulations.org/logs/677d40b967468f9f3fc5b1ab?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40b967468f9f3fc5b1ab)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d40b53e750b90a4263452/download)
[Logs](https://api.biosimulations.org/logs/677d40b53e750b90a4263452?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40b53e750b90a4263452)

HTTP response: 201| +|[00617-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00617-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d40c267468f9f3fc5b1cb/download)
[Logs](https://api.biosimulations.org/logs/677d40c267468f9f3fc5b1cb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40c267468f9f3fc5b1cb)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d40bc67468f9f3fc5b1b6/download)
[Logs](https://api.biosimulations.org/logs/677d40bc67468f9f3fc5b1b6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40bc67468f9f3fc5b1b6)

HTTP response: 201| +|[00618-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00618-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d40c967468f9f3fc5b1dd/download)
[Logs](https://api.biosimulations.org/logs/677d40c967468f9f3fc5b1dd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40c967468f9f3fc5b1dd)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d40c53e750b90a426347f/download)
[Logs](https://api.biosimulations.org/logs/677d40c53e750b90a426347f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40c53e750b90a426347f)

HTTP response: 201| +|[00619-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00619-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d40d067468f9f3fc5b1e8/download)
[Logs](https://api.biosimulations.org/logs/677d40d067468f9f3fc5b1e8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40d067468f9f3fc5b1e8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d40ccf8016f90e7cb97d8/download)
[Logs](https://api.biosimulations.org/logs/677d40ccf8016f90e7cb97d8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40ccf8016f90e7cb97d8)

HTTP response: 201| +|[00620-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00620-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d40d7f8016f90e7cb9818/download)
[Logs](https://api.biosimulations.org/logs/677d40d7f8016f90e7cb9818?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40d7f8016f90e7cb9818)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d40d43e750b90a426349c/download)
[Logs](https://api.biosimulations.org/logs/677d40d43e750b90a426349c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40d43e750b90a426349c)

HTTP response: 201| +|[00621-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00621-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d40ddf8016f90e7cb982d/download)
[Logs](https://api.biosimulations.org/logs/677d40ddf8016f90e7cb982d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40ddf8016f90e7cb982d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d40da3e750b90a42634b1/download)
[Logs](https://api.biosimulations.org/logs/677d40da3e750b90a42634b1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40da3e750b90a42634b1)

HTTP response: 201| +|[00622-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00622-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d40e43e750b90a42634ca/download)
[Logs](https://api.biosimulations.org/logs/677d40e43e750b90a42634ca?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40e43e750b90a42634ca)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d40e167468f9f3fc5b216/download)
[Logs](https://api.biosimulations.org/logs/677d40e167468f9f3fc5b216?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40e167468f9f3fc5b216)

HTTP response: 201| +|[00623-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00623-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d40ebf8016f90e7cb9861/download)
[Logs](https://api.biosimulations.org/logs/677d40ebf8016f90e7cb9861?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40ebf8016f90e7cb9861)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d40e867468f9f3fc5b21e/download)
[Logs](https://api.biosimulations.org/logs/677d40e867468f9f3fc5b21e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40e867468f9f3fc5b21e)

HTTP response: 201| +|[00624-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00624-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d40f2f8016f90e7cb9872/download)
[Logs](https://api.biosimulations.org/logs/677d40f2f8016f90e7cb9872?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40f2f8016f90e7cb9872)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d40ef3e750b90a42634f2/download)
[Logs](https://api.biosimulations.org/logs/677d40ef3e750b90a42634f2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40ef3e750b90a42634f2)

HTTP response: 201| +|[00625-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00625-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d40f9f8016f90e7cb988b/download)
[Logs](https://api.biosimulations.org/logs/677d40f9f8016f90e7cb988b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40f9f8016f90e7cb988b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d40f6f8016f90e7cb987a/download)
[Logs](https://api.biosimulations.org/logs/677d40f6f8016f90e7cb987a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40f6f8016f90e7cb987a)

HTTP response: 201| +|[00626-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00626-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4100f8016f90e7cb989a/download)
[Logs](https://api.biosimulations.org/logs/677d4100f8016f90e7cb989a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4100f8016f90e7cb989a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d40fd3e750b90a426351a/download)
[Logs](https://api.biosimulations.org/logs/677d40fd3e750b90a426351a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d40fd3e750b90a426351a)

HTTP response: 201| +|[00627-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00627-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d410767468f9f3fc5b27b/download)
[Logs](https://api.biosimulations.org/logs/677d410767468f9f3fc5b27b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d410767468f9f3fc5b27b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d410467468f9f3fc5b276/download)
[Logs](https://api.biosimulations.org/logs/677d410467468f9f3fc5b276?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d410467468f9f3fc5b276)

HTTP response: 201| +|[00628-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00628-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d410ef8016f90e7cb98c8/download)
[Logs](https://api.biosimulations.org/logs/677d410ef8016f90e7cb98c8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d410ef8016f90e7cb98c8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d410b3e750b90a4263540/download)
[Logs](https://api.biosimulations.org/logs/677d410b3e750b90a4263540?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d410b3e750b90a4263540)

HTTP response: 201| +|[00629-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00629-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d41153e750b90a426355e/download)
[Logs](https://api.biosimulations.org/logs/677d41153e750b90a426355e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41153e750b90a426355e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d41123e750b90a4263554/download)
[Logs](https://api.biosimulations.org/logs/677d41123e750b90a4263554?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41123e750b90a4263554)

HTTP response: 201| +|[00630-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00630-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d411c3e750b90a4263571/download)
[Logs](https://api.biosimulations.org/logs/677d411c3e750b90a4263571?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d411c3e750b90a4263571)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d411967468f9f3fc5b2ba/download)
[Logs](https://api.biosimulations.org/logs/677d411967468f9f3fc5b2ba?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d411967468f9f3fc5b2ba)

HTTP response: 201| +|[00631-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00631-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4123f8016f90e7cb9903/download)
[Logs](https://api.biosimulations.org/logs/677d4123f8016f90e7cb9903?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4123f8016f90e7cb9903)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d412067468f9f3fc5b2cd/download)
[Logs](https://api.biosimulations.org/logs/677d412067468f9f3fc5b2cd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d412067468f9f3fc5b2cd)

HTTP response: 201| +|[00632-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00632-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d412af8016f90e7cb9914/download)
[Logs](https://api.biosimulations.org/logs/677d412af8016f90e7cb9914?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d412af8016f90e7cb9914)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4127f8016f90e7cb9909/download)
[Logs](https://api.biosimulations.org/logs/677d4127f8016f90e7cb9909?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4127f8016f90e7cb9909)

HTTP response: 201| +|[00633-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00633-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d41313e750b90a42635b5/download)
[Logs](https://api.biosimulations.org/logs/677d41313e750b90a42635b5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41313e750b90a42635b5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d412e67468f9f3fc5b2fe/download)
[Logs](https://api.biosimulations.org/logs/677d412e67468f9f3fc5b2fe?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d412e67468f9f3fc5b2fe)

HTTP response: 201| +|[00634-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00634-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4138f8016f90e7cb9942/download)
[Logs](https://api.biosimulations.org/logs/677d4138f8016f90e7cb9942?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4138f8016f90e7cb9942)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4135f8016f90e7cb9937/download)
[Logs](https://api.biosimulations.org/logs/677d4135f8016f90e7cb9937?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4135f8016f90e7cb9937)

HTTP response: 201| +|[00635-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00635-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d414267468f9f3fc5b33f/download)
[Logs](https://api.biosimulations.org/logs/677d414267468f9f3fc5b33f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d414267468f9f3fc5b33f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d413d67468f9f3fc5b333/download)
[Logs](https://api.biosimulations.org/logs/677d413d67468f9f3fc5b333?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d413d67468f9f3fc5b333)

HTTP response: 201| +|[00636-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00636-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d414967468f9f3fc5b35c/download)
[Logs](https://api.biosimulations.org/logs/677d414967468f9f3fc5b35c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d414967468f9f3fc5b35c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d41463e750b90a42635e7/download)
[Logs](https://api.biosimulations.org/logs/677d41463e750b90a42635e7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41463e750b90a42635e7)

HTTP response: 201| +|[00637-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00637-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d41503e750b90a4263603/download)
[Logs](https://api.biosimulations.org/logs/677d41503e750b90a4263603?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41503e750b90a4263603)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d414cf8016f90e7cb996f/download)
[Logs](https://api.biosimulations.org/logs/677d414cf8016f90e7cb996f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d414cf8016f90e7cb996f)

HTTP response: 201| +|[00638-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00638-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4157f8016f90e7cb998c/download)
[Logs](https://api.biosimulations.org/logs/677d4157f8016f90e7cb998c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4157f8016f90e7cb998c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4154f8016f90e7cb9984/download)
[Logs](https://api.biosimulations.org/logs/677d4154f8016f90e7cb9984?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4154f8016f90e7cb9984)

HTTP response: 201| +|[00639-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00639-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d415e67468f9f3fc5b396/download)
[Logs](https://api.biosimulations.org/logs/677d415e67468f9f3fc5b396?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d415e67468f9f3fc5b396)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d415bf8016f90e7cb999a/download)
[Logs](https://api.biosimulations.org/logs/677d415bf8016f90e7cb999a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d415bf8016f90e7cb999a)

HTTP response: 201| +|[00640-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00640-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4166f8016f90e7cb99b1/download)
[Logs](https://api.biosimulations.org/logs/677d4166f8016f90e7cb99b1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4166f8016f90e7cb99b1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d416267468f9f3fc5b3a3/download)
[Logs](https://api.biosimulations.org/logs/677d416267468f9f3fc5b3a3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d416267468f9f3fc5b3a3)

HTTP response: 201| +|[00641-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00641-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d416cf8016f90e7cb99c3/download)
[Logs](https://api.biosimulations.org/logs/677d416cf8016f90e7cb99c3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d416cf8016f90e7cb99c3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d416967468f9f3fc5b3b5/download)
[Logs](https://api.biosimulations.org/logs/677d416967468f9f3fc5b3b5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d416967468f9f3fc5b3b5)

HTTP response: 201| +|[00642-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00642-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4173f8016f90e7cb99e1/download)
[Logs](https://api.biosimulations.org/logs/677d4173f8016f90e7cb99e1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4173f8016f90e7cb99e1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d41703e750b90a4263671/download)
[Logs](https://api.biosimulations.org/logs/677d41703e750b90a4263671?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41703e750b90a4263671)

HTTP response: 201| +|[00643-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00643-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d417af8016f90e7cb99f5/download)
[Logs](https://api.biosimulations.org/logs/677d417af8016f90e7cb99f5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d417af8016f90e7cb99f5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d417767468f9f3fc5b3d9/download)
[Logs](https://api.biosimulations.org/logs/677d417767468f9f3fc5b3d9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d417767468f9f3fc5b3d9)

HTTP response: 201| +|[00644-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00644-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d41823e750b90a42636a3/download)
[Logs](https://api.biosimulations.org/logs/677d41823e750b90a42636a3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41823e750b90a42636a3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d417ef8016f90e7cb9a0c/download)
[Logs](https://api.biosimulations.org/logs/677d417ef8016f90e7cb9a0c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d417ef8016f90e7cb9a0c)

HTTP response: 201| +|[00645-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00645-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d41883e750b90a42636ac/download)
[Logs](https://api.biosimulations.org/logs/677d41883e750b90a42636ac?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41883e750b90a42636ac)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4185f8016f90e7cb9a2a/download)
[Logs](https://api.biosimulations.org/logs/677d4185f8016f90e7cb9a2a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4185f8016f90e7cb9a2a)

HTTP response: 201| +|[00646-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00646-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4190f8016f90e7cb9a3e/download)
[Logs](https://api.biosimulations.org/logs/677d4190f8016f90e7cb9a3e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4190f8016f90e7cb9a3e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d418d3e750b90a42636c1/download)
[Logs](https://api.biosimulations.org/logs/677d418d3e750b90a42636c1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d418d3e750b90a42636c1)

HTTP response: 201| +|[00647-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00647-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d419b67468f9f3fc5b435/download)
[Logs](https://api.biosimulations.org/logs/677d419b67468f9f3fc5b435?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d419b67468f9f3fc5b435)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d419567468f9f3fc5b428/download)
[Logs](https://api.biosimulations.org/logs/677d419567468f9f3fc5b428?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d419567468f9f3fc5b428)

HTTP response: 201| +|[00648-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00648-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d41a2f8016f90e7cb9a7d/download)
[Logs](https://api.biosimulations.org/logs/677d41a2f8016f90e7cb9a7d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41a2f8016f90e7cb9a7d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d419ff8016f90e7cb9a75/download)
[Logs](https://api.biosimulations.org/logs/677d419ff8016f90e7cb9a75?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d419ff8016f90e7cb9a75)

HTTP response: 201| +|[00649-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00649-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d41a967468f9f3fc5b45d/download)
[Logs](https://api.biosimulations.org/logs/677d41a967468f9f3fc5b45d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41a967468f9f3fc5b45d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d41a6f8016f90e7cb9a8a/download)
[Logs](https://api.biosimulations.org/logs/677d41a6f8016f90e7cb9a8a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41a6f8016f90e7cb9a8a)

HTTP response: 201| +|[00650-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00650-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d41b0f8016f90e7cb9aa1/download)
[Logs](https://api.biosimulations.org/logs/677d41b0f8016f90e7cb9aa1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41b0f8016f90e7cb9aa1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d41ad3e750b90a426372e/download)
[Logs](https://api.biosimulations.org/logs/677d41ad3e750b90a426372e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41ad3e750b90a426372e)

HTTP response: 201| +|[00651-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00651-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d41b73e750b90a426374e/download)
[Logs](https://api.biosimulations.org/logs/677d41b73e750b90a426374e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41b73e750b90a426374e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d41b43e750b90a4263740/download)
[Logs](https://api.biosimulations.org/logs/677d41b43e750b90a4263740?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41b43e750b90a4263740)

HTTP response: 201| +|[00652-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00652-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d41be3e750b90a4263762/download)
[Logs](https://api.biosimulations.org/logs/677d41be3e750b90a4263762?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41be3e750b90a4263762)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d41bb67468f9f3fc5b484/download)
[Logs](https://api.biosimulations.org/logs/677d41bb67468f9f3fc5b484?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41bb67468f9f3fc5b484)

HTTP response: 201| +|[00653-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00653-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d41c6f8016f90e7cb9ae6/download)
[Logs](https://api.biosimulations.org/logs/677d41c6f8016f90e7cb9ae6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41c6f8016f90e7cb9ae6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d41c33e750b90a426376e/download)
[Logs](https://api.biosimulations.org/logs/677d41c33e750b90a426376e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41c33e750b90a426376e)

HTTP response: 201| +|[00654-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00654-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d41cdf8016f90e7cb9afb/download)
[Logs](https://api.biosimulations.org/logs/677d41cdf8016f90e7cb9afb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41cdf8016f90e7cb9afb)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d41ca67468f9f3fc5b4b8/download)
[Logs](https://api.biosimulations.org/logs/677d41ca67468f9f3fc5b4b8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41ca67468f9f3fc5b4b8)

HTTP response: 201| +|[00655-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00655-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d41d467468f9f3fc5b4cd/download)
[Logs](https://api.biosimulations.org/logs/677d41d467468f9f3fc5b4cd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41d467468f9f3fc5b4cd)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d41d13e750b90a4263796/download)
[Logs](https://api.biosimulations.org/logs/677d41d13e750b90a4263796?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41d13e750b90a4263796)

HTTP response: 201| +|[00656-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00656-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d41db67468f9f3fc5b4e3/download)
[Logs](https://api.biosimulations.org/logs/677d41db67468f9f3fc5b4e3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41db67468f9f3fc5b4e3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d41d83e750b90a42637a7/download)
[Logs](https://api.biosimulations.org/logs/677d41d83e750b90a42637a7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41d83e750b90a42637a7)

HTTP response: 201| +|[00657-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00657-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d41e3f8016f90e7cb9b3b/download)
[Logs](https://api.biosimulations.org/logs/677d41e3f8016f90e7cb9b3b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41e3f8016f90e7cb9b3b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d41e067468f9f3fc5b4ed/download)
[Logs](https://api.biosimulations.org/logs/677d41e067468f9f3fc5b4ed?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41e067468f9f3fc5b4ed)

HTTP response: 201| +|[00658-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00658-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = -1 * k1 + S1 + S2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d41eaf8016f90e7cb9b5e/download)
[Logs](https://api.biosimulations.org/logs/677d41eaf8016f90e7cb9b5e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41eaf8016f90e7cb9b5e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d41e73e750b90a42637da/download)
[Logs](https://api.biosimulations.org/logs/677d41e73e750b90a42637da?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41e73e750b90a42637da)

HTTP response: 201| +|[00659-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00659-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = -1 * k1 + S1 + S2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d41f03e750b90a42637f5/download)
[Logs](https://api.biosimulations.org/logs/677d41f03e750b90a42637f5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41f03e750b90a42637f5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d41edf8016f90e7cb9b68/download)
[Logs](https://api.biosimulations.org/logs/677d41edf8016f90e7cb9b68?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41edf8016f90e7cb9b68)

HTTP response: 201| +|[00660-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00660-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = -1 * k1 + S1 + S2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d41f7f8016f90e7cb9b80/download)
[Logs](https://api.biosimulations.org/logs/677d41f7f8016f90e7cb9b80?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41f7f8016f90e7cb9b80)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d41f4f8016f90e7cb9b79/download)
[Logs](https://api.biosimulations.org/logs/677d41f4f8016f90e7cb9b79?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41f4f8016f90e7cb9b79)

HTTP response: 201| +|[00661-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00661-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = -1 * S1 + T + X0 + X1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d41fef8016f90e7cb9b9a/download)
[Logs](https://api.biosimulations.org/logs/677d41fef8016f90e7cb9b9a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41fef8016f90e7cb9b9a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d41fbf8016f90e7cb9b87/download)
[Logs](https://api.biosimulations.org/logs/677d41fbf8016f90e7cb9b87?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d41fbf8016f90e7cb9b87)

HTTP response: 201| +|[00662-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00662-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d4205f8016f90e7cb9bba/download)
[Logs](https://api.biosimulations.org/logs/677d4205f8016f90e7cb9bba?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4205f8016f90e7cb9bba)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d42023e750b90a4263822/download)
[Logs](https://api.biosimulations.org/logs/677d42023e750b90a4263822?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42023e750b90a4263822)

HTTP response: 201| +|[00663-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00663-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = k2 + -0.9' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d420b67468f9f3fc5b575/download)
[Logs](https://api.biosimulations.org/logs/677d420b67468f9f3fc5b575?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d420b67468f9f3fc5b575)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'k2' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d42093e750b90a4263837/download)
[Logs](https://api.biosimulations.org/logs/677d42093e750b90a4263837?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42093e750b90a4263837)

HTTP response: 201| +|[00664-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00664-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = k2 + -0.9' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d42143e750b90a426385a/download)
[Logs](https://api.biosimulations.org/logs/677d42143e750b90a426385a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42143e750b90a426385a)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'k2' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d420ff8016f90e7cb9bcf/download)
[Logs](https://api.biosimulations.org/logs/677d420ff8016f90e7cb9bcf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d420ff8016f90e7cb9bcf)

HTTP response: 201| +|[00665-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00665-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = -1 * S1 + T + X0 + X1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d421cf8016f90e7cb9bf1/download)
[Logs](https://api.biosimulations.org/logs/677d421cf8016f90e7cb9bf1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d421cf8016f90e7cb9bf1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d42183e750b90a4263867/download)
[Logs](https://api.biosimulations.org/logs/677d42183e750b90a4263867?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42183e750b90a4263867)

HTTP response: 201| +|[00666-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00666-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d422267468f9f3fc5b5c0/download)
[Logs](https://api.biosimulations.org/logs/677d422267468f9f3fc5b5c0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d422267468f9f3fc5b5c0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d421f67468f9f3fc5b5ba/download)
[Logs](https://api.biosimulations.org/logs/677d421f67468f9f3fc5b5ba?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d421f67468f9f3fc5b5ba)

HTTP response: 201| +|[00667-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00667-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d422a67468f9f3fc5b5d2/download)
[Logs](https://api.biosimulations.org/logs/677d422a67468f9f3fc5b5d2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d422a67468f9f3fc5b5d2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d422767468f9f3fc5b5c8/download)
[Logs](https://api.biosimulations.org/logs/677d422767468f9f3fc5b5c8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d422767468f9f3fc5b5c8)

HTTP response: 201| +|[00668-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00668-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d42313e750b90a426389d/download)
[Logs](https://api.biosimulations.org/logs/677d42313e750b90a426389d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42313e750b90a426389d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d422e67468f9f3fc5b5de/download)
[Logs](https://api.biosimulations.org/logs/677d422e67468f9f3fc5b5de?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d422e67468f9f3fc5b5de)

HTTP response: 201| +|[00669-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00669-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d42393e750b90a42638b4/download)
[Logs](https://api.biosimulations.org/logs/677d42393e750b90a42638b4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42393e750b90a42638b4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4235f8016f90e7cb9c34/download)
[Logs](https://api.biosimulations.org/logs/677d4235f8016f90e7cb9c34?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4235f8016f90e7cb9c34)

HTTP response: 201| +|[00670-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00670-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4240f8016f90e7cb9c54/download)
[Logs](https://api.biosimulations.org/logs/677d4240f8016f90e7cb9c54?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4240f8016f90e7cb9c54)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d423d3e750b90a42638bb/download)
[Logs](https://api.biosimulations.org/logs/677d423d3e750b90a42638bb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d423d3e750b90a42638bb)

HTTP response: 201| +|[00671-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00671-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4247f8016f90e7cb9c6e/download)
[Logs](https://api.biosimulations.org/logs/677d4247f8016f90e7cb9c6e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4247f8016f90e7cb9c6e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4244f8016f90e7cb9c5f/download)
[Logs](https://api.biosimulations.org/logs/677d4244f8016f90e7cb9c5f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4244f8016f90e7cb9c5f)

HTTP response: 201| +|[00672-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00672-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d424e3e750b90a42638e9/download)
[Logs](https://api.biosimulations.org/logs/677d424e3e750b90a42638e9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d424e3e750b90a42638e9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d424b67468f9f3fc5b633/download)
[Logs](https://api.biosimulations.org/logs/677d424b67468f9f3fc5b633?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d424b67468f9f3fc5b633)

HTTP response: 201| +|[00673-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00673-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d42543e750b90a42638fb/download)
[Logs](https://api.biosimulations.org/logs/677d42543e750b90a42638fb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42543e750b90a42638fb)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d42513e750b90a42638f3/download)
[Logs](https://api.biosimulations.org/logs/677d42513e750b90a42638f3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42513e750b90a42638f3)

HTTP response: 201| +|[00674-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00674-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d425b67468f9f3fc5b66a/download)
[Logs](https://api.biosimulations.org/logs/677d425b67468f9f3fc5b66a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d425b67468f9f3fc5b66a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4258f8016f90e7cb9caf/download)
[Logs](https://api.biosimulations.org/logs/677d4258f8016f90e7cb9caf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4258f8016f90e7cb9caf)

HTTP response: 201| +|[00675-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00675-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d426367468f9f3fc5b688/download)
[Logs](https://api.biosimulations.org/logs/677d426367468f9f3fc5b688?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d426367468f9f3fc5b688)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d425f67468f9f3fc5b671/download)
[Logs](https://api.biosimulations.org/logs/677d425f67468f9f3fc5b671?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d425f67468f9f3fc5b671)

HTTP response: 201| +|[00676-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00676-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d426a3e750b90a426393e/download)
[Logs](https://api.biosimulations.org/logs/677d426a3e750b90a426393e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d426a3e750b90a426393e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d42673e750b90a4263926/download)
[Logs](https://api.biosimulations.org/logs/677d42673e750b90a4263926?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42673e750b90a4263926)

HTTP response: 201| +|[00677-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00677-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4272f8016f90e7cb9d06/download)
[Logs](https://api.biosimulations.org/logs/677d4272f8016f90e7cb9d06?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4272f8016f90e7cb9d06)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d426ff8016f90e7cb9cec/download)
[Logs](https://api.biosimulations.org/logs/677d426ff8016f90e7cb9cec?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d426ff8016f90e7cb9cec)

HTTP response: 201| +|[00678-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00678-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d427967468f9f3fc5b6c3/download)
[Logs](https://api.biosimulations.org/logs/677d427967468f9f3fc5b6c3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d427967468f9f3fc5b6c3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d42763e750b90a4263956/download)
[Logs](https://api.biosimulations.org/logs/677d42763e750b90a4263956?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42763e750b90a4263956)

HTTP response: 201| +|[00679-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00679-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d428067468f9f3fc5b6d7/download)
[Logs](https://api.biosimulations.org/logs/677d428067468f9f3fc5b6d7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d428067468f9f3fc5b6d7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d427d3e750b90a426396b/download)
[Logs](https://api.biosimulations.org/logs/677d427d3e750b90a426396b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d427d3e750b90a426396b)

HTTP response: 201| +|[00680-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00680-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4287f8016f90e7cb9d3c/download)
[Logs](https://api.biosimulations.org/logs/677d4287f8016f90e7cb9d3c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4287f8016f90e7cb9d3c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d42843e750b90a4263979/download)
[Logs](https://api.biosimulations.org/logs/677d42843e750b90a4263979?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42843e750b90a4263979)

HTTP response: 201| +|[00681-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00681-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d428e67468f9f3fc5b700/download)
[Logs](https://api.biosimulations.org/logs/677d428e67468f9f3fc5b700?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d428e67468f9f3fc5b700)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d428b67468f9f3fc5b6f1/download)
[Logs](https://api.biosimulations.org/logs/677d428b67468f9f3fc5b6f1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d428b67468f9f3fc5b6f1)

HTTP response: 201| +|[00682-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00682-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4295f8016f90e7cb9d69/download)
[Logs](https://api.biosimulations.org/logs/677d4295f8016f90e7cb9d69?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4295f8016f90e7cb9d69)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d429167468f9f3fc5b70b/download)
[Logs](https://api.biosimulations.org/logs/677d429167468f9f3fc5b70b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d429167468f9f3fc5b70b)

HTTP response: 201| +|[00683-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00683-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d429df8016f90e7cb9d88/download)
[Logs](https://api.biosimulations.org/logs/677d429df8016f90e7cb9d88?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d429df8016f90e7cb9d88)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d42993e750b90a42639b4/download)
[Logs](https://api.biosimulations.org/logs/677d42993e750b90a42639b4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42993e750b90a42639b4)

HTTP response: 201| +|[00684-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00684-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d42a367468f9f3fc5b74d/download)
[Logs](https://api.biosimulations.org/logs/677d42a367468f9f3fc5b74d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42a367468f9f3fc5b74d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d42a067468f9f3fc5b745/download)
[Logs](https://api.biosimulations.org/logs/677d42a067468f9f3fc5b745?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42a067468f9f3fc5b745)

HTTP response: 201| +|[00685-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00685-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d42aa67468f9f3fc5b76d/download)
[Logs](https://api.biosimulations.org/logs/677d42aa67468f9f3fc5b76d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42aa67468f9f3fc5b76d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d42a767468f9f3fc5b75c/download)
[Logs](https://api.biosimulations.org/logs/677d42a767468f9f3fc5b75c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42a767468f9f3fc5b75c)

HTTP response: 201| +|[00686-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00686-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d42b167468f9f3fc5b779/download)
[Logs](https://api.biosimulations.org/logs/677d42b167468f9f3fc5b779?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42b167468f9f3fc5b779)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d42aef8016f90e7cb9db8/download)
[Logs](https://api.biosimulations.org/logs/677d42aef8016f90e7cb9db8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42aef8016f90e7cb9db8)

HTTP response: 201| +|[00687-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00687-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d42b8f8016f90e7cb9dda/download)
[Logs](https://api.biosimulations.org/logs/677d42b8f8016f90e7cb9dda?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42b8f8016f90e7cb9dda)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d42b53e750b90a4263a00/download)
[Logs](https://api.biosimulations.org/logs/677d42b53e750b90a4263a00?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42b53e750b90a4263a00)

HTTP response: 201| +|[00688-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00688-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d42bf3e750b90a4263a29/download)
[Logs](https://api.biosimulations.org/logs/677d42bf3e750b90a4263a29?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42bf3e750b90a4263a29)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d42bc3e750b90a4263a1e/download)
[Logs](https://api.biosimulations.org/logs/677d42bc3e750b90a4263a1e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42bc3e750b90a4263a1e)

HTTP response: 201| +|[00689-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00689-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d42c767468f9f3fc5b7c4/download)
[Logs](https://api.biosimulations.org/logs/677d42c767468f9f3fc5b7c4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42c767468f9f3fc5b7c4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d42c4f8016f90e7cb9e01/download)
[Logs](https://api.biosimulations.org/logs/677d42c4f8016f90e7cb9e01?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42c4f8016f90e7cb9e01)

HTTP response: 201| +|[00690-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00690-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d42cf3e750b90a4263a47/download)
[Logs](https://api.biosimulations.org/logs/677d42cf3e750b90a4263a47?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42cf3e750b90a4263a47)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d42cbf8016f90e7cb9e11/download)
[Logs](https://api.biosimulations.org/logs/677d42cbf8016f90e7cb9e11?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42cbf8016f90e7cb9e11)

HTTP response: 201| +|[00691-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00691-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d42d6f8016f90e7cb9e2e/download)
[Logs](https://api.biosimulations.org/logs/677d42d6f8016f90e7cb9e2e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42d6f8016f90e7cb9e2e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d42d23e750b90a4263a57/download)
[Logs](https://api.biosimulations.org/logs/677d42d23e750b90a4263a57?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42d23e750b90a4263a57)

HTTP response: 201| +|[00692-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00692-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d42ddf8016f90e7cb9e3e/download)
[Logs](https://api.biosimulations.org/logs/677d42ddf8016f90e7cb9e3e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42ddf8016f90e7cb9e3e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d42daf8016f90e7cb9e39/download)
[Logs](https://api.biosimulations.org/logs/677d42daf8016f90e7cb9e39?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42daf8016f90e7cb9e39)

HTTP response: 201| +|[00693-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00693-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d42e4f8016f90e7cb9e52/download)
[Logs](https://api.biosimulations.org/logs/677d42e4f8016f90e7cb9e52?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42e4f8016f90e7cb9e52)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d42e13e750b90a4263a7b/download)
[Logs](https://api.biosimulations.org/logs/677d42e13e750b90a4263a7b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42e13e750b90a4263a7b)

HTTP response: 201| +|[00694-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00694-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d42eaf8016f90e7cb9e5d/download)
[Logs](https://api.biosimulations.org/logs/677d42eaf8016f90e7cb9e5d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42eaf8016f90e7cb9e5d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d42e73e750b90a4263a91/download)
[Logs](https://api.biosimulations.org/logs/677d42e73e750b90a4263a91?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42e73e750b90a4263a91)

HTTP response: 201| +|[00695-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00695-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d42f03e750b90a4263ab7/download)
[Logs](https://api.biosimulations.org/logs/677d42f03e750b90a4263ab7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42f03e750b90a4263ab7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d42ed3e750b90a4263aa4/download)
[Logs](https://api.biosimulations.org/logs/677d42ed3e750b90a4263aa4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42ed3e750b90a4263aa4)

HTTP response: 201| +|[00696-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00696-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d42f967468f9f3fc5b87d/download)
[Logs](https://api.biosimulations.org/logs/677d42f967468f9f3fc5b87d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42f967468f9f3fc5b87d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d42f53e750b90a4263abc/download)
[Logs](https://api.biosimulations.org/logs/677d42f53e750b90a4263abc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42f53e750b90a4263abc)

HTTP response: 201| +|[00697-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00697-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4300f8016f90e7cb9e9e/download)
[Logs](https://api.biosimulations.org/logs/677d4300f8016f90e7cb9e9e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4300f8016f90e7cb9e9e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d42fdf8016f90e7cb9e8f/download)
[Logs](https://api.biosimulations.org/logs/677d42fdf8016f90e7cb9e8f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d42fdf8016f90e7cb9e8f)

HTTP response: 201| +|[00698-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00698-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d430767468f9f3fc5b89c/download)
[Logs](https://api.biosimulations.org/logs/677d430767468f9f3fc5b89c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d430767468f9f3fc5b89c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d430467468f9f3fc5b899/download)
[Logs](https://api.biosimulations.org/logs/677d430467468f9f3fc5b899?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d430467468f9f3fc5b899)

HTTP response: 201| +|[00699-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00699-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d430ef8016f90e7cb9ec5/download)
[Logs](https://api.biosimulations.org/logs/677d430ef8016f90e7cb9ec5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d430ef8016f90e7cb9ec5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d430af8016f90e7cb9ebb/download)
[Logs](https://api.biosimulations.org/logs/677d430af8016f90e7cb9ebb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d430af8016f90e7cb9ebb)

HTTP response: 201| +|[00700-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00700-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d43143e750b90a4263b1d/download)
[Logs](https://api.biosimulations.org/logs/677d43143e750b90a4263b1d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43143e750b90a4263b1d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d431167468f9f3fc5b8c3/download)
[Logs](https://api.biosimulations.org/logs/677d431167468f9f3fc5b8c3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d431167468f9f3fc5b8c3)

HTTP response: 201| +|[00701-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00701-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d431b67468f9f3fc5b8e7/download)
[Logs](https://api.biosimulations.org/logs/677d431b67468f9f3fc5b8e7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d431b67468f9f3fc5b8e7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4318f8016f90e7cb9eda/download)
[Logs](https://api.biosimulations.org/logs/677d4318f8016f90e7cb9eda?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4318f8016f90e7cb9eda)

HTTP response: 201| +|[00702-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00702-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4322f8016f90e7cb9ef7/download)
[Logs](https://api.biosimulations.org/logs/677d4322f8016f90e7cb9ef7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4322f8016f90e7cb9ef7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d431ff8016f90e7cb9eee/download)
[Logs](https://api.biosimulations.org/logs/677d431ff8016f90e7cb9eee?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d431ff8016f90e7cb9eee)

HTTP response: 201| +|[00703-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00703-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d432867468f9f3fc5b90e/download)
[Logs](https://api.biosimulations.org/logs/677d432867468f9f3fc5b90e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d432867468f9f3fc5b90e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d43253e750b90a4263b58/download)
[Logs](https://api.biosimulations.org/logs/677d43253e750b90a4263b58?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43253e750b90a4263b58)

HTTP response: 201| +|[00704-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00704-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d432f67468f9f3fc5b928/download)
[Logs](https://api.biosimulations.org/logs/677d432f67468f9f3fc5b928?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d432f67468f9f3fc5b928)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d432c67468f9f3fc5b921/download)
[Logs](https://api.biosimulations.org/logs/677d432c67468f9f3fc5b921?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d432c67468f9f3fc5b921)

HTTP response: 201| +|[00705-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00705-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d433767468f9f3fc5b93d/download)
[Logs](https://api.biosimulations.org/logs/677d433767468f9f3fc5b93d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d433767468f9f3fc5b93d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d43333e750b90a4263b7f/download)
[Logs](https://api.biosimulations.org/logs/677d43333e750b90a4263b7f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43333e750b90a4263b7f)

HTTP response: 201| +|[00706-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00706-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d433e67468f9f3fc5b95a/download)
[Logs](https://api.biosimulations.org/logs/677d433e67468f9f3fc5b95a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d433e67468f9f3fc5b95a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d433a67468f9f3fc5b941/download)
[Logs](https://api.biosimulations.org/logs/677d433a67468f9f3fc5b941?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d433a67468f9f3fc5b941)

HTTP response: 201| +|[00707-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00707-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4345f8016f90e7cb9f68/download)
[Logs](https://api.biosimulations.org/logs/677d4345f8016f90e7cb9f68?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4345f8016f90e7cb9f68)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4342f8016f90e7cb9f5f/download)
[Logs](https://api.biosimulations.org/logs/677d4342f8016f90e7cb9f5f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4342f8016f90e7cb9f5f)

HTTP response: 201| +|[00708-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00708-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d434e67468f9f3fc5b986/download)
[Logs](https://api.biosimulations.org/logs/677d434e67468f9f3fc5b986?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d434e67468f9f3fc5b986)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d434b3e750b90a4263bb9/download)
[Logs](https://api.biosimulations.org/logs/677d434b3e750b90a4263bb9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d434b3e750b90a4263bb9)

HTTP response: 201| +|[00709-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00709-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d43553e750b90a4263bdb/download)
[Logs](https://api.biosimulations.org/logs/677d43553e750b90a4263bdb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43553e750b90a4263bdb)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4351f8016f90e7cb9f8f/download)
[Logs](https://api.biosimulations.org/logs/677d4351f8016f90e7cb9f8f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4351f8016f90e7cb9f8f)

HTTP response: 201| +|[00710-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00710-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d435d67468f9f3fc5b9aa/download)
[Logs](https://api.biosimulations.org/logs/677d435d67468f9f3fc5b9aa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d435d67468f9f3fc5b9aa)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d43593e750b90a4263bf5/download)
[Logs](https://api.biosimulations.org/logs/677d43593e750b90a4263bf5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43593e750b90a4263bf5)

HTTP response: 201| +|[00711-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00711-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d43643e750b90a4263c0a/download)
[Logs](https://api.biosimulations.org/logs/677d43643e750b90a4263c0a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43643e750b90a4263c0a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d436167468f9f3fc5b9b7/download)
[Logs](https://api.biosimulations.org/logs/677d436167468f9f3fc5b9b7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d436167468f9f3fc5b9b7)

HTTP response: 201| +|[00712-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00712-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d436a3e750b90a4263c2b/download)
[Logs](https://api.biosimulations.org/logs/677d436a3e750b90a4263c2b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d436a3e750b90a4263c2b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d43673e750b90a4263c11/download)
[Logs](https://api.biosimulations.org/logs/677d43673e750b90a4263c11?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43673e750b90a4263c11)

HTTP response: 201| +|[00713-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00713-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4371f8016f90e7cba007/download)
[Logs](https://api.biosimulations.org/logs/677d4371f8016f90e7cba007?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4371f8016f90e7cba007)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d436e3e750b90a4263c36/download)
[Logs](https://api.biosimulations.org/logs/677d436e3e750b90a4263c36?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d436e3e750b90a4263c36)

HTTP response: 201| +|[00714-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00714-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d43773e750b90a4263c4b/download)
[Logs](https://api.biosimulations.org/logs/677d43773e750b90a4263c4b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43773e750b90a4263c4b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4374f8016f90e7cba00f/download)
[Logs](https://api.biosimulations.org/logs/677d4374f8016f90e7cba00f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4374f8016f90e7cba00f)

HTTP response: 201| +|[00715-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00715-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d437f3e750b90a4263c60/download)
[Logs](https://api.biosimulations.org/logs/677d437f3e750b90a4263c60?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d437f3e750b90a4263c60)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d437bf8016f90e7cba020/download)
[Logs](https://api.biosimulations.org/logs/677d437bf8016f90e7cba020?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d437bf8016f90e7cba020)

HTTP response: 201| +|[00716-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00716-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4386f8016f90e7cba03b/download)
[Logs](https://api.biosimulations.org/logs/677d4386f8016f90e7cba03b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4386f8016f90e7cba03b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d43823e750b90a4263c72/download)
[Logs](https://api.biosimulations.org/logs/677d43823e750b90a4263c72?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43823e750b90a4263c72)

HTTP response: 201| +|[00717-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00717-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d438cf8016f90e7cba053/download)
[Logs](https://api.biosimulations.org/logs/677d438cf8016f90e7cba053?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d438cf8016f90e7cba053)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4389f8016f90e7cba042/download)
[Logs](https://api.biosimulations.org/logs/677d4389f8016f90e7cba042?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4389f8016f90e7cba042)

HTTP response: 201| +|[00718-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00718-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d43933e750b90a4263caf/download)
[Logs](https://api.biosimulations.org/logs/677d43933e750b90a4263caf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43933e750b90a4263caf)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d439067468f9f3fc5ba41/download)
[Logs](https://api.biosimulations.org/logs/677d439067468f9f3fc5ba41?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d439067468f9f3fc5ba41)

HTTP response: 201| +|[00719-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00719-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d439a67468f9f3fc5ba5f/download)
[Logs](https://api.biosimulations.org/logs/677d439a67468f9f3fc5ba5f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d439a67468f9f3fc5ba5f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d439767468f9f3fc5ba4e/download)
[Logs](https://api.biosimulations.org/logs/677d439767468f9f3fc5ba4e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d439767468f9f3fc5ba4e)

HTTP response: 201| +|[00720-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00720-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d43a13e750b90a4263ce7/download)
[Logs](https://api.biosimulations.org/logs/677d43a13e750b90a4263ce7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43a13e750b90a4263ce7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d439d67468f9f3fc5ba67/download)
[Logs](https://api.biosimulations.org/logs/677d439d67468f9f3fc5ba67?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d439d67468f9f3fc5ba67)

HTTP response: 201| +|[00721-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00721-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d43a93e750b90a4263cfa/download)
[Logs](https://api.biosimulations.org/logs/677d43a93e750b90a4263cfa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43a93e750b90a4263cfa)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d43a567468f9f3fc5ba87/download)
[Logs](https://api.biosimulations.org/logs/677d43a567468f9f3fc5ba87?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43a567468f9f3fc5ba87)

HTTP response: 201| +|[00722-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00722-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d43af67468f9f3fc5baa6/download)
[Logs](https://api.biosimulations.org/logs/677d43af67468f9f3fc5baa6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43af67468f9f3fc5baa6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d43ac3e750b90a4263d03/download)
[Logs](https://api.biosimulations.org/logs/677d43ac3e750b90a4263d03?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43ac3e750b90a4263d03)

HTTP response: 201| +|[00723-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00723-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d43b73e750b90a4263d27/download)
[Logs](https://api.biosimulations.org/logs/677d43b73e750b90a4263d27?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43b73e750b90a4263d27)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d43b33e750b90a4263d18/download)
[Logs](https://api.biosimulations.org/logs/677d43b33e750b90a4263d18?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43b33e750b90a4263d18)

HTTP response: 201| +|[00724-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00724-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d43bf3e750b90a4263d3e/download)
[Logs](https://api.biosimulations.org/logs/677d43bf3e750b90a4263d3e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43bf3e750b90a4263d3e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d43bb3e750b90a4263d2f/download)
[Logs](https://api.biosimulations.org/logs/677d43bb3e750b90a4263d2f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43bb3e750b90a4263d2f)

HTTP response: 201| +|[00725-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00725-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d43c6f8016f90e7cba0ea/download)
[Logs](https://api.biosimulations.org/logs/677d43c6f8016f90e7cba0ea?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43c6f8016f90e7cba0ea)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d43c33e750b90a4263d4a/download)
[Logs](https://api.biosimulations.org/logs/677d43c33e750b90a4263d4a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43c33e750b90a4263d4a)

HTTP response: 201| +|[00726-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00726-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d43cd3e750b90a4263d66/download)
[Logs](https://api.biosimulations.org/logs/677d43cd3e750b90a4263d66?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43cd3e750b90a4263d66)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d43ca3e750b90a4263d5f/download)
[Logs](https://api.biosimulations.org/logs/677d43ca3e750b90a4263d5f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43ca3e750b90a4263d5f)

HTTP response: 201| +|[00727-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00727-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d43d43e750b90a4263d77/download)
[Logs](https://api.biosimulations.org/logs/677d43d43e750b90a4263d77?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43d43e750b90a4263d77)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d43d167468f9f3fc5bb06/download)
[Logs](https://api.biosimulations.org/logs/677d43d167468f9f3fc5bb06?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43d167468f9f3fc5bb06)

HTTP response: 201| +|[00728-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00728-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d43db3e750b90a4263d8b/download)
[Logs](https://api.biosimulations.org/logs/677d43db3e750b90a4263d8b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43db3e750b90a4263d8b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d43d83e750b90a4263d80/download)
[Logs](https://api.biosimulations.org/logs/677d43d83e750b90a4263d80?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43d83e750b90a4263d80)

HTTP response: 201| +|[00729-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00729-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d43e267468f9f3fc5bb3a/download)
[Logs](https://api.biosimulations.org/logs/677d43e267468f9f3fc5bb3a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43e267468f9f3fc5bb3a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d43de3e750b90a4263d90/download)
[Logs](https://api.biosimulations.org/logs/677d43de3e750b90a4263d90?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43de3e750b90a4263d90)

HTTP response: 201| +|[00730-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00730-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d43eaf8016f90e7cba150/download)
[Logs](https://api.biosimulations.org/logs/677d43eaf8016f90e7cba150?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43eaf8016f90e7cba150)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d43e63e750b90a4263dbd/download)
[Logs](https://api.biosimulations.org/logs/677d43e63e750b90a4263dbd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43e63e750b90a4263dbd)

HTTP response: 201| +|[00731-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00731-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d43f167468f9f3fc5bb61/download)
[Logs](https://api.biosimulations.org/logs/677d43f167468f9f3fc5bb61?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43f167468f9f3fc5bb61)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d43ee3e750b90a4263dd7/download)
[Logs](https://api.biosimulations.org/logs/677d43ee3e750b90a4263dd7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43ee3e750b90a4263dd7)

HTTP response: 201| +|[00732-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00732-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d43f867468f9f3fc5bb75/download)
[Logs](https://api.biosimulations.org/logs/677d43f867468f9f3fc5bb75?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43f867468f9f3fc5bb75)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d43f567468f9f3fc5bb6b/download)
[Logs](https://api.biosimulations.org/logs/677d43f567468f9f3fc5bb6b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43f567468f9f3fc5bb6b)

HTTP response: 201| +|[00733-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00733-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d44003e750b90a4263dfb/download)
[Logs](https://api.biosimulations.org/logs/677d44003e750b90a4263dfb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44003e750b90a4263dfb)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d43fc67468f9f3fc5bb85/download)
[Logs](https://api.biosimulations.org/logs/677d43fc67468f9f3fc5bb85?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d43fc67468f9f3fc5bb85)

HTTP response: 201| +|[00734-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00734-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4407f8016f90e7cba194/download)
[Logs](https://api.biosimulations.org/logs/677d4407f8016f90e7cba194?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4407f8016f90e7cba194)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d44043e750b90a4263e10/download)
[Logs](https://api.biosimulations.org/logs/677d44043e750b90a4263e10?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44043e750b90a4263e10)

HTTP response: 201| +|[00735-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00735-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d440ef8016f90e7cba1aa/download)
[Logs](https://api.biosimulations.org/logs/677d440ef8016f90e7cba1aa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d440ef8016f90e7cba1aa)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d440b3e750b90a4263e20/download)
[Logs](https://api.biosimulations.org/logs/677d440b3e750b90a4263e20?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d440b3e750b90a4263e20)

HTTP response: 201| +|[00736-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00736-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d441667468f9f3fc5bbd4/download)
[Logs](https://api.biosimulations.org/logs/677d441667468f9f3fc5bbd4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d441667468f9f3fc5bbd4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d441267468f9f3fc5bbc4/download)
[Logs](https://api.biosimulations.org/logs/677d441267468f9f3fc5bbc4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d441267468f9f3fc5bbc4)

HTTP response: 201| +|[00737-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00737-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d441c3e750b90a4263e5d/download)
[Logs](https://api.biosimulations.org/logs/677d441c3e750b90a4263e5d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d441c3e750b90a4263e5d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d441967468f9f3fc5bbde/download)
[Logs](https://api.biosimulations.org/logs/677d441967468f9f3fc5bbde?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d441967468f9f3fc5bbde)

HTTP response: 201| +|[00738-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00738-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4423f8016f90e7cba1e6/download)
[Logs](https://api.biosimulations.org/logs/677d4423f8016f90e7cba1e6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4423f8016f90e7cba1e6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d442067468f9f3fc5bbef/download)
[Logs](https://api.biosimulations.org/logs/677d442067468f9f3fc5bbef?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d442067468f9f3fc5bbef)

HTTP response: 201| +|[00739-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00739-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d442a3e750b90a4263e87/download)
[Logs](https://api.biosimulations.org/logs/677d442a3e750b90a4263e87?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d442a3e750b90a4263e87)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d442667468f9f3fc5bbfd/download)
[Logs](https://api.biosimulations.org/logs/677d442667468f9f3fc5bbfd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d442667468f9f3fc5bbfd)

HTTP response: 201| +|[00740-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00740-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d443167468f9f3fc5bc1a/download)
[Logs](https://api.biosimulations.org/logs/677d443167468f9f3fc5bc1a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d443167468f9f3fc5bc1a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d442ef8016f90e7cba202/download)
[Logs](https://api.biosimulations.org/logs/677d442ef8016f90e7cba202?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d442ef8016f90e7cba202)

HTTP response: 201| +|[00741-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00741-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d443867468f9f3fc5bc2d/download)
[Logs](https://api.biosimulations.org/logs/677d443867468f9f3fc5bc2d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d443867468f9f3fc5bc2d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d44343e750b90a4263ea7/download)
[Logs](https://api.biosimulations.org/logs/677d44343e750b90a4263ea7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44343e750b90a4263ea7)

HTTP response: 201| +|[00742-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00742-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d443e3e750b90a4263ec7/download)
[Logs](https://api.biosimulations.org/logs/677d443e3e750b90a4263ec7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d443e3e750b90a4263ec7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d443b3e750b90a4263ebd/download)
[Logs](https://api.biosimulations.org/logs/677d443b3e750b90a4263ebd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d443b3e750b90a4263ebd)

HTTP response: 201| +|[00743-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00743-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4445f8016f90e7cba25a/download)
[Logs](https://api.biosimulations.org/logs/677d4445f8016f90e7cba25a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4445f8016f90e7cba25a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4442f8016f90e7cba24a/download)
[Logs](https://api.biosimulations.org/logs/677d4442f8016f90e7cba24a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4442f8016f90e7cba24a)

HTTP response: 201| +|[00744-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00744-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d444b3e750b90a4263eeb/download)
[Logs](https://api.biosimulations.org/logs/677d444b3e750b90a4263eeb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d444b3e750b90a4263eeb)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4448f8016f90e7cba264/download)
[Logs](https://api.biosimulations.org/logs/677d4448f8016f90e7cba264?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4448f8016f90e7cba264)

HTTP response: 201| +|[00745-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00745-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4452f8016f90e7cba28f/download)
[Logs](https://api.biosimulations.org/logs/677d4452f8016f90e7cba28f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4452f8016f90e7cba28f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d444f3e750b90a4263ef5/download)
[Logs](https://api.biosimulations.org/logs/677d444f3e750b90a4263ef5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d444f3e750b90a4263ef5)

HTTP response: 201| +|[00746-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00746-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d445967468f9f3fc5bca2/download)
[Logs](https://api.biosimulations.org/logs/677d445967468f9f3fc5bca2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d445967468f9f3fc5bca2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4456f8016f90e7cba295/download)
[Logs](https://api.biosimulations.org/logs/677d4456f8016f90e7cba295?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4456f8016f90e7cba295)

HTTP response: 201| +|[00747-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00747-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d44613e750b90a4263f1e/download)
[Logs](https://api.biosimulations.org/logs/677d44613e750b90a4263f1e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44613e750b90a4263f1e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d445df8016f90e7cba2aa/download)
[Logs](https://api.biosimulations.org/logs/677d445df8016f90e7cba2aa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d445df8016f90e7cba2aa)

HTTP response: 201| +|[00748-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00748-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d44683e750b90a4263f33/download)
[Logs](https://api.biosimulations.org/logs/677d44683e750b90a4263f33?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44683e750b90a4263f33)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d446467468f9f3fc5bcca/download)
[Logs](https://api.biosimulations.org/logs/677d446467468f9f3fc5bcca?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d446467468f9f3fc5bcca)

HTTP response: 201| +|[00749-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00749-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d446f67468f9f3fc5bcef/download)
[Logs](https://api.biosimulations.org/logs/677d446f67468f9f3fc5bcef?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d446f67468f9f3fc5bcef)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d446cf8016f90e7cba2cf/download)
[Logs](https://api.biosimulations.org/logs/677d446cf8016f90e7cba2cf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d446cf8016f90e7cba2cf)

HTTP response: 201| +|[00750-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00750-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d447567468f9f3fc5bcfc/download)
[Logs](https://api.biosimulations.org/logs/677d447567468f9f3fc5bcfc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d447567468f9f3fc5bcfc)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d44723e750b90a4263f57/download)
[Logs](https://api.biosimulations.org/logs/677d44723e750b90a4263f57?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44723e750b90a4263f57)

HTTP response: 201| +|[00751-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00751-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d447c3e750b90a4263f74/download)
[Logs](https://api.biosimulations.org/logs/677d447c3e750b90a4263f74?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d447c3e750b90a4263f74)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d447967468f9f3fc5bd07/download)
[Logs](https://api.biosimulations.org/logs/677d447967468f9f3fc5bd07?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d447967468f9f3fc5bd07)

HTTP response: 201| +|[00752-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00752-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d448467468f9f3fc5bd24/download)
[Logs](https://api.biosimulations.org/logs/677d448467468f9f3fc5bd24?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d448467468f9f3fc5bd24)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d44803e750b90a4263f7e/download)
[Logs](https://api.biosimulations.org/logs/677d44803e750b90a4263f7e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44803e750b90a4263f7e)

HTTP response: 201| +|[00753-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00753-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d448bf8016f90e7cba332/download)
[Logs](https://api.biosimulations.org/logs/677d448bf8016f90e7cba332?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d448bf8016f90e7cba332)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d448867468f9f3fc5bd36/download)
[Logs](https://api.biosimulations.org/logs/677d448867468f9f3fc5bd36?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d448867468f9f3fc5bd36)

HTTP response: 201| +|[00754-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00754-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d44913e750b90a4263fb6/download)
[Logs](https://api.biosimulations.org/logs/677d44913e750b90a4263fb6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44913e750b90a4263fb6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d448ef8016f90e7cba33d/download)
[Logs](https://api.biosimulations.org/logs/677d448ef8016f90e7cba33d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d448ef8016f90e7cba33d)

HTTP response: 201| +|[00755-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00755-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d449867468f9f3fc5bd6f/download)
[Logs](https://api.biosimulations.org/logs/677d449867468f9f3fc5bd6f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d449867468f9f3fc5bd6f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d449567468f9f3fc5bd65/download)
[Logs](https://api.biosimulations.org/logs/677d449567468f9f3fc5bd65?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d449567468f9f3fc5bd65)

HTTP response: 201| +|[00756-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00756-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d449f67468f9f3fc5bd80/download)
[Logs](https://api.biosimulations.org/logs/677d449f67468f9f3fc5bd80?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d449f67468f9f3fc5bd80)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d449b3e750b90a4263fce/download)
[Logs](https://api.biosimulations.org/logs/677d449b3e750b90a4263fce?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d449b3e750b90a4263fce)

HTTP response: 201| +|[00757-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00757-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d44a53e750b90a4263ffa/download)
[Logs](https://api.biosimulations.org/logs/677d44a53e750b90a4263ffa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44a53e750b90a4263ffa)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d44a23e750b90a4263fe1/download)
[Logs](https://api.biosimulations.org/logs/677d44a23e750b90a4263fe1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44a23e750b90a4263fe1)

HTTP response: 201| +|[00758-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00758-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d44abf8016f90e7cba384/download)
[Logs](https://api.biosimulations.org/logs/677d44abf8016f90e7cba384?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44abf8016f90e7cba384)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d44a83e750b90a4264001/download)
[Logs](https://api.biosimulations.org/logs/677d44a83e750b90a4264001?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44a83e750b90a4264001)

HTTP response: 201| +|[00759-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00759-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d44b2f8016f90e7cba39d/download)
[Logs](https://api.biosimulations.org/logs/677d44b2f8016f90e7cba39d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44b2f8016f90e7cba39d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d44af3e750b90a426401e/download)
[Logs](https://api.biosimulations.org/logs/677d44af3e750b90a426401e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44af3e750b90a426401e)

HTTP response: 201| +|[00760-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00760-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = -1 * S1 + T + add(X0, X1)' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d44b8f8016f90e7cba3b9/download)
[Logs](https://api.biosimulations.org/logs/677d44b8f8016f90e7cba3b9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44b8f8016f90e7cba3b9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d44b53e750b90a4264036/download)
[Logs](https://api.biosimulations.org/logs/677d44b53e750b90a4264036?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44b53e750b90a4264036)

HTTP response: 201| +|[00761-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00761-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = S1 * add(1, k3) + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d44bf3e750b90a426405a/download)
[Logs](https://api.biosimulations.org/logs/677d44bf3e750b90a426405a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44bf3e750b90a426405a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d44bc3e750b90a4264047/download)
[Logs](https://api.biosimulations.org/logs/677d44bc3e750b90a4264047?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44bc3e750b90a4264047)

HTTP response: 201| +|[00762-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00762-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = subtract(k2, 0.9)' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d44c63e750b90a4264069/download)
[Logs](https://api.biosimulations.org/logs/677d44c63e750b90a4264069?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44c63e750b90a4264069)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'k2' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d44c2f8016f90e7cba3d6/download)
[Logs](https://api.biosimulations.org/logs/677d44c2f8016f90e7cba3d6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44c2f8016f90e7cba3d6)

HTTP response: 201| +|[00763-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00763-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d44cc3e750b90a4264081/download)
[Logs](https://api.biosimulations.org/logs/677d44cc3e750b90a4264081?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44cc3e750b90a4264081)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d44c967468f9f3fc5be05/download)
[Logs](https://api.biosimulations.org/logs/677d44c967468f9f3fc5be05?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44c967468f9f3fc5be05)

HTTP response: 201| +|[00764-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00764-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d44d367468f9f3fc5be1d/download)
[Logs](https://api.biosimulations.org/logs/677d44d367468f9f3fc5be1d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44d367468f9f3fc5be1d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d44d0f8016f90e7cba400/download)
[Logs](https://api.biosimulations.org/logs/677d44d0f8016f90e7cba400?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44d0f8016f90e7cba400)

HTTP response: 201| +|[00765-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00765-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d44dbf8016f90e7cba418/download)
[Logs](https://api.biosimulations.org/logs/677d44dbf8016f90e7cba418?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44dbf8016f90e7cba418)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d44d767468f9f3fc5be35/download)
[Logs](https://api.biosimulations.org/logs/677d44d767468f9f3fc5be35?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44d767468f9f3fc5be35)

HTTP response: 201| +|[00766-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00766-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d44e13e750b90a42640bd/download)
[Logs](https://api.biosimulations.org/logs/677d44e13e750b90a42640bd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44e13e750b90a42640bd)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d44de67468f9f3fc5be52/download)
[Logs](https://api.biosimulations.org/logs/677d44de67468f9f3fc5be52?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44de67468f9f3fc5be52)

HTTP response: 201| +|[00767-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00767-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d44e83e750b90a42640ce/download)
[Logs](https://api.biosimulations.org/logs/677d44e83e750b90a42640ce?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44e83e750b90a42640ce)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d44e4f8016f90e7cba443/download)
[Logs](https://api.biosimulations.org/logs/677d44e4f8016f90e7cba443?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44e4f8016f90e7cba443)

HTTP response: 201| +|[00768-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00768-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d44ef3e750b90a42640de/download)
[Logs](https://api.biosimulations.org/logs/677d44ef3e750b90a42640de?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44ef3e750b90a42640de)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d44ec67468f9f3fc5be7f/download)
[Logs](https://api.biosimulations.org/logs/677d44ec67468f9f3fc5be7f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44ec67468f9f3fc5be7f)

HTTP response: 201| +|[00769-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00769-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d44f5f8016f90e7cba465/download)
[Logs](https://api.biosimulations.org/logs/677d44f5f8016f90e7cba465?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44f5f8016f90e7cba465)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d44f267468f9f3fc5be97/download)
[Logs](https://api.biosimulations.org/logs/677d44f267468f9f3fc5be97?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44f267468f9f3fc5be97)

HTTP response: 201| +|[00770-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00770-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d44fc67468f9f3fc5beab/download)
[Logs](https://api.biosimulations.org/logs/677d44fc67468f9f3fc5beab?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44fc67468f9f3fc5beab)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d44f93e750b90a42640f7/download)
[Logs](https://api.biosimulations.org/logs/677d44f93e750b90a42640f7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d44f93e750b90a42640f7)

HTTP response: 201| +|[00771-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00771-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d45033e750b90a426411d/download)
[Logs](https://api.biosimulations.org/logs/677d45033e750b90a426411d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45033e750b90a426411d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d45003e750b90a4264116/download)
[Logs](https://api.biosimulations.org/logs/677d45003e750b90a4264116?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45003e750b90a4264116)

HTTP response: 201| +|[00772-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00772-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d450967468f9f3fc5bed9/download)
[Logs](https://api.biosimulations.org/logs/677d450967468f9f3fc5bed9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d450967468f9f3fc5bed9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d450667468f9f3fc5bed1/download)
[Logs](https://api.biosimulations.org/logs/677d450667468f9f3fc5bed1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d450667468f9f3fc5bed1)

HTTP response: 201| +|[00773-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00773-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d451067468f9f3fc5beef/download)
[Logs](https://api.biosimulations.org/logs/677d451067468f9f3fc5beef?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d451067468f9f3fc5beef)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d450df8016f90e7cba4ac/download)
[Logs](https://api.biosimulations.org/logs/677d450df8016f90e7cba4ac?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d450df8016f90e7cba4ac)

HTTP response: 201| +|[00774-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00774-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d45173e750b90a4264169/download)
[Logs](https://api.biosimulations.org/logs/677d45173e750b90a4264169?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45173e750b90a4264169)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4514f8016f90e7cba4d8/download)
[Logs](https://api.biosimulations.org/logs/677d4514f8016f90e7cba4d8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4514f8016f90e7cba4d8)

HTTP response: 201| +|[00775-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00775-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d451ef8016f90e7cba4f7/download)
[Logs](https://api.biosimulations.org/logs/677d451ef8016f90e7cba4f7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d451ef8016f90e7cba4f7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d451b67468f9f3fc5bf02/download)
[Logs](https://api.biosimulations.org/logs/677d451b67468f9f3fc5bf02?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d451b67468f9f3fc5bf02)

HTTP response: 201| +|[00776-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00776-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d45243e750b90a426418e/download)
[Logs](https://api.biosimulations.org/logs/677d45243e750b90a426418e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45243e750b90a426418e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d45213e750b90a4264185/download)
[Logs](https://api.biosimulations.org/logs/677d45213e750b90a4264185?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45213e750b90a4264185)

HTTP response: 201| +|[00777-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00777-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = k2 + -2.5' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d452bf8016f90e7cba51a/download)
[Logs](https://api.biosimulations.org/logs/677d452bf8016f90e7cba51a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d452bf8016f90e7cba51a)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'k2' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d45283e750b90a4264196/download)
[Logs](https://api.biosimulations.org/logs/677d45283e750b90a4264196?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45283e750b90a4264196)

HTTP response: 201| +|[00778-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00778-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = -1 * S1 + T + X0 + X1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d4531f8016f90e7cba531/download)
[Logs](https://api.biosimulations.org/logs/677d4531f8016f90e7cba531?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4531f8016f90e7cba531)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d452e3e750b90a42641ab/download)
[Logs](https://api.biosimulations.org/logs/677d452e3e750b90a42641ab?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d452e3e750b90a42641ab)

HTTP response: 201| +|[00779-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00779-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = -1 * S1 + T + X0 + X1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d453767468f9f3fc5bf68/download)
[Logs](https://api.biosimulations.org/logs/677d453767468f9f3fc5bf68?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d453767468f9f3fc5bf68)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d45343e750b90a42641c1/download)
[Logs](https://api.biosimulations.org/logs/677d45343e750b90a42641c1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45343e750b90a42641c1)

HTTP response: 201| +|[00780-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00780-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = -1 * S1 + T + X0 + X1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d453f67468f9f3fc5bf85/download)
[Logs](https://api.biosimulations.org/logs/677d453f67468f9f3fc5bf85?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d453f67468f9f3fc5bf85)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d453b3e750b90a42641d5/download)
[Logs](https://api.biosimulations.org/logs/677d453b3e750b90a42641d5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d453b3e750b90a42641d5)

HTTP response: 201| +|[00781-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00781-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d45463e750b90a42641f7/download)
[Logs](https://api.biosimulations.org/logs/677d45463e750b90a42641f7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45463e750b90a42641f7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d45433e750b90a42641ee/download)
[Logs](https://api.biosimulations.org/logs/677d45433e750b90a42641ee?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45433e750b90a42641ee)

HTTP response: 201| +|[00782-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00782-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d454c67468f9f3fc5bfb5/download)
[Logs](https://api.biosimulations.org/logs/677d454c67468f9f3fc5bfb5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d454c67468f9f3fc5bfb5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d454967468f9f3fc5bfa8/download)
[Logs](https://api.biosimulations.org/logs/677d454967468f9f3fc5bfa8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d454967468f9f3fc5bfa8)

HTTP response: 201| +|[00783-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00783-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d45533e750b90a4264244/download)
[Logs](https://api.biosimulations.org/logs/677d45533e750b90a4264244?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45533e750b90a4264244)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4550f8016f90e7cba594/download)
[Logs](https://api.biosimulations.org/logs/677d4550f8016f90e7cba594?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4550f8016f90e7cba594)

HTTP response: 201| +|[00784-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00784-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4559f8016f90e7cba5bd/download)
[Logs](https://api.biosimulations.org/logs/677d4559f8016f90e7cba5bd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4559f8016f90e7cba5bd)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d455767468f9f3fc5bfd2/download)
[Logs](https://api.biosimulations.org/logs/677d455767468f9f3fc5bfd2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d455767468f9f3fc5bfd2)

HTTP response: 201| +|[00785-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00785-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d456067468f9f3fc5bfee/download)
[Logs](https://api.biosimulations.org/logs/677d456067468f9f3fc5bfee?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d456067468f9f3fc5bfee)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d455d3e750b90a426427b/download)
[Logs](https://api.biosimulations.org/logs/677d455d3e750b90a426427b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d455d3e750b90a426427b)

HTTP response: 201| +|[00786-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00786-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4568f8016f90e7cba5f0/download)
[Logs](https://api.biosimulations.org/logs/677d4568f8016f90e7cba5f0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4568f8016f90e7cba5f0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d456467468f9f3fc5bffe/download)
[Logs](https://api.biosimulations.org/logs/677d456467468f9f3fc5bffe?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d456467468f9f3fc5bffe)

HTTP response: 201| +|[00787-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00787-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d456e3e750b90a42642b0/download)
[Logs](https://api.biosimulations.org/logs/677d456e3e750b90a42642b0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d456e3e750b90a42642b0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d456b3e750b90a42642a6/download)
[Logs](https://api.biosimulations.org/logs/677d456b3e750b90a42642a6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d456b3e750b90a42642a6)

HTTP response: 201| +|[00788-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00788-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d457667468f9f3fc5c02f/download)
[Logs](https://api.biosimulations.org/logs/677d457667468f9f3fc5c02f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d457667468f9f3fc5c02f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d457367468f9f3fc5c022/download)
[Logs](https://api.biosimulations.org/logs/677d457367468f9f3fc5c022?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d457367468f9f3fc5c022)

HTTP response: 201| +|[00789-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00789-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d457df8016f90e7cba633/download)
[Logs](https://api.biosimulations.org/logs/677d457df8016f90e7cba633?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d457df8016f90e7cba633)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d457af8016f90e7cba62b/download)
[Logs](https://api.biosimulations.org/logs/677d457af8016f90e7cba62b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d457af8016f90e7cba62b)

HTTP response: 201| +|[00790-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00790-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4584f8016f90e7cba642/download)
[Logs](https://api.biosimulations.org/logs/677d4584f8016f90e7cba642?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4584f8016f90e7cba642)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d45803e750b90a42642da/download)
[Logs](https://api.biosimulations.org/logs/677d45803e750b90a42642da?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45803e750b90a42642da)

HTTP response: 201| +|[00791-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00791-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d458c67468f9f3fc5c072/download)
[Logs](https://api.biosimulations.org/logs/677d458c67468f9f3fc5c072?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d458c67468f9f3fc5c072)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d458867468f9f3fc5c06a/download)
[Logs](https://api.biosimulations.org/logs/677d458867468f9f3fc5c06a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d458867468f9f3fc5c06a)

HTTP response: 201| +|[00792-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00792-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d459267468f9f3fc5c082/download)
[Logs](https://api.biosimulations.org/logs/677d459267468f9f3fc5c082?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d459267468f9f3fc5c082)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d458f3e750b90a4264302/download)
[Logs](https://api.biosimulations.org/logs/677d458f3e750b90a4264302?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d458f3e750b90a4264302)

HTTP response: 201| +|[00793-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00793-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d459967468f9f3fc5c09c/download)
[Logs](https://api.biosimulations.org/logs/677d459967468f9f3fc5c09c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d459967468f9f3fc5c09c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d459667468f9f3fc5c08e/download)
[Logs](https://api.biosimulations.org/logs/677d459667468f9f3fc5c08e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d459667468f9f3fc5c08e)

HTTP response: 201| +|[00794-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00794-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d45a067468f9f3fc5c0ab/download)
[Logs](https://api.biosimulations.org/logs/677d45a067468f9f3fc5c0ab?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45a067468f9f3fc5c0ab)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d459d3e750b90a4264322/download)
[Logs](https://api.biosimulations.org/logs/677d459d3e750b90a4264322?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d459d3e750b90a4264322)

HTTP response: 201| +|[00795-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00795-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d45a767468f9f3fc5c0b8/download)
[Logs](https://api.biosimulations.org/logs/677d45a767468f9f3fc5c0b8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45a767468f9f3fc5c0b8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d45a467468f9f3fc5c0b3/download)
[Logs](https://api.biosimulations.org/logs/677d45a467468f9f3fc5c0b3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45a467468f9f3fc5c0b3)

HTTP response: 201| +|[00796-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00796-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d45ae3e750b90a4264354/download)
[Logs](https://api.biosimulations.org/logs/677d45ae3e750b90a4264354?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45ae3e750b90a4264354)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d45ab67468f9f3fc5c0c5/download)
[Logs](https://api.biosimulations.org/logs/677d45ab67468f9f3fc5c0c5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45ab67468f9f3fc5c0c5)

HTTP response: 201| +|[00797-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00797-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d45b53e750b90a426436e/download)
[Logs](https://api.biosimulations.org/logs/677d45b53e750b90a426436e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45b53e750b90a426436e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d45b2f8016f90e7cba6f4/download)
[Logs](https://api.biosimulations.org/logs/677d45b2f8016f90e7cba6f4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45b2f8016f90e7cba6f4)

HTTP response: 201| +|[00798-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00798-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d45bc3e750b90a426437f/download)
[Logs](https://api.biosimulations.org/logs/677d45bc3e750b90a426437f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45bc3e750b90a426437f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d45b9f8016f90e7cba704/download)
[Logs](https://api.biosimulations.org/logs/677d45b9f8016f90e7cba704?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45b9f8016f90e7cba704)

HTTP response: 201| +|[00799-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00799-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d45c33e750b90a4264394/download)
[Logs](https://api.biosimulations.org/logs/677d45c33e750b90a4264394?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45c33e750b90a4264394)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d45c0f8016f90e7cba724/download)
[Logs](https://api.biosimulations.org/logs/677d45c0f8016f90e7cba724?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45c0f8016f90e7cba724)

HTTP response: 201| +|[00800-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00800-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d45ca67468f9f3fc5c11f/download)
[Logs](https://api.biosimulations.org/logs/677d45ca67468f9f3fc5c11f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45ca67468f9f3fc5c11f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d45c73e750b90a426439b/download)
[Logs](https://api.biosimulations.org/logs/677d45c73e750b90a426439b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45c73e750b90a426439b)

HTTP response: 201| +|[00801-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00801-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d45d23e750b90a42643c5/download)
[Logs](https://api.biosimulations.org/logs/677d45d23e750b90a42643c5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45d23e750b90a42643c5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d45cf67468f9f3fc5c128/download)
[Logs](https://api.biosimulations.org/logs/677d45cf67468f9f3fc5c128?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45cf67468f9f3fc5c128)

HTTP response: 201| +|[00802-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00802-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d45d93e750b90a42643d9/download)
[Logs](https://api.biosimulations.org/logs/677d45d93e750b90a42643d9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45d93e750b90a42643d9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d45d6f8016f90e7cba762/download)
[Logs](https://api.biosimulations.org/logs/677d45d6f8016f90e7cba762?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45d6f8016f90e7cba762)

HTTP response: 201| +|[00803-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00803-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d45df3e750b90a42643e7/download)
[Logs](https://api.biosimulations.org/logs/677d45df3e750b90a42643e7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45df3e750b90a42643e7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d45dc67468f9f3fc5c153/download)
[Logs](https://api.biosimulations.org/logs/677d45dc67468f9f3fc5c153?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45dc67468f9f3fc5c153)

HTTP response: 201| +|[00804-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00804-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d45e53e750b90a4264405/download)
[Logs](https://api.biosimulations.org/logs/677d45e53e750b90a4264405?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45e53e750b90a4264405)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d45e23e750b90a42643f1/download)
[Logs](https://api.biosimulations.org/logs/677d45e23e750b90a42643f1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45e23e750b90a42643f1)

HTTP response: 201| +|[00805-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00805-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d45ec67468f9f3fc5c190/download)
[Logs](https://api.biosimulations.org/logs/677d45ec67468f9f3fc5c190?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45ec67468f9f3fc5c190)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d45e93e750b90a426440c/download)
[Logs](https://api.biosimulations.org/logs/677d45e93e750b90a426440c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45e93e750b90a426440c)

HTTP response: 201| +|[00806-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00806-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d45f2f8016f90e7cba7a0/download)
[Logs](https://api.biosimulations.org/logs/677d45f2f8016f90e7cba7a0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45f2f8016f90e7cba7a0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d45ef67468f9f3fc5c197/download)
[Logs](https://api.biosimulations.org/logs/677d45ef67468f9f3fc5c197?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45ef67468f9f3fc5c197)

HTTP response: 201| +|[00807-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00807-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d45f9f8016f90e7cba7bf/download)
[Logs](https://api.biosimulations.org/logs/677d45f9f8016f90e7cba7bf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45f9f8016f90e7cba7bf)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d45f667468f9f3fc5c1ad/download)
[Logs](https://api.biosimulations.org/logs/677d45f667468f9f3fc5c1ad?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45f667468f9f3fc5c1ad)

HTTP response: 201| +|[00808-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00808-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d45ff67468f9f3fc5c1d0/download)
[Logs](https://api.biosimulations.org/logs/677d45ff67468f9f3fc5c1d0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45ff67468f9f3fc5c1d0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d45fc3e750b90a426443e/download)
[Logs](https://api.biosimulations.org/logs/677d45fc3e750b90a426443e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d45fc3e750b90a426443e)

HTTP response: 201| +|[00809-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00809-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d46073e750b90a426445c/download)
[Logs](https://api.biosimulations.org/logs/677d46073e750b90a426445c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46073e750b90a426445c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d46033e750b90a4264457/download)
[Logs](https://api.biosimulations.org/logs/677d46033e750b90a4264457?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46033e750b90a4264457)

HTTP response: 201| +|[00810-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00810-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d460d3e750b90a426446b/download)
[Logs](https://api.biosimulations.org/logs/677d460d3e750b90a426446b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d460d3e750b90a426446b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d460a67468f9f3fc5c1f6/download)
[Logs](https://api.biosimulations.org/logs/677d460a67468f9f3fc5c1f6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d460a67468f9f3fc5c1f6)

HTTP response: 201| +|[00811-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00811-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d461367468f9f3fc5c216/download)
[Logs](https://api.biosimulations.org/logs/677d461367468f9f3fc5c216?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d461367468f9f3fc5c216)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4610f8016f90e7cba80b/download)
[Logs](https://api.biosimulations.org/logs/677d4610f8016f90e7cba80b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4610f8016f90e7cba80b)

HTTP response: 201| +|[00812-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00812-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d461cf8016f90e7cba82b/download)
[Logs](https://api.biosimulations.org/logs/677d461cf8016f90e7cba82b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d461cf8016f90e7cba82b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4618f8016f90e7cba819/download)
[Logs](https://api.biosimulations.org/logs/677d4618f8016f90e7cba819?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4618f8016f90e7cba819)

HTTP response: 201| +|[00813-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00813-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d46233e750b90a42644a5/download)
[Logs](https://api.biosimulations.org/logs/677d46233e750b90a42644a5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46233e750b90a42644a5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d462067468f9f3fc5c239/download)
[Logs](https://api.biosimulations.org/logs/677d462067468f9f3fc5c239?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d462067468f9f3fc5c239)

HTTP response: 201| +|[00814-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00814-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d462a67468f9f3fc5c25a/download)
[Logs](https://api.biosimulations.org/logs/677d462a67468f9f3fc5c25a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d462a67468f9f3fc5c25a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d46263e750b90a42644ba/download)
[Logs](https://api.biosimulations.org/logs/677d46263e750b90a42644ba?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46263e750b90a42644ba)

HTTP response: 201| +|[00815-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00815-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d463067468f9f3fc5c265/download)
[Logs](https://api.biosimulations.org/logs/677d463067468f9f3fc5c265?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d463067468f9f3fc5c265)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d462df8016f90e7cba864/download)
[Logs](https://api.biosimulations.org/logs/677d462df8016f90e7cba864?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d462df8016f90e7cba864)

HTTP response: 201| +|[00816-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00816-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4636f8016f90e7cba88c/download)
[Logs](https://api.biosimulations.org/logs/677d4636f8016f90e7cba88c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4636f8016f90e7cba88c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4633f8016f90e7cba879/download)
[Logs](https://api.biosimulations.org/logs/677d4633f8016f90e7cba879?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4633f8016f90e7cba879)

HTTP response: 201| +|[00817-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00817-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d463cf8016f90e7cba896/download)
[Logs](https://api.biosimulations.org/logs/677d463cf8016f90e7cba896?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d463cf8016f90e7cba896)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d46393e750b90a42644e9/download)
[Logs](https://api.biosimulations.org/logs/677d46393e750b90a42644e9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46393e750b90a42644e9)

HTTP response: 201| +|[00818-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00818-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d46433e750b90a426450c/download)
[Logs](https://api.biosimulations.org/logs/677d46433e750b90a426450c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46433e750b90a426450c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d46403e750b90a42644fe/download)
[Logs](https://api.biosimulations.org/logs/677d46403e750b90a42644fe?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46403e750b90a42644fe)

HTTP response: 201| +|[00819-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00819-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d464cf8016f90e7cba8c5/download)
[Logs](https://api.biosimulations.org/logs/677d464cf8016f90e7cba8c5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d464cf8016f90e7cba8c5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4649f8016f90e7cba8b9/download)
[Logs](https://api.biosimulations.org/logs/677d4649f8016f90e7cba8b9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4649f8016f90e7cba8b9)

HTTP response: 201| +|[00820-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00820-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d46533e750b90a4264549/download)
[Logs](https://api.biosimulations.org/logs/677d46533e750b90a4264549?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46533e750b90a4264549)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d465067468f9f3fc5c2d7/download)
[Logs](https://api.biosimulations.org/logs/677d465067468f9f3fc5c2d7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d465067468f9f3fc5c2d7)

HTTP response: 201| +|[00821-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00821-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d465a3e750b90a4264562/download)
[Logs](https://api.biosimulations.org/logs/677d465a3e750b90a4264562?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d465a3e750b90a4264562)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4657f8016f90e7cba8e6/download)
[Logs](https://api.biosimulations.org/logs/677d4657f8016f90e7cba8e6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4657f8016f90e7cba8e6)

HTTP response: 201| +|[00822-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00822-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d46613e750b90a4264579/download)
[Logs](https://api.biosimulations.org/logs/677d46613e750b90a4264579?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46613e750b90a4264579)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d465e67468f9f3fc5c2f6/download)
[Logs](https://api.biosimulations.org/logs/677d465e67468f9f3fc5c2f6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d465e67468f9f3fc5c2f6)

HTTP response: 201| +|[00823-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00823-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4667f8016f90e7cba91b/download)
[Logs](https://api.biosimulations.org/logs/677d4667f8016f90e7cba91b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4667f8016f90e7cba91b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4664f8016f90e7cba90d/download)
[Logs](https://api.biosimulations.org/logs/677d4664f8016f90e7cba90d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4664f8016f90e7cba90d)

HTTP response: 201| +|[00824-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00824-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d466e67468f9f3fc5c321/download)
[Logs](https://api.biosimulations.org/logs/677d466e67468f9f3fc5c321?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d466e67468f9f3fc5c321)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d466a67468f9f3fc5c30e/download)
[Logs](https://api.biosimulations.org/logs/677d466a67468f9f3fc5c30e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d466a67468f9f3fc5c30e)

HTTP response: 201| +|[00825-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00825-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d467567468f9f3fc5c332/download)
[Logs](https://api.biosimulations.org/logs/677d467567468f9f3fc5c332?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d467567468f9f3fc5c332)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4671f8016f90e7cba938/download)
[Logs](https://api.biosimulations.org/logs/677d4671f8016f90e7cba938?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4671f8016f90e7cba938)

HTTP response: 201| +|[00826-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00826-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d467bf8016f90e7cba956/download)
[Logs](https://api.biosimulations.org/logs/677d467bf8016f90e7cba956?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d467bf8016f90e7cba956)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d467867468f9f3fc5c33b/download)
[Logs](https://api.biosimulations.org/logs/677d467867468f9f3fc5c33b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d467867468f9f3fc5c33b)

HTTP response: 201| +|[00827-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00827-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d46813e750b90a42645db/download)
[Logs](https://api.biosimulations.org/logs/677d46813e750b90a42645db?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46813e750b90a42645db)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d467e3e750b90a42645cd/download)
[Logs](https://api.biosimulations.org/logs/677d467e3e750b90a42645cd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d467e3e750b90a42645cd)

HTTP response: 201| +|[00828-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00828-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d46873e750b90a42645ee/download)
[Logs](https://api.biosimulations.org/logs/677d46873e750b90a42645ee?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46873e750b90a42645ee)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d46843e750b90a42645e8/download)
[Logs](https://api.biosimulations.org/logs/677d46843e750b90a42645e8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46843e750b90a42645e8)

HTTP response: 201| +|[00829-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00829-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d468ef8016f90e7cba988/download)
[Logs](https://api.biosimulations.org/logs/677d468ef8016f90e7cba988?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d468ef8016f90e7cba988)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d468af8016f90e7cba980/download)
[Logs](https://api.biosimulations.org/logs/677d468af8016f90e7cba980?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d468af8016f90e7cba980)

HTTP response: 201| +|[00830-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00830-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d469467468f9f3fc5c38e/download)
[Logs](https://api.biosimulations.org/logs/677d469467468f9f3fc5c38e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d469467468f9f3fc5c38e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d46913e750b90a4264621/download)
[Logs](https://api.biosimulations.org/logs/677d46913e750b90a4264621?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46913e750b90a4264621)

HTTP response: 201| +|[00831-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00831-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d469b67468f9f3fc5c3a9/download)
[Logs](https://api.biosimulations.org/logs/677d469b67468f9f3fc5c3a9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d469b67468f9f3fc5c3a9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d46983e750b90a4264638/download)
[Logs](https://api.biosimulations.org/logs/677d46983e750b90a4264638?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46983e750b90a4264638)

HTTP response: 201| +|[00832-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00832-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d46a167468f9f3fc5c3b7/download)
[Logs](https://api.biosimulations.org/logs/677d46a167468f9f3fc5c3b7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46a167468f9f3fc5c3b7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d469e67468f9f3fc5c3b4/download)
[Logs](https://api.biosimulations.org/logs/677d469e67468f9f3fc5c3b4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d469e67468f9f3fc5c3b4)

HTTP response: 201| +|[00833-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00833-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d46a867468f9f3fc5c3d0/download)
[Logs](https://api.biosimulations.org/logs/677d46a867468f9f3fc5c3d0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46a867468f9f3fc5c3d0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d46a5f8016f90e7cba9d6/download)
[Logs](https://api.biosimulations.org/logs/677d46a5f8016f90e7cba9d6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46a5f8016f90e7cba9d6)

HTTP response: 201| +|[00834-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00834-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d46aef8016f90e7cba9f8/download)
[Logs](https://api.biosimulations.org/logs/677d46aef8016f90e7cba9f8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46aef8016f90e7cba9f8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d46abf8016f90e7cba9f3/download)
[Logs](https://api.biosimulations.org/logs/677d46abf8016f90e7cba9f3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46abf8016f90e7cba9f3)

HTTP response: 201| +|[00835-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00835-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d46b467468f9f3fc5c3f8/download)
[Logs](https://api.biosimulations.org/logs/677d46b467468f9f3fc5c3f8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46b467468f9f3fc5c3f8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d46b2f8016f90e7cbaa10/download)
[Logs](https://api.biosimulations.org/logs/677d46b2f8016f90e7cbaa10?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46b2f8016f90e7cbaa10)

HTTP response: 201| +|[00836-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00836-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d46bb3e750b90a4264695/download)
[Logs](https://api.biosimulations.org/logs/677d46bb3e750b90a4264695?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46bb3e750b90a4264695)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d46b8f8016f90e7cbaa23/download)
[Logs](https://api.biosimulations.org/logs/677d46b8f8016f90e7cbaa23?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46b8f8016f90e7cbaa23)

HTTP response: 201| +|[00837-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00837-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d46c23e750b90a42646a8/download)
[Logs](https://api.biosimulations.org/logs/677d46c23e750b90a42646a8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46c23e750b90a42646a8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d46bf3e750b90a42646a3/download)
[Logs](https://api.biosimulations.org/logs/677d46bf3e750b90a42646a3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46bf3e750b90a42646a3)

HTTP response: 201| +|[00838-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00838-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d46c967468f9f3fc5c43b/download)
[Logs](https://api.biosimulations.org/logs/677d46c967468f9f3fc5c43b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46c967468f9f3fc5c43b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d46c5f8016f90e7cbaa3b/download)
[Logs](https://api.biosimulations.org/logs/677d46c5f8016f90e7cbaa3b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46c5f8016f90e7cbaa3b)

HTTP response: 201| +|[00839-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00839-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d46cff8016f90e7cbaa53/download)
[Logs](https://api.biosimulations.org/logs/677d46cff8016f90e7cbaa53?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46cff8016f90e7cbaa53)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d46cc3e750b90a42646d4/download)
[Logs](https://api.biosimulations.org/logs/677d46cc3e750b90a42646d4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46cc3e750b90a42646d4)

HTTP response: 201| +|[00840-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00840-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d46d667468f9f3fc5c46a/download)
[Logs](https://api.biosimulations.org/logs/677d46d667468f9f3fc5c46a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46d667468f9f3fc5c46a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d46d33e750b90a42646e5/download)
[Logs](https://api.biosimulations.org/logs/677d46d33e750b90a42646e5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46d33e750b90a42646e5)

HTTP response: 201| +|[00841-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00841-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d46dc67468f9f3fc5c48e/download)
[Logs](https://api.biosimulations.org/logs/677d46dc67468f9f3fc5c48e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46dc67468f9f3fc5c48e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d46d93e750b90a4264700/download)
[Logs](https://api.biosimulations.org/logs/677d46d93e750b90a4264700?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46d93e750b90a4264700)

HTTP response: 201| +|[00842-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00842-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d46e3f8016f90e7cbaa99/download)
[Logs](https://api.biosimulations.org/logs/677d46e3f8016f90e7cbaa99?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46e3f8016f90e7cbaa99)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d46e0f8016f90e7cbaa8b/download)
[Logs](https://api.biosimulations.org/logs/677d46e0f8016f90e7cbaa8b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46e0f8016f90e7cbaa8b)

HTTP response: 201| +|[00843-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00843-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d46ea3e750b90a4264749/download)
[Logs](https://api.biosimulations.org/logs/677d46ea3e750b90a4264749?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46ea3e750b90a4264749)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d46e73e750b90a4264736/download)
[Logs](https://api.biosimulations.org/logs/677d46e73e750b90a4264736?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46e73e750b90a4264736)

HTTP response: 201| +|[00844-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00844-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = kf + -0.75' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d46f0f8016f90e7cbaac6/download)
[Logs](https://api.biosimulations.org/logs/677d46f0f8016f90e7cbaac6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46f0f8016f90e7cbaac6)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'kf' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d46edf8016f90e7cbaac0/download)
[Logs](https://api.biosimulations.org/logs/677d46edf8016f90e7cbaac0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46edf8016f90e7cbaac0)

HTTP response: 201| +|[00845-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00845-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d46f767468f9f3fc5c4df/download)
[Logs](https://api.biosimulations.org/logs/677d46f767468f9f3fc5c4df?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46f767468f9f3fc5c4df)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d46f4f8016f90e7cbaad6/download)
[Logs](https://api.biosimulations.org/logs/677d46f4f8016f90e7cbaad6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46f4f8016f90e7cbaad6)

HTTP response: 201| +|[00846-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00846-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d46ff67468f9f3fc5c4ec/download)
[Logs](https://api.biosimulations.org/logs/677d46ff67468f9f3fc5c4ec?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46ff67468f9f3fc5c4ec)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d46fc3e750b90a4264773/download)
[Logs](https://api.biosimulations.org/logs/677d46fc3e750b90a4264773?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d46fc3e750b90a4264773)

HTTP response: 201| +|[00847-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00847-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4706f8016f90e7cbab20/download)
[Logs](https://api.biosimulations.org/logs/677d4706f8016f90e7cbab20?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4706f8016f90e7cbab20)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d47033e750b90a4264789/download)
[Logs](https://api.biosimulations.org/logs/677d47033e750b90a4264789?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47033e750b90a4264789)

HTTP response: 201| +|[00848-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00848-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d470d3e750b90a42647a7/download)
[Logs](https://api.biosimulations.org/logs/677d470d3e750b90a42647a7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d470d3e750b90a42647a7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d470af8016f90e7cbab2a/download)
[Logs](https://api.biosimulations.org/logs/677d470af8016f90e7cbab2a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d470af8016f90e7cbab2a)

HTTP response: 201| +|[00849-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00849-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d471467468f9f3fc5c527/download)
[Logs](https://api.biosimulations.org/logs/677d471467468f9f3fc5c527?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d471467468f9f3fc5c527)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d47103e750b90a42647ab/download)
[Logs](https://api.biosimulations.org/logs/677d47103e750b90a42647ab?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47103e750b90a42647ab)

HTTP response: 201| +|[00850-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00850-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d471a67468f9f3fc5c536/download)
[Logs](https://api.biosimulations.org/logs/677d471a67468f9f3fc5c536?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d471a67468f9f3fc5c536)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d471767468f9f3fc5c532/download)
[Logs](https://api.biosimulations.org/logs/677d471767468f9f3fc5c532?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d471767468f9f3fc5c532)

HTTP response: 201| +|[00851-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00851-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677e71d9f8016f90e7cc06a1/download)
[Logs](https://api.biosimulations.org/logs/677e71d9f8016f90e7cc06a1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677e71d9f8016f90e7cc06a1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677e71d73e750b90a426a2a2/download)
[Logs](https://api.biosimulations.org/logs/677e71d73e750b90a426a2a2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677e71d73e750b90a426a2a2)

HTTP response: 201| +|[00852-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00852-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4728f8016f90e7cbab8b/download)
[Logs](https://api.biosimulations.org/logs/677d4728f8016f90e7cbab8b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4728f8016f90e7cbab8b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d472567468f9f3fc5c551/download)
[Logs](https://api.biosimulations.org/logs/677d472567468f9f3fc5c551?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d472567468f9f3fc5c551)

HTTP response: 201| +|[00853-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00853-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d472f67468f9f3fc5c576/download)
[Logs](https://api.biosimulations.org/logs/677d472f67468f9f3fc5c576?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d472f67468f9f3fc5c576)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d472b67468f9f3fc5c56d/download)
[Logs](https://api.biosimulations.org/logs/677d472b67468f9f3fc5c56d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d472b67468f9f3fc5c56d)

HTTP response: 201| +|[00854-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00854-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d47363e750b90a426480f/download)
[Logs](https://api.biosimulations.org/logs/677d47363e750b90a426480f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47363e750b90a426480f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4732f8016f90e7cbaba2/download)
[Logs](https://api.biosimulations.org/logs/677d4732f8016f90e7cbaba2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4732f8016f90e7cbaba2)

HTTP response: 201| +|[00855-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00855-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d473cf8016f90e7cbabbc/download)
[Logs](https://api.biosimulations.org/logs/677d473cf8016f90e7cbabbc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d473cf8016f90e7cbabbc)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d47393e750b90a426481a/download)
[Logs](https://api.biosimulations.org/logs/677d47393e750b90a426481a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47393e750b90a426481a)

HTTP response: 201| +|[00856-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00856-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d474367468f9f3fc5c5ad/download)
[Logs](https://api.biosimulations.org/logs/677d474367468f9f3fc5c5ad?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d474367468f9f3fc5c5ad)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4740f8016f90e7cbabc9/download)
[Logs](https://api.biosimulations.org/logs/677d4740f8016f90e7cbabc9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4740f8016f90e7cbabc9)

HTTP response: 201| +|[00857-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00857-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d474a67468f9f3fc5c5bf/download)
[Logs](https://api.biosimulations.org/logs/677d474a67468f9f3fc5c5bf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d474a67468f9f3fc5c5bf)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4747f8016f90e7cbabe4/download)
[Logs](https://api.biosimulations.org/logs/677d4747f8016f90e7cbabe4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4747f8016f90e7cbabe4)

HTTP response: 201| +|[00858-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00858-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d475267468f9f3fc5c5d5/download)
[Logs](https://api.biosimulations.org/logs/677d475267468f9f3fc5c5d5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d475267468f9f3fc5c5d5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d474ef8016f90e7cbabf1/download)
[Logs](https://api.biosimulations.org/logs/677d474ef8016f90e7cbabf1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d474ef8016f90e7cbabf1)

HTTP response: 201| +|[00859-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00859-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d475967468f9f3fc5c5f0/download)
[Logs](https://api.biosimulations.org/logs/677d475967468f9f3fc5c5f0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d475967468f9f3fc5c5f0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d475567468f9f3fc5c5e8/download)
[Logs](https://api.biosimulations.org/logs/677d475567468f9f3fc5c5e8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d475567468f9f3fc5c5e8)

HTTP response: 201| +|[00860-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00860-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d476067468f9f3fc5c601/download)
[Logs](https://api.biosimulations.org/logs/677d476067468f9f3fc5c601?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d476067468f9f3fc5c601)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d475cf8016f90e7cbac16/download)
[Logs](https://api.biosimulations.org/logs/677d475cf8016f90e7cbac16?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d475cf8016f90e7cbac16)

HTTP response: 201| +|[00861-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00861-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d47673e750b90a42648b2/download)
[Logs](https://api.biosimulations.org/logs/677d47673e750b90a42648b2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47673e750b90a42648b2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d476467468f9f3fc5c60e/download)
[Logs](https://api.biosimulations.org/logs/677d476467468f9f3fc5c60e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d476467468f9f3fc5c60e)

HTTP response: 201| +|[00862-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00862-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d476e67468f9f3fc5c63d/download)
[Logs](https://api.biosimulations.org/logs/677d476e67468f9f3fc5c63d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d476e67468f9f3fc5c63d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d476b3e750b90a42648bd/download)
[Logs](https://api.biosimulations.org/logs/677d476b3e750b90a42648bd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d476b3e750b90a42648bd)

HTTP response: 201| +|[00863-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00863-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4777f8016f90e7cbac59/download)
[Logs](https://api.biosimulations.org/logs/677d4777f8016f90e7cbac59?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4777f8016f90e7cbac59)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d47723e750b90a42648ca/download)
[Logs](https://api.biosimulations.org/logs/677d47723e750b90a42648ca?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47723e750b90a42648ca)

HTTP response: 201| +|[00864-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00864-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d477f3e750b90a42648f3/download)
[Logs](https://api.biosimulations.org/logs/677d477f3e750b90a42648f3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d477f3e750b90a42648f3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d477c3e750b90a42648e9/download)
[Logs](https://api.biosimulations.org/logs/677d477c3e750b90a42648e9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d477c3e750b90a42648e9)

HTTP response: 201| +|[00865-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00865-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d478567468f9f3fc5c683/download)
[Logs](https://api.biosimulations.org/logs/677d478567468f9f3fc5c683?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d478567468f9f3fc5c683)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4782f8016f90e7cbac84/download)
[Logs](https://api.biosimulations.org/logs/677d4782f8016f90e7cbac84?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4782f8016f90e7cbac84)

HTTP response: 201| +|[00866-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00866-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d478c67468f9f3fc5c693/download)
[Logs](https://api.biosimulations.org/logs/677d478c67468f9f3fc5c693?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d478c67468f9f3fc5c693)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d47893e750b90a4264909/download)
[Logs](https://api.biosimulations.org/logs/677d47893e750b90a4264909?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47893e750b90a4264909)

HTTP response: 201| +|[00867-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00867-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d47943e750b90a426492c/download)
[Logs](https://api.biosimulations.org/logs/677d47943e750b90a426492c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47943e750b90a426492c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d479067468f9f3fc5c6a0/download)
[Logs](https://api.biosimulations.org/logs/677d479067468f9f3fc5c6a0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d479067468f9f3fc5c6a0)

HTTP response: 201| +|[00868-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00868-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d479a67468f9f3fc5c6ca/download)
[Logs](https://api.biosimulations.org/logs/677d479a67468f9f3fc5c6ca?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d479a67468f9f3fc5c6ca)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d47973e750b90a4264938/download)
[Logs](https://api.biosimulations.org/logs/677d47973e750b90a4264938?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47973e750b90a4264938)

HTTP response: 201| +|[00869-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00869-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d47a267468f9f3fc5c6d8/download)
[Logs](https://api.biosimulations.org/logs/677d47a267468f9f3fc5c6d8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47a267468f9f3fc5c6d8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d479ef8016f90e7cbaccd/download)
[Logs](https://api.biosimulations.org/logs/677d479ef8016f90e7cbaccd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d479ef8016f90e7cbaccd)

HTTP response: 201| +|[00870-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00870-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d47a9f8016f90e7cbacf4/download)
[Logs](https://api.biosimulations.org/logs/677d47a9f8016f90e7cbacf4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47a9f8016f90e7cbacf4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d47a63e750b90a4264961/download)
[Logs](https://api.biosimulations.org/logs/677d47a63e750b90a4264961?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47a63e750b90a4264961)

HTTP response: 201| +|[00871-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00871-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d47b03e750b90a4264979/download)
[Logs](https://api.biosimulations.org/logs/677d47b03e750b90a4264979?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47b03e750b90a4264979)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d47ad67468f9f3fc5c6fb/download)
[Logs](https://api.biosimulations.org/logs/677d47ad67468f9f3fc5c6fb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47ad67468f9f3fc5c6fb)

HTTP response: 201| +|[00872-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00872-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d47b8f8016f90e7cbad25/download)
[Logs](https://api.biosimulations.org/logs/677d47b8f8016f90e7cbad25?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47b8f8016f90e7cbad25)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d47b467468f9f3fc5c70c/download)
[Logs](https://api.biosimulations.org/logs/677d47b467468f9f3fc5c70c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47b467468f9f3fc5c70c)

HTTP response: 201| +|[00873-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00873-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d47c03e750b90a42649a0/download)
[Logs](https://api.biosimulations.org/logs/677d47c03e750b90a42649a0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47c03e750b90a42649a0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d47bc67468f9f3fc5c721/download)
[Logs](https://api.biosimulations.org/logs/677d47bc67468f9f3fc5c721?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47bc67468f9f3fc5c721)

HTTP response: 201| +|[00874-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00874-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d47c6f8016f90e7cbad55/download)
[Logs](https://api.biosimulations.org/logs/677d47c6f8016f90e7cbad55?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47c6f8016f90e7cbad55)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d47c33e750b90a42649b2/download)
[Logs](https://api.biosimulations.org/logs/677d47c33e750b90a42649b2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47c33e750b90a42649b2)

HTTP response: 201| +|[00875-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00875-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d47cd67468f9f3fc5c746/download)
[Logs](https://api.biosimulations.org/logs/677d47cd67468f9f3fc5c746?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47cd67468f9f3fc5c746)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d47ca3e750b90a42649c0/download)
[Logs](https://api.biosimulations.org/logs/677d47ca3e750b90a42649c0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47ca3e750b90a42649c0)

HTTP response: 201| +|[00876-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00876-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d47d43e750b90a42649d7/download)
[Logs](https://api.biosimulations.org/logs/677d47d43e750b90a42649d7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47d43e750b90a42649d7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d47d1f8016f90e7cbad78/download)
[Logs](https://api.biosimulations.org/logs/677d47d1f8016f90e7cbad78?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47d1f8016f90e7cbad78)

HTTP response: 201| +|[00877-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00877-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d47da67468f9f3fc5c76d/download)
[Logs](https://api.biosimulations.org/logs/677d47da67468f9f3fc5c76d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47da67468f9f3fc5c76d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d47d767468f9f3fc5c758/download)
[Logs](https://api.biosimulations.org/logs/677d47d767468f9f3fc5c758?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47d767468f9f3fc5c758)

HTTP response: 201| +|[00878-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00878-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d47e167468f9f3fc5c77c/download)
[Logs](https://api.biosimulations.org/logs/677d47e167468f9f3fc5c77c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47e167468f9f3fc5c77c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d47def8016f90e7cbada5/download)
[Logs](https://api.biosimulations.org/logs/677d47def8016f90e7cbada5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47def8016f90e7cbada5)

HTTP response: 201| +|[00879-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00879-sbml-l3v2.xml)|pass|FAIL|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d47e8f8016f90e7cbadc2/download)
[Logs](https://api.biosimulations.org/logs/677d47e8f8016f90e7cbadc2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47e8f8016f90e7cbadc2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d47e567468f9f3fc5c782/download)
[Logs](https://api.biosimulations.org/logs/677d47e567468f9f3fc5c782?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47e567468f9f3fc5c782)

HTTP response: 201| +|[00880-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00880-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d47ee3e750b90a4264a42/download)
[Logs](https://api.biosimulations.org/logs/677d47ee3e750b90a4264a42?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47ee3e750b90a4264a42)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d47ebf8016f90e7cbadcb/download)
[Logs](https://api.biosimulations.org/logs/677d47ebf8016f90e7cbadcb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47ebf8016f90e7cbadcb)

HTTP response: 201| +|[00881-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00881-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d47f43e750b90a4264a57/download)
[Logs](https://api.biosimulations.org/logs/677d47f43e750b90a4264a57?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47f43e750b90a4264a57)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d47f13e750b90a4264a46/download)
[Logs](https://api.biosimulations.org/logs/677d47f13e750b90a4264a46?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47f13e750b90a4264a46)

HTTP response: 201| +|[00882-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00882-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d47fb3e750b90a4264a72/download)
[Logs](https://api.biosimulations.org/logs/677d47fb3e750b90a4264a72?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47fb3e750b90a4264a72)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d47f83e750b90a4264a64/download)
[Logs](https://api.biosimulations.org/logs/677d47f83e750b90a4264a64?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47f83e750b90a4264a64)

HTTP response: 201| +|[00883-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00883-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d480267468f9f3fc5c7de/download)
[Logs](https://api.biosimulations.org/logs/677d480267468f9f3fc5c7de?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d480267468f9f3fc5c7de)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d47fff8016f90e7cbae00/download)
[Logs](https://api.biosimulations.org/logs/677d47fff8016f90e7cbae00?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d47fff8016f90e7cbae00)

HTTP response: 201| +|[00884-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00884-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d480967468f9f3fc5c7f9/download)
[Logs](https://api.biosimulations.org/logs/677d480967468f9f3fc5c7f9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d480967468f9f3fc5c7f9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d48063e750b90a4264a92/download)
[Logs](https://api.biosimulations.org/logs/677d48063e750b90a4264a92?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d48063e750b90a4264a92)

HTTP response: 201| +|[00885-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00885-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d480f3e750b90a4264aaf/download)
[Logs](https://api.biosimulations.org/logs/677d480f3e750b90a4264aaf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d480f3e750b90a4264aaf)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d480cf8016f90e7cbae33/download)
[Logs](https://api.biosimulations.org/logs/677d480cf8016f90e7cbae33?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d480cf8016f90e7cbae33)

HTTP response: 201| +|[00886-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00886-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d48163e750b90a4264aca/download)
[Logs](https://api.biosimulations.org/logs/677d48163e750b90a4264aca?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d48163e750b90a4264aca)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4813f8016f90e7cbae4b/download)
[Logs](https://api.biosimulations.org/logs/677d4813f8016f90e7cbae4b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4813f8016f90e7cbae4b)

HTTP response: 201| +|[00887-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00887-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d481df8016f90e7cbae64/download)
[Logs](https://api.biosimulations.org/logs/677d481df8016f90e7cbae64?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d481df8016f90e7cbae64)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d481967468f9f3fc5c830/download)
[Logs](https://api.biosimulations.org/logs/677d481967468f9f3fc5c830?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d481967468f9f3fc5c830)

HTTP response: 201| +|[00888-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00888-sbml-l3v2.xml)|pass|FAIL|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4823f8016f90e7cbae76/download)
[Logs](https://api.biosimulations.org/logs/677d4823f8016f90e7cbae76?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4823f8016f90e7cbae76)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4820f8016f90e7cbae69/download)
[Logs](https://api.biosimulations.org/logs/677d4820f8016f90e7cbae69?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4820f8016f90e7cbae69)

HTTP response: 201| +|[00889-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00889-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d482a67468f9f3fc5c86c/download)
[Logs](https://api.biosimulations.org/logs/677d482a67468f9f3fc5c86c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d482a67468f9f3fc5c86c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d482767468f9f3fc5c85a/download)
[Logs](https://api.biosimulations.org/logs/677d482767468f9f3fc5c85a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d482767468f9f3fc5c85a)

HTTP response: 201| +|[00890-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00890-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d48303e750b90a4264b14/download)
[Logs](https://api.biosimulations.org/logs/677d48303e750b90a4264b14?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d48303e750b90a4264b14)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d482d3e750b90a4264b0c/download)
[Logs](https://api.biosimulations.org/logs/677d482d3e750b90a4264b0c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d482d3e750b90a4264b0c)

HTTP response: 201| +|[00891-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00891-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d48373e750b90a4264b37/download)
[Logs](https://api.biosimulations.org/logs/677d48373e750b90a4264b37?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d48373e750b90a4264b37)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d48333e750b90a4264b25/download)
[Logs](https://api.biosimulations.org/logs/677d48333e750b90a4264b25?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d48333e750b90a4264b25)

HTTP response: 201| +|[00892-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00892-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d483c67468f9f3fc5c898/download)
[Logs](https://api.biosimulations.org/logs/677d483c67468f9f3fc5c898?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d483c67468f9f3fc5c898)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d483a3e750b90a4264b45/download)
[Logs](https://api.biosimulations.org/logs/677d483a3e750b90a4264b45?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d483a3e750b90a4264b45)

HTTP response: 201| +|[00893-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00893-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d48433e750b90a4264b65/download)
[Logs](https://api.biosimulations.org/logs/677d48433e750b90a4264b65?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d48433e750b90a4264b65)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4840f8016f90e7cbaed1/download)
[Logs](https://api.biosimulations.org/logs/677d4840f8016f90e7cbaed1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4840f8016f90e7cbaed1)

HTTP response: 201| +|[00894-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00894-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d484b67468f9f3fc5c8bf/download)
[Logs](https://api.biosimulations.org/logs/677d484b67468f9f3fc5c8bf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d484b67468f9f3fc5c8bf)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d48483e750b90a4264b72/download)
[Logs](https://api.biosimulations.org/logs/677d48483e750b90a4264b72?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d48483e750b90a4264b72)

HTTP response: 201| +|[00895-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00895-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4852f8016f90e7cbaf02/download)
[Logs](https://api.biosimulations.org/logs/677d4852f8016f90e7cbaf02?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4852f8016f90e7cbaf02)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d484f3e750b90a4264b82/download)
[Logs](https://api.biosimulations.org/logs/677d484f3e750b90a4264b82?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d484f3e750b90a4264b82)

HTTP response: 201| +|[00896-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00896-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4858f8016f90e7cbaf12/download)
[Logs](https://api.biosimulations.org/logs/677d4858f8016f90e7cbaf12?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4858f8016f90e7cbaf12)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d48553e750b90a4264b98/download)
[Logs](https://api.biosimulations.org/logs/677d48553e750b90a4264b98?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d48553e750b90a4264b98)

HTTP response: 201| +|[00897-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00897-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4860f8016f90e7cbaf27/download)
[Logs](https://api.biosimulations.org/logs/677d4860f8016f90e7cbaf27?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4860f8016f90e7cbaf27)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d485d67468f9f3fc5c8f6/download)
[Logs](https://api.biosimulations.org/logs/677d485d67468f9f3fc5c8f6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d485d67468f9f3fc5c8f6)

HTTP response: 201| +|[00898-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00898-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d48673e750b90a4264bd5/download)
[Logs](https://api.biosimulations.org/logs/677d48673e750b90a4264bd5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d48673e750b90a4264bd5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d486467468f9f3fc5c909/download)
[Logs](https://api.biosimulations.org/logs/677d486467468f9f3fc5c909?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d486467468f9f3fc5c909)

HTTP response: 201| +|[00899-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00899-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d486e67468f9f3fc5c923/download)
[Logs](https://api.biosimulations.org/logs/677d486e67468f9f3fc5c923?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d486e67468f9f3fc5c923)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d486b67468f9f3fc5c91a/download)
[Logs](https://api.biosimulations.org/logs/677d486b67468f9f3fc5c91a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d486b67468f9f3fc5c91a)

HTTP response: 201| +|[00900-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00900-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4874f8016f90e7cbaf62/download)
[Logs](https://api.biosimulations.org/logs/677d4874f8016f90e7cbaf62?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4874f8016f90e7cbaf62)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d48713e750b90a4264bf8/download)
[Logs](https://api.biosimulations.org/logs/677d48713e750b90a4264bf8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d48713e750b90a4264bf8)

HTTP response: 201| +|[00901-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00901-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d487b67468f9f3fc5c94c/download)
[Logs](https://api.biosimulations.org/logs/677d487b67468f9f3fc5c94c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d487b67468f9f3fc5c94c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d487867468f9f3fc5c935/download)
[Logs](https://api.biosimulations.org/logs/677d487867468f9f3fc5c935?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d487867468f9f3fc5c935)

HTTP response: 201| +|[00902-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00902-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d488267468f9f3fc5c956/download)
[Logs](https://api.biosimulations.org/logs/677d488267468f9f3fc5c956?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d488267468f9f3fc5c956)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d487ef8016f90e7cbaf80/download)
[Logs](https://api.biosimulations.org/logs/677d487ef8016f90e7cbaf80?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d487ef8016f90e7cbaf80)

HTTP response: 201| +|[00903-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00903-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d488967468f9f3fc5c974/download)
[Logs](https://api.biosimulations.org/logs/677d488967468f9f3fc5c974?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d488967468f9f3fc5c974)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d488667468f9f3fc5c969/download)
[Logs](https://api.biosimulations.org/logs/677d488667468f9f3fc5c969?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d488667468f9f3fc5c969)

HTTP response: 201| +|[00904-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00904-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677e71de3e750b90a426a2aa/download)
[Logs](https://api.biosimulations.org/logs/677e71de3e750b90a426a2aa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677e71de3e750b90a426a2aa)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677e71dc3e750b90a426a2a7/download)
[Logs](https://api.biosimulations.org/logs/677e71dc3e750b90a426a2a7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677e71dc3e750b90a426a2a7)

HTTP response: 201| +|[00905-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00905-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4a3b67468f9f3fc5c9ad/download)
[Logs](https://api.biosimulations.org/logs/677d4a3b67468f9f3fc5c9ad?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a3b67468f9f3fc5c9ad)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4a38f8016f90e7cbafe6/download)
[Logs](https://api.biosimulations.org/logs/677d4a38f8016f90e7cbafe6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a38f8016f90e7cbafe6)

HTTP response: 201| +|[00906-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00906-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4a453e750b90a4264c94/download)
[Logs](https://api.biosimulations.org/logs/677d4a453e750b90a4264c94?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a453e750b90a4264c94)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4a4167468f9f3fc5c9b1/download)
[Logs](https://api.biosimulations.org/logs/677d4a4167468f9f3fc5c9b1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a4167468f9f3fc5c9b1)

HTTP response: 201| +|[00907-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00907-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4a4bf8016f90e7cbaff7/download)
[Logs](https://api.biosimulations.org/logs/677d4a4bf8016f90e7cbaff7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a4bf8016f90e7cbaff7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4a48f8016f90e7cbafef/download)
[Logs](https://api.biosimulations.org/logs/677d4a48f8016f90e7cbafef?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a48f8016f90e7cbafef)

HTTP response: 201| +|[00908-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00908-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4a52f8016f90e7cbb008/download)
[Logs](https://api.biosimulations.org/logs/677d4a52f8016f90e7cbb008?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a52f8016f90e7cbb008)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4a4e3e750b90a4264c9a/download)
[Logs](https://api.biosimulations.org/logs/677d4a4e3e750b90a4264c9a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a4e3e750b90a4264c9a)

HTTP response: 201| +|[00909-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00909-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4a5b67468f9f3fc5c9f9/download)
[Logs](https://api.biosimulations.org/logs/677d4a5b67468f9f3fc5c9f9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a5b67468f9f3fc5c9f9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4a5767468f9f3fc5c9ed/download)
[Logs](https://api.biosimulations.org/logs/677d4a5767468f9f3fc5c9ed?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a5767468f9f3fc5c9ed)

HTTP response: 201| +|[00910-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00910-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4a6267468f9f3fc5ca0d/download)
[Logs](https://api.biosimulations.org/logs/677d4a6267468f9f3fc5ca0d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a6267468f9f3fc5ca0d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4a603e750b90a4264cd4/download)
[Logs](https://api.biosimulations.org/logs/677d4a603e750b90a4264cd4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a603e750b90a4264cd4)

HTTP response: 201| +|[00911-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00911-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4a6a3e750b90a4264cec/download)
[Logs](https://api.biosimulations.org/logs/677d4a6a3e750b90a4264cec?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a6a3e750b90a4264cec)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4a663e750b90a4264ce8/download)
[Logs](https://api.biosimulations.org/logs/677d4a663e750b90a4264ce8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a663e750b90a4264ce8)

HTTP response: 201| +|[00912-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00912-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4a723e750b90a4264cff/download)
[Logs](https://api.biosimulations.org/logs/677d4a723e750b90a4264cff?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a723e750b90a4264cff)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4a6ff8016f90e7cbb04a/download)
[Logs](https://api.biosimulations.org/logs/677d4a6ff8016f90e7cbb04a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a6ff8016f90e7cbb04a)

HTTP response: 201| +|[00913-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00913-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4a7bf8016f90e7cbb06d/download)
[Logs](https://api.biosimulations.org/logs/677d4a7bf8016f90e7cbb06d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a7bf8016f90e7cbb06d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4a7867468f9f3fc5ca4a/download)
[Logs](https://api.biosimulations.org/logs/677d4a7867468f9f3fc5ca4a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a7867468f9f3fc5ca4a)

HTTP response: 201| +|[00914-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00914-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4a83f8016f90e7cbb07b/download)
[Logs](https://api.biosimulations.org/logs/677d4a83f8016f90e7cbb07b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a83f8016f90e7cbb07b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4a80f8016f90e7cbb078/download)
[Logs](https://api.biosimulations.org/logs/677d4a80f8016f90e7cbb078?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a80f8016f90e7cbb078)

HTTP response: 201| +|[00915-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00915-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4a883e750b90a4264d3a/download)
[Logs](https://api.biosimulations.org/logs/677d4a883e750b90a4264d3a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a883e750b90a4264d3a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4a86f8016f90e7cbb088/download)
[Logs](https://api.biosimulations.org/logs/677d4a86f8016f90e7cbb088?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a86f8016f90e7cbb088)

HTTP response: 201| +|[00916-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00916-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4a9067468f9f3fc5ca84/download)
[Logs](https://api.biosimulations.org/logs/677d4a9067468f9f3fc5ca84?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a9067468f9f3fc5ca84)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4a8d67468f9f3fc5ca7c/download)
[Logs](https://api.biosimulations.org/logs/677d4a8d67468f9f3fc5ca7c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a8d67468f9f3fc5ca7c)

HTTP response: 201| +|[00917-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00917-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4a99f8016f90e7cbb0b3/download)
[Logs](https://api.biosimulations.org/logs/677d4a99f8016f90e7cbb0b3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a99f8016f90e7cbb0b3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4a96f8016f90e7cbb0ad/download)
[Logs](https://api.biosimulations.org/logs/677d4a96f8016f90e7cbb0ad?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a96f8016f90e7cbb0ad)

HTTP response: 201| +|[00918-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00918-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4aa13e750b90a4264d87/download)
[Logs](https://api.biosimulations.org/logs/677d4aa13e750b90a4264d87?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4aa13e750b90a4264d87)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4a9e3e750b90a4264d7d/download)
[Logs](https://api.biosimulations.org/logs/677d4a9e3e750b90a4264d7d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4a9e3e750b90a4264d7d)

HTTP response: 201| +|[00919-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00919-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4aaa67468f9f3fc5cad0/download)
[Logs](https://api.biosimulations.org/logs/677d4aaa67468f9f3fc5cad0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4aaa67468f9f3fc5cad0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4aa73e750b90a4264d8f/download)
[Logs](https://api.biosimulations.org/logs/677d4aa73e750b90a4264d8f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4aa73e750b90a4264d8f)

HTTP response: 201| +|[00920-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00920-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4ab33e750b90a4264db1/download)
[Logs](https://api.biosimulations.org/logs/677d4ab33e750b90a4264db1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4ab33e750b90a4264db1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4ab03e750b90a4264da7/download)
[Logs](https://api.biosimulations.org/logs/677d4ab03e750b90a4264da7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4ab03e750b90a4264da7)

HTTP response: 201| +|[00921-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00921-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d4ab93e750b90a4264dbf/download)
[Logs](https://api.biosimulations.org/logs/677d4ab93e750b90a4264dbf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4ab93e750b90a4264dbf)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4ab667468f9f3fc5caf3/download)
[Logs](https://api.biosimulations.org/logs/677d4ab667468f9f3fc5caf3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4ab667468f9f3fc5caf3)

HTTP response: 201| +|[00922-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00922-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d570ef8016f90e7cbb172/download)
[Logs](https://api.biosimulations.org/logs/677d570ef8016f90e7cbb172?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d570ef8016f90e7cbb172)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d4abf3e750b90a4264dd2/download)
[Logs](https://api.biosimulations.org/logs/677d4abf3e750b90a4264dd2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d4abf3e750b90a4264dd2)

HTTP response: 201| +|[00923-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00923-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5715f8016f90e7cbb17a/download)
[Logs](https://api.biosimulations.org/logs/677d5715f8016f90e7cbb17a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5715f8016f90e7cbb17a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5712f8016f90e7cbb177/download)
[Logs](https://api.biosimulations.org/logs/677d5712f8016f90e7cbb177?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5712f8016f90e7cbb177)

HTTP response: 201| +|[00924-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00924-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d571c3e750b90a4264e4a/download)
[Logs](https://api.biosimulations.org/logs/677d571c3e750b90a4264e4a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d571c3e750b90a4264e4a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d57193e750b90a4264e44/download)
[Logs](https://api.biosimulations.org/logs/677d57193e750b90a4264e44?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57193e750b90a4264e44)

HTTP response: 201| +|[00925-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00925-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5728f8016f90e7cbb190/download)
[Logs](https://api.biosimulations.org/logs/677d5728f8016f90e7cbb190?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5728f8016f90e7cbb190)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d572467468f9f3fc5cb8d/download)
[Logs](https://api.biosimulations.org/logs/677d572467468f9f3fc5cb8d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d572467468f9f3fc5cb8d)

HTTP response: 201| +|[00926-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00926-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d57343e750b90a4264e80/download)
[Logs](https://api.biosimulations.org/logs/677d57343e750b90a4264e80?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57343e750b90a4264e80)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d572f67468f9f3fc5cba8/download)
[Logs](https://api.biosimulations.org/logs/677d572f67468f9f3fc5cba8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d572f67468f9f3fc5cba8)

HTTP response: 201| +|[00927-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00927-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d573bf8016f90e7cbb1be/download)
[Logs](https://api.biosimulations.org/logs/677d573bf8016f90e7cbb1be?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d573bf8016f90e7cbb1be)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d573867468f9f3fc5cbb4/download)
[Logs](https://api.biosimulations.org/logs/677d573867468f9f3fc5cbb4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d573867468f9f3fc5cbb4)

HTTP response: 201| +|[00928-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00928-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5741f8016f90e7cbb1d3/download)
[Logs](https://api.biosimulations.org/logs/677d5741f8016f90e7cbb1d3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5741f8016f90e7cbb1d3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d573e67468f9f3fc5cbc4/download)
[Logs](https://api.biosimulations.org/logs/677d573e67468f9f3fc5cbc4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d573e67468f9f3fc5cbc4)

HTTP response: 201| +|[00929-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00929-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5748f8016f90e7cbb1e1/download)
[Logs](https://api.biosimulations.org/logs/677d5748f8016f90e7cbb1e1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5748f8016f90e7cbb1e1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d57443e750b90a4264e9d/download)
[Logs](https://api.biosimulations.org/logs/677d57443e750b90a4264e9d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57443e750b90a4264e9d)

HTTP response: 201| +|[00930-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00930-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d574ef8016f90e7cbb1f4/download)
[Logs](https://api.biosimulations.org/logs/677d574ef8016f90e7cbb1f4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d574ef8016f90e7cbb1f4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d574b67468f9f3fc5cbea/download)
[Logs](https://api.biosimulations.org/logs/677d574b67468f9f3fc5cbea?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d574b67468f9f3fc5cbea)

HTTP response: 201| +|[00931-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00931-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5754f8016f90e7cbb20b/download)
[Logs](https://api.biosimulations.org/logs/677d5754f8016f90e7cbb20b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5754f8016f90e7cbb20b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5752f8016f90e7cbb202/download)
[Logs](https://api.biosimulations.org/logs/677d5752f8016f90e7cbb202?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5752f8016f90e7cbb202)

HTTP response: 201| +|[00932-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00932-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d575af8016f90e7cbb21b/download)
[Logs](https://api.biosimulations.org/logs/677d575af8016f90e7cbb21b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d575af8016f90e7cbb21b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d57573e750b90a4264ed9/download)
[Logs](https://api.biosimulations.org/logs/677d57573e750b90a4264ed9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57573e750b90a4264ed9)

HTTP response: 201| +|[00933-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00933-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d575ff8016f90e7cbb23b/download)
[Logs](https://api.biosimulations.org/logs/677d575ff8016f90e7cbb23b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d575ff8016f90e7cbb23b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d575d3e750b90a4264eeb/download)
[Logs](https://api.biosimulations.org/logs/677d575d3e750b90a4264eeb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d575d3e750b90a4264eeb)

HTTP response: 201| +|[00934-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00934-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5765f8016f90e7cbb24d/download)
[Logs](https://api.biosimulations.org/logs/677d5765f8016f90e7cbb24d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5765f8016f90e7cbb24d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d576267468f9f3fc5cc2e/download)
[Logs](https://api.biosimulations.org/logs/677d576267468f9f3fc5cc2e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d576267468f9f3fc5cc2e)

HTTP response: 201| +|[00935-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00935-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d576a67468f9f3fc5cc52/download)
[Logs](https://api.biosimulations.org/logs/677d576a67468f9f3fc5cc52?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d576a67468f9f3fc5cc52)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d57673e750b90a4264f11/download)
[Logs](https://api.biosimulations.org/logs/677d57673e750b90a4264f11?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57673e750b90a4264f11)

HTTP response: 201| +|[00936-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00936-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d576ff8016f90e7cbb272/download)
[Logs](https://api.biosimulations.org/logs/677d576ff8016f90e7cbb272?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d576ff8016f90e7cbb272)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d576d3e750b90a4264f23/download)
[Logs](https://api.biosimulations.org/logs/677d576d3e750b90a4264f23?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d576d3e750b90a4264f23)

HTTP response: 201| +|[00937-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00937-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(x, 0.2)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d577567468f9f3fc5cc71/download)
[Logs](https://api.biosimulations.org/logs/677d577567468f9f3fc5cc71?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d577567468f9f3fc5cc71)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(x, 0.2)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d57723e750b90a4264f3d/download)
[Logs](https://api.biosimulations.org/logs/677d57723e750b90a4264f3d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57723e750b90a4264f3d)

HTTP response: 201| +|[00938-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00938-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(x, 0.2)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d577bf8016f90e7cbb29b/download)
[Logs](https://api.biosimulations.org/logs/677d577bf8016f90e7cbb29b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d577bf8016f90e7cbb29b)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(x, 0.2)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d577867468f9f3fc5cc88/download)
[Logs](https://api.biosimulations.org/logs/677d577867468f9f3fc5cc88?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d577867468f9f3fc5cc88)

HTTP response: 201| +|[00939-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00939-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(x, 0.2)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d578067468f9f3fc5cca2/download)
[Logs](https://api.biosimulations.org/logs/677d578067468f9f3fc5cca2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d578067468f9f3fc5cca2)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(x, 0.2)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d577e67468f9f3fc5cc9b/download)
[Logs](https://api.biosimulations.org/logs/677d577e67468f9f3fc5cc9b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d577e67468f9f3fc5cc9b)

HTTP response: 201| +|[00940-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00940-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(x, 0.5)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d578667468f9f3fc5ccb7/download)
[Logs](https://api.biosimulations.org/logs/677d578667468f9f3fc5ccb7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d578667468f9f3fc5ccb7)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(x, 0.5)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d57843e750b90a4264f80/download)
[Logs](https://api.biosimulations.org/logs/677d57843e750b90a4264f80?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57843e750b90a4264f80)

HTTP response: 201| +|[00941-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00941-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(x, 0.5)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d578cf8016f90e7cbb2dd/download)
[Logs](https://api.biosimulations.org/logs/677d578cf8016f90e7cbb2dd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d578cf8016f90e7cbb2dd)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(x, 0.5)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d578af8016f90e7cbb2d6/download)
[Logs](https://api.biosimulations.org/logs/677d578af8016f90e7cbb2d6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d578af8016f90e7cbb2d6)

HTTP response: 201| +|[00942-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00942-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(x, 0.5)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d57923e750b90a4264fae/download)
[Logs](https://api.biosimulations.org/logs/677d57923e750b90a4264fae?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57923e750b90a4264fae)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(x, 0.5)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d578ff8016f90e7cbb2e2/download)
[Logs](https://api.biosimulations.org/logs/677d578ff8016f90e7cbb2e2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d578ff8016f90e7cbb2e2)

HTTP response: 201| +|[00943-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00943-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(x, 0.5)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d579767468f9f3fc5ccf2/download)
[Logs](https://api.biosimulations.org/logs/677d579767468f9f3fc5ccf2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d579767468f9f3fc5ccf2)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(x, 0.5)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5795f8016f90e7cbb2fe/download)
[Logs](https://api.biosimulations.org/logs/677d5795f8016f90e7cbb2fe?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5795f8016f90e7cbb2fe)

HTTP response: 201| +|[00944-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00944-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d579df8016f90e7cbb321/download)
[Logs](https://api.biosimulations.org/logs/677d579df8016f90e7cbb321?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d579df8016f90e7cbb321)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d579af8016f90e7cbb30b/download)
[Logs](https://api.biosimulations.org/logs/677d579af8016f90e7cbb30b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d579af8016f90e7cbb30b)

HTTP response: 201| +|[00945-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00945-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d57a3f8016f90e7cbb334/download)
[Logs](https://api.biosimulations.org/logs/677d57a3f8016f90e7cbb334?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57a3f8016f90e7cbb334)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d57a13e750b90a4264fe8/download)
[Logs](https://api.biosimulations.org/logs/677d57a13e750b90a4264fe8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57a13e750b90a4264fe8)

HTTP response: 201| +|[00946-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00946-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d57a9f8016f90e7cbb34d/download)
[Logs](https://api.biosimulations.org/logs/677d57a9f8016f90e7cbb34d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57a9f8016f90e7cbb34d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d57a667468f9f3fc5cd31/download)
[Logs](https://api.biosimulations.org/logs/677d57a667468f9f3fc5cd31?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57a667468f9f3fc5cd31)

HTTP response: 201| +|[00947-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00947-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d57af3e750b90a426501e/download)
[Logs](https://api.biosimulations.org/logs/677d57af3e750b90a426501e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57af3e750b90a426501e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d57ac67468f9f3fc5cd3f/download)
[Logs](https://api.biosimulations.org/logs/677d57ac67468f9f3fc5cd3f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57ac67468f9f3fc5cd3f)

HTTP response: 201| +|[00948-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00948-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d57b43e750b90a4265031/download)
[Logs](https://api.biosimulations.org/logs/677d57b43e750b90a4265031?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57b43e750b90a4265031)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d57b13e750b90a4265025/download)
[Logs](https://api.biosimulations.org/logs/677d57b13e750b90a4265025?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57b13e750b90a4265025)

HTTP response: 201| +|[00949-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00949-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d57b8f8016f90e7cbb384/download)
[Logs](https://api.biosimulations.org/logs/677d57b8f8016f90e7cbb384?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57b8f8016f90e7cbb384)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d57b6f8016f90e7cbb370/download)
[Logs](https://api.biosimulations.org/logs/677d57b6f8016f90e7cbb370?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57b6f8016f90e7cbb370)

HTTP response: 201| +|[00950-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00950-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d57bdf8016f90e7cbb3a3/download)
[Logs](https://api.biosimulations.org/logs/677d57bdf8016f90e7cbb3a3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57bdf8016f90e7cbb3a3)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Simulation failed: 11 nan value(s) found in results with algorithm KISAO_0000019 (cvode) - relative_tolerance: 1e-06 - absolute_tolerance: 1e-12 - stiff: True - maximum_bdf_order: 5 - maximum_adams_order: 12 - maximum_num_steps: 20000 - maximum_time_step: 0.0 - minimum_time_step: 0.0 - initial_time_step: 0.0 - multiple_steps: False - variable_step_size: False - max_output_rows: 100000```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d57bbf8016f90e7cbb38f/download)
[Logs](https://api.biosimulations.org/logs/677d57bbf8016f90e7cbb38f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57bbf8016f90e7cbb38f)

HTTP response: 201| +|[00951-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00951-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d57c367468f9f3fc5cd80/download)
[Logs](https://api.biosimulations.org/logs/677d57c367468f9f3fc5cd80?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57c367468f9f3fc5cd80)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Simulation failed: 11 nan value(s) found in results with algorithm KISAO_0000019 (cvode) - relative_tolerance: 1e-06 - absolute_tolerance: 1e-12 - stiff: True - maximum_bdf_order: 5 - maximum_adams_order: 12 - maximum_num_steps: 20000 - maximum_time_step: 0.0 - minimum_time_step: 0.0 - initial_time_step: 0.0 - multiple_steps: False - variable_step_size: False - max_output_rows: 100000```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d57c03e750b90a4265062/download)
[Logs](https://api.biosimulations.org/logs/677d57c03e750b90a4265062?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57c03e750b90a4265062)

HTTP response: 201| +|[00952-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00952-sbml-l3v2.xml)|pass|pass|pass|
skippedCase is skipped because it leads to a float error when trying to run it in tellurium natively, which leads to reset errors in subsequent cases that would otherwise pass.
|True|
pass[Download](https://api.biosimulations.org/results/677d57c83e750b90a4265080/download)
[Logs](https://api.biosimulations.org/logs/677d57c83e750b90a4265080?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57c83e750b90a4265080)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d57c63e750b90a4265077/download)
[Logs](https://api.biosimulations.org/logs/677d57c63e750b90a4265077?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57c63e750b90a4265077)

HTTP response: 201| +|[00953-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00953-sbml-l3v2.xml)|pass|pass|pass|
skippedCase is skipped because it leads to a float error when trying to run it in tellurium natively, which leads to reset errors in subsequent cases that would otherwise pass.
|True|
pass[Download](https://api.biosimulations.org/results/677d57cd3e750b90a426509d/download)
[Logs](https://api.biosimulations.org/logs/677d57cd3e750b90a426509d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57cd3e750b90a426509d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d57cb3e750b90a4265091/download)
[Logs](https://api.biosimulations.org/logs/677d57cb3e750b90a4265091?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57cb3e750b90a4265091)

HTTP response: 201| +|[00954-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00954-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d57d367468f9f3fc5cdad/download)
[Logs](https://api.biosimulations.org/logs/677d57d367468f9f3fc5cdad?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57d367468f9f3fc5cdad)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d57d03e750b90a42650ae/download)
[Logs](https://api.biosimulations.org/logs/677d57d03e750b90a42650ae?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57d03e750b90a42650ae)

HTTP response: 201| +|[00955-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00955-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d57d8f8016f90e7cbb40f/download)
[Logs](https://api.biosimulations.org/logs/677d57d8f8016f90e7cbb40f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57d8f8016f90e7cbb40f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d57d5f8016f90e7cbb406/download)
[Logs](https://api.biosimulations.org/logs/677d57d5f8016f90e7cbb406?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57d5f8016f90e7cbb406)

HTTP response: 201| +|[00956-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00956-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d57de67468f9f3fc5cde0/download)
[Logs](https://api.biosimulations.org/logs/677d57de67468f9f3fc5cde0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57de67468f9f3fc5cde0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d57dbf8016f90e7cbb422/download)
[Logs](https://api.biosimulations.org/logs/677d57dbf8016f90e7cbb422?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57dbf8016f90e7cbb422)

HTTP response: 201| +|[00957-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00957-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d57e4f8016f90e7cbb44b/download)
[Logs](https://api.biosimulations.org/logs/677d57e4f8016f90e7cbb44b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57e4f8016f90e7cbb44b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d57e167468f9f3fc5cde9/download)
[Logs](https://api.biosimulations.org/logs/677d57e167468f9f3fc5cde9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57e167468f9f3fc5cde9)

HTTP response: 201| +|[00958-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00958-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d57ebf8016f90e7cbb46e/download)
[Logs](https://api.biosimulations.org/logs/677d57ebf8016f90e7cbb46e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57ebf8016f90e7cbb46e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d57e83e750b90a42650fb/download)
[Logs](https://api.biosimulations.org/logs/677d57e83e750b90a42650fb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57e83e750b90a42650fb)

HTTP response: 201| +|[00959-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00959-sbml-l3v2.xml)|FAIL|FAIL|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d57f067468f9f3fc5ce1b/download)
[Logs](https://api.biosimulations.org/logs/677d57f067468f9f3fc5ce1b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57f067468f9f3fc5ce1b)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp843124 is invalid. - Model model_1 is invalid. - The model file 00959-sbml-l3v2.xml is invalid. - SBML identifier consistency (10313) at line 3, column 2: Unit identifier references (i.e the 'units' attribute on , the 'units' attribute on , and the 'substanceUnits' attribute on ) must be the identifier of a in the , or the identifier of a predefined unit in SBML. Reference: L3V2 Section 4.4.2 The areaUnits 'area' do not refer to a valid unit kind/built-in unit or the identifier of an existing . ```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d57edf8016f90e7cbb475/download)
[Logs](https://api.biosimulations.org/logs/677d57edf8016f90e7cbb475?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57edf8016f90e7cbb475)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp47932 is invalid. - Model model_1 is invalid. - The model file 00959-sbml-l3v2.xml is invalid. - SBML identifier consistency (10313) at line 3, column 2: Unit identifier references (i.e the 'units' attribute on , the 'units' attribute on , and the 'substanceUnits' attribute on ) must be the identifier of a in the , or the identifier of a predefined unit in SBML. Reference: L3V2 Section 4.4.2 The areaUnits 'area' do not refer to a valid unit kind/built-in unit or the identifier of an existing . ```

Exception type: ```ValueError```| +|[00960-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00960-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d57f567468f9f3fc5ce29/download)
[Logs](https://api.biosimulations.org/logs/677d57f567468f9f3fc5ce29?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57f567468f9f3fc5ce29)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d57f367468f9f3fc5ce25/download)
[Logs](https://api.biosimulations.org/logs/677d57f367468f9f3fc5ce25?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57f367468f9f3fc5ce25)

HTTP response: 201| +|[00961-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00961-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d57fc67468f9f3fc5ce43/download)
[Logs](https://api.biosimulations.org/logs/677d57fc67468f9f3fc5ce43?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57fc67468f9f3fc5ce43)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d57f867468f9f3fc5ce38/download)
[Logs](https://api.biosimulations.org/logs/677d57f867468f9f3fc5ce38?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57f867468f9f3fc5ce38)

HTTP response: 201| +|[00962-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00962-sbml-l3v2.xml)|pass|pass|pass|
skippedCase is skipped because it leads to a float error when trying to run it in tellurium natively, which leads to reset errors in subsequent cases that would otherwise pass.
|True|
pass[Download](https://api.biosimulations.org/results/677d580167468f9f3fc5ce58/download)
[Logs](https://api.biosimulations.org/logs/677d580167468f9f3fc5ce58?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d580167468f9f3fc5ce58)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d57fe67468f9f3fc5ce4d/download)
[Logs](https://api.biosimulations.org/logs/677d57fe67468f9f3fc5ce4d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d57fe67468f9f3fc5ce4d)

HTTP response: 201| +|[00963-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00963-sbml-l3v2.xml)|pass|pass|pass|
skippedCase is skipped because it leads to a float error when trying to run it in tellurium natively, which leads to reset errors in subsequent cases that would otherwise pass.
|True|
pass[Download](https://api.biosimulations.org/results/677d5807f8016f90e7cbb4d2/download)
[Logs](https://api.biosimulations.org/logs/677d5807f8016f90e7cbb4d2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5807f8016f90e7cbb4d2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d580467468f9f3fc5ce64/download)
[Logs](https://api.biosimulations.org/logs/677d580467468f9f3fc5ce64?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d580467468f9f3fc5ce64)

HTTP response: 201| +|[00964-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00964-sbml-l3v2.xml)|pass|pass|pass|
skippedCase is skipped because it leads to a float error when trying to run it in tellurium natively, which leads to reset errors in subsequent cases that would otherwise pass.
|True|
pass[Download](https://api.biosimulations.org/results/677d580cf8016f90e7cbb4e7/download)
[Logs](https://api.biosimulations.org/logs/677d580cf8016f90e7cbb4e7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d580cf8016f90e7cbb4e7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d580967468f9f3fc5ce76/download)
[Logs](https://api.biosimulations.org/logs/677d580967468f9f3fc5ce76?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d580967468f9f3fc5ce76)

HTTP response: 201| +|[00965-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00965-sbml-l3v2.xml)|pass|pass|pass|
skippedCase is skipped because it leads to a float error when trying to run it in tellurium natively, which leads to reset errors in subsequent cases that would otherwise pass.
|True|
pass[Download](https://api.biosimulations.org/results/677d581167468f9f3fc5ce86/download)
[Logs](https://api.biosimulations.org/logs/677d581167468f9f3fc5ce86?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d581167468f9f3fc5ce86)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d580f3e750b90a4265193/download)
[Logs](https://api.biosimulations.org/logs/677d580f3e750b90a4265193?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d580f3e750b90a4265193)

HTTP response: 201| +|[00966-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00966-sbml-l3v2.xml)|pass|pass|pass|
skippedCase is skipped because it leads to a float error when trying to run it in tellurium natively, which leads to reset errors in subsequent cases that would otherwise pass.
|True|
pass[Download](https://api.biosimulations.org/results/677d58173e750b90a42651ac/download)
[Logs](https://api.biosimulations.org/logs/677d58173e750b90a42651ac?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58173e750b90a42651ac)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d581567468f9f3fc5ce96/download)
[Logs](https://api.biosimulations.org/logs/677d581567468f9f3fc5ce96?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d581567468f9f3fc5ce96)

HTTP response: 201| +|[00967-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00967-sbml-l3v2.xml)|pass|pass|pass|
skippedCase is skipped because it leads to a float error when trying to run it in tellurium natively, which leads to reset errors in subsequent cases that would otherwise pass.
|True|
pass[Download](https://api.biosimulations.org/results/677d581c67468f9f3fc5cebc/download)
[Logs](https://api.biosimulations.org/logs/677d581c67468f9f3fc5cebc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d581c67468f9f3fc5cebc)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d581a3e750b90a42651b2/download)
[Logs](https://api.biosimulations.org/logs/677d581a3e750b90a42651b2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d581a3e750b90a42651b2)

HTTP response: 201| +|[00968-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00968-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d582367468f9f3fc5ceca/download)
[Logs](https://api.biosimulations.org/logs/677d582367468f9f3fc5ceca?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d582367468f9f3fc5ceca)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d581ff8016f90e7cbb535/download)
[Logs](https://api.biosimulations.org/logs/677d581ff8016f90e7cbb535?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d581ff8016f90e7cbb535)

HTTP response: 201| +|[00969-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00969-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d58283e750b90a42651f0/download)
[Logs](https://api.biosimulations.org/logs/677d58283e750b90a42651f0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58283e750b90a42651f0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d58263e750b90a42651ec/download)
[Logs](https://api.biosimulations.org/logs/677d58263e750b90a42651ec?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58263e750b90a42651ec)

HTTP response: 201| +|[00970-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00970-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d582ef8016f90e7cbb58e/download)
[Logs](https://api.biosimulations.org/logs/677d582ef8016f90e7cbb58e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d582ef8016f90e7cbb58e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d582b67468f9f3fc5cee2/download)
[Logs](https://api.biosimulations.org/logs/677d582b67468f9f3fc5cee2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d582b67468f9f3fc5cee2)

HTTP response: 201| +|[00971-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00971-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d58333e750b90a4265224/download)
[Logs](https://api.biosimulations.org/logs/677d58333e750b90a4265224?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58333e750b90a4265224)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5831f8016f90e7cbb597/download)
[Logs](https://api.biosimulations.org/logs/677d5831f8016f90e7cbb597?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5831f8016f90e7cbb597)

HTTP response: 201| +|[00972-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00972-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5838f8016f90e7cbb5ac/download)
[Logs](https://api.biosimulations.org/logs/677d5838f8016f90e7cbb5ac?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5838f8016f90e7cbb5ac)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5836f8016f90e7cbb5a2/download)
[Logs](https://api.biosimulations.org/logs/677d5836f8016f90e7cbb5a2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5836f8016f90e7cbb5a2)

HTTP response: 201| +|[00973-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00973-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d583ef8016f90e7cbb5c2/download)
[Logs](https://api.biosimulations.org/logs/677d583ef8016f90e7cbb5c2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d583ef8016f90e7cbb5c2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d583b3e750b90a426524b/download)
[Logs](https://api.biosimulations.org/logs/677d583b3e750b90a426524b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d583b3e750b90a426524b)

HTTP response: 201| +|[00974-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00974-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5844f8016f90e7cbb5d6/download)
[Logs](https://api.biosimulations.org/logs/677d5844f8016f90e7cbb5d6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5844f8016f90e7cbb5d6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d584267468f9f3fc5cf3c/download)
[Logs](https://api.biosimulations.org/logs/677d584267468f9f3fc5cf3c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d584267468f9f3fc5cf3c)

HTTP response: 201| +|[00975-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00975-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d584967468f9f3fc5cf61/download)
[Logs](https://api.biosimulations.org/logs/677d584967468f9f3fc5cf61?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d584967468f9f3fc5cf61)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d58463e750b90a4265271/download)
[Logs](https://api.biosimulations.org/logs/677d58463e750b90a4265271?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58463e750b90a4265271)

HTTP response: 201| +|[00976-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00976-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d584f67468f9f3fc5cf76/download)
[Logs](https://api.biosimulations.org/logs/677d584f67468f9f3fc5cf76?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d584f67468f9f3fc5cf76)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d584c3e750b90a426529a/download)
[Logs](https://api.biosimulations.org/logs/677d584c3e750b90a426529a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d584c3e750b90a426529a)

HTTP response: 201| +|[00977-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00977-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d58553e750b90a42652ad/download)
[Logs](https://api.biosimulations.org/logs/677d58553e750b90a42652ad?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58553e750b90a42652ad)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d585267468f9f3fc5cf81/download)
[Logs](https://api.biosimulations.org/logs/677d585267468f9f3fc5cf81?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d585267468f9f3fc5cf81)

HTTP response: 201| +|[00978-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00978-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d585a3e750b90a42652c2/download)
[Logs](https://api.biosimulations.org/logs/677d585a3e750b90a42652c2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d585a3e750b90a42652c2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d58573e750b90a42652ba/download)
[Logs](https://api.biosimulations.org/logs/677d58573e750b90a42652ba?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58573e750b90a42652ba)

HTTP response: 201| +|[00979-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00979-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d585f3e750b90a42652d0/download)
[Logs](https://api.biosimulations.org/logs/677d585f3e750b90a42652d0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d585f3e750b90a42652d0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d585c67468f9f3fc5cfa2/download)
[Logs](https://api.biosimulations.org/logs/677d585c67468f9f3fc5cfa2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d585c67468f9f3fc5cfa2)

HTTP response: 201| +|[00980-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00980-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d586567468f9f3fc5cfb7/download)
[Logs](https://api.biosimulations.org/logs/677d586567468f9f3fc5cfb7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d586567468f9f3fc5cfb7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d58623e750b90a42652df/download)
[Logs](https://api.biosimulations.org/logs/677d58623e750b90a42652df?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58623e750b90a42652df)

HTTP response: 201| +|[00981-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00981-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(x, time / 2)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d586a67468f9f3fc5cfc8/download)
[Logs](https://api.biosimulations.org/logs/677d586a67468f9f3fc5cfc8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d586a67468f9f3fc5cfc8)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(x, time / 2)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5867f8016f90e7cbb67e/download)
[Logs](https://api.biosimulations.org/logs/677d5867f8016f90e7cbb67e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5867f8016f90e7cbb67e)

HTTP response: 201| +|[00982-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00982-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(x, temp)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d586ff8016f90e7cbb697/download)
[Logs](https://api.biosimulations.org/logs/677d586ff8016f90e7cbb697?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d586ff8016f90e7cbb697)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(x, temp)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d586c3e750b90a426530f/download)
[Logs](https://api.biosimulations.org/logs/677d586c3e750b90a426530f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d586c3e750b90a426530f)

HTTP response: 201| +|[00983-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00983-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = -1 * temp + time / 2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d58743e750b90a4265325/download)
[Logs](https://api.biosimulations.org/logs/677d58743e750b90a4265325?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58743e750b90a4265325)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'temp' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5872f8016f90e7cbb6a9/download)
[Logs](https://api.biosimulations.org/logs/677d5872f8016f90e7cbb6a9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5872f8016f90e7cbb6a9)

HTTP response: 201| +|[00984-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00984-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(x, temp)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d587af8016f90e7cbb6c9/download)
[Logs](https://api.biosimulations.org/logs/677d587af8016f90e7cbb6c9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d587af8016f90e7cbb6c9)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(x, temp)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5877f8016f90e7cbb6c0/download)
[Logs](https://api.biosimulations.org/logs/677d5877f8016f90e7cbb6c0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5877f8016f90e7cbb6c0)

HTTP response: 201| +|[00985-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00985-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(x, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d587f3e750b90a4265354/download)
[Logs](https://api.biosimulations.org/logs/677d587f3e750b90a4265354?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d587f3e750b90a4265354)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(x, 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d587d67468f9f3fc5d00e/download)
[Logs](https://api.biosimulations.org/logs/677d587d67468f9f3fc5d00e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d587d67468f9f3fc5d00e)

HTTP response: 201| +|[00986-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00986-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d588567468f9f3fc5d02b/download)
[Logs](https://api.biosimulations.org/logs/677d588567468f9f3fc5d02b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d588567468f9f3fc5d02b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5882f8016f90e7cbb6ed/download)
[Logs](https://api.biosimulations.org/logs/677d5882f8016f90e7cbb6ed?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5882f8016f90e7cbb6ed)

HTTP response: 201| +|[00987-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00987-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d588a3e750b90a4265377/download)
[Logs](https://api.biosimulations.org/logs/677d588a3e750b90a4265377?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d588a3e750b90a4265377)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d588867468f9f3fc5d039/download)
[Logs](https://api.biosimulations.org/logs/677d588867468f9f3fc5d039?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d588867468f9f3fc5d039)

HTTP response: 201| +|[00988-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00988-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d588e67468f9f3fc5d056/download)
[Logs](https://api.biosimulations.org/logs/677d588e67468f9f3fc5d056?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d588e67468f9f3fc5d056)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d588c3e750b90a426537f/download)
[Logs](https://api.biosimulations.org/logs/677d588c3e750b90a426537f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d588c3e750b90a426537f)

HTTP response: 201| +|[00989-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00989-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5893f8016f90e7cbb72d/download)
[Logs](https://api.biosimulations.org/logs/677d5893f8016f90e7cbb72d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5893f8016f90e7cbb72d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5891f8016f90e7cbb727/download)
[Logs](https://api.biosimulations.org/logs/677d5891f8016f90e7cbb727?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5891f8016f90e7cbb727)

HTTP response: 201| +|[00990-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00990-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5898f8016f90e7cbb748/download)
[Logs](https://api.biosimulations.org/logs/677d5898f8016f90e7cbb748?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5898f8016f90e7cbb748)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5896f8016f90e7cbb739/download)
[Logs](https://api.biosimulations.org/logs/677d5896f8016f90e7cbb739?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5896f8016f90e7cbb739)

HTTP response: 201| +|[00991-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00991-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d589e3e750b90a42653c4/download)
[Logs](https://api.biosimulations.org/logs/677d589e3e750b90a42653c4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d589e3e750b90a42653c4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d589b3e750b90a42653b0/download)
[Logs](https://api.biosimulations.org/logs/677d589b3e750b90a42653b0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d589b3e750b90a42653b0)

HTTP response: 201| +|[00992-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00992-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d58a33e750b90a42653d9/download)
[Logs](https://api.biosimulations.org/logs/677d58a33e750b90a42653d9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58a33e750b90a42653d9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d58a1f8016f90e7cbb767/download)
[Logs](https://api.biosimulations.org/logs/677d58a1f8016f90e7cbb767?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58a1f8016f90e7cbb767)

HTTP response: 201| +|[00993-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00993-sbml-l2v5.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = X - p1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d58a8f8016f90e7cbb77f/download)
[Logs](https://api.biosimulations.org/logs/677d58a8f8016f90e7cbb77f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58a8f8016f90e7cbb77f)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'p1' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d58a567468f9f3fc5d0bb/download)
[Logs](https://api.biosimulations.org/logs/677d58a567468f9f3fc5d0bb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58a567468f9f3fc5d0bb)

HTTP response: 201| +|[00994-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00994-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d58acf8016f90e7cbb791/download)
[Logs](https://api.biosimulations.org/logs/677d58acf8016f90e7cbb791?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58acf8016f90e7cbb791)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d58aaf8016f90e7cbb78b/download)
[Logs](https://api.biosimulations.org/logs/677d58aaf8016f90e7cbb78b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58aaf8016f90e7cbb78b)

HTTP response: 201| +|[00995-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00995-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d58b2f8016f90e7cbb7b9/download)
[Logs](https://api.biosimulations.org/logs/677d58b2f8016f90e7cbb7b9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58b2f8016f90e7cbb7b9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d58aff8016f90e7cbb7ab/download)
[Logs](https://api.biosimulations.org/logs/677d58aff8016f90e7cbb7ab?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58aff8016f90e7cbb7ab)

HTTP response: 201| +|[00996-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00996-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d58b7f8016f90e7cbb7c3/download)
[Logs](https://api.biosimulations.org/logs/677d58b7f8016f90e7cbb7c3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58b7f8016f90e7cbb7c3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d58b467468f9f3fc5d0ea/download)
[Logs](https://api.biosimulations.org/logs/677d58b467468f9f3fc5d0ea?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58b467468f9f3fc5d0ea)

HTTP response: 201| +|[00997-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00997-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d58bcf8016f90e7cbb7d8/download)
[Logs](https://api.biosimulations.org/logs/677d58bcf8016f90e7cbb7d8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58bcf8016f90e7cbb7d8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d58b93e750b90a4265440/download)
[Logs](https://api.biosimulations.org/logs/677d58b93e750b90a4265440?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58b93e750b90a4265440)

HTTP response: 201| +|[00998-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00998-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d58c13e750b90a4265466/download)
[Logs](https://api.biosimulations.org/logs/677d58c13e750b90a4265466?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58c13e750b90a4265466)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d58bf3e750b90a426545a/download)
[Logs](https://api.biosimulations.org/logs/677d58bf3e750b90a426545a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58bf3e750b90a426545a)

HTTP response: 201| +|[00999-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\00999-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d58c667468f9f3fc5d11f/download)
[Logs](https://api.biosimulations.org/logs/677d58c667468f9f3fc5d11f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58c667468f9f3fc5d11f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d58c4f8016f90e7cbb7ee/download)
[Logs](https://api.biosimulations.org/logs/677d58c4f8016f90e7cbb7ee?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58c4f8016f90e7cbb7ee)

HTTP response: 201| +|[01000-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01000-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d58cbf8016f90e7cbb830/download)
[Logs](https://api.biosimulations.org/logs/677d58cbf8016f90e7cbb830?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58cbf8016f90e7cbb830)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d58c83e750b90a426547a/download)
[Logs](https://api.biosimulations.org/logs/677d58c83e750b90a426547a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58c83e750b90a426547a)

HTTP response: 201| +|[01001-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01001-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d58d03e750b90a42654a7/download)
[Logs](https://api.biosimulations.org/logs/677d58d03e750b90a42654a7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58d03e750b90a42654a7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d58cd67468f9f3fc5d144/download)
[Logs](https://api.biosimulations.org/logs/677d58cd67468f9f3fc5d144?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58cd67468f9f3fc5d144)

HTTP response: 201| +|[01002-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01002-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d58d4f8016f90e7cbb86f/download)
[Logs](https://api.biosimulations.org/logs/677d58d4f8016f90e7cbb86f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58d4f8016f90e7cbb86f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d58d2f8016f90e7cbb865/download)
[Logs](https://api.biosimulations.org/logs/677d58d2f8016f90e7cbb865?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58d2f8016f90e7cbb865)

HTTP response: 201| +|[01003-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01003-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d58da67468f9f3fc5d17d/download)
[Logs](https://api.biosimulations.org/logs/677d58da67468f9f3fc5d17d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58da67468f9f3fc5d17d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d58d7f8016f90e7cbb876/download)
[Logs](https://api.biosimulations.org/logs/677d58d7f8016f90e7cbb876?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58d7f8016f90e7cbb876)

HTTP response: 201| +|[01004-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01004-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d58e067468f9f3fc5d188/download)
[Logs](https://api.biosimulations.org/logs/677d58e067468f9f3fc5d188?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58e067468f9f3fc5d188)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d58dd3e750b90a42654dc/download)
[Logs](https://api.biosimulations.org/logs/677d58dd3e750b90a42654dc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58dd3e750b90a42654dc)

HTTP response: 201| +|[01005-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01005-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d58e53e750b90a42654f1/download)
[Logs](https://api.biosimulations.org/logs/677d58e53e750b90a42654f1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58e53e750b90a42654f1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d58e23e750b90a42654e7/download)
[Logs](https://api.biosimulations.org/logs/677d58e23e750b90a42654e7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58e23e750b90a42654e7)

HTTP response: 201| +|[01006-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01006-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d58ea3e750b90a4265509/download)
[Logs](https://api.biosimulations.org/logs/677d58ea3e750b90a4265509?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58ea3e750b90a4265509)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d58e867468f9f3fc5d1a9/download)
[Logs](https://api.biosimulations.org/logs/677d58e867468f9f3fc5d1a9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58e867468f9f3fc5d1a9)

HTTP response: 201| +|[01007-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01007-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d58f1f8016f90e7cbb8ee/download)
[Logs](https://api.biosimulations.org/logs/677d58f1f8016f90e7cbb8ee?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58f1f8016f90e7cbb8ee)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d58ee67468f9f3fc5d1c8/download)
[Logs](https://api.biosimulations.org/logs/677d58ee67468f9f3fc5d1c8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58ee67468f9f3fc5d1c8)

HTTP response: 201| +|[01008-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01008-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d58f667468f9f3fc5d1e4/download)
[Logs](https://api.biosimulations.org/logs/677d58f667468f9f3fc5d1e4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58f667468f9f3fc5d1e4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d58f43e750b90a4265542/download)
[Logs](https://api.biosimulations.org/logs/677d58f43e750b90a4265542?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58f43e750b90a4265542)

HTTP response: 201| +|[01009-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01009-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d58fbf8016f90e7cbb90c/download)
[Logs](https://api.biosimulations.org/logs/677d58fbf8016f90e7cbb90c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58fbf8016f90e7cbb90c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d58f93e750b90a4265554/download)
[Logs](https://api.biosimulations.org/logs/677d58f93e750b90a4265554?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58f93e750b90a4265554)

HTTP response: 201| +|[01010-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01010-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5900f8016f90e7cbb926/download)
[Logs](https://api.biosimulations.org/logs/677d5900f8016f90e7cbb926?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5900f8016f90e7cbb926)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d58fdf8016f90e7cbb912/download)
[Logs](https://api.biosimulations.org/logs/677d58fdf8016f90e7cbb912?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d58fdf8016f90e7cbb912)

HTTP response: 201| +|[01011-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01011-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d590467468f9f3fc5d21f/download)
[Logs](https://api.biosimulations.org/logs/677d590467468f9f3fc5d21f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d590467468f9f3fc5d21f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5902f8016f90e7cbb936/download)
[Logs](https://api.biosimulations.org/logs/677d5902f8016f90e7cbb936?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5902f8016f90e7cbb936)

HTTP response: 201| +|[01012-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01012-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d590967468f9f3fc5d231/download)
[Logs](https://api.biosimulations.org/logs/677d590967468f9f3fc5d231?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d590967468f9f3fc5d231)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5907f8016f90e7cbb945/download)
[Logs](https://api.biosimulations.org/logs/677d5907f8016f90e7cbb945?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5907f8016f90e7cbb945)

HTTP response: 201| +|[01013-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01013-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d590f3e750b90a42655b1/download)
[Logs](https://api.biosimulations.org/logs/677d590f3e750b90a42655b1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d590f3e750b90a42655b1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d590cf8016f90e7cbb95b/download)
[Logs](https://api.biosimulations.org/logs/677d590cf8016f90e7cbb95b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d590cf8016f90e7cbb95b)

HTTP response: 201| +|[01014-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01014-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d59143e750b90a42655c1/download)
[Logs](https://api.biosimulations.org/logs/677d59143e750b90a42655c1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59143e750b90a42655c1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59113e750b90a42655b7/download)
[Logs](https://api.biosimulations.org/logs/677d59113e750b90a42655b7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59113e750b90a42655b7)

HTTP response: 201| +|[01015-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01015-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5919f8016f90e7cbb97d/download)
[Logs](https://api.biosimulations.org/logs/677d5919f8016f90e7cbb97d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5919f8016f90e7cbb97d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59173e750b90a42655ca/download)
[Logs](https://api.biosimulations.org/logs/677d59173e750b90a42655ca?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59173e750b90a42655ca)

HTTP response: 201| +|[01016-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01016-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d591ff8016f90e7cbb9b9/download)
[Logs](https://api.biosimulations.org/logs/677d591ff8016f90e7cbb9b9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d591ff8016f90e7cbb9b9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d591c67468f9f3fc5d270/download)
[Logs](https://api.biosimulations.org/logs/677d591c67468f9f3fc5d270?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d591c67468f9f3fc5d270)

HTTP response: 201| +|[01017-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01017-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d592367468f9f3fc5d294/download)
[Logs](https://api.biosimulations.org/logs/677d592367468f9f3fc5d294?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d592367468f9f3fc5d294)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59223e750b90a42655fb/download)
[Logs](https://api.biosimulations.org/logs/677d59223e750b90a42655fb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59223e750b90a42655fb)

HTTP response: 201| +|[01018-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01018-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5928f8016f90e7cbb9d1/download)
[Logs](https://api.biosimulations.org/logs/677d5928f8016f90e7cbb9d1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5928f8016f90e7cbb9d1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59253e750b90a4265613/download)
[Logs](https://api.biosimulations.org/logs/677d59253e750b90a4265613?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59253e750b90a4265613)

HTTP response: 201| +|[01019-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01019-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d592b67468f9f3fc5d2ae/download)
[Logs](https://api.biosimulations.org/logs/677d592b67468f9f3fc5d2ae?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d592b67468f9f3fc5d2ae)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d592a3e750b90a4265618/download)
[Logs](https://api.biosimulations.org/logs/677d592a3e750b90a4265618?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d592a3e750b90a4265618)

HTTP response: 201| +|[01020-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01020-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d59303e750b90a4265641/download)
[Logs](https://api.biosimulations.org/logs/677d59303e750b90a4265641?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59303e750b90a4265641)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d592ef8016f90e7cbb9f6/download)
[Logs](https://api.biosimulations.org/logs/677d592ef8016f90e7cbb9f6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d592ef8016f90e7cbb9f6)

HTTP response: 201| +|[01021-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01021-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5933f8016f90e7cbba09/download)
[Logs](https://api.biosimulations.org/logs/677d5933f8016f90e7cbba09?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5933f8016f90e7cbba09)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5932f8016f90e7cbba02/download)
[Logs](https://api.biosimulations.org/logs/677d5932f8016f90e7cbba02?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5932f8016f90e7cbba02)

HTTP response: 201| +|[01022-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01022-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5937f8016f90e7cbba16/download)
[Logs](https://api.biosimulations.org/logs/677d5937f8016f90e7cbba16?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5937f8016f90e7cbba16)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59353e750b90a4265655/download)
[Logs](https://api.biosimulations.org/logs/677d59353e750b90a4265655?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59353e750b90a4265655)

HTTP response: 201| +|[01023-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01023-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d593cf8016f90e7cbba2a/download)
[Logs](https://api.biosimulations.org/logs/677d593cf8016f90e7cbba2a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d593cf8016f90e7cbba2a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d593a3e750b90a4265660/download)
[Logs](https://api.biosimulations.org/logs/677d593a3e750b90a4265660?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d593a3e750b90a4265660)

HTTP response: 201| +|[01024-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01024-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d59413e750b90a426568e/download)
[Logs](https://api.biosimulations.org/logs/677d59413e750b90a426568e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59413e750b90a426568e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d593ff8016f90e7cbba3a/download)
[Logs](https://api.biosimulations.org/logs/677d593ff8016f90e7cbba3a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d593ff8016f90e7cbba3a)

HTTP response: 201| +|[01025-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01025-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5946f8016f90e7cbba5f/download)
[Logs](https://api.biosimulations.org/logs/677d5946f8016f90e7cbba5f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5946f8016f90e7cbba5f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59443e750b90a42656a4/download)
[Logs](https://api.biosimulations.org/logs/677d59443e750b90a42656a4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59443e750b90a42656a4)

HTTP response: 201| +|[01026-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01026-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d594c67468f9f3fc5d35a/download)
[Logs](https://api.biosimulations.org/logs/677d594c67468f9f3fc5d35a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d594c67468f9f3fc5d35a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d594967468f9f3fc5d34a/download)
[Logs](https://api.biosimulations.org/logs/677d594967468f9f3fc5d34a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d594967468f9f3fc5d34a)

HTTP response: 201| +|[01027-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01027-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d595167468f9f3fc5d372/download)
[Logs](https://api.biosimulations.org/logs/677d595167468f9f3fc5d372?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d595167468f9f3fc5d372)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d594e3e750b90a42656d7/download)
[Logs](https://api.biosimulations.org/logs/677d594e3e750b90a42656d7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d594e3e750b90a42656d7)

HTTP response: 201| +|[01028-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01028-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5958f8016f90e7cbba9f/download)
[Logs](https://api.biosimulations.org/logs/677d5958f8016f90e7cbba9f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5958f8016f90e7cbba9f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59553e750b90a42656f5/download)
[Logs](https://api.biosimulations.org/logs/677d59553e750b90a42656f5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59553e750b90a42656f5)

HTTP response: 201| +|[01029-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01029-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d595ef8016f90e7cbbab0/download)
[Logs](https://api.biosimulations.org/logs/677d595ef8016f90e7cbbab0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d595ef8016f90e7cbbab0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d595b3e750b90a4265713/download)
[Logs](https://api.biosimulations.org/logs/677d595b3e750b90a4265713?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d595b3e750b90a4265713)

HTTP response: 201| +|[01030-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01030-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d59633e750b90a4265734/download)
[Logs](https://api.biosimulations.org/logs/677d59633e750b90a4265734?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59633e750b90a4265734)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59613e750b90a426572a/download)
[Logs](https://api.biosimulations.org/logs/677d59613e750b90a426572a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59613e750b90a426572a)

HTTP response: 201| +|[01031-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01031-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d59683e750b90a4265748/download)
[Logs](https://api.biosimulations.org/logs/677d59683e750b90a4265748?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59683e750b90a4265748)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59663e750b90a426573e/download)
[Logs](https://api.biosimulations.org/logs/677d59663e750b90a426573e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59663e750b90a426573e)

HTTP response: 201| +|[01032-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01032-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d596e3e750b90a4265758/download)
[Logs](https://api.biosimulations.org/logs/677d596e3e750b90a4265758?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d596e3e750b90a4265758)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d596cf8016f90e7cbbae3/download)
[Logs](https://api.biosimulations.org/logs/677d596cf8016f90e7cbbae3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d596cf8016f90e7cbbae3)

HTTP response: 201| +|[01033-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01033-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d597367468f9f3fc5d3e5/download)
[Logs](https://api.biosimulations.org/logs/677d597367468f9f3fc5d3e5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d597367468f9f3fc5d3e5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5971f8016f90e7cbbaf5/download)
[Logs](https://api.biosimulations.org/logs/677d5971f8016f90e7cbbaf5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5971f8016f90e7cbbaf5)

HTTP response: 201| +|[01034-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01034-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d597a3e750b90a4265788/download)
[Logs](https://api.biosimulations.org/logs/677d597a3e750b90a4265788?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d597a3e750b90a4265788)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d597767468f9f3fc5d3f0/download)
[Logs](https://api.biosimulations.org/logs/677d597767468f9f3fc5d3f0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d597767468f9f3fc5d3f0)

HTTP response: 201| +|[01035-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01035-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d598167468f9f3fc5d418/download)
[Logs](https://api.biosimulations.org/logs/677d598167468f9f3fc5d418?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d598167468f9f3fc5d418)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d597ef8016f90e7cbbb23/download)
[Logs](https://api.biosimulations.org/logs/677d597ef8016f90e7cbbb23?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d597ef8016f90e7cbbb23)

HTTP response: 201| +|[01036-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01036-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d598667468f9f3fc5d432/download)
[Logs](https://api.biosimulations.org/logs/677d598667468f9f3fc5d432?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d598667468f9f3fc5d432)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d598467468f9f3fc5d41e/download)
[Logs](https://api.biosimulations.org/logs/677d598467468f9f3fc5d41e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d598467468f9f3fc5d41e)

HTTP response: 201| +|[01037-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01037-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d598b3e750b90a42657bd/download)
[Logs](https://api.biosimulations.org/logs/677d598b3e750b90a42657bd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d598b3e750b90a42657bd)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59893e750b90a42657af/download)
[Logs](https://api.biosimulations.org/logs/677d59893e750b90a42657af?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59893e750b90a42657af)

HTTP response: 201| +|[01038-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01038-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d59903e750b90a42657cf/download)
[Logs](https://api.biosimulations.org/logs/677d59903e750b90a42657cf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59903e750b90a42657cf)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d598ef8016f90e7cbbb5e/download)
[Logs](https://api.biosimulations.org/logs/677d598ef8016f90e7cbbb5e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d598ef8016f90e7cbbb5e)

HTTP response: 201| +|[01039-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01039-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5996f8016f90e7cbbb7c/download)
[Logs](https://api.biosimulations.org/logs/677d5996f8016f90e7cbbb7c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5996f8016f90e7cbbb7c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59933e750b90a42657dd/download)
[Logs](https://api.biosimulations.org/logs/677d59933e750b90a42657dd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59933e750b90a42657dd)

HTTP response: 201| +|[01040-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01040-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d599b3e750b90a42657fc/download)
[Logs](https://api.biosimulations.org/logs/677d599b3e750b90a42657fc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d599b3e750b90a42657fc)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d599967468f9f3fc5d46f/download)
[Logs](https://api.biosimulations.org/logs/677d599967468f9f3fc5d46f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d599967468f9f3fc5d46f)

HTTP response: 201| +|[01041-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01041-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d59a13e750b90a4265819/download)
[Logs](https://api.biosimulations.org/logs/677d59a13e750b90a4265819?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59a13e750b90a4265819)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d599e67468f9f3fc5d47d/download)
[Logs](https://api.biosimulations.org/logs/677d599e67468f9f3fc5d47d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d599e67468f9f3fc5d47d)

HTTP response: 201| +|[01042-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01042-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d59a63e750b90a4265830/download)
[Logs](https://api.biosimulations.org/logs/677d59a63e750b90a4265830?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59a63e750b90a4265830)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59a3f8016f90e7cbbbb6/download)
[Logs](https://api.biosimulations.org/logs/677d59a3f8016f90e7cbbbb6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59a3f8016f90e7cbbbb6)

HTTP response: 201| +|[01043-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01043-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d59abf8016f90e7cbbbcf/download)
[Logs](https://api.biosimulations.org/logs/677d59abf8016f90e7cbbbcf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59abf8016f90e7cbbbcf)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59a9f8016f90e7cbbbc6/download)
[Logs](https://api.biosimulations.org/logs/677d59a9f8016f90e7cbbbc6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59a9f8016f90e7cbbbc6)

HTTP response: 201| +|[01044-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01044-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = kf + -0.75' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d59b03e750b90a4265856/download)
[Logs](https://api.biosimulations.org/logs/677d59b03e750b90a4265856?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59b03e750b90a4265856)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'kf' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d59ae67468f9f3fc5d4ae/download)
[Logs](https://api.biosimulations.org/logs/677d59ae67468f9f3fc5d4ae?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59ae67468f9f3fc5d4ae)

HTTP response: 201| +|[01045-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01045-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d59b567468f9f3fc5d4c1/download)
[Logs](https://api.biosimulations.org/logs/677d59b567468f9f3fc5d4c1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59b567468f9f3fc5d4c1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59b33e750b90a426585d/download)
[Logs](https://api.biosimulations.org/logs/677d59b33e750b90a426585d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59b33e750b90a426585d)

HTTP response: 201| +|[01046-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01046-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d59ba3e750b90a426587b/download)
[Logs](https://api.biosimulations.org/logs/677d59ba3e750b90a426587b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59ba3e750b90a426587b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59b867468f9f3fc5d4d4/download)
[Logs](https://api.biosimulations.org/logs/677d59b867468f9f3fc5d4d4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59b867468f9f3fc5d4d4)

HTTP response: 201| +|[01047-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01047-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d59bf3e750b90a426589c/download)
[Logs](https://api.biosimulations.org/logs/677d59bf3e750b90a426589c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59bf3e750b90a426589c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59bd67468f9f3fc5d4e5/download)
[Logs](https://api.biosimulations.org/logs/677d59bd67468f9f3fc5d4e5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59bd67468f9f3fc5d4e5)

HTTP response: 201| +|[01048-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01048-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d59c43e750b90a42658b4/download)
[Logs](https://api.biosimulations.org/logs/677d59c43e750b90a42658b4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59c43e750b90a42658b4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59c2f8016f90e7cbbc25/download)
[Logs](https://api.biosimulations.org/logs/677d59c2f8016f90e7cbbc25?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59c2f8016f90e7cbbc25)

HTTP response: 201| +|[01049-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01049-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d59cbf8016f90e7cbbc49/download)
[Logs](https://api.biosimulations.org/logs/677d59cbf8016f90e7cbbc49?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59cbf8016f90e7cbbc49)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59c867468f9f3fc5d51d/download)
[Logs](https://api.biosimulations.org/logs/677d59c867468f9f3fc5d51d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59c867468f9f3fc5d51d)

HTTP response: 201| +|[01050-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01050-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d59d03e750b90a42658d8/download)
[Logs](https://api.biosimulations.org/logs/677d59d03e750b90a42658d8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59d03e750b90a42658d8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59cd67468f9f3fc5d539/download)
[Logs](https://api.biosimulations.org/logs/677d59cd67468f9f3fc5d539?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59cd67468f9f3fc5d539)

HTTP response: 201| +|[01051-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01051-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d59d6f8016f90e7cbbc6d/download)
[Logs](https://api.biosimulations.org/logs/677d59d6f8016f90e7cbbc6d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59d6f8016f90e7cbbc6d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59d3f8016f90e7cbbc64/download)
[Logs](https://api.biosimulations.org/logs/677d59d3f8016f90e7cbbc64?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59d3f8016f90e7cbbc64)

HTTP response: 201| +|[01052-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01052-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d59ddf8016f90e7cbbc84/download)
[Logs](https://api.biosimulations.org/logs/677d59ddf8016f90e7cbbc84?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59ddf8016f90e7cbbc84)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59da3e750b90a42658fb/download)
[Logs](https://api.biosimulations.org/logs/677d59da3e750b90a42658fb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59da3e750b90a42658fb)

HTTP response: 201| +|[01053-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01053-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d59e2f8016f90e7cbbc99/download)
[Logs](https://api.biosimulations.org/logs/677d59e2f8016f90e7cbbc99?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59e2f8016f90e7cbbc99)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59e067468f9f3fc5d586/download)
[Logs](https://api.biosimulations.org/logs/677d59e067468f9f3fc5d586?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59e067468f9f3fc5d586)

HTTP response: 201| +|[01054-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01054-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d59e767468f9f3fc5d5a4/download)
[Logs](https://api.biosimulations.org/logs/677d59e767468f9f3fc5d5a4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59e767468f9f3fc5d5a4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59e53e750b90a4265926/download)
[Logs](https://api.biosimulations.org/logs/677d59e53e750b90a4265926?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59e53e750b90a4265926)

HTTP response: 201| +|[01055-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01055-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d59eef8016f90e7cbbcb6/download)
[Logs](https://api.biosimulations.org/logs/677d59eef8016f90e7cbbcb6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59eef8016f90e7cbbcb6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59eb67468f9f3fc5d5a9/download)
[Logs](https://api.biosimulations.org/logs/677d59eb67468f9f3fc5d5a9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59eb67468f9f3fc5d5a9)

HTTP response: 201| +|[01056-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01056-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d59f367468f9f3fc5d5cd/download)
[Logs](https://api.biosimulations.org/logs/677d59f367468f9f3fc5d5cd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59f367468f9f3fc5d5cd)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59f067468f9f3fc5d5c8/download)
[Logs](https://api.biosimulations.org/logs/677d59f067468f9f3fc5d5c8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59f067468f9f3fc5d5c8)

HTTP response: 201| +|[01057-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01057-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d59fa3e750b90a4265972/download)
[Logs](https://api.biosimulations.org/logs/677d59fa3e750b90a4265972?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59fa3e750b90a4265972)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59f7f8016f90e7cbbcd3/download)
[Logs](https://api.biosimulations.org/logs/677d59f7f8016f90e7cbbcd3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59f7f8016f90e7cbbcd3)

HTTP response: 201| +|[01058-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01058-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5a003e750b90a4265986/download)
[Logs](https://api.biosimulations.org/logs/677d5a003e750b90a4265986?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a003e750b90a4265986)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d59fe67468f9f3fc5d5ff/download)
[Logs](https://api.biosimulations.org/logs/677d59fe67468f9f3fc5d5ff?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d59fe67468f9f3fc5d5ff)

HTTP response: 201| +|[01059-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01059-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5a05f8016f90e7cbbd0a/download)
[Logs](https://api.biosimulations.org/logs/677d5a05f8016f90e7cbbd0a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a05f8016f90e7cbbd0a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a0267468f9f3fc5d60d/download)
[Logs](https://api.biosimulations.org/logs/677d5a0267468f9f3fc5d60d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a0267468f9f3fc5d60d)

HTTP response: 201| +|[01060-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01060-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5a0a67468f9f3fc5d62a/download)
[Logs](https://api.biosimulations.org/logs/677d5a0a67468f9f3fc5d62a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a0a67468f9f3fc5d62a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a073e750b90a42659b2/download)
[Logs](https://api.biosimulations.org/logs/677d5a073e750b90a42659b2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a073e750b90a42659b2)

HTTP response: 201| +|[01061-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01061-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5a103e750b90a42659c6/download)
[Logs](https://api.biosimulations.org/logs/677d5a103e750b90a42659c6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a103e750b90a42659c6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a0e67468f9f3fc5d63f/download)
[Logs](https://api.biosimulations.org/logs/677d5a0e67468f9f3fc5d63f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a0e67468f9f3fc5d63f)

HTTP response: 201| +|[01062-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01062-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5a163e750b90a42659d5/download)
[Logs](https://api.biosimulations.org/logs/677d5a163e750b90a42659d5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a163e750b90a42659d5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a13f8016f90e7cbbd37/download)
[Logs](https://api.biosimulations.org/logs/677d5a13f8016f90e7cbbd37?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a13f8016f90e7cbbd37)

HTTP response: 201| +|[01063-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01063-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5a1b3e750b90a42659f1/download)
[Logs](https://api.biosimulations.org/logs/677d5a1b3e750b90a42659f1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a1b3e750b90a42659f1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a18f8016f90e7cbbd55/download)
[Logs](https://api.biosimulations.org/logs/677d5a18f8016f90e7cbbd55?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a18f8016f90e7cbbd55)

HTTP response: 201| +|[01064-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01064-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5a21f8016f90e7cbbd69/download)
[Logs](https://api.biosimulations.org/logs/677d5a21f8016f90e7cbbd69?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a21f8016f90e7cbbd69)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a1f67468f9f3fc5d684/download)
[Logs](https://api.biosimulations.org/logs/677d5a1f67468f9f3fc5d684?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a1f67468f9f3fc5d684)

HTTP response: 201| +|[01065-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01065-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5a263e750b90a4265a24/download)
[Logs](https://api.biosimulations.org/logs/677d5a263e750b90a4265a24?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a263e750b90a4265a24)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a2467468f9f3fc5d691/download)
[Logs](https://api.biosimulations.org/logs/677d5a2467468f9f3fc5d691?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a2467468f9f3fc5d691)

HTTP response: 201| +|[01066-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01066-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5a2c3e750b90a4265a37/download)
[Logs](https://api.biosimulations.org/logs/677d5a2c3e750b90a4265a37?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a2c3e750b90a4265a37)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a293e750b90a4265a2b/download)
[Logs](https://api.biosimulations.org/logs/677d5a293e750b90a4265a2b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a293e750b90a4265a2b)

HTTP response: 201| +|[01067-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01067-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5a313e750b90a4265a44/download)
[Logs](https://api.biosimulations.org/logs/677d5a313e750b90a4265a44?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a313e750b90a4265a44)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a2ef8016f90e7cbbdad/download)
[Logs](https://api.biosimulations.org/logs/677d5a2ef8016f90e7cbbdad?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a2ef8016f90e7cbbdad)

HTTP response: 201| +|[01068-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01068-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5a353e750b90a4265a55/download)
[Logs](https://api.biosimulations.org/logs/677d5a353e750b90a4265a55?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a353e750b90a4265a55)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a333e750b90a4265a50/download)
[Logs](https://api.biosimulations.org/logs/677d5a333e750b90a4265a50?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a333e750b90a4265a50)

HTTP response: 201| +|[01069-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01069-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5a3bf8016f90e7cbbde3/download)
[Logs](https://api.biosimulations.org/logs/677d5a3bf8016f90e7cbbde3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a3bf8016f90e7cbbde3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a38f8016f90e7cbbdd1/download)
[Logs](https://api.biosimulations.org/logs/677d5a38f8016f90e7cbbdd1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a38f8016f90e7cbbdd1)

HTTP response: 201| +|[01070-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01070-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5a403e750b90a4265a87/download)
[Logs](https://api.biosimulations.org/logs/677d5a403e750b90a4265a87?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a403e750b90a4265a87)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a3d3e750b90a4265a79/download)
[Logs](https://api.biosimulations.org/logs/677d5a3d3e750b90a4265a79?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a3d3e750b90a4265a79)

HTTP response: 201| +|[01071-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01071-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5a45f8016f90e7cbbe06/download)
[Logs](https://api.biosimulations.org/logs/677d5a45f8016f90e7cbbe06?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a45f8016f90e7cbbe06)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a433e750b90a4265a8f/download)
[Logs](https://api.biosimulations.org/logs/677d5a433e750b90a4265a8f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a433e750b90a4265a8f)

HTTP response: 201| +|[01072-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01072-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5a4a67468f9f3fc5d723/download)
[Logs](https://api.biosimulations.org/logs/677d5a4a67468f9f3fc5d723?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a4a67468f9f3fc5d723)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a483e750b90a4265aa2/download)
[Logs](https://api.biosimulations.org/logs/677d5a483e750b90a4265aa2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a483e750b90a4265aa2)

HTTP response: 201| +|[01073-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01073-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5a50f8016f90e7cbbe33/download)
[Logs](https://api.biosimulations.org/logs/677d5a50f8016f90e7cbbe33?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a50f8016f90e7cbbe33)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a4d3e750b90a4265abc/download)
[Logs](https://api.biosimulations.org/logs/677d5a4d3e750b90a4265abc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a4d3e750b90a4265abc)

HTTP response: 201| +|[01074-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01074-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5a5667468f9f3fc5d772/download)
[Logs](https://api.biosimulations.org/logs/677d5a5667468f9f3fc5d772?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a5667468f9f3fc5d772)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a52f8016f90e7cbbe47/download)
[Logs](https://api.biosimulations.org/logs/677d5a52f8016f90e7cbbe47?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a52f8016f90e7cbbe47)

HTTP response: 201| +|[01075-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01075-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5a5bf8016f90e7cbbe7b/download)
[Logs](https://api.biosimulations.org/logs/677d5a5bf8016f90e7cbbe7b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a5bf8016f90e7cbbe7b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a583e750b90a4265af7/download)
[Logs](https://api.biosimulations.org/logs/677d5a583e750b90a4265af7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a583e750b90a4265af7)

HTTP response: 201| +|[01076-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01076-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5a60f8016f90e7cbbe86/download)
[Logs](https://api.biosimulations.org/logs/677d5a60f8016f90e7cbbe86?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a60f8016f90e7cbbe86)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a5ef8016f90e7cbbe83/download)
[Logs](https://api.biosimulations.org/logs/677d5a5ef8016f90e7cbbe83?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a5ef8016f90e7cbbe83)

HTTP response: 201| +|[01077-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01077-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5a66f8016f90e7cbbea5/download)
[Logs](https://api.biosimulations.org/logs/677d5a66f8016f90e7cbbea5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a66f8016f90e7cbbea5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a6367468f9f3fc5d79d/download)
[Logs](https://api.biosimulations.org/logs/677d5a6367468f9f3fc5d79d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a6367468f9f3fc5d79d)

HTTP response: 201| +|[01078-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01078-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5a6ef8016f90e7cbbec1/download)
[Logs](https://api.biosimulations.org/logs/677d5a6ef8016f90e7cbbec1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a6ef8016f90e7cbbec1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a6af8016f90e7cbbeb8/download)
[Logs](https://api.biosimulations.org/logs/677d5a6af8016f90e7cbbeb8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a6af8016f90e7cbbeb8)

HTTP response: 201| +|[01079-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01079-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5a74f8016f90e7cbbedd/download)
[Logs](https://api.biosimulations.org/logs/677d5a74f8016f90e7cbbedd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a74f8016f90e7cbbedd)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a71f8016f90e7cbbed6/download)
[Logs](https://api.biosimulations.org/logs/677d5a71f8016f90e7cbbed6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a71f8016f90e7cbbed6)

HTTP response: 201| +|[01080-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01080-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5a793e750b90a4265b65/download)
[Logs](https://api.biosimulations.org/logs/677d5a793e750b90a4265b65?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a793e750b90a4265b65)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a7767468f9f3fc5d7f2/download)
[Logs](https://api.biosimulations.org/logs/677d5a7767468f9f3fc5d7f2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a7767468f9f3fc5d7f2)

HTTP response: 201| +|[01081-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01081-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5a7ff8016f90e7cbbf00/download)
[Logs](https://api.biosimulations.org/logs/677d5a7ff8016f90e7cbbf00?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a7ff8016f90e7cbbf00)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a7d3e750b90a4265b6f/download)
[Logs](https://api.biosimulations.org/logs/677d5a7d3e750b90a4265b6f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a7d3e750b90a4265b6f)

HTTP response: 201| +|[01082-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01082-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5a8567468f9f3fc5d824/download)
[Logs](https://api.biosimulations.org/logs/677d5a8567468f9f3fc5d824?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a8567468f9f3fc5d824)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a823e750b90a4265b8b/download)
[Logs](https://api.biosimulations.org/logs/677d5a823e750b90a4265b8b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a823e750b90a4265b8b)

HTTP response: 201| +|[01083-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01083-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d5a8a67468f9f3fc5d833/download)
[Logs](https://api.biosimulations.org/logs/677d5a8a67468f9f3fc5d833?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a8a67468f9f3fc5d833)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a883e750b90a4265ba7/download)
[Logs](https://api.biosimulations.org/logs/677d5a883e750b90a4265ba7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a883e750b90a4265ba7)

HTTP response: 201| +|[01084-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01084-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = (k3 + 1) * S1 + -1 * T' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d5a8f3e750b90a4265bc2/download)
[Logs](https://api.biosimulations.org/logs/677d5a8f3e750b90a4265bc2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a8f3e750b90a4265bc2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a8c67468f9f3fc5d841/download)
[Logs](https://api.biosimulations.org/logs/677d5a8c67468f9f3fc5d841?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a8c67468f9f3fc5d841)

HTTP response: 201| +|[01085-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01085-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d5a95f8016f90e7cbbf4d/download)
[Logs](https://api.biosimulations.org/logs/677d5a95f8016f90e7cbbf4d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a95f8016f90e7cbbf4d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a9267468f9f3fc5d851/download)
[Logs](https://api.biosimulations.org/logs/677d5a9267468f9f3fc5d851?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a9267468f9f3fc5d851)

HTTP response: 201| +|[01086-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01086-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = S4 + -1 * S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d5a9af8016f90e7cbbf61/download)
[Logs](https://api.biosimulations.org/logs/677d5a9af8016f90e7cbbf61?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a9af8016f90e7cbbf61)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a98f8016f90e7cbbf5a/download)
[Logs](https://api.biosimulations.org/logs/677d5a98f8016f90e7cbbf5a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a98f8016f90e7cbbf5a)

HTTP response: 201| +|[01087-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01087-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5aa03e750b90a4265bfa/download)
[Logs](https://api.biosimulations.org/logs/677d5aa03e750b90a4265bfa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5aa03e750b90a4265bfa)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5a9d3e750b90a4265bf6/download)
[Logs](https://api.biosimulations.org/logs/677d5a9d3e750b90a4265bf6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5a9d3e750b90a4265bf6)

HTTP response: 201| +|[01088-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01088-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5aa567468f9f3fc5d8a1/download)
[Logs](https://api.biosimulations.org/logs/677d5aa567468f9f3fc5d8a1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5aa567468f9f3fc5d8a1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5aa3f8016f90e7cbbf8d/download)
[Logs](https://api.biosimulations.org/logs/677d5aa3f8016f90e7cbbf8d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5aa3f8016f90e7cbbf8d)

HTTP response: 201| +|[01089-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01089-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5aa967468f9f3fc5d8b5/download)
[Logs](https://api.biosimulations.org/logs/677d5aa967468f9f3fc5d8b5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5aa967468f9f3fc5d8b5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5aa73e750b90a4265c1d/download)
[Logs](https://api.biosimulations.org/logs/677d5aa73e750b90a4265c1d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5aa73e750b90a4265c1d)

HTTP response: 201| +|[01090-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01090-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ab13e750b90a4265c44/download)
[Logs](https://api.biosimulations.org/logs/677d5ab13e750b90a4265c44?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ab13e750b90a4265c44)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5aaef8016f90e7cbbfbd/download)
[Logs](https://api.biosimulations.org/logs/677d5aaef8016f90e7cbbfbd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5aaef8016f90e7cbbfbd)

HTTP response: 201| +|[01091-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01091-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ab63e750b90a4265c55/download)
[Logs](https://api.biosimulations.org/logs/677d5ab63e750b90a4265c55?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ab63e750b90a4265c55)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5ab43e750b90a4265c50/download)
[Logs](https://api.biosimulations.org/logs/677d5ab43e750b90a4265c50?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ab43e750b90a4265c50)

HTTP response: 201| +|[01092-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01092-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5abb67468f9f3fc5d8f5/download)
[Logs](https://api.biosimulations.org/logs/677d5abb67468f9f3fc5d8f5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5abb67468f9f3fc5d8f5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5ab83e750b90a4265c61/download)
[Logs](https://api.biosimulations.org/logs/677d5ab83e750b90a4265c61?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ab83e750b90a4265c61)

HTTP response: 201| +|[01093-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01093-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ac03e750b90a4265c8c/download)
[Logs](https://api.biosimulations.org/logs/677d5ac03e750b90a4265c8c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ac03e750b90a4265c8c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5abd67468f9f3fc5d8fc/download)
[Logs](https://api.biosimulations.org/logs/677d5abd67468f9f3fc5d8fc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5abd67468f9f3fc5d8fc)

HTTP response: 201| +|[01094-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01094-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ac4f8016f90e7cbc009/download)
[Logs](https://api.biosimulations.org/logs/677d5ac4f8016f90e7cbc009?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ac4f8016f90e7cbc009)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5ac23e750b90a4265c95/download)
[Logs](https://api.biosimulations.org/logs/677d5ac23e750b90a4265c95?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ac23e750b90a4265c95)

HTTP response: 201| +|[01095-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01095-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ac93e750b90a4265caf/download)
[Logs](https://api.biosimulations.org/logs/677d5ac93e750b90a4265caf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ac93e750b90a4265caf)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5ac767468f9f3fc5d91d/download)
[Logs](https://api.biosimulations.org/logs/677d5ac767468f9f3fc5d91d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ac767468f9f3fc5d91d)

HTTP response: 201| +|[01096-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01096-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5acef8016f90e7cbc029/download)
[Logs](https://api.biosimulations.org/logs/677d5acef8016f90e7cbc029?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5acef8016f90e7cbc029)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5acc3e750b90a4265cb5/download)
[Logs](https://api.biosimulations.org/logs/677d5acc3e750b90a4265cb5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5acc3e750b90a4265cb5)

HTTP response: 201| +|[01097-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01097-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ad367468f9f3fc5d94c/download)
[Logs](https://api.biosimulations.org/logs/677d5ad367468f9f3fc5d94c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ad367468f9f3fc5d94c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5ad13e750b90a4265ccc/download)
[Logs](https://api.biosimulations.org/logs/677d5ad13e750b90a4265ccc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ad13e750b90a4265ccc)

HTTP response: 201| +|[01098-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01098-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ad967468f9f3fc5d968/download)
[Logs](https://api.biosimulations.org/logs/677d5ad967468f9f3fc5d968?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ad967468f9f3fc5d968)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5ad6f8016f90e7cbc053/download)
[Logs](https://api.biosimulations.org/logs/677d5ad6f8016f90e7cbc053?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ad6f8016f90e7cbc053)

HTTP response: 201| +|[01099-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01099-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5adef8016f90e7cbc078/download)
[Logs](https://api.biosimulations.org/logs/677d5adef8016f90e7cbc078?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5adef8016f90e7cbc078)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5adbf8016f90e7cbc05d/download)
[Logs](https://api.biosimulations.org/logs/677d5adbf8016f90e7cbc05d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5adbf8016f90e7cbc05d)

HTTP response: 201| +|[01100-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01100-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ae367468f9f3fc5d9a3/download)
[Logs](https://api.biosimulations.org/logs/677d5ae367468f9f3fc5d9a3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ae367468f9f3fc5d9a3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5ae13e750b90a4265d15/download)
[Logs](https://api.biosimulations.org/logs/677d5ae13e750b90a4265d15?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ae13e750b90a4265d15)

HTTP response: 201| +|[01101-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01101-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ae93e750b90a4265d26/download)
[Logs](https://api.biosimulations.org/logs/677d5ae93e750b90a4265d26?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ae93e750b90a4265d26)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5ae6f8016f90e7cbc0a0/download)
[Logs](https://api.biosimulations.org/logs/677d5ae6f8016f90e7cbc0a0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ae6f8016f90e7cbc0a0)

HTTP response: 201| +|[01102-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01102-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5aeef8016f90e7cbc0b8/download)
[Logs](https://api.biosimulations.org/logs/677d5aeef8016f90e7cbc0b8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5aeef8016f90e7cbc0b8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5aebf8016f90e7cbc0ab/download)
[Logs](https://api.biosimulations.org/logs/677d5aebf8016f90e7cbc0ab?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5aebf8016f90e7cbc0ab)

HTTP response: 201| +|[01103-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01103-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5af53e750b90a4265d55/download)
[Logs](https://api.biosimulations.org/logs/677d5af53e750b90a4265d55?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5af53e750b90a4265d55)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5af13e750b90a4265d48/download)
[Logs](https://api.biosimulations.org/logs/677d5af13e750b90a4265d48?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5af13e750b90a4265d48)

HTTP response: 201| +|[01104-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01104-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5afa3e750b90a4265d6b/download)
[Logs](https://api.biosimulations.org/logs/677d5afa3e750b90a4265d6b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5afa3e750b90a4265d6b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5af83e750b90a4265d62/download)
[Logs](https://api.biosimulations.org/logs/677d5af83e750b90a4265d62?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5af83e750b90a4265d62)

HTTP response: 201| +|[01105-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01105-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5aff3e750b90a4265d78/download)
[Logs](https://api.biosimulations.org/logs/677d5aff3e750b90a4265d78?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5aff3e750b90a4265d78)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5afdf8016f90e7cbc0f7/download)
[Logs](https://api.biosimulations.org/logs/677d5afdf8016f90e7cbc0f7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5afdf8016f90e7cbc0f7)

HTTP response: 201| +|[01106-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01106-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5b0467468f9f3fc5da42/download)
[Logs](https://api.biosimulations.org/logs/677d5b0467468f9f3fc5da42?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b0467468f9f3fc5da42)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5b0167468f9f3fc5da0d/download)
[Logs](https://api.biosimulations.org/logs/677d5b0167468f9f3fc5da0d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b0167468f9f3fc5da0d)

HTTP response: 201| +|[01107-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01107-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5b09f8016f90e7cbc126/download)
[Logs](https://api.biosimulations.org/logs/677d5b09f8016f90e7cbc126?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b09f8016f90e7cbc126)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5b07f8016f90e7cbc117/download)
[Logs](https://api.biosimulations.org/logs/677d5b07f8016f90e7cbc117?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b07f8016f90e7cbc117)

HTTP response: 201| +|[01108-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01108-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = X - p1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d5b0f67468f9f3fc5da57/download)
[Logs](https://api.biosimulations.org/logs/677d5b0f67468f9f3fc5da57?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b0f67468f9f3fc5da57)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'p1' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5b0d3e750b90a4265db8/download)
[Logs](https://api.biosimulations.org/logs/677d5b0d3e750b90a4265db8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b0d3e750b90a4265db8)

HTTP response: 201| +|[01109-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01109-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5b143e750b90a4265dd0/download)
[Logs](https://api.biosimulations.org/logs/677d5b143e750b90a4265dd0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b143e750b90a4265dd0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5b11f8016f90e7cbc139/download)
[Logs](https://api.biosimulations.org/logs/677d5b11f8016f90e7cbc139?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b11f8016f90e7cbc139)

HTTP response: 201| +|[01110-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01110-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5b193e750b90a4265dec/download)
[Logs](https://api.biosimulations.org/logs/677d5b193e750b90a4265dec?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b193e750b90a4265dec)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5b16f8016f90e7cbc149/download)
[Logs](https://api.biosimulations.org/logs/677d5b16f8016f90e7cbc149?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b16f8016f90e7cbc149)

HTTP response: 201| +|[01111-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01111-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5b1d3e750b90a4265df9/download)
[Logs](https://api.biosimulations.org/logs/677d5b1d3e750b90a4265df9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b1d3e750b90a4265df9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5b1bf8016f90e7cbc16f/download)
[Logs](https://api.biosimulations.org/logs/677d5b1bf8016f90e7cbc16f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b1bf8016f90e7cbc16f)

HTTP response: 201| +|[01112-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01112-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5b2267468f9f3fc5daae/download)
[Logs](https://api.biosimulations.org/logs/677d5b2267468f9f3fc5daae?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b2267468f9f3fc5daae)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5b203e750b90a4265dfc/download)
[Logs](https://api.biosimulations.org/logs/677d5b203e750b90a4265dfc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b203e750b90a4265dfc)

HTTP response: 201| +|[01113-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01113-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5b2767468f9f3fc5daca/download)
[Logs](https://api.biosimulations.org/logs/677d5b2767468f9f3fc5daca?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b2767468f9f3fc5daca)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5b24f8016f90e7cbc189/download)
[Logs](https://api.biosimulations.org/logs/677d5b24f8016f90e7cbc189?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b24f8016f90e7cbc189)

HTTP response: 201| +|[01114-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01114-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5b2cf8016f90e7cbc1aa/download)
[Logs](https://api.biosimulations.org/logs/677d5b2cf8016f90e7cbc1aa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b2cf8016f90e7cbc1aa)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5b2af8016f90e7cbc1a1/download)
[Logs](https://api.biosimulations.org/logs/677d5b2af8016f90e7cbc1a1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b2af8016f90e7cbc1a1)

HTTP response: 201| +|[01115-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01115-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5b323e750b90a4265e6d/download)
[Logs](https://api.biosimulations.org/logs/677d5b323e750b90a4265e6d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b323e750b90a4265e6d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5b2ff8016f90e7cbc1af/download)
[Logs](https://api.biosimulations.org/logs/677d5b2ff8016f90e7cbc1af?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b2ff8016f90e7cbc1af)

HTTP response: 201| +|[01116-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01116-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5b373e750b90a4265e7b/download)
[Logs](https://api.biosimulations.org/logs/677d5b373e750b90a4265e7b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b373e750b90a4265e7b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5b34f8016f90e7cbc1c6/download)
[Logs](https://api.biosimulations.org/logs/677d5b34f8016f90e7cbc1c6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b34f8016f90e7cbc1c6)

HTTP response: 201| +|[01117-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01117-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5b3c3e750b90a4265e89/download)
[Logs](https://api.biosimulations.org/logs/677d5b3c3e750b90a4265e89?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b3c3e750b90a4265e89)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5b393e750b90a4265e82/download)
[Logs](https://api.biosimulations.org/logs/677d5b393e750b90a4265e82?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b393e750b90a4265e82)

HTTP response: 201| +|[01118-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01118-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5b41f8016f90e7cbc1ed/download)
[Logs](https://api.biosimulations.org/logs/677d5b41f8016f90e7cbc1ed?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b41f8016f90e7cbc1ed)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5b3e3e750b90a4265e8f/download)
[Logs](https://api.biosimulations.org/logs/677d5b3e3e750b90a4265e8f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b3e3e750b90a4265e8f)

HTTP response: 201| +|[01119-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01119-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5b463e750b90a4265eb4/download)
[Logs](https://api.biosimulations.org/logs/677d5b463e750b90a4265eb4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b463e750b90a4265eb4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5b443e750b90a4265ea3/download)
[Logs](https://api.biosimulations.org/logs/677d5b443e750b90a4265ea3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b443e750b90a4265ea3)

HTTP response: 201| +|[01120-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01120-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5b4bf8016f90e7cbc228/download)
[Logs](https://api.biosimulations.org/logs/677d5b4bf8016f90e7cbc228?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b4bf8016f90e7cbc228)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5b4967468f9f3fc5db55/download)
[Logs](https://api.biosimulations.org/logs/677d5b4967468f9f3fc5db55?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b4967468f9f3fc5db55)

HTTP response: 201| +|[01121-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01121-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5b503e750b90a4265ed7/download)
[Logs](https://api.biosimulations.org/logs/677d5b503e750b90a4265ed7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b503e750b90a4265ed7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5b4ef8016f90e7cbc230/download)
[Logs](https://api.biosimulations.org/logs/677d5b4ef8016f90e7cbc230?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b4ef8016f90e7cbc230)

HTTP response: 201| +|[01122-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01122-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5b55f8016f90e7cbc24d/download)
[Logs](https://api.biosimulations.org/logs/677d5b55f8016f90e7cbc24d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b55f8016f90e7cbc24d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5b53f8016f90e7cbc241/download)
[Logs](https://api.biosimulations.org/logs/677d5b53f8016f90e7cbc241?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b53f8016f90e7cbc241)

HTTP response: 201| +|[01123-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01123-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5b5b3e750b90a4265f0f/download)
[Logs](https://api.biosimulations.org/logs/677d5b5b3e750b90a4265f0f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b5b3e750b90a4265f0f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5b5867468f9f3fc5db9b/download)
[Logs](https://api.biosimulations.org/logs/677d5b5867468f9f3fc5db9b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b5867468f9f3fc5db9b)

HTTP response: 201| +|[01124-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01124-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5b613e750b90a4265f1d/download)
[Logs](https://api.biosimulations.org/logs/677d5b613e750b90a4265f1d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b613e750b90a4265f1d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5b5ef8016f90e7cbc26e/download)
[Logs](https://api.biosimulations.org/logs/677d5b5ef8016f90e7cbc26e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b5ef8016f90e7cbc26e)

HTTP response: 201| +|[01125-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01125-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5b66f8016f90e7cbc295/download)
[Logs](https://api.biosimulations.org/logs/677d5b66f8016f90e7cbc295?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b66f8016f90e7cbc295)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5b633e750b90a4265f24/download)
[Logs](https://api.biosimulations.org/logs/677d5b633e750b90a4265f24?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b633e750b90a4265f24)

HTTP response: 201| +|[01126-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01126-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5b6b67468f9f3fc5dbe9/download)
[Logs](https://api.biosimulations.org/logs/677d5b6b67468f9f3fc5dbe9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b6b67468f9f3fc5dbe9)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp644941 is invalid. - Data generator submod1__subparam2_1 is invalid. - Variable submod1__subparam2 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='submod1__subparam2'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5b69f8016f90e7cbc2a8/download)
[Logs](https://api.biosimulations.org/logs/677d5b69f8016f90e7cbc2a8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b69f8016f90e7cbc2a8)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp757318 is invalid. - Data generator submod1__subparam2_1 is invalid. - Variable submod1__subparam2 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='submod1__subparam2'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01127-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01127-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5b7067468f9f3fc5dbff/download)
[Logs](https://api.biosimulations.org/logs/677d5b7067468f9f3fc5dbff?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b7067468f9f3fc5dbff)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp278867 is invalid. - Data generator submod1__subparam2_1 is invalid. - Variable submod1__subparam2 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='submod1__subparam2'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5b6e3e750b90a4265f61/download)
[Logs](https://api.biosimulations.org/logs/677d5b6e3e750b90a4265f61?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b6e3e750b90a4265f61)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp347069 is invalid. - Data generator submod1__subparam2_1 is invalid. - Variable submod1__subparam2 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='submod1__subparam2'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01128-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01128-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5b7567468f9f3fc5dc1e/download)
[Logs](https://api.biosimulations.org/logs/677d5b7567468f9f3fc5dc1e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b7567468f9f3fc5dc1e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5b7267468f9f3fc5dc06/download)
[Logs](https://api.biosimulations.org/logs/677d5b7267468f9f3fc5dc06?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b7267468f9f3fc5dc06)

HTTP response: 201| +|[01129-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01129-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5b7a67468f9f3fc5dc37/download)
[Logs](https://api.biosimulations.org/logs/677d5b7a67468f9f3fc5dc37?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b7a67468f9f3fc5dc37)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp178083 is invalid. - Data generator sub1__S1_1 is invalid. - Variable sub1__S1_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__S1'] does not match any elements of model model_1 . - Variable sub1__S1_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='sub1__C'] does not match any elements of model model_1 . - Data generator sub2__S1_1 is invalid. - Variable sub2__S1_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub2__S1'] does not match any elements of model model_1 . - Variable sub2__S1_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='sub2__C'] does not match any elements of model model_1 . - Data generator sub2__sub1__S1_1 is invalid. - Variable sub2__sub1__S1_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub2__sub1__S1'] does not match any elements of model model_1 . - Variable sub2__sub1__S1_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='sub2__sub1__C'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5b773e750b90a4265f8d/download)
[Logs](https://api.biosimulations.org/logs/677d5b773e750b90a4265f8d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b773e750b90a4265f8d)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp994234 is invalid. - Data generator sub1__S1_1 is invalid. - Variable sub1__S1_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__S1'] does not match any elements of model model_1 . - Variable sub1__S1_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='sub1__C'] does not match any elements of model model_1 . - Data generator sub2__S1_1 is invalid. - Variable sub2__S1_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub2__S1'] does not match any elements of model model_1 . - Variable sub2__S1_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='sub2__C'] does not match any elements of model model_1 . - Data generator sub2__sub1__S1_1 is invalid. - Variable sub2__sub1__S1_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub2__sub1__S1'] does not match any elements of model model_1 . - Variable sub2__sub1__S1_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='sub2__sub1__C'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01130-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01130-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5b7ef8016f90e7cbc2e8/download)
[Logs](https://api.biosimulations.org/logs/677d5b7ef8016f90e7cbc2e8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b7ef8016f90e7cbc2e8)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp498271 is invalid. - Data generator sub1__S1_1 is invalid. - Variable sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__S1'] does not match any elements of model model_1 . - Data generator sub2__S1_1 is invalid. - Variable sub2__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub2__S1'] does not match any elements of model model_1 . - Data generator sub2__sub1__S1_1 is invalid. - Variable sub2__sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub2__sub1__S1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5b7cf8016f90e7cbc2dd/download)
[Logs](https://api.biosimulations.org/logs/677d5b7cf8016f90e7cbc2dd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b7cf8016f90e7cbc2dd)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp881467 is invalid. - Data generator sub1__S1_1 is invalid. - Variable sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__S1'] does not match any elements of model model_1 . - Data generator sub2__S1_1 is invalid. - Variable sub2__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub2__S1'] does not match any elements of model model_1 . - Data generator sub2__sub1__S1_1 is invalid. - Variable sub2__sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub2__sub1__S1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01131-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01131-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5b8467468f9f3fc5dc65/download)
[Logs](https://api.biosimulations.org/logs/677d5b8467468f9f3fc5dc65?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b8467468f9f3fc5dc65)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp307627 is invalid. - Data generator sub1__S1_1 is invalid. - Variable sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__S1'] does not match any elements of model model_1 . - Data generator sub2__S1_1 is invalid. - Variable sub2__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub2__S1'] does not match any elements of model model_1 . - Data generator sub2__sub1__S1_1 is invalid. - Variable sub2__sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub2__sub1__S1'] does not match any elements of model model_1 . - Data generator sub3__S1_1 is invalid. - Variable sub3__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__S1'] does not match any elements of model model_1 . - Data generator sub3__sub1__S1_1 is invalid. - Variable sub3__sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__sub1__S1'] does not match any elements of model model_1 . - Data generator sub3__sub2__S1_1 is invalid. - Variable sub3__sub2__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__sub2__S1'] does not match any elements of model model_1 . - Data generator sub3__sub2__sub1__S1_1 is invalid. - Variable sub3__sub2__sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__sub2__sub1__S1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5b81f8016f90e7cbc2f9/download)
[Logs](https://api.biosimulations.org/logs/677d5b81f8016f90e7cbc2f9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b81f8016f90e7cbc2f9)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp795826 is invalid. - Data generator sub1__S1_1 is invalid. - Variable sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__S1'] does not match any elements of model model_1 . - Data generator sub2__S1_1 is invalid. - Variable sub2__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub2__S1'] does not match any elements of model model_1 . - Data generator sub2__sub1__S1_1 is invalid. - Variable sub2__sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub2__sub1__S1'] does not match any elements of model model_1 . - Data generator sub3__S1_1 is invalid. - Variable sub3__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__S1'] does not match any elements of model model_1 . - Data generator sub3__sub1__S1_1 is invalid. - Variable sub3__sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__sub1__S1'] does not match any elements of model model_1 . - Data generator sub3__sub2__S1_1 is invalid. - Variable sub3__sub2__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__sub2__S1'] does not match any elements of model model_1 . - Data generator sub3__sub2__sub1__S1_1 is invalid. - Variable sub3__sub2__sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__sub2__sub1__S1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01132-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01132-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5b8967468f9f3fc5dc7a/download)
[Logs](https://api.biosimulations.org/logs/677d5b8967468f9f3fc5dc7a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b8967468f9f3fc5dc7a)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp999912 is invalid. - Data generator sub1__S1_1 is invalid. - Variable sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__S1'] does not match any elements of model model_1 . - Data generator sub2__S1_1 is invalid. - Variable sub2__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub2__S1'] does not match any elements of model model_1 . - Data generator sub2__sub1__S1_1 is invalid. - Variable sub2__sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub2__sub1__S1'] does not match any elements of model model_1 . - Data generator sub3__S1_1 is invalid. - Variable sub3__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__S1'] does not match any elements of model model_1 . - Data generator sub3__sub1__S1_1 is invalid. - Variable sub3__sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__sub1__S1'] does not match any elements of model model_1 . - Data generator sub3__sub2__S1_1 is invalid. - Variable sub3__sub2__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__sub2__S1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5b863e750b90a4265fc1/download)
[Logs](https://api.biosimulations.org/logs/677d5b863e750b90a4265fc1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b863e750b90a4265fc1)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp822632 is invalid. - Data generator sub1__S1_1 is invalid. - Variable sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__S1'] does not match any elements of model model_1 . - Data generator sub2__S1_1 is invalid. - Variable sub2__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub2__S1'] does not match any elements of model model_1 . - Data generator sub2__sub1__S1_1 is invalid. - Variable sub2__sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub2__sub1__S1'] does not match any elements of model model_1 . - Data generator sub3__S1_1 is invalid. - Variable sub3__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__S1'] does not match any elements of model model_1 . - Data generator sub3__sub1__S1_1 is invalid. - Variable sub3__sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__sub1__S1'] does not match any elements of model model_1 . - Data generator sub3__sub2__S1_1 is invalid. - Variable sub3__sub2__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__sub2__S1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01133-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01133-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5b8d3e750b90a4265fe4/download)
[Logs](https://api.biosimulations.org/logs/677d5b8d3e750b90a4265fe4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b8d3e750b90a4265fe4)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp619810 is invalid. - Data generator sub1__S1_1 is invalid. - Variable sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__S1'] does not match any elements of model model_1 . - Data generator sub2__S1_1 is invalid. - Variable sub2__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub2__S1'] does not match any elements of model model_1 . - Data generator sub3__S1_1 is invalid. - Variable sub3__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__S1'] does not match any elements of model model_1 . - Data generator sub3__sub1__S1_1 is invalid. - Variable sub3__sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__sub1__S1'] does not match any elements of model model_1 . - Data generator sub3__sub2__S1_1 is invalid. - Variable sub3__sub2__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__sub2__S1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5b8bf8016f90e7cbc32a/download)
[Logs](https://api.biosimulations.org/logs/677d5b8bf8016f90e7cbc32a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b8bf8016f90e7cbc32a)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp371709 is invalid. - Data generator sub1__S1_1 is invalid. - Variable sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__S1'] does not match any elements of model model_1 . - Data generator sub2__S1_1 is invalid. - Variable sub2__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub2__S1'] does not match any elements of model model_1 . - Data generator sub3__S1_1 is invalid. - Variable sub3__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__S1'] does not match any elements of model model_1 . - Data generator sub3__sub1__S1_1 is invalid. - Variable sub3__sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__sub1__S1'] does not match any elements of model model_1 . - Data generator sub3__sub2__S1_1 is invalid. - Variable sub3__sub2__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__sub2__S1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01134-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01134-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5b92f8016f90e7cbc34d/download)
[Logs](https://api.biosimulations.org/logs/677d5b92f8016f90e7cbc34d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b92f8016f90e7cbc34d)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp890732 is invalid. - Data generator sub1__S1_1 is invalid. - Variable sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__S1'] does not match any elements of model model_1 . - Data generator sub2__S1_1 is invalid. - Variable sub2__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub2__S1'] does not match any elements of model model_1 . - Data generator sub3__S1_1 is invalid. - Variable sub3__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__S1'] does not match any elements of model model_1 . - Data generator sub3__sub1__S1_1 is invalid. - Variable sub3__sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__sub1__S1'] does not match any elements of model model_1 . - Data generator sub3__sub2__S1_1 is invalid. - Variable sub3__sub2__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__sub2__S1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5b90f8016f90e7cbc345/download)
[Logs](https://api.biosimulations.org/logs/677d5b90f8016f90e7cbc345?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b90f8016f90e7cbc345)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp101152 is invalid. - Data generator sub1__S1_1 is invalid. - Variable sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__S1'] does not match any elements of model model_1 . - Data generator sub2__S1_1 is invalid. - Variable sub2__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub2__S1'] does not match any elements of model model_1 . - Data generator sub3__S1_1 is invalid. - Variable sub3__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__S1'] does not match any elements of model model_1 . - Data generator sub3__sub1__S1_1 is invalid. - Variable sub3__sub1__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__sub1__S1'] does not match any elements of model model_1 . - Data generator sub3__sub2__S1_1 is invalid. - Variable sub3__sub2__S1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub3__sub2__S1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01135-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01135-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5b973e750b90a4266015/download)
[Logs](https://api.biosimulations.org/logs/677d5b973e750b90a4266015?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b973e750b90a4266015)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5b953e750b90a426600c/download)
[Logs](https://api.biosimulations.org/logs/677d5b953e750b90a426600c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b953e750b90a426600c)

HTTP response: 201| +|[01136-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01136-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5b9c67468f9f3fc5dcc3/download)
[Logs](https://api.biosimulations.org/logs/677d5b9c67468f9f3fc5dcc3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b9c67468f9f3fc5dcc3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5b9af8016f90e7cbc36a/download)
[Logs](https://api.biosimulations.org/logs/677d5b9af8016f90e7cbc36a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b9af8016f90e7cbc36a)

HTTP response: 201| +|[01137-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01137-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ba1f8016f90e7cbc393/download)
[Logs](https://api.biosimulations.org/logs/677d5ba1f8016f90e7cbc393?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ba1f8016f90e7cbc393)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5b9f67468f9f3fc5dcd1/download)
[Logs](https://api.biosimulations.org/logs/677d5b9f67468f9f3fc5dcd1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5b9f67468f9f3fc5dcd1)

HTTP response: 201| +|[01138-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01138-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5ba767468f9f3fc5dd00/download)
[Logs](https://api.biosimulations.org/logs/677d5ba767468f9f3fc5dd00?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ba767468f9f3fc5dd00)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp665284 is invalid. - Data generator sub1__prel_1 is invalid. - Variable sub1__prel is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__prel'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5ba5f8016f90e7cbc39f/download)
[Logs](https://api.biosimulations.org/logs/677d5ba5f8016f90e7cbc39f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ba5f8016f90e7cbc39f)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp747511 is invalid. - Data generator sub1__prel_1 is invalid. - Variable sub1__prel is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__prel'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01139-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01139-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5bac3e750b90a426606b/download)
[Logs](https://api.biosimulations.org/logs/677d5bac3e750b90a426606b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bac3e750b90a426606b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5baaf8016f90e7cbc3b6/download)
[Logs](https://api.biosimulations.org/logs/677d5baaf8016f90e7cbc3b6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5baaf8016f90e7cbc3b6)

HTTP response: 201| +|[01140-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01140-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5bb23e750b90a4266090/download)
[Logs](https://api.biosimulations.org/logs/677d5bb23e750b90a4266090?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bb23e750b90a4266090)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5baf3e750b90a4266087/download)
[Logs](https://api.biosimulations.org/logs/677d5baf3e750b90a4266087?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5baf3e750b90a4266087)

HTTP response: 201| +|[01141-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01141-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5bb63e750b90a4266098/download)
[Logs](https://api.biosimulations.org/logs/677d5bb63e750b90a4266098?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bb63e750b90a4266098)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5bb467468f9f3fc5dd37/download)
[Logs](https://api.biosimulations.org/logs/677d5bb467468f9f3fc5dd37?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bb467468f9f3fc5dd37)

HTTP response: 201| +|[01142-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01142-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = t4 - delay(t3, timeconv * (time / timeconv / 2))' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d5bbdf8016f90e7cbc3f1/download)
[Logs](https://api.biosimulations.org/logs/677d5bbdf8016f90e7cbc3f1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bbdf8016f90e7cbc3f1)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(t1, timeconv * 3)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5bb967468f9f3fc5dd4a/download)
[Logs](https://api.biosimulations.org/logs/677d5bb967468f9f3fc5dd4a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bb967468f9f3fc5dd4a)

HTTP response: 201| +|[01143-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01143-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5bc3f8016f90e7cbc405/download)
[Logs](https://api.biosimulations.org/logs/677d5bc3f8016f90e7cbc405?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bc3f8016f90e7cbc405)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp422325 is invalid. - Data generator sub1__s1_1 is invalid. - Variable sub1__s1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__s1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5bc067468f9f3fc5dd62/download)
[Logs](https://api.biosimulations.org/logs/677d5bc067468f9f3fc5dd62?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bc067468f9f3fc5dd62)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp670822 is invalid. - Data generator sub1__s1_1 is invalid. - Variable sub1__s1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__s1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01144-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01144-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5bc8f8016f90e7cbc418/download)
[Logs](https://api.biosimulations.org/logs/677d5bc8f8016f90e7cbc418?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bc8f8016f90e7cbc418)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp552064 is invalid. - Data generator sub1__s1_1 is invalid. - Variable sub1__s1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__s1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5bc53e750b90a42660ee/download)
[Logs](https://api.biosimulations.org/logs/677d5bc53e750b90a42660ee?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bc53e750b90a42660ee)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp47549 is invalid. - Data generator sub1__s1_1 is invalid. - Variable sub1__s1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__s1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01145-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01145-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5bce3e750b90a4266110/download)
[Logs](https://api.biosimulations.org/logs/677d5bce3e750b90a4266110?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bce3e750b90a4266110)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp709797 is invalid. - Data generator sub1__sub1__s1_1 is invalid. - Variable sub1__sub1__s1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__sub1__s1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5bcb67468f9f3fc5dd8a/download)
[Logs](https://api.biosimulations.org/logs/677d5bcb67468f9f3fc5dd8a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bcb67468f9f3fc5dd8a)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp7080 is invalid. - Data generator sub1__sub1__s1_1 is invalid. - Variable sub1__sub1__s1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__sub1__s1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01146-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01146-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5bd2f8016f90e7cbc434/download)
[Logs](https://api.biosimulations.org/logs/677d5bd2f8016f90e7cbc434?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bd2f8016f90e7cbc434)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp356014 is invalid. - Data generator sub1__sub1__t1_1 is invalid. - Variable sub1__sub1__t1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__sub1__t1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5bd067468f9f3fc5dda7/download)
[Logs](https://api.biosimulations.org/logs/677d5bd067468f9f3fc5dda7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bd067468f9f3fc5dda7)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp388701 is invalid. - Data generator sub1__sub1__t1_1 is invalid. - Variable sub1__sub1__t1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__sub1__t1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01147-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01147-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5bd73e750b90a4266129/download)
[Logs](https://api.biosimulations.org/logs/677d5bd73e750b90a4266129?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bd73e750b90a4266129)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp890221 is invalid. - Data generator sub1__sub1__t1_1 is invalid. - Variable sub1__sub1__t1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__sub1__t1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5bd5f8016f90e7cbc43e/download)
[Logs](https://api.biosimulations.org/logs/677d5bd5f8016f90e7cbc43e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bd5f8016f90e7cbc43e)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp331588 is invalid. - Data generator sub1__sub1__t1_1 is invalid. - Variable sub1__sub1__t1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__sub1__t1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01148-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01148-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5bdcf8016f90e7cbc455/download)
[Logs](https://api.biosimulations.org/logs/677d5bdcf8016f90e7cbc455?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bdcf8016f90e7cbc455)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp773538 is invalid. - Data generator sub1__sub1__sub1__s1_1 is invalid. - Variable sub1__sub1__sub1__s1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__sub1__sub1__s1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5bda67468f9f3fc5dde0/download)
[Logs](https://api.biosimulations.org/logs/677d5bda67468f9f3fc5dde0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bda67468f9f3fc5dde0)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp519709 is invalid. - Data generator sub1__sub1__sub1__s1_1 is invalid. - Variable sub1__sub1__sub1__s1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__sub1__sub1__s1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01149-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01149-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5be167468f9f3fc5ddf6/download)
[Logs](https://api.biosimulations.org/logs/677d5be167468f9f3fc5ddf6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5be167468f9f3fc5ddf6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5bdef8016f90e7cbc464/download)
[Logs](https://api.biosimulations.org/logs/677d5bdef8016f90e7cbc464?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bdef8016f90e7cbc464)

HTTP response: 201| +|[01150-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01150-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5be6f8016f90e7cbc489/download)
[Logs](https://api.biosimulations.org/logs/677d5be6f8016f90e7cbc489?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5be6f8016f90e7cbc489)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5be43e750b90a4266167/download)
[Logs](https://api.biosimulations.org/logs/677d5be43e750b90a4266167?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5be43e750b90a4266167)

HTTP response: 201| +|[01151-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01151-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5bec67468f9f3fc5de27/download)
[Logs](https://api.biosimulations.org/logs/677d5bec67468f9f3fc5de27?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bec67468f9f3fc5de27)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5be967468f9f3fc5de20/download)
[Logs](https://api.biosimulations.org/logs/677d5be967468f9f3fc5de20?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5be967468f9f3fc5de20)

HTTP response: 201| +|[01152-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01152-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5bf2f8016f90e7cbc4be/download)
[Logs](https://api.biosimulations.org/logs/677d5bf2f8016f90e7cbc4be?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bf2f8016f90e7cbc4be)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5bf067468f9f3fc5de33/download)
[Logs](https://api.biosimulations.org/logs/677d5bf067468f9f3fc5de33?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bf067468f9f3fc5de33)

HTTP response: 201| +|[01153-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01153-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5bf83e750b90a42661b7/download)
[Logs](https://api.biosimulations.org/logs/677d5bf83e750b90a42661b7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bf83e750b90a42661b7)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp638098 is invalid. - Data generator A__A__Q_1 is invalid. - Variable A__A__Q is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__A__Q'] does not match any elements of model model_1 . - Data generator A__A__y_1 is invalid. - Variable A__A__y is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__A__y'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5bf53e750b90a42661b0/download)
[Logs](https://api.biosimulations.org/logs/677d5bf53e750b90a42661b0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bf53e750b90a42661b0)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp811915 is invalid. - Data generator A__A__Q_1 is invalid. - Variable A__A__Q is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__A__Q'] does not match any elements of model model_1 . - Data generator A__A__y_1 is invalid. - Variable A__A__y is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__A__y'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01154-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01154-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5bfdf8016f90e7cbc4e5/download)
[Logs](https://api.biosimulations.org/logs/677d5bfdf8016f90e7cbc4e5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bfdf8016f90e7cbc4e5)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp620327 is invalid. - Data generator sub1__t1_1 is invalid. - Variable sub1__t1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__t1'] does not match any elements of model model_1 . - Data generator sub1__t2_1 is invalid. - Variable sub1__t2 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__t2'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5bfb3e750b90a42661c7/download)
[Logs](https://api.biosimulations.org/logs/677d5bfb3e750b90a42661c7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bfb3e750b90a42661c7)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp617234 is invalid. - Data generator sub1__t1_1 is invalid. - Variable sub1__t1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__t1'] does not match any elements of model model_1 . - Data generator sub1__t2_1 is invalid. - Variable sub1__t2 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__t2'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01155-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01155-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5c02f8016f90e7cbc4f7/download)
[Logs](https://api.biosimulations.org/logs/677d5c02f8016f90e7cbc4f7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c02f8016f90e7cbc4f7)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp301022 is invalid. - Data generator sub1__t1_1 is invalid. - Variable sub1__t1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__t1'] does not match any elements of model model_1 . - Data generator sub1__t2_1 is invalid. - Variable sub1__t2 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__t2'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5bff3e750b90a42661cf/download)
[Logs](https://api.biosimulations.org/logs/677d5bff3e750b90a42661cf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5bff3e750b90a42661cf)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp934645 is invalid. - Data generator sub1__t1_1 is invalid. - Variable sub1__t1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__t1'] does not match any elements of model model_1 . - Data generator sub1__t2_1 is invalid. - Variable sub1__t2 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__t2'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01156-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01156-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5c073e750b90a42661ed/download)
[Logs](https://api.biosimulations.org/logs/677d5c073e750b90a42661ed?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c073e750b90a42661ed)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp102423 is invalid. - Data generator sub1__t1_1 is invalid. - Variable sub1__t1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__t1'] does not match any elements of model model_1 . - Data generator sub1__t2_1 is invalid. - Variable sub1__t2 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__t2'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5c053e750b90a42661e1/download)
[Logs](https://api.biosimulations.org/logs/677d5c053e750b90a42661e1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c053e750b90a42661e1)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp464439 is invalid. - Data generator sub1__t1_1 is invalid. - Variable sub1__t1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__t1'] does not match any elements of model model_1 . - Data generator sub1__t2_1 is invalid. - Variable sub1__t2 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__t2'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01157-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01157-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5c0c67468f9f3fc5de99/download)
[Logs](https://api.biosimulations.org/logs/677d5c0c67468f9f3fc5de99?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c0c67468f9f3fc5de99)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp926003 is invalid. - Data generator sub1__t1_1 is invalid. - Variable sub1__t1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__t1'] does not match any elements of model model_1 . - Data generator sub1__t2_1 is invalid. - Variable sub1__t2 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__t2'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5c0af8016f90e7cbc50e/download)
[Logs](https://api.biosimulations.org/logs/677d5c0af8016f90e7cbc50e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c0af8016f90e7cbc50e)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp96540 is invalid. - Data generator sub1__t1_1 is invalid. - Variable sub1__t1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__t1'] does not match any elements of model model_1 . - Data generator sub1__t2_1 is invalid. - Variable sub1__t2 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__t2'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01158-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01158-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5c1367468f9f3fc5debc/download)
[Logs](https://api.biosimulations.org/logs/677d5c1367468f9f3fc5debc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c1367468f9f3fc5debc)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp488679 is invalid. - Data generator sub1__t1_1 is invalid. - Variable sub1__t1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__t1'] does not match any elements of model model_1 . - Data generator sub1__t2_1 is invalid. - Variable sub1__t2 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__t2'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5c10f8016f90e7cbc523/download)
[Logs](https://api.biosimulations.org/logs/677d5c10f8016f90e7cbc523?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c10f8016f90e7cbc523)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp459677 is invalid. - Data generator sub1__t1_1 is invalid. - Variable sub1__t1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__t1'] does not match any elements of model model_1 . - Data generator sub1__t2_1 is invalid. - Variable sub1__t2 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__t2'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01159-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01159-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5c193e750b90a4266234/download)
[Logs](https://api.biosimulations.org/logs/677d5c193e750b90a4266234?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c193e750b90a4266234)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp662969 is invalid. - Data generator sub1__s1_1 is invalid. - Variable sub1__s1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__s1'] does not match any elements of model model_1 . - Data generator sub1__p1_1 is invalid. - Variable sub1__p1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__p1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5c16f8016f90e7cbc547/download)
[Logs](https://api.biosimulations.org/logs/677d5c16f8016f90e7cbc547?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c16f8016f90e7cbc547)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp766655 is invalid. - Data generator sub1__s1_1 is invalid. - Variable sub1__s1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__s1'] does not match any elements of model model_1 . - Data generator sub1__p1_1 is invalid. - Variable sub1__p1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__p1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01160-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01160-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5c1e3e750b90a4266243/download)
[Logs](https://api.biosimulations.org/logs/677d5c1e3e750b90a4266243?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c1e3e750b90a4266243)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp174167 is invalid. - Data generator sub1__s1_1 is invalid. - Variable sub1__s1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__s1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5c1c3e750b90a4266240/download)
[Logs](https://api.biosimulations.org/logs/677d5c1c3e750b90a4266240?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c1c3e750b90a4266240)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp65294 is invalid. - Data generator sub1__s1_1 is invalid. - Variable sub1__s1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__s1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01161-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01161-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5c243e750b90a4266255/download)
[Logs](https://api.biosimulations.org/logs/677d5c243e750b90a4266255?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c243e750b90a4266255)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp527228 is invalid. - Data generator sub1__s1_1 is invalid. - Variable sub1__s1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__s1'] does not match any elements of model model_1 . - Data generator sub1__p1_1 is invalid. - Variable sub1__p1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__p1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5c21f8016f90e7cbc56a/download)
[Logs](https://api.biosimulations.org/logs/677d5c21f8016f90e7cbc56a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c21f8016f90e7cbc56a)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp879694 is invalid. - Data generator sub1__s1_1 is invalid. - Variable sub1__s1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__s1'] does not match any elements of model model_1 . - Data generator sub1__p1_1 is invalid. - Variable sub1__p1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__p1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01162-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01162-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5c283e750b90a426627c/download)
[Logs](https://api.biosimulations.org/logs/677d5c283e750b90a426627c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c283e750b90a426627c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5c2667468f9f3fc5df08/download)
[Logs](https://api.biosimulations.org/logs/677d5c2667468f9f3fc5df08?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c2667468f9f3fc5df08)

HTTP response: 201| +|[01163-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01163-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5c2f67468f9f3fc5df27/download)
[Logs](https://api.biosimulations.org/logs/677d5c2f67468f9f3fc5df27?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c2f67468f9f3fc5df27)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5c2b67468f9f3fc5df1c/download)
[Logs](https://api.biosimulations.org/logs/677d5c2b67468f9f3fc5df1c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c2b67468f9f3fc5df1c)

HTTP response: 201| +|[01164-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01164-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5c36f8016f90e7cbc5c8/download)
[Logs](https://api.biosimulations.org/logs/677d5c36f8016f90e7cbc5c8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c36f8016f90e7cbc5c8)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp707125 is invalid. - Data generator submod1__S_1 is invalid. - Variable submod1__S_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='submod1__S'] does not match any elements of model model_1 . - Variable submod1__S_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='submod1__comp'] does not match any elements of model model_1 . - Data generator submod1__E_1 is invalid. - Variable submod1__E_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='submod1__E'] does not match any elements of model model_1 . - Variable submod1__E_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='submod1__comp'] does not match any elements of model model_1 . - Data generator submod1__D_1 is invalid. - Variable submod1__D_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='submod1__D'] does not match any elements of model model_1 . - Variable submod1__D_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='submod1__comp'] does not match any elements of model model_1 . - Data generator submod1__ES_1 is invalid. - Variable submod1__ES_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='submod1__ES'] does not match any elements of model model_1 . - Variable submod1__ES_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='submod1__comp'] does not match any elements of model model_1 . - Data generator submod2__S_1 is invalid. - Variable submod2__S_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='submod2__S'] does not match any elements of model model_1 . - Variable submod2__S_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='submod2__comp'] does not match any elements of model model_1 . - Data generator submod2__E_1 is invalid. - Variable submod2__E_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='submod2__E'] does not match any elements of model model_1 . - Variable submod2__E_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='submod2__comp'] does not match any elements of model model_1 . - Data generator submod2__D_1 is invalid. - Variable submod2__D_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='submod2__D'] does not match any elements of model model_1 . - Variable submod2__D_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='submod2__comp'] does not match any elements of model model_1 . - Data generator submod2__ES_1 is invalid. - Variable submod2__ES_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='submod2__ES'] does not match any elements of model model_1 . - Variable submod2__ES_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='submod2__comp'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5c33f8016f90e7cbc5bc/download)
[Logs](https://api.biosimulations.org/logs/677d5c33f8016f90e7cbc5bc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c33f8016f90e7cbc5bc)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp990918 is invalid. - Data generator submod1__S_1 is invalid. - Variable submod1__S_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='submod1__S'] does not match any elements of model model_1 . - Variable submod1__S_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='submod1__comp'] does not match any elements of model model_1 . - Data generator submod1__E_1 is invalid. - Variable submod1__E_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='submod1__E'] does not match any elements of model model_1 . - Variable submod1__E_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='submod1__comp'] does not match any elements of model model_1 . - Data generator submod1__D_1 is invalid. - Variable submod1__D_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='submod1__D'] does not match any elements of model model_1 . - Variable submod1__D_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='submod1__comp'] does not match any elements of model model_1 . - Data generator submod1__ES_1 is invalid. - Variable submod1__ES_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='submod1__ES'] does not match any elements of model model_1 . - Variable submod1__ES_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='submod1__comp'] does not match any elements of model model_1 . - Data generator submod2__S_1 is invalid. - Variable submod2__S_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='submod2__S'] does not match any elements of model model_1 . - Variable submod2__S_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='submod2__comp'] does not match any elements of model model_1 . - Data generator submod2__E_1 is invalid. - Variable submod2__E_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='submod2__E'] does not match any elements of model model_1 . - Variable submod2__E_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='submod2__comp'] does not match any elements of model model_1 . - Data generator submod2__D_1 is invalid. - Variable submod2__D_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='submod2__D'] does not match any elements of model model_1 . - Variable submod2__D_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='submod2__comp'] does not match any elements of model model_1 . - Data generator submod2__ES_1 is invalid. - Variable submod2__ES_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='submod2__ES'] does not match any elements of model model_1 . - Variable submod2__ES_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='submod2__comp'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01165-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01165-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5c3cf8016f90e7cbc5e2/download)
[Logs](https://api.biosimulations.org/logs/677d5c3cf8016f90e7cbc5e2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c3cf8016f90e7cbc5e2)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp653652 is invalid. - Model model_1 is invalid. - The model file 01165-sbml-l3v2.xml is invalid. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 27, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 27, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 27, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 27, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 27, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 27, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. The with the id 'ExtMod1' refers to a source 'enzyme_model-l3v2.xml' that cannot be accessed from here. Further checks relating to this document cannot be performed. - Data generator A__E_1 is invalid. - Variable A__E_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__E'] does not match any elements of model model_1 . - Data generator A__ES_1 is invalid. - Variable A__ES_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__ES'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5c393e750b90a42662a6/download)
[Logs](https://api.biosimulations.org/logs/677d5c393e750b90a42662a6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c393e750b90a42662a6)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp396843 is invalid. - Model model_1 is invalid. - The model file 01165-sbml-l3v2.xml is invalid. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 27, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 27, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 27, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 27, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 27, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 27, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. The with the id 'ExtMod1' refers to a source 'enzyme_model-l3v2.xml' that cannot be accessed from here. Further checks relating to this document cannot be performed. - Data generator A__E_1 is invalid. - Variable A__E_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__E'] does not match any elements of model model_1 . - Data generator A__ES_1 is invalid. - Variable A__ES_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__ES'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01166-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01166-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5c42f8016f90e7cbc5f7/download)
[Logs](https://api.biosimulations.org/logs/677d5c42f8016f90e7cbc5f7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c42f8016f90e7cbc5f7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5c3f3e750b90a42662c9/download)
[Logs](https://api.biosimulations.org/logs/677d5c3f3e750b90a42662c9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c3f3e750b90a42662c9)

HTTP response: 201| +|[01167-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01167-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5c47f8016f90e7cbc606/download)
[Logs](https://api.biosimulations.org/logs/677d5c47f8016f90e7cbc606?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c47f8016f90e7cbc606)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp680418 is invalid. - Model model_1 is invalid. - The model file 01167-sbml-l3v2.xml is invalid. - SBML component consistency (1090101) at line 9, column 4: The external model referenced in this model could not be resolved. The with the id 'EM1' refers to a source 'enzyme_identical-l3v2.xml' that cannot be accessed from here. Further checks relating to this document cannot be performed. - Data generator A__S_1 is invalid. - Variable A__S_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__S'] does not match any elements of model model_1 . - Variable A__S_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='A__comp'] does not match any elements of model model_1 . - Data generator A__E_1 is invalid. - Variable A__E_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__E'] does not match any elements of model model_1 . - Variable A__E_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='A__comp'] does not match any elements of model model_1 . - Data generator A__D_1 is invalid. - Variable A__D_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__D'] does not match any elements of model model_1 . - Variable A__D_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='A__comp'] does not match any elements of model model_1 . - Data generator A__ES_1 is invalid. - Variable A__ES_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__ES'] does not match any elements of model model_1 . - Variable A__ES_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='A__comp'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5c45f8016f90e7cbc5fc/download)
[Logs](https://api.biosimulations.org/logs/677d5c45f8016f90e7cbc5fc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c45f8016f90e7cbc5fc)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp334478 is invalid. - Model model_1 is invalid. - The model file 01167-sbml-l3v2.xml is invalid. - SBML component consistency (1090101) at line 9, column 4: The external model referenced in this model could not be resolved. The with the id 'EM1' refers to a source 'enzyme_identical-l3v2.xml' that cannot be accessed from here. Further checks relating to this document cannot be performed. - Data generator A__S_1 is invalid. - Variable A__S_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__S'] does not match any elements of model model_1 . - Variable A__S_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='A__comp'] does not match any elements of model model_1 . - Data generator A__E_1 is invalid. - Variable A__E_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__E'] does not match any elements of model model_1 . - Variable A__E_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='A__comp'] does not match any elements of model model_1 . - Data generator A__D_1 is invalid. - Variable A__D_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__D'] does not match any elements of model model_1 . - Variable A__D_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='A__comp'] does not match any elements of model model_1 . - Data generator A__ES_1 is invalid. - Variable A__ES_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__ES'] does not match any elements of model model_1 . - Variable A__ES_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='A__comp'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01168-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01168-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5c4df8016f90e7cbc61b/download)
[Logs](https://api.biosimulations.org/logs/677d5c4df8016f90e7cbc61b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c4df8016f90e7cbc61b)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp79494 is invalid. - Model model_1 is invalid. - The model file 01168-sbml-l3v2.xml is invalid. - SBML component consistency (1090101) at line 9, column 4: The external model referenced in this model could not be resolved. The with the id 'EM1' refers to a source 'enzyme_identical-l3v2.xml' that cannot be accessed from here. Further checks relating to this document cannot be performed. - Data generator A__S_1 is invalid. - Variable A__S_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__S'] does not match any elements of model model_1 . - Variable A__S_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='A__comp'] does not match any elements of model model_1 . - Data generator A__A__E_1 is invalid. - Variable A__A__E_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__A__E'] does not match any elements of model model_1 . - Variable A__A__E_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='A__comp'] does not match any elements of model model_1 . - Data generator A__A__D_1 is invalid. - Variable A__A__D_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__A__D'] does not match any elements of model model_1 . - Variable A__A__D_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='A__comp'] does not match any elements of model model_1 . - Data generator A__A__ES_1 is invalid. - Variable A__A__ES_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__A__ES'] does not match any elements of model model_1 . - Variable A__A__ES_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='A__comp'] does not match any elements of model model_1 . - Data generator A__B__E_1 is invalid. - Variable A__B__E_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__B__E'] does not match any elements of model model_1 . - Variable A__B__E_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='A__comp'] does not match any elements of model model_1 . - Data generator A__B__D_1 is invalid. - Variable A__B__D_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__B__D'] does not match any elements of model model_1 . - Variable A__B__D_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='A__comp'] does not match any elements of model model_1 . - Data generator A__B__ES_1 is invalid. - Variable A__B__ES_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__B__ES'] does not match any elements of model model_1 . - Variable A__B__ES_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='A__comp'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5c4bf8016f90e7cbc609/download)
[Logs](https://api.biosimulations.org/logs/677d5c4bf8016f90e7cbc609?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c4bf8016f90e7cbc609)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp341713 is invalid. - Model model_1 is invalid. - The model file 01168-sbml-l3v2.xml is invalid. - SBML component consistency (1090101) at line 9, column 4: The external model referenced in this model could not be resolved. The with the id 'EM1' refers to a source 'enzyme_identical-l3v2.xml' that cannot be accessed from here. Further checks relating to this document cannot be performed. - Data generator A__S_1 is invalid. - Variable A__S_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__S'] does not match any elements of model model_1 . - Variable A__S_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='A__comp'] does not match any elements of model model_1 . - Data generator A__A__E_1 is invalid. - Variable A__A__E_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__A__E'] does not match any elements of model model_1 . - Variable A__A__E_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='A__comp'] does not match any elements of model model_1 . - Data generator A__A__D_1 is invalid. - Variable A__A__D_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__A__D'] does not match any elements of model model_1 . - Variable A__A__D_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='A__comp'] does not match any elements of model model_1 . - Data generator A__A__ES_1 is invalid. - Variable A__A__ES_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__A__ES'] does not match any elements of model model_1 . - Variable A__A__ES_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='A__comp'] does not match any elements of model model_1 . - Data generator A__B__E_1 is invalid. - Variable A__B__E_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__B__E'] does not match any elements of model model_1 . - Variable A__B__E_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='A__comp'] does not match any elements of model model_1 . - Data generator A__B__D_1 is invalid. - Variable A__B__D_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__B__D'] does not match any elements of model model_1 . - Variable A__B__D_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='A__comp'] does not match any elements of model model_1 . - Data generator A__B__ES_1 is invalid. - Variable A__B__ES_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__B__ES'] does not match any elements of model model_1 . - Variable A__B__ES_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='A__comp'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01169-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01169-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5c53f8016f90e7cbc62c/download)
[Logs](https://api.biosimulations.org/logs/677d5c53f8016f90e7cbc62c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c53f8016f90e7cbc62c)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp194079 is invalid. - Data generator A__S1_1 is invalid. - Variable A__S1_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__S1'] does not match any elements of model model_1 . - Variable A__S1_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='A__default_compartment'] does not match any elements of model model_1 . - Data generator A__y_1 is invalid. - Variable A__y is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__y'] does not match any elements of model model_1 . - Data generator A__k1_1 is invalid. - Variable A__k1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__k1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5c5067468f9f3fc5df98/download)
[Logs](https://api.biosimulations.org/logs/677d5c5067468f9f3fc5df98?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c5067468f9f3fc5df98)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp395670 is invalid. - Data generator A__S1_1 is invalid. - Variable A__S1_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__S1'] does not match any elements of model model_1 . - Variable A__S1_1_c is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='A__default_compartment'] does not match any elements of model model_1 . - Data generator A__y_1 is invalid. - Variable A__y is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__y'] does not match any elements of model model_1 . - Data generator A__k1_1 is invalid. - Variable A__k1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__k1'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01170-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01170-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5c583e750b90a4266320/download)
[Logs](https://api.biosimulations.org/logs/677d5c583e750b90a4266320?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c583e750b90a4266320)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5c553e750b90a426630f/download)
[Logs](https://api.biosimulations.org/logs/677d5c553e750b90a426630f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c553e750b90a426630f)

HTTP response: 201| +|[01171-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01171-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5c5df8016f90e7cbc649/download)
[Logs](https://api.biosimulations.org/logs/677d5c5df8016f90e7cbc649?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c5df8016f90e7cbc649)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5c5a67468f9f3fc5dfcc/download)
[Logs](https://api.biosimulations.org/logs/677d5c5a67468f9f3fc5dfcc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c5a67468f9f3fc5dfcc)

HTTP response: 201| +|[01172-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01172-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5c623e750b90a4266343/download)
[Logs](https://api.biosimulations.org/logs/677d5c623e750b90a4266343?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c623e750b90a4266343)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5c60f8016f90e7cbc662/download)
[Logs](https://api.biosimulations.org/logs/677d5c60f8016f90e7cbc662?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c60f8016f90e7cbc662)

HTTP response: 201| +|[01173-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01173-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(t1, timeconv * 3)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d5c673e750b90a4266354/download)
[Logs](https://api.biosimulations.org/logs/677d5c673e750b90a4266354?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c673e750b90a4266354)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(t1, timeconv * 3)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5c65f8016f90e7cbc678/download)
[Logs](https://api.biosimulations.org/logs/677d5c65f8016f90e7cbc678?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c65f8016f90e7cbc678)

HTTP response: 201| +|[01174-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01174-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = t4 - delay(t3, timeconv * (time / timeconv / 2))' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d5c6d67468f9f3fc5dffc/download)
[Logs](https://api.biosimulations.org/logs/677d5c6d67468f9f3fc5dffc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c6d67468f9f3fc5dffc)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5c6a3e750b90a4266366/download)
[Logs](https://api.biosimulations.org/logs/677d5c6a3e750b90a4266366?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c6a3e750b90a4266366)

HTTP response: 201| +|[01175-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01175-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5c733e750b90a4266382/download)
[Logs](https://api.biosimulations.org/logs/677d5c733e750b90a4266382?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c733e750b90a4266382)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5c70f8016f90e7cbc6a1/download)
[Logs](https://api.biosimulations.org/logs/677d5c70f8016f90e7cbc6a1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c70f8016f90e7cbc6a1)

HTTP response: 201| +|[01176-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01176-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(t5, timeconv * 0.2)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d5c7af8016f90e7cbc6d4/download)
[Logs](https://api.biosimulations.org/logs/677d5c7af8016f90e7cbc6d4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c7af8016f90e7cbc6d4)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(t5, timeconv * 0.2)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5c7767468f9f3fc5e01c/download)
[Logs](https://api.biosimulations.org/logs/677d5c7767468f9f3fc5e01c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c7767468f9f3fc5e01c)

HTTP response: 201| +|[01177-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01177-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5c8067468f9f3fc5e044/download)
[Logs](https://api.biosimulations.org/logs/677d5c8067468f9f3fc5e044?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c8067468f9f3fc5e044)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5c7d3e750b90a42663b7/download)
[Logs](https://api.biosimulations.org/logs/677d5c7d3e750b90a42663b7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c7d3e750b90a42663b7)

HTTP response: 201| +|[01178-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01178-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5c86f8016f90e7cbc6f4/download)
[Logs](https://api.biosimulations.org/logs/677d5c86f8016f90e7cbc6f4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c86f8016f90e7cbc6f4)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp322164 is invalid. - Data generator sub1__s1_1 is invalid. - Variable sub1__s1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__s1'] does not match any elements of model model_1 . - Data generator sub1__p80_1 is invalid. - Variable sub1__p80 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__p80'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5c83f8016f90e7cbc6ee/download)
[Logs](https://api.biosimulations.org/logs/677d5c83f8016f90e7cbc6ee?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c83f8016f90e7cbc6ee)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp173233 is invalid. - Data generator sub1__s1_1 is invalid. - Variable sub1__s1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__s1'] does not match any elements of model model_1 . - Data generator sub1__p80_1 is invalid. - Variable sub1__p80 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__p80'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01179-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01179-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5c8b3e750b90a42663d6/download)
[Logs](https://api.biosimulations.org/logs/677d5c8b3e750b90a42663d6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c8b3e750b90a42663d6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5c89f8016f90e7cbc708/download)
[Logs](https://api.biosimulations.org/logs/677d5c89f8016f90e7cbc708?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c89f8016f90e7cbc708)

HTTP response: 201| +|[01180-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01180-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5c9167468f9f3fc5e080/download)
[Logs](https://api.biosimulations.org/logs/677d5c9167468f9f3fc5e080?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c9167468f9f3fc5e080)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp441719 is invalid. - Data generator sub1__s1_1 is invalid. - Variable sub1__s1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__s1'] does not match any elements of model model_1 . - Data generator sub1__p80_1 is invalid. - Variable sub1__p80 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__p80'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5c8ef8016f90e7cbc710/download)
[Logs](https://api.biosimulations.org/logs/677d5c8ef8016f90e7cbc710?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c8ef8016f90e7cbc710)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp411470 is invalid. - Data generator sub1__s1_1 is invalid. - Variable sub1__s1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__s1'] does not match any elements of model model_1 . - Data generator sub1__p80_1 is invalid. - Variable sub1__p80 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__p80'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01181-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01181-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5c9667468f9f3fc5e0a4/download)
[Logs](https://api.biosimulations.org/logs/677d5c9667468f9f3fc5e0a4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c9667468f9f3fc5e0a4)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp23515 is invalid. - Data generator sub1__s1_1 is invalid. - Variable sub1__s1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__s1'] does not match any elements of model model_1 . - Data generator sub1__p80_1 is invalid. - Variable sub1__p80 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__p80'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5c93f8016f90e7cbc72b/download)
[Logs](https://api.biosimulations.org/logs/677d5c93f8016f90e7cbc72b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c93f8016f90e7cbc72b)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp945394 is invalid. - Data generator sub1__s1_1 is invalid. - Variable sub1__s1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub1__s1'] does not match any elements of model model_1 . - Data generator sub1__p80_1 is invalid. - Variable sub1__p80 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__p80'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01182-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01182-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5c9b67468f9f3fc5e0b1/download)
[Logs](https://api.biosimulations.org/logs/677d5c9b67468f9f3fc5e0b1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c9b67468f9f3fc5e0b1)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp923356 is invalid. - Data generator sub1__p80_1 is invalid. - Variable sub1__p80 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__p80'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5c99f8016f90e7cbc73e/download)
[Logs](https://api.biosimulations.org/logs/677d5c99f8016f90e7cbc73e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c99f8016f90e7cbc73e)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp52766 is invalid. - Data generator sub1__p80_1 is invalid. - Variable sub1__p80 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__p80'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01183-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01183-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5ca067468f9f3fc5e0c0/download)
[Logs](https://api.biosimulations.org/logs/677d5ca067468f9f3fc5e0c0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ca067468f9f3fc5e0c0)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp249134 is invalid. - Data generator sub1__p80_1 is invalid. - Variable sub1__p80 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__p80'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d5c9e3e750b90a426642d/download)
[Logs](https://api.biosimulations.org/logs/677d5c9e3e750b90a426642d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5c9e3e750b90a426642d)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp844975 is invalid. - Data generator sub1__p80_1 is invalid. - Variable sub1__p80 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='sub1__p80'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01184-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01184-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ca567468f9f3fc5e0ec/download)
[Logs](https://api.biosimulations.org/logs/677d5ca567468f9f3fc5e0ec?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ca567468f9f3fc5e0ec)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5ca367468f9f3fc5e0ca/download)
[Logs](https://api.biosimulations.org/logs/677d5ca367468f9f3fc5e0ca?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ca367468f9f3fc5e0ca)

HTTP response: 201| +|[01185-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01185-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5caa67468f9f3fc5e0f8/download)
[Logs](https://api.biosimulations.org/logs/677d5caa67468f9f3fc5e0f8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5caa67468f9f3fc5e0f8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5ca83e750b90a4266453/download)
[Logs](https://api.biosimulations.org/logs/677d5ca83e750b90a4266453?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ca83e750b90a4266453)

HTTP response: 201| +|[01186-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01186-sbml-l3v2.xml)|pass|pass|pass|
other Cannot perform moiety conversion with non-constant stoichiometry. The species reference which refers to species M does not have the constant attribute set. To disable conserved moiety conversion, either a: set [Your roadrunner variable].conservedMoietyAnalysis = False, before calling the load('myfile.xml') method, or b: create a LoadSBMLOptions object, set the conservedMoieties property to False and use this as the second argument to the RoadRunner constructor or load() method, i.e. o = roadrunner.LoadSBMLOptions() o.conservedMoieties = False r = roadrunner.RoadRunner('myfile.xml', o)
|True|
FAIL[Download](https://api.biosimulations.org/results/677d5cb03e750b90a4266485/download)
[Logs](https://api.biosimulations.org/logs/677d5cb03e750b90a4266485?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5cb03e750b90a4266485)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d5cadf8016f90e7cbc798/download)
[Logs](https://api.biosimulations.org/logs/677d5cadf8016f90e7cbc798?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5cadf8016f90e7cbc798)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01187-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01187-sbml-l3v2.xml)|pass|pass|pass|
other Cannot perform moiety conversion with non-constant stoichiometry. The species reference which refers to species M does not have the constant attribute set. To disable conserved moiety conversion, either a: set [Your roadrunner variable].conservedMoietyAnalysis = False, before calling the load('myfile.xml') method, or b: create a LoadSBMLOptions object, set the conservedMoieties property to False and use this as the second argument to the RoadRunner constructor or load() method, i.e. o = roadrunner.LoadSBMLOptions() o.conservedMoieties = False r = roadrunner.RoadRunner('myfile.xml', o)
|True|
FAIL[Download](https://api.biosimulations.org/results/677d5cb5f8016f90e7cbc7ad/download)
[Logs](https://api.biosimulations.org/logs/677d5cb5f8016f90e7cbc7ad?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5cb5f8016f90e7cbc7ad)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d5cb23e750b90a426648c/download)
[Logs](https://api.biosimulations.org/logs/677d5cb23e750b90a426648c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5cb23e750b90a426648c)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01188-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01188-sbml-l3v2.xml)|pass|pass|pass|
other Cannot perform moiety conversion with non-constant stoichiometry. The species reference which refers to species M does not have the constant attribute set. To disable conserved moiety conversion, either a: set [Your roadrunner variable].conservedMoietyAnalysis = False, before calling the load('myfile.xml') method, or b: create a LoadSBMLOptions object, set the conservedMoieties property to False and use this as the second argument to the RoadRunner constructor or load() method, i.e. o = roadrunner.LoadSBMLOptions() o.conservedMoieties = False r = roadrunner.RoadRunner('myfile.xml', o)
|True|
FAIL[Download](https://api.biosimulations.org/results/677d5cba67468f9f3fc5e13c/download)
[Logs](https://api.biosimulations.org/logs/677d5cba67468f9f3fc5e13c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5cba67468f9f3fc5e13c)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d5cb7f8016f90e7cbc7b2/download)
[Logs](https://api.biosimulations.org/logs/677d5cb7f8016f90e7cbc7b2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5cb7f8016f90e7cbc7b2)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01189-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01189-sbml-l3v2.xml)|pass|pass|pass|
other Cannot perform moiety conversion with non-constant stoichiometry. The species reference which refers to species M does not have the constant attribute set. To disable conserved moiety conversion, either a: set [Your roadrunner variable].conservedMoietyAnalysis = False, before calling the load('myfile.xml') method, or b: create a LoadSBMLOptions object, set the conservedMoieties property to False and use this as the second argument to the RoadRunner constructor or load() method, i.e. o = roadrunner.LoadSBMLOptions() o.conservedMoieties = False r = roadrunner.RoadRunner('myfile.xml', o)
|True|
FAIL[Download](https://api.biosimulations.org/results/677d5cc03e750b90a42664b3/download)
[Logs](https://api.biosimulations.org/logs/677d5cc03e750b90a42664b3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5cc03e750b90a42664b3)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d5cbd67468f9f3fc5e14a/download)
[Logs](https://api.biosimulations.org/logs/677d5cbd67468f9f3fc5e14a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5cbd67468f9f3fc5e14a)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01190-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01190-sbml-l3v2.xml)|pass|pass|pass|
other Cannot perform moiety conversion with non-constant stoichiometry. The species reference which refers to species M does not have the constant attribute set. To disable conserved moiety conversion, either a: set [Your roadrunner variable].conservedMoietyAnalysis = False, before calling the load('myfile.xml') method, or b: create a LoadSBMLOptions object, set the conservedMoieties property to False and use this as the second argument to the RoadRunner constructor or load() method, i.e. o = roadrunner.LoadSBMLOptions() o.conservedMoieties = False r = roadrunner.RoadRunner('myfile.xml', o)
|True|
FAIL[Download](https://api.biosimulations.org/results/677d5cc5f8016f90e7cbc7ea/download)
[Logs](https://api.biosimulations.org/logs/677d5cc5f8016f90e7cbc7ea?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5cc5f8016f90e7cbc7ea)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d5cc23e750b90a42664c0/download)
[Logs](https://api.biosimulations.org/logs/677d5cc23e750b90a42664c0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5cc23e750b90a42664c0)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01191-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01191-sbml-l3v2.xml)|pass|pass|pass|
other Cannot perform moiety conversion with non-constant stoichiometry. The species reference which refers to species M does not have the constant attribute set. To disable conserved moiety conversion, either a: set [Your roadrunner variable].conservedMoietyAnalysis = False, before calling the load('myfile.xml') method, or b: create a LoadSBMLOptions object, set the conservedMoieties property to False and use this as the second argument to the RoadRunner constructor or load() method, i.e. o = roadrunner.LoadSBMLOptions() o.conservedMoieties = False r = roadrunner.RoadRunner('myfile.xml', o)
|True|
FAIL[Download](https://api.biosimulations.org/results/677d5cca67468f9f3fc5e185/download)
[Logs](https://api.biosimulations.org/logs/677d5cca67468f9f3fc5e185?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5cca67468f9f3fc5e185)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d5cc7f8016f90e7cbc7f1/download)
[Logs](https://api.biosimulations.org/logs/677d5cc7f8016f90e7cbc7f1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5cc7f8016f90e7cbc7f1)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01192-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01192-sbml-l3v2.xml)|pass|pass|pass|
other Cannot perform moiety conversion with non-constant stoichiometry. The species reference which refers to species M does not have the constant attribute set. To disable conserved moiety conversion, either a: set [Your roadrunner variable].conservedMoietyAnalysis = False, before calling the load('myfile.xml') method, or b: create a LoadSBMLOptions object, set the conservedMoieties property to False and use this as the second argument to the RoadRunner constructor or load() method, i.e. o = roadrunner.LoadSBMLOptions() o.conservedMoieties = False r = roadrunner.RoadRunner('myfile.xml', o)
|True|
FAIL[Download](https://api.biosimulations.org/results/677d5ccff8016f90e7cbc80e/download)
[Logs](https://api.biosimulations.org/logs/677d5ccff8016f90e7cbc80e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ccff8016f90e7cbc80e)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d5ccdf8016f90e7cbc7fd/download)
[Logs](https://api.biosimulations.org/logs/677d5ccdf8016f90e7cbc7fd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ccdf8016f90e7cbc7fd)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01193-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01193-sbml-l3v2.xml)|pass|pass|pass|
other Cannot perform moiety conversion with non-constant stoichiometry. The species reference which refers to species M does not have the constant attribute set. To disable conserved moiety conversion, either a: set [Your roadrunner variable].conservedMoietyAnalysis = False, before calling the load('myfile.xml') method, or b: create a LoadSBMLOptions object, set the conservedMoieties property to False and use this as the second argument to the RoadRunner constructor or load() method, i.e. o = roadrunner.LoadSBMLOptions() o.conservedMoieties = False r = roadrunner.RoadRunner('myfile.xml', o)
|True|
FAIL[Download](https://api.biosimulations.org/results/677d5cd5f8016f90e7cbc830/download)
[Logs](https://api.biosimulations.org/logs/677d5cd5f8016f90e7cbc830?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5cd5f8016f90e7cbc830)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d5cd2f8016f90e7cbc818/download)
[Logs](https://api.biosimulations.org/logs/677d5cd2f8016f90e7cbc818?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5cd2f8016f90e7cbc818)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01194-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01194-sbml-l3v2.xml)|pass|pass|pass|
other Cannot perform moiety conversion with non-constant stoichiometry. The species reference which refers to species M does not have the constant attribute set. To disable conserved moiety conversion, either a: set [Your roadrunner variable].conservedMoietyAnalysis = False, before calling the load('myfile.xml') method, or b: create a LoadSBMLOptions object, set the conservedMoieties property to False and use this as the second argument to the RoadRunner constructor or load() method, i.e. o = roadrunner.LoadSBMLOptions() o.conservedMoieties = False r = roadrunner.RoadRunner('myfile.xml', o)
|True|
FAIL[Download](https://api.biosimulations.org/results/677d5cdbf8016f90e7cbc848/download)
[Logs](https://api.biosimulations.org/logs/677d5cdbf8016f90e7cbc848?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5cdbf8016f90e7cbc848)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d5cd8f8016f90e7cbc839/download)
[Logs](https://api.biosimulations.org/logs/677d5cd8f8016f90e7cbc839?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5cd8f8016f90e7cbc839)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01195-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01195-sbml-l3v2.xml)|pass|pass|pass|
other Cannot perform moiety conversion with non-constant stoichiometry. The species reference which refers to species M does not have the constant attribute set. To disable conserved moiety conversion, either a: set [Your roadrunner variable].conservedMoietyAnalysis = False, before calling the load('myfile.xml') method, or b: create a LoadSBMLOptions object, set the conservedMoieties property to False and use this as the second argument to the RoadRunner constructor or load() method, i.e. o = roadrunner.LoadSBMLOptions() o.conservedMoieties = False r = roadrunner.RoadRunner('myfile.xml', o)
|True|
FAIL[Download](https://api.biosimulations.org/results/677d5ce067468f9f3fc5e1ea/download)
[Logs](https://api.biosimulations.org/logs/677d5ce067468f9f3fc5e1ea?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ce067468f9f3fc5e1ea)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d5cdd67468f9f3fc5e1df/download)
[Logs](https://api.biosimulations.org/logs/677d5cdd67468f9f3fc5e1df?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5cdd67468f9f3fc5e1df)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01196-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01196-sbml-l3v2.xml)|pass|pass|pass|
other Cannot perform moiety conversion with non-constant stoichiometry. The species reference which refers to species M does not have the constant attribute set. To disable conserved moiety conversion, either a: set [Your roadrunner variable].conservedMoietyAnalysis = False, before calling the load('myfile.xml') method, or b: create a LoadSBMLOptions object, set the conservedMoieties property to False and use this as the second argument to the RoadRunner constructor or load() method, i.e. o = roadrunner.LoadSBMLOptions() o.conservedMoieties = False r = roadrunner.RoadRunner('myfile.xml', o)
|True|
FAIL[Download](https://api.biosimulations.org/results/677d5ce8f8016f90e7cbc87e/download)
[Logs](https://api.biosimulations.org/logs/677d5ce8f8016f90e7cbc87e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ce8f8016f90e7cbc87e)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d5ce5f8016f90e7cbc86c/download)
[Logs](https://api.biosimulations.org/logs/677d5ce5f8016f90e7cbc86c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ce5f8016f90e7cbc86c)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01197-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01197-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ced67468f9f3fc5e22b/download)
[Logs](https://api.biosimulations.org/logs/677d5ced67468f9f3fc5e22b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ced67468f9f3fc5e22b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5cebf8016f90e7cbc889/download)
[Logs](https://api.biosimulations.org/logs/677d5cebf8016f90e7cbc889?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5cebf8016f90e7cbc889)

HTTP response: 201| +|[01198-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01198-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5cf23e750b90a4266589/download)
[Logs](https://api.biosimulations.org/logs/677d5cf23e750b90a4266589?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5cf23e750b90a4266589)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5cf067468f9f3fc5e240/download)
[Logs](https://api.biosimulations.org/logs/677d5cf067468f9f3fc5e240?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5cf067468f9f3fc5e240)

HTTP response: 201| +|[01199-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01199-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5cf767468f9f3fc5e24e/download)
[Logs](https://api.biosimulations.org/logs/677d5cf767468f9f3fc5e24e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5cf767468f9f3fc5e24e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5cf53e750b90a4266591/download)
[Logs](https://api.biosimulations.org/logs/677d5cf53e750b90a4266591?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5cf53e750b90a4266591)

HTTP response: 201| +|[01200-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01200-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5cfcf8016f90e7cbc8cb/download)
[Logs](https://api.biosimulations.org/logs/677d5cfcf8016f90e7cbc8cb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5cfcf8016f90e7cbc8cb)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5cfa3e750b90a42665a1/download)
[Logs](https://api.biosimulations.org/logs/677d5cfa3e750b90a42665a1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5cfa3e750b90a42665a1)

HTTP response: 201| +|[01201-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01201-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d0267468f9f3fc5e27a/download)
[Logs](https://api.biosimulations.org/logs/677d5d0267468f9f3fc5e27a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d0267468f9f3fc5e27a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5cff67468f9f3fc5e26e/download)
[Logs](https://api.biosimulations.org/logs/677d5cff67468f9f3fc5e26e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5cff67468f9f3fc5e26e)

HTTP response: 201| +|[01202-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01202-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d07f8016f90e7cbc8fc/download)
[Logs](https://api.biosimulations.org/logs/677d5d07f8016f90e7cbc8fc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d07f8016f90e7cbc8fc)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d05f8016f90e7cbc8e3/download)
[Logs](https://api.biosimulations.org/logs/677d5d05f8016f90e7cbc8e3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d05f8016f90e7cbc8e3)

HTTP response: 201| +|[01203-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01203-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d0cf8016f90e7cbc908/download)
[Logs](https://api.biosimulations.org/logs/677d5d0cf8016f90e7cbc908?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d0cf8016f90e7cbc908)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d0a3e750b90a42665df/download)
[Logs](https://api.biosimulations.org/logs/677d5d0a3e750b90a42665df?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d0a3e750b90a42665df)

HTTP response: 201| +|[01204-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01204-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d11f8016f90e7cbc91a/download)
[Logs](https://api.biosimulations.org/logs/677d5d11f8016f90e7cbc91a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d11f8016f90e7cbc91a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d0f3e750b90a42665e6/download)
[Logs](https://api.biosimulations.org/logs/677d5d0f3e750b90a42665e6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d0f3e750b90a42665e6)

HTTP response: 201| +|[01205-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01205-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d1767468f9f3fc5e2d3/download)
[Logs](https://api.biosimulations.org/logs/677d5d1767468f9f3fc5e2d3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d1767468f9f3fc5e2d3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d143e750b90a4266600/download)
[Logs](https://api.biosimulations.org/logs/677d5d143e750b90a4266600?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d143e750b90a4266600)

HTTP response: 201| +|[01206-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01206-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d1c67468f9f3fc5e2eb/download)
[Logs](https://api.biosimulations.org/logs/677d5d1c67468f9f3fc5e2eb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d1c67468f9f3fc5e2eb)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d1a3e750b90a426661d/download)
[Logs](https://api.biosimulations.org/logs/677d5d1a3e750b90a426661d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d1a3e750b90a426661d)

HTTP response: 201| +|[01207-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01207-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d213e750b90a4266632/download)
[Logs](https://api.biosimulations.org/logs/677d5d213e750b90a4266632?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d213e750b90a4266632)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d1ff8016f90e7cbc95f/download)
[Logs](https://api.biosimulations.org/logs/677d5d1ff8016f90e7cbc95f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d1ff8016f90e7cbc95f)

HTTP response: 201| +|[01208-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01208-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d2667468f9f3fc5e313/download)
[Logs](https://api.biosimulations.org/logs/677d5d2667468f9f3fc5e313?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d2667468f9f3fc5e313)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d24f8016f90e7cbc970/download)
[Logs](https://api.biosimulations.org/logs/677d5d24f8016f90e7cbc970?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d24f8016f90e7cbc970)

HTTP response: 201| +|[01209-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01209-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d2c67468f9f3fc5e327/download)
[Logs](https://api.biosimulations.org/logs/677d5d2c67468f9f3fc5e327?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d2c67468f9f3fc5e327)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d2967468f9f3fc5e31d/download)
[Logs](https://api.biosimulations.org/logs/677d5d2967468f9f3fc5e31d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d2967468f9f3fc5e31d)

HTTP response: 201| +|[01210-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01210-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d32f8016f90e7cbc9af/download)
[Logs](https://api.biosimulations.org/logs/677d5d32f8016f90e7cbc9af?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d32f8016f90e7cbc9af)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d2ff8016f90e7cbc9a6/download)
[Logs](https://api.biosimulations.org/logs/677d5d2ff8016f90e7cbc9a6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d2ff8016f90e7cbc9a6)

HTTP response: 201| +|[01211-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01211-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d3767468f9f3fc5e347/download)
[Logs](https://api.biosimulations.org/logs/677d5d3767468f9f3fc5e347?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d3767468f9f3fc5e347)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d353e750b90a4266685/download)
[Logs](https://api.biosimulations.org/logs/677d5d353e750b90a4266685?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d353e750b90a4266685)

HTTP response: 201| +|[01212-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01212-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d3df8016f90e7cbc9ec/download)
[Logs](https://api.biosimulations.org/logs/677d5d3df8016f90e7cbc9ec?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d3df8016f90e7cbc9ec)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d3a67468f9f3fc5e357/download)
[Logs](https://api.biosimulations.org/logs/677d5d3a67468f9f3fc5e357?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d3a67468f9f3fc5e357)

HTTP response: 201| +|[01213-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01213-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d42f8016f90e7cbc9f6/download)
[Logs](https://api.biosimulations.org/logs/677d5d42f8016f90e7cbc9f6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d42f8016f90e7cbc9f6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d3ff8016f90e7cbc9ef/download)
[Logs](https://api.biosimulations.org/logs/677d5d3ff8016f90e7cbc9ef?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d3ff8016f90e7cbc9ef)

HTTP response: 201| +|[01214-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01214-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d4867468f9f3fc5e389/download)
[Logs](https://api.biosimulations.org/logs/677d5d4867468f9f3fc5e389?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d4867468f9f3fc5e389)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d453e750b90a42666b7/download)
[Logs](https://api.biosimulations.org/logs/677d5d453e750b90a42666b7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d453e750b90a42666b7)

HTTP response: 201| +|[01215-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01215-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d4df8016f90e7cbca1d/download)
[Logs](https://api.biosimulations.org/logs/677d5d4df8016f90e7cbca1d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d4df8016f90e7cbca1d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d4bf8016f90e7cbca18/download)
[Logs](https://api.biosimulations.org/logs/677d5d4bf8016f90e7cbca18?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d4bf8016f90e7cbca18)

HTTP response: 201| +|[01216-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01216-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d52f8016f90e7cbca2e/download)
[Logs](https://api.biosimulations.org/logs/677d5d52f8016f90e7cbca2e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d52f8016f90e7cbca2e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d503e750b90a42666ea/download)
[Logs](https://api.biosimulations.org/logs/677d5d503e750b90a42666ea?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d503e750b90a42666ea)

HTTP response: 201| +|[01217-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01217-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d57f8016f90e7cbca44/download)
[Logs](https://api.biosimulations.org/logs/677d5d57f8016f90e7cbca44?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d57f8016f90e7cbca44)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d55f8016f90e7cbca3f/download)
[Logs](https://api.biosimulations.org/logs/677d5d55f8016f90e7cbca3f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d55f8016f90e7cbca3f)

HTTP response: 201| +|[01218-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01218-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d5cf8016f90e7cbca59/download)
[Logs](https://api.biosimulations.org/logs/677d5d5cf8016f90e7cbca59?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d5cf8016f90e7cbca59)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d5af8016f90e7cbca4a/download)
[Logs](https://api.biosimulations.org/logs/677d5d5af8016f90e7cbca4a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d5af8016f90e7cbca4a)

HTTP response: 201| +|[01219-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01219-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d61f8016f90e7cbca6a/download)
[Logs](https://api.biosimulations.org/logs/677d5d61f8016f90e7cbca6a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d61f8016f90e7cbca6a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d5e3e750b90a4266735/download)
[Logs](https://api.biosimulations.org/logs/677d5d5e3e750b90a4266735?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d5e3e750b90a4266735)

HTTP response: 201| +|[01220-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01220-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d6667468f9f3fc5e3ff/download)
[Logs](https://api.biosimulations.org/logs/677d5d6667468f9f3fc5e3ff?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d6667468f9f3fc5e3ff)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d643e750b90a4266744/download)
[Logs](https://api.biosimulations.org/logs/677d5d643e750b90a4266744?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d643e750b90a4266744)

HTTP response: 201| +|[01221-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01221-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d6bf8016f90e7cbca92/download)
[Logs](https://api.biosimulations.org/logs/677d5d6bf8016f90e7cbca92?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d6bf8016f90e7cbca92)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d68f8016f90e7cbca8a/download)
[Logs](https://api.biosimulations.org/logs/677d5d68f8016f90e7cbca8a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d68f8016f90e7cbca8a)

HTTP response: 201| +|[01222-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01222-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d713e750b90a426677d/download)
[Logs](https://api.biosimulations.org/logs/677d5d713e750b90a426677d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d713e750b90a426677d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d6e3e750b90a4266770/download)
[Logs](https://api.biosimulations.org/logs/677d5d6e3e750b90a4266770?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d6e3e750b90a4266770)

HTTP response: 201| +|[01223-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01223-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d763e750b90a4266790/download)
[Logs](https://api.biosimulations.org/logs/677d5d763e750b90a4266790?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d763e750b90a4266790)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d743e750b90a426678b/download)
[Logs](https://api.biosimulations.org/logs/677d5d743e750b90a426678b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d743e750b90a426678b)

HTTP response: 201| +|[01224-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01224-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d7b3e750b90a426679d/download)
[Logs](https://api.biosimulations.org/logs/677d5d7b3e750b90a426679d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d7b3e750b90a426679d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d7967468f9f3fc5e455/download)
[Logs](https://api.biosimulations.org/logs/677d5d7967468f9f3fc5e455?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d7967468f9f3fc5e455)

HTTP response: 201| +|[01225-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01225-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d80f8016f90e7cbcad6/download)
[Logs](https://api.biosimulations.org/logs/677d5d80f8016f90e7cbcad6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d80f8016f90e7cbcad6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d7e3e750b90a42667a3/download)
[Logs](https://api.biosimulations.org/logs/677d5d7e3e750b90a42667a3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d7e3e750b90a42667a3)

HTTP response: 201| +|[01226-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01226-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d863e750b90a42667c4/download)
[Logs](https://api.biosimulations.org/logs/677d5d863e750b90a42667c4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d863e750b90a42667c4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d83f8016f90e7cbcadb/download)
[Logs](https://api.biosimulations.org/logs/677d5d83f8016f90e7cbcadb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d83f8016f90e7cbcadb)

HTTP response: 201| +|[01227-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01227-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d8a3e750b90a42667dc/download)
[Logs](https://api.biosimulations.org/logs/677d5d8a3e750b90a42667dc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d8a3e750b90a42667dc)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d88f8016f90e7cbcafc/download)
[Logs](https://api.biosimulations.org/logs/677d5d88f8016f90e7cbcafc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d88f8016f90e7cbcafc)

HTTP response: 201| +|[01228-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01228-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d8f67468f9f3fc5e4b3/download)
[Logs](https://api.biosimulations.org/logs/677d5d8f67468f9f3fc5e4b3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d8f67468f9f3fc5e4b3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d8d3e750b90a42667ed/download)
[Logs](https://api.biosimulations.org/logs/677d5d8d3e750b90a42667ed?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d8d3e750b90a42667ed)

HTTP response: 201| +|[01229-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01229-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d9567468f9f3fc5e4d8/download)
[Logs](https://api.biosimulations.org/logs/677d5d9567468f9f3fc5e4d8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d9567468f9f3fc5e4d8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d9367468f9f3fc5e4be/download)
[Logs](https://api.biosimulations.org/logs/677d5d9367468f9f3fc5e4be?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d9367468f9f3fc5e4be)

HTTP response: 201| +|[01230-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01230-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5d9af8016f90e7cbcb3f/download)
[Logs](https://api.biosimulations.org/logs/677d5d9af8016f90e7cbcb3f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d9af8016f90e7cbcb3f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d983e750b90a4266805/download)
[Logs](https://api.biosimulations.org/logs/677d5d983e750b90a4266805?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d983e750b90a4266805)

HTTP response: 201| +|[01231-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01231-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5da1f8016f90e7cbcb57/download)
[Logs](https://api.biosimulations.org/logs/677d5da1f8016f90e7cbcb57?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5da1f8016f90e7cbcb57)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5d9ef8016f90e7cbcb50/download)
[Logs](https://api.biosimulations.org/logs/677d5d9ef8016f90e7cbcb50?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5d9ef8016f90e7cbcb50)

HTTP response: 201| +|[01232-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01232-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5da667468f9f3fc5e509/download)
[Logs](https://api.biosimulations.org/logs/677d5da667468f9f3fc5e509?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5da667468f9f3fc5e509)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5da43e750b90a426683b/download)
[Logs](https://api.biosimulations.org/logs/677d5da43e750b90a426683b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5da43e750b90a426683b)

HTTP response: 201| +|[01233-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01233-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5daa67468f9f3fc5e516/download)
[Logs](https://api.biosimulations.org/logs/677d5daa67468f9f3fc5e516?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5daa67468f9f3fc5e516)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5da83e750b90a426684f/download)
[Logs](https://api.biosimulations.org/logs/677d5da83e750b90a426684f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5da83e750b90a426684f)

HTTP response: 201| +|[01234-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01234-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5daf3e750b90a4266873/download)
[Logs](https://api.biosimulations.org/logs/677d5daf3e750b90a4266873?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5daf3e750b90a4266873)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5dad67468f9f3fc5e536/download)
[Logs](https://api.biosimulations.org/logs/677d5dad67468f9f3fc5e536?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5dad67468f9f3fc5e536)

HTTP response: 201| +|[01235-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01235-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5db43e750b90a4266882/download)
[Logs](https://api.biosimulations.org/logs/677d5db43e750b90a4266882?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5db43e750b90a4266882)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5db2f8016f90e7cbcb82/download)
[Logs](https://api.biosimulations.org/logs/677d5db2f8016f90e7cbcb82?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5db2f8016f90e7cbcb82)

HTTP response: 201| +|[01236-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01236-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5db9f8016f90e7cbcba8/download)
[Logs](https://api.biosimulations.org/logs/677d5db9f8016f90e7cbcba8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5db9f8016f90e7cbcba8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5db767468f9f3fc5e55c/download)
[Logs](https://api.biosimulations.org/logs/677d5db767468f9f3fc5e55c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5db767468f9f3fc5e55c)

HTTP response: 201| +|[01237-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01237-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5dbf67468f9f3fc5e58e/download)
[Logs](https://api.biosimulations.org/logs/677d5dbf67468f9f3fc5e58e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5dbf67468f9f3fc5e58e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5dbcf8016f90e7cbcbb3/download)
[Logs](https://api.biosimulations.org/logs/677d5dbcf8016f90e7cbcbb3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5dbcf8016f90e7cbcbb3)

HTTP response: 201| +|[01238-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01238-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5dc567468f9f3fc5e5a5/download)
[Logs](https://api.biosimulations.org/logs/677d5dc567468f9f3fc5e5a5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5dc567468f9f3fc5e5a5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5dc267468f9f3fc5e59b/download)
[Logs](https://api.biosimulations.org/logs/677d5dc267468f9f3fc5e59b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5dc267468f9f3fc5e59b)

HTTP response: 201| +|[01239-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01239-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5dca67468f9f3fc5e5ad/download)
[Logs](https://api.biosimulations.org/logs/677d5dca67468f9f3fc5e5ad?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5dca67468f9f3fc5e5ad)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5dc73e750b90a42668e3/download)
[Logs](https://api.biosimulations.org/logs/677d5dc73e750b90a42668e3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5dc73e750b90a42668e3)

HTTP response: 201| +|[01240-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01240-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5dd13e750b90a426690b/download)
[Logs](https://api.biosimulations.org/logs/677d5dd13e750b90a426690b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5dd13e750b90a426690b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5dcef8016f90e7cbcbfe/download)
[Logs](https://api.biosimulations.org/logs/677d5dcef8016f90e7cbcbfe?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5dcef8016f90e7cbcbfe)

HTTP response: 201| +|[01241-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01241-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5dd867468f9f3fc5e5f7/download)
[Logs](https://api.biosimulations.org/logs/677d5dd867468f9f3fc5e5f7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5dd867468f9f3fc5e5f7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5dd5f8016f90e7cbcc19/download)
[Logs](https://api.biosimulations.org/logs/677d5dd5f8016f90e7cbcc19?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5dd5f8016f90e7cbcc19)

HTTP response: 201| +|[01242-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01242-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ddd3e750b90a4266935/download)
[Logs](https://api.biosimulations.org/logs/677d5ddd3e750b90a4266935?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ddd3e750b90a4266935)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5ddb3e750b90a426692d/download)
[Logs](https://api.biosimulations.org/logs/677d5ddb3e750b90a426692d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ddb3e750b90a426692d)

HTTP response: 201| +|[01243-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01243-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5de267468f9f3fc5e61c/download)
[Logs](https://api.biosimulations.org/logs/677d5de267468f9f3fc5e61c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5de267468f9f3fc5e61c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5de0f8016f90e7cbcc44/download)
[Logs](https://api.biosimulations.org/logs/677d5de0f8016f90e7cbcc44?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5de0f8016f90e7cbcc44)

HTTP response: 201| +|[01244-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01244-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5de83e750b90a4266955/download)
[Logs](https://api.biosimulations.org/logs/677d5de83e750b90a4266955?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5de83e750b90a4266955)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5de5f8016f90e7cbcc62/download)
[Logs](https://api.biosimulations.org/logs/677d5de5f8016f90e7cbcc62?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5de5f8016f90e7cbcc62)

HTTP response: 201| +|[01245-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01245-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ded3e750b90a4266968/download)
[Logs](https://api.biosimulations.org/logs/677d5ded3e750b90a4266968?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ded3e750b90a4266968)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5deb3e750b90a4266960/download)
[Logs](https://api.biosimulations.org/logs/677d5deb3e750b90a4266960?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5deb3e750b90a4266960)

HTTP response: 201| +|[01246-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01246-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5df43e750b90a426697a/download)
[Logs](https://api.biosimulations.org/logs/677d5df43e750b90a426697a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5df43e750b90a426697a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5df167468f9f3fc5e660/download)
[Logs](https://api.biosimulations.org/logs/677d5df167468f9f3fc5e660?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5df167468f9f3fc5e660)

HTTP response: 201| +|[01247-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01247-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5dfa3e750b90a4266998/download)
[Logs](https://api.biosimulations.org/logs/677d5dfa3e750b90a4266998?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5dfa3e750b90a4266998)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5df867468f9f3fc5e67d/download)
[Logs](https://api.biosimulations.org/logs/677d5df867468f9f3fc5e67d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5df867468f9f3fc5e67d)

HTTP response: 201| +|[01248-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01248-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5e0067468f9f3fc5e697/download)
[Logs](https://api.biosimulations.org/logs/677d5e0067468f9f3fc5e697?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e0067468f9f3fc5e697)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf p1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5dfdf8016f90e7cbcca5/download)
[Logs](https://api.biosimulations.org/logs/677d5dfdf8016f90e7cbcca5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5dfdf8016f90e7cbcca5)

HTTP response: 201| +|[01249-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01249-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5e053e750b90a42669b1/download)
[Logs](https://api.biosimulations.org/logs/677d5e053e750b90a42669b1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e053e750b90a42669b1)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf p1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5e0267468f9f3fc5e69d/download)
[Logs](https://api.biosimulations.org/logs/677d5e0267468f9f3fc5e69d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e0267468f9f3fc5e69d)

HTTP response: 201| +|[01250-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01250-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5e0af8016f90e7cbccd5/download)
[Logs](https://api.biosimulations.org/logs/677d5e0af8016f90e7cbccd5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e0af8016f90e7cbccd5)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf p1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5e073e750b90a42669ba/download)
[Logs](https://api.biosimulations.org/logs/677d5e073e750b90a42669ba?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e073e750b90a42669ba)

HTTP response: 201| +|[01251-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01251-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5e10f8016f90e7cbcce4/download)
[Logs](https://api.biosimulations.org/logs/677d5e10f8016f90e7cbcce4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e10f8016f90e7cbcce4)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf S1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5e0df8016f90e7cbccdd/download)
[Logs](https://api.biosimulations.org/logs/677d5e0df8016f90e7cbccdd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e0df8016f90e7cbccdd)

HTTP response: 201| +|[01252-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01252-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5e17f8016f90e7cbcd0f/download)
[Logs](https://api.biosimulations.org/logs/677d5e17f8016f90e7cbcd0f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e17f8016f90e7cbcd0f)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf S1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5e14f8016f90e7cbccef/download)
[Logs](https://api.biosimulations.org/logs/677d5e14f8016f90e7cbccef?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e14f8016f90e7cbccef)

HTTP response: 201| +|[01253-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01253-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5e1d67468f9f3fc5e71b/download)
[Logs](https://api.biosimulations.org/logs/677d5e1d67468f9f3fc5e71b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e1d67468f9f3fc5e71b)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf S1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5e1a67468f9f3fc5e706/download)
[Logs](https://api.biosimulations.org/logs/677d5e1a67468f9f3fc5e706?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e1a67468f9f3fc5e706)

HTTP response: 201| +|[01254-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01254-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5e2267468f9f3fc5e727/download)
[Logs](https://api.biosimulations.org/logs/677d5e2267468f9f3fc5e727?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e2267468f9f3fc5e727)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf S1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5e1f3e750b90a4266a1b/download)
[Logs](https://api.biosimulations.org/logs/677d5e1f3e750b90a4266a1b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e1f3e750b90a4266a1b)

HTTP response: 201| +|[01255-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01255-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5e273e750b90a4266a31/download)
[Logs](https://api.biosimulations.org/logs/677d5e273e750b90a4266a31?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e273e750b90a4266a31)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf p1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5e253e750b90a4266a27/download)
[Logs](https://api.biosimulations.org/logs/677d5e253e750b90a4266a27?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e253e750b90a4266a27)

HTTP response: 201| +|[01256-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01256-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5e2ef8016f90e7cbcd50/download)
[Logs](https://api.biosimulations.org/logs/677d5e2ef8016f90e7cbcd50?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e2ef8016f90e7cbcd50)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf S1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5e2af8016f90e7cbcd46/download)
[Logs](https://api.biosimulations.org/logs/677d5e2af8016f90e7cbcd46?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e2af8016f90e7cbcd46)

HTTP response: 201| +|[01257-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01257-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5e3367468f9f3fc5e76d/download)
[Logs](https://api.biosimulations.org/logs/677d5e3367468f9f3fc5e76d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e3367468f9f3fc5e76d)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5e3167468f9f3fc5e764/download)
[Logs](https://api.biosimulations.org/logs/677d5e3167468f9f3fc5e764?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e3167468f9f3fc5e764)

HTTP response: 201| +|[01258-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01258-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5e38f8016f90e7cbcd76/download)
[Logs](https://api.biosimulations.org/logs/677d5e38f8016f90e7cbcd76?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e38f8016f90e7cbcd76)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf p1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5e353e750b90a4266a56/download)
[Logs](https://api.biosimulations.org/logs/677d5e353e750b90a4266a56?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e353e750b90a4266a56)

HTTP response: 201| +|[01259-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01259-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5e3e67468f9f3fc5e799/download)
[Logs](https://api.biosimulations.org/logs/677d5e3e67468f9f3fc5e799?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e3e67468f9f3fc5e799)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf p1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5e3b67468f9f3fc5e794/download)
[Logs](https://api.biosimulations.org/logs/677d5e3b67468f9f3fc5e794?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e3b67468f9f3fc5e794)

HTTP response: 201| +|[01260-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01260-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5e443e750b90a4266a9c/download)
[Logs](https://api.biosimulations.org/logs/677d5e443e750b90a4266a9c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e443e750b90a4266a9c)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf p1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5e413e750b90a4266a97/download)
[Logs](https://api.biosimulations.org/logs/677d5e413e750b90a4266a97?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e413e750b90a4266a97)

HTTP response: 201| +|[01261-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01261-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5e493e750b90a4266aad/download)
[Logs](https://api.biosimulations.org/logs/677d5e493e750b90a4266aad?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e493e750b90a4266aad)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf p1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5e4667468f9f3fc5e7ac/download)
[Logs](https://api.biosimulations.org/logs/677d5e4667468f9f3fc5e7ac?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e4667468f9f3fc5e7ac)

HTTP response: 201| +|[01262-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01262-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5e4e3e750b90a4266ad7/download)
[Logs](https://api.biosimulations.org/logs/677d5e4e3e750b90a4266ad7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e4e3e750b90a4266ad7)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf p1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5e4bf8016f90e7cbcdcd/download)
[Logs](https://api.biosimulations.org/logs/677d5e4bf8016f90e7cbcdcd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e4bf8016f90e7cbcdcd)

HTTP response: 201| +|[01263-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01263-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5e543e750b90a4266aee/download)
[Logs](https://api.biosimulations.org/logs/677d5e543e750b90a4266aee?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e543e750b90a4266aee)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf p1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5e513e750b90a4266ae1/download)
[Logs](https://api.biosimulations.org/logs/677d5e513e750b90a4266ae1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e513e750b90a4266ae1)

HTTP response: 201| +|[01264-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01264-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5e5af8016f90e7cbcdff/download)
[Logs](https://api.biosimulations.org/logs/677d5e5af8016f90e7cbcdff?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e5af8016f90e7cbcdff)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf p1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5e5767468f9f3fc5e803/download)
[Logs](https://api.biosimulations.org/logs/677d5e5767468f9f3fc5e803?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e5767468f9f3fc5e803)

HTTP response: 201| +|[01265-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01265-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5e603e750b90a4266b26/download)
[Logs](https://api.biosimulations.org/logs/677d5e603e750b90a4266b26?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e603e750b90a4266b26)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf p1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5e5d3e750b90a4266b1f/download)
[Logs](https://api.biosimulations.org/logs/677d5e5d3e750b90a4266b1f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e5d3e750b90a4266b1f)

HTTP response: 201| +|[01266-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01266-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5e6667468f9f3fc5e829/download)
[Logs](https://api.biosimulations.org/logs/677d5e6667468f9f3fc5e829?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e6667468f9f3fc5e829)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf p1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5e64f8016f90e7cbce1d/download)
[Logs](https://api.biosimulations.org/logs/677d5e64f8016f90e7cbce1d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e64f8016f90e7cbce1d)

HTTP response: 201| +|[01267-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01267-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5e6c67468f9f3fc5e845/download)
[Logs](https://api.biosimulations.org/logs/677d5e6c67468f9f3fc5e845?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e6c67468f9f3fc5e845)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf p1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5e6967468f9f3fc5e83d/download)
[Logs](https://api.biosimulations.org/logs/677d5e6967468f9f3fc5e83d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e6967468f9f3fc5e83d)

HTTP response: 201| +|[01268-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01268-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5e713e750b90a4266b57/download)
[Logs](https://api.biosimulations.org/logs/677d5e713e750b90a4266b57?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e713e750b90a4266b57)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5e6ff8016f90e7cbce49/download)
[Logs](https://api.biosimulations.org/logs/677d5e6ff8016f90e7cbce49?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e6ff8016f90e7cbce49)

HTTP response: 201| +|[01269-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01269-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5e7667468f9f3fc5e85d/download)
[Logs](https://api.biosimulations.org/logs/677d5e7667468f9f3fc5e85d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e7667468f9f3fc5e85d)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf p1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5e743e750b90a4266b67/download)
[Logs](https://api.biosimulations.org/logs/677d5e743e750b90a4266b67?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e743e750b90a4266b67)

HTTP response: 201| +|[01270-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01270-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5e7bf8016f90e7cbce76/download)
[Logs](https://api.biosimulations.org/logs/677d5e7bf8016f90e7cbce76?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e7bf8016f90e7cbce76)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf p1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5e793e750b90a4266b83/download)
[Logs](https://api.biosimulations.org/logs/677d5e793e750b90a4266b83?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e793e750b90a4266b83)

HTTP response: 201| +|[01271-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01271-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5e813e750b90a4266b95/download)
[Logs](https://api.biosimulations.org/logs/677d5e813e750b90a4266b95?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e813e750b90a4266b95)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5e7f67468f9f3fc5e886/download)
[Logs](https://api.biosimulations.org/logs/677d5e7f67468f9f3fc5e886?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e7f67468f9f3fc5e886)

HTTP response: 201| +|[01272-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01272-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5e863e750b90a4266bae/download)
[Logs](https://api.biosimulations.org/logs/677d5e863e750b90a4266bae?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e863e750b90a4266bae)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5e843e750b90a4266ba4/download)
[Logs](https://api.biosimulations.org/logs/677d5e843e750b90a4266ba4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e843e750b90a4266ba4)

HTTP response: 201| +|[01273-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01273-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5e8b3e750b90a4266bc2/download)
[Logs](https://api.biosimulations.org/logs/677d5e8b3e750b90a4266bc2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e8b3e750b90a4266bc2)

HTTP response: 201|
FAIL[Download](https://api.biosimulations.org/results/677d5e893e750b90a4266bb9/download)
[Logs](https://api.biosimulations.org/logs/677d5e893e750b90a4266bb9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e893e750b90a4266bb9)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :("SBML '/tmp/tmpxynsbn6j/./01273-sbml-l3v2.xml' could not be imported into COPASI;\n\t", >)```

Exception type: ```CombineArchiveExecutionError```| +|[01274-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01274-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5e90f8016f90e7cbcee0/download)
[Logs](https://api.biosimulations.org/logs/677d5e90f8016f90e7cbcee0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e90f8016f90e7cbcee0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5e8e3e750b90a4266bda/download)
[Logs](https://api.biosimulations.org/logs/677d5e8e3e750b90a4266bda?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e8e3e750b90a4266bda)

HTTP response: 201| +|[01275-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01275-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5e9567468f9f3fc5e8da/download)
[Logs](https://api.biosimulations.org/logs/677d5e9567468f9f3fc5e8da?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e9567468f9f3fc5e8da)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5e923e750b90a4266bf6/download)
[Logs](https://api.biosimulations.org/logs/677d5e923e750b90a4266bf6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e923e750b90a4266bf6)

HTTP response: 201| +|[01276-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01276-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5e9967468f9f3fc5e8f0/download)
[Logs](https://api.biosimulations.org/logs/677d5e9967468f9f3fc5e8f0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e9967468f9f3fc5e8f0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5e97f8016f90e7cbcefc/download)
[Logs](https://api.biosimulations.org/logs/677d5e97f8016f90e7cbcefc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e97f8016f90e7cbcefc)

HTTP response: 201| +|[01277-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01277-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5e9e67468f9f3fc5e8fe/download)
[Logs](https://api.biosimulations.org/logs/677d5e9e67468f9f3fc5e8fe?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e9e67468f9f3fc5e8fe)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5e9c3e750b90a4266c13/download)
[Logs](https://api.biosimulations.org/logs/677d5e9c3e750b90a4266c13?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5e9c3e750b90a4266c13)

HTTP response: 201| +|[01278-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01278-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ea33e750b90a4266c3a/download)
[Logs](https://api.biosimulations.org/logs/677d5ea33e750b90a4266c3a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ea33e750b90a4266c3a)

HTTP response: 201|
FAIL[Download](https://api.biosimulations.org/results/677d5ea1f8016f90e7cbcf24/download)
[Logs](https://api.biosimulations.org/logs/677d5ea1f8016f90e7cbcf24?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ea1f8016f90e7cbcf24)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :("SBML '/tmp/tmpfr_s4d9u/./01278-sbml-l3v2.xml' could not be imported into COPASI;\n\t", >)```

Exception type: ```CombineArchiveExecutionError```| +|[01279-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01279-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ea867468f9f3fc5e920/download)
[Logs](https://api.biosimulations.org/logs/677d5ea867468f9f3fc5e920?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ea867468f9f3fc5e920)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5ea63e750b90a4266c47/download)
[Logs](https://api.biosimulations.org/logs/677d5ea63e750b90a4266c47?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ea63e750b90a4266c47)

HTTP response: 201| +|[01280-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01280-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5eadf8016f90e7cbcf5c/download)
[Logs](https://api.biosimulations.org/logs/677d5eadf8016f90e7cbcf5c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5eadf8016f90e7cbcf5c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5eab67468f9f3fc5e933/download)
[Logs](https://api.biosimulations.org/logs/677d5eab67468f9f3fc5e933?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5eab67468f9f3fc5e933)

HTTP response: 201| +|[01281-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01281-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5eb23e750b90a4266c74/download)
[Logs](https://api.biosimulations.org/logs/677d5eb23e750b90a4266c74?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5eb23e750b90a4266c74)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5eb0f8016f90e7cbcf68/download)
[Logs](https://api.biosimulations.org/logs/677d5eb0f8016f90e7cbcf68?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5eb0f8016f90e7cbcf68)

HTTP response: 201| +|[01282-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01282-sbml-l3v2.xml)|pass|FAIL|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5eb667468f9f3fc5e952/download)
[Logs](https://api.biosimulations.org/logs/677d5eb667468f9f3fc5e952?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5eb667468f9f3fc5e952)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5eb43e750b90a4266c7b/download)
[Logs](https://api.biosimulations.org/logs/677d5eb43e750b90a4266c7b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5eb43e750b90a4266c7b)

HTTP response: 201| +|[01283-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01283-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ebc3e750b90a4266c9c/download)
[Logs](https://api.biosimulations.org/logs/677d5ebc3e750b90a4266c9c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ebc3e750b90a4266c9c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5eb967468f9f3fc5e95e/download)
[Logs](https://api.biosimulations.org/logs/677d5eb967468f9f3fc5e95e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5eb967468f9f3fc5e95e)

HTTP response: 201| +|[01284-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01284-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ec13e750b90a4266cb3/download)
[Logs](https://api.biosimulations.org/logs/677d5ec13e750b90a4266cb3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ec13e750b90a4266cb3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5ebf3e750b90a4266ca3/download)
[Logs](https://api.biosimulations.org/logs/677d5ebf3e750b90a4266ca3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ebf3e750b90a4266ca3)

HTTP response: 201| +|[01285-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01285-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ec867468f9f3fc5e9a2/download)
[Logs](https://api.biosimulations.org/logs/677d5ec867468f9f3fc5e9a2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ec867468f9f3fc5e9a2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5ec667468f9f3fc5e999/download)
[Logs](https://api.biosimulations.org/logs/677d5ec667468f9f3fc5e999?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ec667468f9f3fc5e999)

HTTP response: 201| +|[01286-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01286-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ecd67468f9f3fc5e9bc/download)
[Logs](https://api.biosimulations.org/logs/677d5ecd67468f9f3fc5e9bc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ecd67468f9f3fc5e9bc)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5ecbf8016f90e7cbcfdd/download)
[Logs](https://api.biosimulations.org/logs/677d5ecbf8016f90e7cbcfdd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ecbf8016f90e7cbcfdd)

HTTP response: 201| +|[01287-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01287-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ed23e750b90a4266cf8/download)
[Logs](https://api.biosimulations.org/logs/677d5ed23e750b90a4266cf8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ed23e750b90a4266cf8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5ed067468f9f3fc5e9d1/download)
[Logs](https://api.biosimulations.org/logs/677d5ed067468f9f3fc5e9d1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ed067468f9f3fc5e9d1)

HTTP response: 201| +|[01288-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01288-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ed83e750b90a4266d19/download)
[Logs](https://api.biosimulations.org/logs/677d5ed83e750b90a4266d19?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ed83e750b90a4266d19)

HTTP response: 201|
None[Download](https://api.biosimulations.org/results/677d5ed5f8016f90e7cbd004/download)
[Logs](https://api.biosimulations.org/logs/677d5ed5f8016f90e7cbd004?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ed5f8016f90e7cbd004)

HTTP response: 201| +|[01289-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01289-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5edd3e750b90a4266d2b/download)
[Logs](https://api.biosimulations.org/logs/677d5edd3e750b90a4266d2b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5edd3e750b90a4266d2b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5edb3e750b90a4266d22/download)
[Logs](https://api.biosimulations.org/logs/677d5edb3e750b90a4266d22?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5edb3e750b90a4266d22)

HTTP response: 201| +|[01290-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01290-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ee267468f9f3fc5ea1c/download)
[Logs](https://api.biosimulations.org/logs/677d5ee267468f9f3fc5ea1c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ee267468f9f3fc5ea1c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5ee03e750b90a4266d33/download)
[Logs](https://api.biosimulations.org/logs/677d5ee03e750b90a4266d33?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ee03e750b90a4266d33)

HTTP response: 201| +|[01291-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01291-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ee767468f9f3fc5ea33/download)
[Logs](https://api.biosimulations.org/logs/677d5ee767468f9f3fc5ea33?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ee767468f9f3fc5ea33)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5ee53e750b90a4266d46/download)
[Logs](https://api.biosimulations.org/logs/677d5ee53e750b90a4266d46?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ee53e750b90a4266d46)

HTTP response: 201| +|[01292-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01292-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = p1 - true' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d5eeb67468f9f3fc5ea3e/download)
[Logs](https://api.biosimulations.org/logs/677d5eeb67468f9f3fc5ea3e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5eeb67468f9f3fc5ea3e)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'p1' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5ee93e750b90a4266d59/download)
[Logs](https://api.biosimulations.org/logs/677d5ee93e750b90a4266d59?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ee93e750b90a4266d59)

HTTP response: 201| +|[01293-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01293-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5ef1f8016f90e7cbd09b/download)
[Logs](https://api.biosimulations.org/logs/677d5ef1f8016f90e7cbd09b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ef1f8016f90e7cbd09b)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5eee67468f9f3fc5ea48/download)
[Logs](https://api.biosimulations.org/logs/677d5eee67468f9f3fc5ea48?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5eee67468f9f3fc5ea48)

HTTP response: 201| +|[01294-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01294-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5ef6f8016f90e7cbd0b1/download)
[Logs](https://api.biosimulations.org/logs/677d5ef6f8016f90e7cbd0b1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ef6f8016f90e7cbd0b1)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf p1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5ef43e750b90a4266d7a/download)
[Logs](https://api.biosimulations.org/logs/677d5ef43e750b90a4266d7a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ef43e750b90a4266d7a)

HTTP response: 201| +|[01295-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01295-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5efb3e750b90a4266d97/download)
[Logs](https://api.biosimulations.org/logs/677d5efb3e750b90a4266d97?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5efb3e750b90a4266d97)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf p1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5ef93e750b90a4266d91/download)
[Logs](https://api.biosimulations.org/logs/677d5ef93e750b90a4266d91?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ef93e750b90a4266d91)

HTTP response: 201| +|[01296-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01296-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5f01f8016f90e7cbd0d9/download)
[Logs](https://api.biosimulations.org/logs/677d5f01f8016f90e7cbd0d9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f01f8016f90e7cbd0d9)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf p1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5efe3e750b90a4266da3/download)
[Logs](https://api.biosimulations.org/logs/677d5efe3e750b90a4266da3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5efe3e750b90a4266da3)

HTTP response: 201| +|[01297-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01297-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5f0667468f9f3fc5eab7/download)
[Logs](https://api.biosimulations.org/logs/677d5f0667468f9f3fc5eab7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f0667468f9f3fc5eab7)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf p1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5f0467468f9f3fc5eaac/download)
[Logs](https://api.biosimulations.org/logs/677d5f0467468f9f3fc5eaac?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f0467468f9f3fc5eaac)

HTTP response: 201| +|[01298-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01298-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5f0bf8016f90e7cbd119/download)
[Logs](https://api.biosimulations.org/logs/677d5f0bf8016f90e7cbd119?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f0bf8016f90e7cbd119)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf p1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5f093e750b90a4266dcb/download)
[Logs](https://api.biosimulations.org/logs/677d5f093e750b90a4266dcb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f093e750b90a4266dcb)

HTTP response: 201| +|[01299-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01299-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5f113e750b90a4266de2/download)
[Logs](https://api.biosimulations.org/logs/677d5f113e750b90a4266de2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f113e750b90a4266de2)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5f0e3e750b90a4266ddf/download)
[Logs](https://api.biosimulations.org/logs/677d5f0e3e750b90a4266ddf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f0e3e750b90a4266ddf)

HTTP response: 201| +|[01300-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01300-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5f1667468f9f3fc5eafa/download)
[Logs](https://api.biosimulations.org/logs/677d5f1667468f9f3fc5eafa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f1667468f9f3fc5eafa)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5f14f8016f90e7cbd137/download)
[Logs](https://api.biosimulations.org/logs/677d5f14f8016f90e7cbd137?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f14f8016f90e7cbd137)

HTTP response: 201| +|[01301-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01301-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5f1b67468f9f3fc5eb03/download)
[Logs](https://api.biosimulations.org/logs/677d5f1b67468f9f3fc5eb03?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f1b67468f9f3fc5eb03)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5f19f8016f90e7cbd13e/download)
[Logs](https://api.biosimulations.org/logs/677d5f19f8016f90e7cbd13e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f19f8016f90e7cbd13e)

HTTP response: 201| +|[01302-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01302-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5f203e750b90a4266e0b/download)
[Logs](https://api.biosimulations.org/logs/677d5f203e750b90a4266e0b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f203e750b90a4266e0b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5f1e3e750b90a4266e08/download)
[Logs](https://api.biosimulations.org/logs/677d5f1e3e750b90a4266e08?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f1e3e750b90a4266e08)

HTTP response: 201| +|[01303-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01303-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5f25f8016f90e7cbd180/download)
[Logs](https://api.biosimulations.org/logs/677d5f25f8016f90e7cbd180?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f25f8016f90e7cbd180)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5f22f8016f90e7cbd16a/download)
[Logs](https://api.biosimulations.org/logs/677d5f22f8016f90e7cbd16a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f22f8016f90e7cbd16a)

HTTP response: 201| +|[01304-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01304-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5f2a67468f9f3fc5eb4b/download)
[Logs](https://api.biosimulations.org/logs/677d5f2a67468f9f3fc5eb4b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f2a67468f9f3fc5eb4b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5f283e750b90a4266e2e/download)
[Logs](https://api.biosimulations.org/logs/677d5f283e750b90a4266e2e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f283e750b90a4266e2e)

HTTP response: 201| +|[01305-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01305-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5f30f8016f90e7cbd1b0/download)
[Logs](https://api.biosimulations.org/logs/677d5f30f8016f90e7cbd1b0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f30f8016f90e7cbd1b0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5f2d3e750b90a4266e3c/download)
[Logs](https://api.biosimulations.org/logs/677d5f2d3e750b90a4266e3c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f2d3e750b90a4266e3c)

HTTP response: 201| +|[01306-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01306-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5f3767468f9f3fc5eb84/download)
[Logs](https://api.biosimulations.org/logs/677d5f3767468f9f3fc5eb84?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f3767468f9f3fc5eb84)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5f3467468f9f3fc5eb6a/download)
[Logs](https://api.biosimulations.org/logs/677d5f3467468f9f3fc5eb6a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f3467468f9f3fc5eb6a)

HTTP response: 201| +|[01307-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01307-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5f3cf8016f90e7cbd1e2/download)
[Logs](https://api.biosimulations.org/logs/677d5f3cf8016f90e7cbd1e2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f3cf8016f90e7cbd1e2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5f3a67468f9f3fc5eb8e/download)
[Logs](https://api.biosimulations.org/logs/677d5f3a67468f9f3fc5eb8e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f3a67468f9f3fc5eb8e)

HTTP response: 201| +|[01308-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01308-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5f42f8016f90e7cbd1fa/download)
[Logs](https://api.biosimulations.org/logs/677d5f42f8016f90e7cbd1fa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f42f8016f90e7cbd1fa)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5f3ff8016f90e7cbd1e8/download)
[Logs](https://api.biosimulations.org/logs/677d5f3ff8016f90e7cbd1e8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f3ff8016f90e7cbd1e8)

HTTP response: 201| +|[01309-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01309-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5f47f8016f90e7cbd206/download)
[Logs](https://api.biosimulations.org/logs/677d5f47f8016f90e7cbd206?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f47f8016f90e7cbd206)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5f453e750b90a4266e98/download)
[Logs](https://api.biosimulations.org/logs/677d5f453e750b90a4266e98?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f453e750b90a4266e98)

HTTP response: 201| +|[01310-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01310-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5f4c67468f9f3fc5ebcf/download)
[Logs](https://api.biosimulations.org/logs/677d5f4c67468f9f3fc5ebcf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f4c67468f9f3fc5ebcf)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5f4af8016f90e7cbd216/download)
[Logs](https://api.biosimulations.org/logs/677d5f4af8016f90e7cbd216?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f4af8016f90e7cbd216)

HTTP response: 201| +|[01311-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01311-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5f51f8016f90e7cbd231/download)
[Logs](https://api.biosimulations.org/logs/677d5f51f8016f90e7cbd231?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f51f8016f90e7cbd231)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5f4f67468f9f3fc5ebd8/download)
[Logs](https://api.biosimulations.org/logs/677d5f4f67468f9f3fc5ebd8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f4f67468f9f3fc5ebd8)

HTTP response: 201| +|[01312-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01312-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5f56f8016f90e7cbd242/download)
[Logs](https://api.biosimulations.org/logs/677d5f56f8016f90e7cbd242?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f56f8016f90e7cbd242)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5f533e750b90a4266ec3/download)
[Logs](https://api.biosimulations.org/logs/677d5f533e750b90a4266ec3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f533e750b90a4266ec3)

HTTP response: 201| +|[01313-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01313-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5f5bf8016f90e7cbd268/download)
[Logs](https://api.biosimulations.org/logs/677d5f5bf8016f90e7cbd268?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f5bf8016f90e7cbd268)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5f593e750b90a4266ef6/download)
[Logs](https://api.biosimulations.org/logs/677d5f593e750b90a4266ef6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f593e750b90a4266ef6)

HTTP response: 201| +|[01314-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01314-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5f5f3e750b90a4266f13/download)
[Logs](https://api.biosimulations.org/logs/677d5f5f3e750b90a4266f13?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f5f3e750b90a4266f13)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5f5d3e750b90a4266f0b/download)
[Logs](https://api.biosimulations.org/logs/677d5f5d3e750b90a4266f0b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f5d3e750b90a4266f0b)

HTTP response: 201| +|[01315-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01315-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5f64f8016f90e7cbd290/download)
[Logs](https://api.biosimulations.org/logs/677d5f64f8016f90e7cbd290?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f64f8016f90e7cbd290)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5f623e750b90a4266f23/download)
[Logs](https://api.biosimulations.org/logs/677d5f623e750b90a4266f23?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f623e750b90a4266f23)

HTTP response: 201| +|[01316-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01316-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5f6a67468f9f3fc5ec72/download)
[Logs](https://api.biosimulations.org/logs/677d5f6a67468f9f3fc5ec72?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f6a67468f9f3fc5ec72)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5f6767468f9f3fc5ec53/download)
[Logs](https://api.biosimulations.org/logs/677d5f6767468f9f3fc5ec53?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f6767468f9f3fc5ec53)

HTTP response: 201| +|[01317-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01317-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5f6f67468f9f3fc5ec88/download)
[Logs](https://api.biosimulations.org/logs/677d5f6f67468f9f3fc5ec88?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f6f67468f9f3fc5ec88)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5f6c3e750b90a4266f4a/download)
[Logs](https://api.biosimulations.org/logs/677d5f6c3e750b90a4266f4a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f6c3e750b90a4266f4a)

HTTP response: 201| +|[01318-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01318-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(p2, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d5f73f8016f90e7cbd2ce/download)
[Logs](https://api.biosimulations.org/logs/677d5f73f8016f90e7cbd2ce?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f73f8016f90e7cbd2ce)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(p2, 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5f7167468f9f3fc5ec8f/download)
[Logs](https://api.biosimulations.org/logs/677d5f7167468f9f3fc5ec8f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f7167468f9f3fc5ec8f)

HTTP response: 201| +|[01319-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01319-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(p2, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d5f783e750b90a4266f81/download)
[Logs](https://api.biosimulations.org/logs/677d5f783e750b90a4266f81?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f783e750b90a4266f81)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(p2, 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5f76f8016f90e7cbd2df/download)
[Logs](https://api.biosimulations.org/logs/677d5f76f8016f90e7cbd2df?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f76f8016f90e7cbd2df)

HTTP response: 201| +|[01320-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01320-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d5f7e67468f9f3fc5ecba/download)
[Logs](https://api.biosimulations.org/logs/677d5f7e67468f9f3fc5ecba?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f7e67468f9f3fc5ecba)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5f7b67468f9f3fc5ecb2/download)
[Logs](https://api.biosimulations.org/logs/677d5f7b67468f9f3fc5ecb2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f7b67468f9f3fc5ecb2)

HTTP response: 201| +|[01321-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01321-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5f83f8016f90e7cbd321/download)
[Logs](https://api.biosimulations.org/logs/677d5f83f8016f90e7cbd321?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f83f8016f90e7cbd321)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from p1 p1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5f8067468f9f3fc5ecc8/download)
[Logs](https://api.biosimulations.org/logs/677d5f8067468f9f3fc5ecc8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f8067468f9f3fc5ecc8)

HTTP response: 201| +|[01322-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01322-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d5f87f8016f90e7cbd334/download)
[Logs](https://api.biosimulations.org/logs/677d5f87f8016f90e7cbd334?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f87f8016f90e7cbd334)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from plus p1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d5f8567468f9f3fc5ecdc/download)
[Logs](https://api.biosimulations.org/logs/677d5f8567468f9f3fc5ecdc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f8567468f9f3fc5ecdc)

HTTP response: 201| +|[01323-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01323-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5f8d67468f9f3fc5ecec/download)
[Logs](https://api.biosimulations.org/logs/677d5f8d67468f9f3fc5ecec?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f8d67468f9f3fc5ecec)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5f8a3e750b90a4266fd4/download)
[Logs](https://api.biosimulations.org/logs/677d5f8a3e750b90a4266fd4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f8a3e750b90a4266fd4)

HTTP response: 201| +|[01324-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01324-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5f93f8016f90e7cbd35f/download)
[Logs](https://api.biosimulations.org/logs/677d5f93f8016f90e7cbd35f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f93f8016f90e7cbd35f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5f9067468f9f3fc5ecfb/download)
[Logs](https://api.biosimulations.org/logs/677d5f9067468f9f3fc5ecfb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f9067468f9f3fc5ecfb)

HTTP response: 201| +|[01325-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01325-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5f97f8016f90e7cbd36e/download)
[Logs](https://api.biosimulations.org/logs/677d5f97f8016f90e7cbd36e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f97f8016f90e7cbd36e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5f953e750b90a4267017/download)
[Logs](https://api.biosimulations.org/logs/677d5f953e750b90a4267017?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f953e750b90a4267017)

HTTP response: 201| +|[01326-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01326-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5f9d3e750b90a426703c/download)
[Logs](https://api.biosimulations.org/logs/677d5f9d3e750b90a426703c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f9d3e750b90a426703c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5f9a67468f9f3fc5ed26/download)
[Logs](https://api.biosimulations.org/logs/677d5f9a67468f9f3fc5ed26?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f9a67468f9f3fc5ed26)

HTTP response: 201| +|[01327-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01327-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5fa167468f9f3fc5ed4a/download)
[Logs](https://api.biosimulations.org/logs/677d5fa167468f9f3fc5ed4a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fa167468f9f3fc5ed4a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5f9ff8016f90e7cbd38a/download)
[Logs](https://api.biosimulations.org/logs/677d5f9ff8016f90e7cbd38a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5f9ff8016f90e7cbd38a)

HTTP response: 201| +|[01328-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01328-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5fa6f8016f90e7cbd3b0/download)
[Logs](https://api.biosimulations.org/logs/677d5fa6f8016f90e7cbd3b0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fa6f8016f90e7cbd3b0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5fa43e750b90a4267057/download)
[Logs](https://api.biosimulations.org/logs/677d5fa43e750b90a4267057?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fa43e750b90a4267057)

HTTP response: 201| +|[01329-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01329-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5fab67468f9f3fc5ed73/download)
[Logs](https://api.biosimulations.org/logs/677d5fab67468f9f3fc5ed73?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fab67468f9f3fc5ed73)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5fa967468f9f3fc5ed6d/download)
[Logs](https://api.biosimulations.org/logs/677d5fa967468f9f3fc5ed6d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fa967468f9f3fc5ed6d)

HTTP response: 201| +|[01330-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01330-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5fb067468f9f3fc5ed82/download)
[Logs](https://api.biosimulations.org/logs/677d5fb067468f9f3fc5ed82?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fb067468f9f3fc5ed82)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5faef8016f90e7cbd3d2/download)
[Logs](https://api.biosimulations.org/logs/677d5faef8016f90e7cbd3d2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5faef8016f90e7cbd3d2)

HTTP response: 201| +|[01331-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01331-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5fb5f8016f90e7cbd3dd/download)
[Logs](https://api.biosimulations.org/logs/677d5fb5f8016f90e7cbd3dd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fb5f8016f90e7cbd3dd)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5fb33e750b90a426708d/download)
[Logs](https://api.biosimulations.org/logs/677d5fb33e750b90a426708d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fb33e750b90a426708d)

HTTP response: 201| +|[01332-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01332-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5fba67468f9f3fc5edac/download)
[Logs](https://api.biosimulations.org/logs/677d5fba67468f9f3fc5edac?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fba67468f9f3fc5edac)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5fb83e750b90a42670b4/download)
[Logs](https://api.biosimulations.org/logs/677d5fb83e750b90a42670b4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fb83e750b90a42670b4)

HTTP response: 201| +|[01333-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01333-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5fbff8016f90e7cbd419/download)
[Logs](https://api.biosimulations.org/logs/677d5fbff8016f90e7cbd419?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fbff8016f90e7cbd419)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5fbd3e750b90a42670d1/download)
[Logs](https://api.biosimulations.org/logs/677d5fbd3e750b90a42670d1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fbd3e750b90a42670d1)

HTTP response: 201| +|[01334-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01334-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5fc467468f9f3fc5edd8/download)
[Logs](https://api.biosimulations.org/logs/677d5fc467468f9f3fc5edd8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fc467468f9f3fc5edd8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5fc267468f9f3fc5edd1/download)
[Logs](https://api.biosimulations.org/logs/677d5fc267468f9f3fc5edd1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fc267468f9f3fc5edd1)

HTTP response: 201| +|[01335-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01335-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5fca67468f9f3fc5edf0/download)
[Logs](https://api.biosimulations.org/logs/677d5fca67468f9f3fc5edf0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fca67468f9f3fc5edf0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5fc73e750b90a42670f6/download)
[Logs](https://api.biosimulations.org/logs/677d5fc73e750b90a42670f6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fc73e750b90a42670f6)

HTTP response: 201| +|[01336-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01336-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5fd1f8016f90e7cbd44f/download)
[Logs](https://api.biosimulations.org/logs/677d5fd1f8016f90e7cbd44f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fd1f8016f90e7cbd44f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5fce3e750b90a426711d/download)
[Logs](https://api.biosimulations.org/logs/677d5fce3e750b90a426711d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fce3e750b90a426711d)

HTTP response: 201| +|[01337-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01337-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5fd8f8016f90e7cbd46a/download)
[Logs](https://api.biosimulations.org/logs/677d5fd8f8016f90e7cbd46a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fd8f8016f90e7cbd46a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5fd43e750b90a4267135/download)
[Logs](https://api.biosimulations.org/logs/677d5fd43e750b90a4267135?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fd43e750b90a4267135)

HTTP response: 201| +|[01338-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01338-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5fde67468f9f3fc5ee45/download)
[Logs](https://api.biosimulations.org/logs/677d5fde67468f9f3fc5ee45?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fde67468f9f3fc5ee45)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5fdb67468f9f3fc5ee42/download)
[Logs](https://api.biosimulations.org/logs/677d5fdb67468f9f3fc5ee42?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fdb67468f9f3fc5ee42)

HTTP response: 201| +|[01339-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01339-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5fe5f8016f90e7cbd494/download)
[Logs](https://api.biosimulations.org/logs/677d5fe5f8016f90e7cbd494?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fe5f8016f90e7cbd494)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5fe167468f9f3fc5ee53/download)
[Logs](https://api.biosimulations.org/logs/677d5fe167468f9f3fc5ee53?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fe167468f9f3fc5ee53)

HTTP response: 201| +|[01340-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01340-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5fec67468f9f3fc5ee6f/download)
[Logs](https://api.biosimulations.org/logs/677d5fec67468f9f3fc5ee6f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fec67468f9f3fc5ee6f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5fe83e750b90a4267175/download)
[Logs](https://api.biosimulations.org/logs/677d5fe83e750b90a4267175?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fe83e750b90a4267175)

HTTP response: 201| +|[01341-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01341-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ff267468f9f3fc5ee86/download)
[Logs](https://api.biosimulations.org/logs/677d5ff267468f9f3fc5ee86?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ff267468f9f3fc5ee86)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5ff067468f9f3fc5ee7a/download)
[Logs](https://api.biosimulations.org/logs/677d5ff067468f9f3fc5ee7a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ff067468f9f3fc5ee7a)

HTTP response: 201| +|[01342-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01342-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5ff93e750b90a426719e/download)
[Logs](https://api.biosimulations.org/logs/677d5ff93e750b90a426719e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ff93e750b90a426719e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5ff667468f9f3fc5ee93/download)
[Logs](https://api.biosimulations.org/logs/677d5ff667468f9f3fc5ee93?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ff667468f9f3fc5ee93)

HTTP response: 201| +|[01343-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01343-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d5fff3e750b90a42671b3/download)
[Logs](https://api.biosimulations.org/logs/677d5fff3e750b90a42671b3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5fff3e750b90a42671b3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d5ffd3e750b90a42671af/download)
[Logs](https://api.biosimulations.org/logs/677d5ffd3e750b90a42671af?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d5ffd3e750b90a42671af)

HTTP response: 201| +|[01344-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01344-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d6005f8016f90e7cbd50e/download)
[Logs](https://api.biosimulations.org/logs/677d6005f8016f90e7cbd50e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6005f8016f90e7cbd50e)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp615993 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d600267468f9f3fc5eeaa/download)
[Logs](https://api.biosimulations.org/logs/677d600267468f9f3fc5eeaa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d600267468f9f3fc5eeaa)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp304672 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01345-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01345-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d600af8016f90e7cbd51f/download)
[Logs](https://api.biosimulations.org/logs/677d600af8016f90e7cbd51f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d600af8016f90e7cbd51f)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp192932 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d600867468f9f3fc5eec5/download)
[Logs](https://api.biosimulations.org/logs/677d600867468f9f3fc5eec5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d600867468f9f3fc5eec5)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp151201 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01346-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01346-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d60103e750b90a42671f1/download)
[Logs](https://api.biosimulations.org/logs/677d60103e750b90a42671f1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60103e750b90a42671f1)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp711226 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d600df8016f90e7cbd526/download)
[Logs](https://api.biosimulations.org/logs/677d600df8016f90e7cbd526?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d600df8016f90e7cbd526)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp466888 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01347-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01347-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d6017f8016f90e7cbd543/download)
[Logs](https://api.biosimulations.org/logs/677d6017f8016f90e7cbd543?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6017f8016f90e7cbd543)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp312383 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d60143e750b90a42671ff/download)
[Logs](https://api.biosimulations.org/logs/677d60143e750b90a42671ff?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60143e750b90a42671ff)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp10327 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01348-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01348-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d601d3e750b90a426721e/download)
[Logs](https://api.biosimulations.org/logs/677d601d3e750b90a426721e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d601d3e750b90a426721e)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp579384 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d601af8016f90e7cbd550/download)
[Logs](https://api.biosimulations.org/logs/677d601af8016f90e7cbd550?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d601af8016f90e7cbd550)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp524279 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01349-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01349-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d602267468f9f3fc5ef3b/download)
[Logs](https://api.biosimulations.org/logs/677d602267468f9f3fc5ef3b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d602267468f9f3fc5ef3b)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp366639 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d6020f8016f90e7cbd563/download)
[Logs](https://api.biosimulations.org/logs/677d6020f8016f90e7cbd563?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6020f8016f90e7cbd563)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp782151 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01350-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01350-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = A__x - J1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d602a3e750b90a426723f/download)
[Logs](https://api.biosimulations.org/logs/677d602a3e750b90a426723f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d602a3e750b90a426723f)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp377540 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d6026f8016f90e7cbd579/download)
[Logs](https://api.biosimulations.org/logs/677d6026f8016f90e7cbd579?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6026f8016f90e7cbd579)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp995973 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01351-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01351-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d603167468f9f3fc5ef5f/download)
[Logs](https://api.biosimulations.org/logs/677d603167468f9f3fc5ef5f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d603167468f9f3fc5ef5f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d602ef8016f90e7cbd59c/download)
[Logs](https://api.biosimulations.org/logs/677d602ef8016f90e7cbd59c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d602ef8016f90e7cbd59c)

HTTP response: 201| +|[01352-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01352-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d60373e750b90a4267277/download)
[Logs](https://api.biosimulations.org/logs/677d60373e750b90a4267277?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60373e750b90a4267277)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp15525 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d6034f8016f90e7cbd5b2/download)
[Logs](https://api.biosimulations.org/logs/677d6034f8016f90e7cbd5b2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6034f8016f90e7cbd5b2)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp374720 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01353-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01353-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d603d67468f9f3fc5ef84/download)
[Logs](https://api.biosimulations.org/logs/677d603d67468f9f3fc5ef84?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d603d67468f9f3fc5ef84)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp478758 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d603af8016f90e7cbd5b9/download)
[Logs](https://api.biosimulations.org/logs/677d603af8016f90e7cbd5b9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d603af8016f90e7cbd5b9)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp736237 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01354-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01354-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d6043f8016f90e7cbd5dd/download)
[Logs](https://api.biosimulations.org/logs/677d6043f8016f90e7cbd5dd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6043f8016f90e7cbd5dd)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp351001 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d6040f8016f90e7cbd5d1/download)
[Logs](https://api.biosimulations.org/logs/677d6040f8016f90e7cbd5d1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6040f8016f90e7cbd5d1)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp6137 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01355-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01355-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d60493e750b90a42672ae/download)
[Logs](https://api.biosimulations.org/logs/677d60493e750b90a42672ae?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60493e750b90a42672ae)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp468501 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d60463e750b90a42672a7/download)
[Logs](https://api.biosimulations.org/logs/677d60463e750b90a42672a7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60463e750b90a42672a7)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp99170 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01356-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01356-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d604ff8016f90e7cbd603/download)
[Logs](https://api.biosimulations.org/logs/677d604ff8016f90e7cbd603?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d604ff8016f90e7cbd603)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp982336 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d604cf8016f90e7cbd5f1/download)
[Logs](https://api.biosimulations.org/logs/677d604cf8016f90e7cbd5f1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d604cf8016f90e7cbd5f1)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp47303 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01357-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01357-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d6054f8016f90e7cbd60e/download)
[Logs](https://api.biosimulations.org/logs/677d6054f8016f90e7cbd60e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6054f8016f90e7cbd60e)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp234442 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d60523e750b90a42672d5/download)
[Logs](https://api.biosimulations.org/logs/677d60523e750b90a42672d5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60523e750b90a42672d5)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp338526 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01358-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01358-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d605b3e750b90a42672ed/download)
[Logs](https://api.biosimulations.org/logs/677d605b3e750b90a42672ed?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d605b3e750b90a42672ed)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp610365 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d6058f8016f90e7cbd621/download)
[Logs](https://api.biosimulations.org/logs/677d6058f8016f90e7cbd621?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6058f8016f90e7cbd621)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp521463 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01359-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01359-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = A__x - J1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d606167468f9f3fc5f01f/download)
[Logs](https://api.biosimulations.org/logs/677d606167468f9f3fc5f01f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d606167468f9f3fc5f01f)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp655267 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d605e67468f9f3fc5f017/download)
[Logs](https://api.biosimulations.org/logs/677d605e67468f9f3fc5f017?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d605e67468f9f3fc5f017)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp373252 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01360-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01360-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d606867468f9f3fc5f03f/download)
[Logs](https://api.biosimulations.org/logs/677d606867468f9f3fc5f03f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d606867468f9f3fc5f03f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d606567468f9f3fc5f02f/download)
[Logs](https://api.biosimulations.org/logs/677d606567468f9f3fc5f02f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d606567468f9f3fc5f02f)

HTTP response: 201| +|[01361-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01361-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d606d3e750b90a426732a/download)
[Logs](https://api.biosimulations.org/logs/677d606d3e750b90a426732a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d606d3e750b90a426732a)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp509570 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d606bf8016f90e7cbd663/download)
[Logs](https://api.biosimulations.org/logs/677d606bf8016f90e7cbd663?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d606bf8016f90e7cbd663)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp957377 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01362-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01362-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d607467468f9f3fc5f06d/download)
[Logs](https://api.biosimulations.org/logs/677d607467468f9f3fc5f06d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d607467468f9f3fc5f06d)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp115450 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d6071f8016f90e7cbd675/download)
[Logs](https://api.biosimulations.org/logs/677d6071f8016f90e7cbd675?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6071f8016f90e7cbd675)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp430547 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01363-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01363-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d607a67468f9f3fc5f07a/download)
[Logs](https://api.biosimulations.org/logs/677d607a67468f9f3fc5f07a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d607a67468f9f3fc5f07a)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp272076 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d6077f8016f90e7cbd68c/download)
[Logs](https://api.biosimulations.org/logs/677d6077f8016f90e7cbd68c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6077f8016f90e7cbd68c)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp735862 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01364-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01364-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d6080f8016f90e7cbd6ac/download)
[Logs](https://api.biosimulations.org/logs/677d6080f8016f90e7cbd6ac?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6080f8016f90e7cbd6ac)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp961226 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d607df8016f90e7cbd698/download)
[Logs](https://api.biosimulations.org/logs/677d607df8016f90e7cbd698?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d607df8016f90e7cbd698)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp644784 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01365-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01365-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d60873e750b90a426737d/download)
[Logs](https://api.biosimulations.org/logs/677d60873e750b90a426737d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60873e750b90a426737d)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp700820 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d608467468f9f3fc5f098/download)
[Logs](https://api.biosimulations.org/logs/677d608467468f9f3fc5f098?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d608467468f9f3fc5f098)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp508175 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01366-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01366-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d608d3e750b90a4267397/download)
[Logs](https://api.biosimulations.org/logs/677d608d3e750b90a4267397?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d608d3e750b90a4267397)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp883797 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d608bf8016f90e7cbd6d0/download)
[Logs](https://api.biosimulations.org/logs/677d608bf8016f90e7cbd6d0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d608bf8016f90e7cbd6d0)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp930341 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01367-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01367-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d6093f8016f90e7cbd6f4/download)
[Logs](https://api.biosimulations.org/logs/677d6093f8016f90e7cbd6f4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6093f8016f90e7cbd6f4)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp407098 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d609167468f9f3fc5f0c5/download)
[Logs](https://api.biosimulations.org/logs/677d609167468f9f3fc5f0c5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d609167468f9f3fc5f0c5)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp985981 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01368-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01368-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = A__x - J1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d609c67468f9f3fc5f0e5/download)
[Logs](https://api.biosimulations.org/logs/677d609c67468f9f3fc5f0e5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d609c67468f9f3fc5f0e5)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp67091 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d6097f8016f90e7cbd701/download)
[Logs](https://api.biosimulations.org/logs/677d6097f8016f90e7cbd701?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6097f8016f90e7cbd701)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp409606 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01369-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01369-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d60a467468f9f3fc5f103/download)
[Logs](https://api.biosimulations.org/logs/677d60a467468f9f3fc5f103?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60a467468f9f3fc5f103)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d60a03e750b90a42673d1/download)
[Logs](https://api.biosimulations.org/logs/677d60a03e750b90a42673d1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60a03e750b90a42673d1)

HTTP response: 201| +|[01370-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01370-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d60aa3e750b90a42673f0/download)
[Logs](https://api.biosimulations.org/logs/677d60aa3e750b90a42673f0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60aa3e750b90a42673f0)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp843389 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d60a8f8016f90e7cbd73f/download)
[Logs](https://api.biosimulations.org/logs/677d60a8f8016f90e7cbd73f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60a8f8016f90e7cbd73f)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp979150 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01371-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01371-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d60b03e750b90a42673fa/download)
[Logs](https://api.biosimulations.org/logs/677d60b03e750b90a42673fa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60b03e750b90a42673fa)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp207772 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d60aef8016f90e7cbd74e/download)
[Logs](https://api.biosimulations.org/logs/677d60aef8016f90e7cbd74e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60aef8016f90e7cbd74e)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp339627 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01372-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01372-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d60b63e750b90a4267412/download)
[Logs](https://api.biosimulations.org/logs/677d60b63e750b90a4267412?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60b63e750b90a4267412)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp378983 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d60b3f8016f90e7cbd759/download)
[Logs](https://api.biosimulations.org/logs/677d60b3f8016f90e7cbd759?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60b3f8016f90e7cbd759)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp894402 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01373-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01373-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d60bbf8016f90e7cbd774/download)
[Logs](https://api.biosimulations.org/logs/677d60bbf8016f90e7cbd774?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60bbf8016f90e7cbd774)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp386012 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d60b8f8016f90e7cbd76d/download)
[Logs](https://api.biosimulations.org/logs/677d60b8f8016f90e7cbd76d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60b8f8016f90e7cbd76d)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp391635 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01374-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01374-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d60c1f8016f90e7cbd786/download)
[Logs](https://api.biosimulations.org/logs/677d60c1f8016f90e7cbd786?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60c1f8016f90e7cbd786)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp203789 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d60be67468f9f3fc5f154/download)
[Logs](https://api.biosimulations.org/logs/677d60be67468f9f3fc5f154?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60be67468f9f3fc5f154)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp538906 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01375-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01375-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d60c83e750b90a426744f/download)
[Logs](https://api.biosimulations.org/logs/677d60c83e750b90a426744f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60c83e750b90a426744f)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp474710 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d60c5f8016f90e7cbd797/download)
[Logs](https://api.biosimulations.org/logs/677d60c5f8016f90e7cbd797?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60c5f8016f90e7cbd797)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp530373 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01376-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01376-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d60cc3e750b90a426745c/download)
[Logs](https://api.biosimulations.org/logs/677d60cc3e750b90a426745c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60cc3e750b90a426745c)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp70009 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d60ca3e750b90a4267458/download)
[Logs](https://api.biosimulations.org/logs/677d60ca3e750b90a4267458?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60ca3e750b90a4267458)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp594956 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01377-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01377-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = A__x - J1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677e71e3f8016f90e7cc06b9/download)
[Logs](https://api.biosimulations.org/logs/677e71e3f8016f90e7cc06b9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677e71e3f8016f90e7cc06b9)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp470683 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677e71e13e750b90a426a2b5/download)
[Logs](https://api.biosimulations.org/logs/677e71e13e750b90a426a2b5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677e71e13e750b90a426a2b5)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp3437 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01378-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01378-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d60d7f8016f90e7cbd7dc/download)
[Logs](https://api.biosimulations.org/logs/677d60d7f8016f90e7cbd7dc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60d7f8016f90e7cbd7dc)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d60d43e750b90a4267478/download)
[Logs](https://api.biosimulations.org/logs/677d60d43e750b90a4267478?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60d43e750b90a4267478)

HTTP response: 201| +|[01379-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01379-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d60dc3e750b90a426749a/download)
[Logs](https://api.biosimulations.org/logs/677d60dc3e750b90a426749a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60dc3e750b90a426749a)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp759523 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d60da3e750b90a4267495/download)
[Logs](https://api.biosimulations.org/logs/677d60da3e750b90a4267495?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60da3e750b90a4267495)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp955010 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01380-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01380-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d60e267468f9f3fc5f1bb/download)
[Logs](https://api.biosimulations.org/logs/677d60e267468f9f3fc5f1bb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60e267468f9f3fc5f1bb)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp110477 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d60df3e750b90a42674ad/download)
[Logs](https://api.biosimulations.org/logs/677d60df3e750b90a42674ad?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60df3e750b90a42674ad)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp211801 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01381-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01381-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d60e767468f9f3fc5f1cd/download)
[Logs](https://api.biosimulations.org/logs/677d60e767468f9f3fc5f1cd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60e767468f9f3fc5f1cd)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp85539 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d60e567468f9f3fc5f1c3/download)
[Logs](https://api.biosimulations.org/logs/677d60e567468f9f3fc5f1c3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60e567468f9f3fc5f1c3)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp414416 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01382-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01382-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d60ed67468f9f3fc5f1e8/download)
[Logs](https://api.biosimulations.org/logs/677d60ed67468f9f3fc5f1e8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60ed67468f9f3fc5f1e8)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp328330 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d60ea3e750b90a42674d0/download)
[Logs](https://api.biosimulations.org/logs/677d60ea3e750b90a42674d0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60ea3e750b90a42674d0)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp410462 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01383-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01383-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d60f23e750b90a42674fd/download)
[Logs](https://api.biosimulations.org/logs/677d60f23e750b90a42674fd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60f23e750b90a42674fd)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp666819 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d60ef3e750b90a42674eb/download)
[Logs](https://api.biosimulations.org/logs/677d60ef3e750b90a42674eb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60ef3e750b90a42674eb)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp773230 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01384-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01384-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d60f767468f9f3fc5f212/download)
[Logs](https://api.biosimulations.org/logs/677d60f767468f9f3fc5f212?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60f767468f9f3fc5f212)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp682502 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d60f53e750b90a4267504/download)
[Logs](https://api.biosimulations.org/logs/677d60f53e750b90a4267504?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60f53e750b90a4267504)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp180676 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01385-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01385-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d60fd67468f9f3fc5f221/download)
[Logs](https://api.biosimulations.org/logs/677d60fd67468f9f3fc5f221?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60fd67468f9f3fc5f221)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp541135 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d60fa67468f9f3fc5f217/download)
[Logs](https://api.biosimulations.org/logs/677d60fa67468f9f3fc5f217?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d60fa67468f9f3fc5f217)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp14025 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01386-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01386-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = A__x - J1_sr' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d61023e750b90a4267536/download)
[Logs](https://api.biosimulations.org/logs/677d61023e750b90a4267536?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61023e750b90a4267536)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp608433 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d610067468f9f3fc5f234/download)
[Logs](https://api.biosimulations.org/logs/677d610067468f9f3fc5f234?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d610067468f9f3fc5f234)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp740358 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01387-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01387-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d610767468f9f3fc5f242/download)
[Logs](https://api.biosimulations.org/logs/677d610767468f9f3fc5f242?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d610767468f9f3fc5f242)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d61053e750b90a4267541/download)
[Logs](https://api.biosimulations.org/logs/677d61053e750b90a4267541?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61053e750b90a4267541)

HTTP response: 201| +|[01388-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01388-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d610c67468f9f3fc5f26d/download)
[Logs](https://api.biosimulations.org/logs/677d610c67468f9f3fc5f26d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d610c67468f9f3fc5f26d)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp842568 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d610a67468f9f3fc5f251/download)
[Logs](https://api.biosimulations.org/logs/677d610a67468f9f3fc5f251?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d610a67468f9f3fc5f251)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp391662 is invalid. - Data generator A__x_1 is invalid. - Variable A__x is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='A__x'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01389-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01389-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d61113e750b90a4267579/download)
[Logs](https://api.biosimulations.org/logs/677d61113e750b90a4267579?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61113e750b90a4267579)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d610f3e750b90a4267563/download)
[Logs](https://api.biosimulations.org/logs/677d610f3e750b90a4267563?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d610f3e750b90a4267563)

HTTP response: 201| +|[01390-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01390-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d61163e750b90a426758b/download)
[Logs](https://api.biosimulations.org/logs/677d61163e750b90a426758b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61163e750b90a426758b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6114f8016f90e7cbd8b3/download)
[Logs](https://api.biosimulations.org/logs/677d6114f8016f90e7cbd8b3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6114f8016f90e7cbd8b3)

HTTP response: 201| +|[01391-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01391-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d611cf8016f90e7cbd8d3/download)
[Logs](https://api.biosimulations.org/logs/677d611cf8016f90e7cbd8d3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d611cf8016f90e7cbd8d3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d61193e750b90a4267594/download)
[Logs](https://api.biosimulations.org/logs/677d61193e750b90a4267594?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61193e750b90a4267594)

HTTP response: 201| +|[01392-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01392-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d61203e750b90a42675b1/download)
[Logs](https://api.biosimulations.org/logs/677d61203e750b90a42675b1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61203e750b90a42675b1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d611e67468f9f3fc5f2b1/download)
[Logs](https://api.biosimulations.org/logs/677d611e67468f9f3fc5f2b1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d611e67468f9f3fc5f2b1)

HTTP response: 201| +|[01393-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01393-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6125f8016f90e7cbd8f0/download)
[Logs](https://api.biosimulations.org/logs/677d6125f8016f90e7cbd8f0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6125f8016f90e7cbd8f0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d61233e750b90a42675bb/download)
[Logs](https://api.biosimulations.org/logs/677d61233e750b90a42675bb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61233e750b90a42675bb)

HTTP response: 201| +|[01394-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01394-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d612bf8016f90e7cbd901/download)
[Logs](https://api.biosimulations.org/logs/677d612bf8016f90e7cbd901?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d612bf8016f90e7cbd901)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d612867468f9f3fc5f2d0/download)
[Logs](https://api.biosimulations.org/logs/677d612867468f9f3fc5f2d0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d612867468f9f3fc5f2d0)

HTTP response: 201| +|[01395-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01395-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d613067468f9f3fc5f2f7/download)
[Logs](https://api.biosimulations.org/logs/677d613067468f9f3fc5f2f7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d613067468f9f3fc5f2f7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d612d3e750b90a42675de/download)
[Logs](https://api.biosimulations.org/logs/677d612d3e750b90a42675de?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d612d3e750b90a42675de)

HTTP response: 201| +|[01396-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01396-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d613667468f9f3fc5f318/download)
[Logs](https://api.biosimulations.org/logs/677d613667468f9f3fc5f318?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d613667468f9f3fc5f318)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6133f8016f90e7cbd921/download)
[Logs](https://api.biosimulations.org/logs/677d6133f8016f90e7cbd921?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6133f8016f90e7cbd921)

HTTP response: 201| +|[01397-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01397-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d613b67468f9f3fc5f328/download)
[Logs](https://api.biosimulations.org/logs/677d613b67468f9f3fc5f328?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d613b67468f9f3fc5f328)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d61393e750b90a426760e/download)
[Logs](https://api.biosimulations.org/logs/677d61393e750b90a426760e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61393e750b90a426760e)

HTTP response: 201| +|[01398-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01398-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d61413e750b90a4267630/download)
[Logs](https://api.biosimulations.org/logs/677d61413e750b90a4267630?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61413e750b90a4267630)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d613e3e750b90a4267623/download)
[Logs](https://api.biosimulations.org/logs/677d613e3e750b90a4267623?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d613e3e750b90a4267623)

HTTP response: 201| +|[01399-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01399-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6146f8016f90e7cbd976/download)
[Logs](https://api.biosimulations.org/logs/677d6146f8016f90e7cbd976?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6146f8016f90e7cbd976)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6143f8016f90e7cbd971/download)
[Logs](https://api.biosimulations.org/logs/677d6143f8016f90e7cbd971?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6143f8016f90e7cbd971)

HTTP response: 201| +|[01400-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01400-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(rateOf(S1), 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d614bf8016f90e7cbd992/download)
[Logs](https://api.biosimulations.org/logs/677d614bf8016f90e7cbd992?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d614bf8016f90e7cbd992)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf S1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d614967468f9f3fc5f35b/download)
[Logs](https://api.biosimulations.org/logs/677d614967468f9f3fc5f35b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d614967468f9f3fc5f35b)

HTTP response: 201| +|[01401-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01401-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(rateOf(S1), 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d615067468f9f3fc5f378/download)
[Logs](https://api.biosimulations.org/logs/677d615067468f9f3fc5f378?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d615067468f9f3fc5f378)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf S1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d614ef8016f90e7cbd99d/download)
[Logs](https://api.biosimulations.org/logs/677d614ef8016f90e7cbd99d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d614ef8016f90e7cbd99d)

HTTP response: 201| +|[01402-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01402-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d615567468f9f3fc5f388/download)
[Logs](https://api.biosimulations.org/logs/677d615567468f9f3fc5f388?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d615567468f9f3fc5f388)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf S1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d6152f8016f90e7cbd9bb/download)
[Logs](https://api.biosimulations.org/logs/677d6152f8016f90e7cbd9bb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6152f8016f90e7cbd9bb)

HTTP response: 201| +|[01403-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01403-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(rateOf(S1), 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d615a67468f9f3fc5f397/download)
[Logs](https://api.biosimulations.org/logs/677d615a67468f9f3fc5f397?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d615a67468f9f3fc5f397)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf S1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d615867468f9f3fc5f394/download)
[Logs](https://api.biosimulations.org/logs/677d615867468f9f3fc5f394?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d615867468f9f3fc5f394)

HTTP response: 201| +|[01404-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01404-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d615f3e750b90a42676a3/download)
[Logs](https://api.biosimulations.org/logs/677d615f3e750b90a42676a3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d615f3e750b90a42676a3)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d615d67468f9f3fc5f3b4/download)
[Logs](https://api.biosimulations.org/logs/677d615d67468f9f3fc5f3b4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d615d67468f9f3fc5f3b4)

HTTP response: 201| +|[01405-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01405-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d6165f8016f90e7cbda03/download)
[Logs](https://api.biosimulations.org/logs/677d6165f8016f90e7cbda03?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6165f8016f90e7cbda03)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf S1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d61623e750b90a42676b0/download)
[Logs](https://api.biosimulations.org/logs/677d61623e750b90a42676b0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61623e750b90a42676b0)

HTTP response: 201| +|[01406-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01406-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(rateOf(S1), 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d616af8016f90e7cbda15/download)
[Logs](https://api.biosimulations.org/logs/677d616af8016f90e7cbda15?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d616af8016f90e7cbda15)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf S1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d61673e750b90a42676c5/download)
[Logs](https://api.biosimulations.org/logs/677d61673e750b90a42676c5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61673e750b90a42676c5)

HTTP response: 201| +|[01407-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01407-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d616f67468f9f3fc5f417/download)
[Logs](https://api.biosimulations.org/logs/677d616f67468f9f3fc5f417?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d616f67468f9f3fc5f417)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d616c3e750b90a42676d2/download)
[Logs](https://api.biosimulations.org/logs/677d616c3e750b90a42676d2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d616c3e750b90a42676d2)

HTTP response: 201| +|[01408-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01408-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d617467468f9f3fc5f431/download)
[Logs](https://api.biosimulations.org/logs/677d617467468f9f3fc5f431?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d617467468f9f3fc5f431)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf S1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d617167468f9f3fc5f41c/download)
[Logs](https://api.biosimulations.org/logs/677d617167468f9f3fc5f41c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d617167468f9f3fc5f41c)

HTTP response: 201| +|[01409-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01409-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(rateOf(S1), 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d617967468f9f3fc5f44c/download)
[Logs](https://api.biosimulations.org/logs/677d617967468f9f3fc5f44c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d617967468f9f3fc5f44c)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf S1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d6177f8016f90e7cbda41/download)
[Logs](https://api.biosimulations.org/logs/677d6177f8016f90e7cbda41?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6177f8016f90e7cbda41)

HTTP response: 201| +|[01410-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01410-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d618167468f9f3fc5f46b/download)
[Logs](https://api.biosimulations.org/logs/677d618167468f9f3fc5f46b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d618167468f9f3fc5f46b)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d617d67468f9f3fc5f455/download)
[Logs](https://api.biosimulations.org/logs/677d617d67468f9f3fc5f455?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d617d67468f9f3fc5f455)

HTTP response: 201| +|[01411-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01411-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(addtwo(S1, S2), 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d6187f8016f90e7cbda81/download)
[Logs](https://api.biosimulations.org/logs/677d6187f8016f90e7cbda81?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6187f8016f90e7cbda81)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(addtwo(S1, S2), 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d6184f8016f90e7cbda62/download)
[Logs](https://api.biosimulations.org/logs/677d6184f8016f90e7cbda62?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6184f8016f90e7cbda62)

HTTP response: 201| +|[01412-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01412-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(addtwo(S1, S2), 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d618c67468f9f3fc5f484/download)
[Logs](https://api.biosimulations.org/logs/677d618c67468f9f3fc5f484?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d618c67468f9f3fc5f484)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(addtwo(S1, S2), 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d618967468f9f3fc5f480/download)
[Logs](https://api.biosimulations.org/logs/677d618967468f9f3fc5f480?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d618967468f9f3fc5f480)

HTTP response: 201| +|[01413-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01413-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(S1, addtwo(0.5, 0.5))' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d61913e750b90a426776c/download)
[Logs](https://api.biosimulations.org/logs/677d61913e750b90a426776c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61913e750b90a426776c)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(S1, addtwo(0.5, 0.5))' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d618f3e750b90a4267769/download)
[Logs](https://api.biosimulations.org/logs/677d618f3e750b90a4267769?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d618f3e750b90a4267769)

HTTP response: 201| +|[01414-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01414-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(P1, k)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d619667468f9f3fc5f4af/download)
[Logs](https://api.biosimulations.org/logs/677d619667468f9f3fc5f4af?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d619667468f9f3fc5f4af)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(P1, k)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d61933e750b90a4267778/download)
[Logs](https://api.biosimulations.org/logs/677d61933e750b90a4267778?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61933e750b90a4267778)

HTTP response: 201| +|[01415-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01415-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(P1, k)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d619bf8016f90e7cbdac2/download)
[Logs](https://api.biosimulations.org/logs/677d619bf8016f90e7cbdac2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d619bf8016f90e7cbdac2)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(P1, k)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d61993e750b90a4267791/download)
[Logs](https://api.biosimulations.org/logs/677d61993e750b90a4267791?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61993e750b90a4267791)

HTTP response: 201| +|[01416-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01416-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d61a167468f9f3fc5f4e7/download)
[Logs](https://api.biosimulations.org/logs/677d61a167468f9f3fc5f4e7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61a167468f9f3fc5f4e7)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d619ef8016f90e7cbdad0/download)
[Logs](https://api.biosimulations.org/logs/677d619ef8016f90e7cbdad0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d619ef8016f90e7cbdad0)

HTTP response: 201| +|[01417-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01417-sbml-l3v2.xml)|pass|FAIL|pass|
delay Unable to support delay differential equations. The function 'delay(S1, S1_stoich)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d61a767468f9f3fc5f50b/download)
[Logs](https://api.biosimulations.org/logs/677d61a767468f9f3fc5f50b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61a767468f9f3fc5f50b)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(S1, S1_stoich)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d61a4f8016f90e7cbdaec/download)
[Logs](https://api.biosimulations.org/logs/677d61a4f8016f90e7cbdaec?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61a4f8016f90e7cbdaec)

HTTP response: 201| +|[01418-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01418-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(S1_stoich, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d61acf8016f90e7cbdaff/download)
[Logs](https://api.biosimulations.org/logs/677d61acf8016f90e7cbdaff?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61acf8016f90e7cbdaff)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(S1_stoich, 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d61aa67468f9f3fc5f511/download)
[Logs](https://api.biosimulations.org/logs/677d61aa67468f9f3fc5f511?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61aa67468f9f3fc5f511)

HTTP response: 201| +|[01419-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01419-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(S1_stoich, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d61b4f8016f90e7cbdb1e/download)
[Logs](https://api.biosimulations.org/logs/677d61b4f8016f90e7cbdb1e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61b4f8016f90e7cbdb1e)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(S1_stoich, 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d61aff8016f90e7cbdb0f/download)
[Logs](https://api.biosimulations.org/logs/677d61aff8016f90e7cbdb0f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61aff8016f90e7cbdb0f)

HTTP response: 201| +|[01420-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01420-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d61b967468f9f3fc5f539/download)
[Logs](https://api.biosimulations.org/logs/677d61b967468f9f3fc5f539?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61b967468f9f3fc5f539)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d61b767468f9f3fc5f532/download)
[Logs](https://api.biosimulations.org/logs/677d61b767468f9f3fc5f532?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61b767468f9f3fc5f532)

HTTP response: 201| +|[01421-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01421-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d61bf67468f9f3fc5f553/download)
[Logs](https://api.biosimulations.org/logs/677d61bf67468f9f3fc5f553?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61bf67468f9f3fc5f553)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d61bcf8016f90e7cbdb44/download)
[Logs](https://api.biosimulations.org/logs/677d61bcf8016f90e7cbdb44?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61bcf8016f90e7cbdb44)

HTTP response: 201| +|[01422-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01422-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d61c4f8016f90e7cbdb5b/download)
[Logs](https://api.biosimulations.org/logs/677d61c4f8016f90e7cbdb5b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61c4f8016f90e7cbdb5b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d61c267468f9f3fc5f565/download)
[Logs](https://api.biosimulations.org/logs/677d61c267468f9f3fc5f565?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61c267468f9f3fc5f565)

HTTP response: 201| +|[01423-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01423-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d61ca67468f9f3fc5f58f/download)
[Logs](https://api.biosimulations.org/logs/677d61ca67468f9f3fc5f58f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61ca67468f9f3fc5f58f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d61c767468f9f3fc5f574/download)
[Logs](https://api.biosimulations.org/logs/677d61c767468f9f3fc5f574?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61c767468f9f3fc5f574)

HTTP response: 201| +|[01424-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01424-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d61cf3e750b90a426785a/download)
[Logs](https://api.biosimulations.org/logs/677d61cf3e750b90a426785a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61cf3e750b90a426785a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d61cd67468f9f3fc5f59f/download)
[Logs](https://api.biosimulations.org/logs/677d61cd67468f9f3fc5f59f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61cd67468f9f3fc5f59f)

HTTP response: 201| +|[01425-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01425-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d61d567468f9f3fc5f5b5/download)
[Logs](https://api.biosimulations.org/logs/677d61d567468f9f3fc5f5b5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61d567468f9f3fc5f5b5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d61d267468f9f3fc5f5af/download)
[Logs](https://api.biosimulations.org/logs/677d61d267468f9f3fc5f5af?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61d267468f9f3fc5f5af)

HTTP response: 201| +|[01426-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01426-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d61da67468f9f3fc5f5db/download)
[Logs](https://api.biosimulations.org/logs/677d61da67468f9f3fc5f5db?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61da67468f9f3fc5f5db)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d61d83e750b90a4267873/download)
[Logs](https://api.biosimulations.org/logs/677d61d83e750b90a4267873?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61d83e750b90a4267873)

HTTP response: 201| +|[01427-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01427-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d61e03e750b90a426789d/download)
[Logs](https://api.biosimulations.org/logs/677d61e03e750b90a426789d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61e03e750b90a426789d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d61de3e750b90a4267895/download)
[Logs](https://api.biosimulations.org/logs/677d61de3e750b90a4267895?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61de3e750b90a4267895)

HTTP response: 201| +|[01428-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01428-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d61e63e750b90a42678af/download)
[Logs](https://api.biosimulations.org/logs/677d61e63e750b90a42678af?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61e63e750b90a42678af)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d61e367468f9f3fc5f601/download)
[Logs](https://api.biosimulations.org/logs/677d61e367468f9f3fc5f601?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61e367468f9f3fc5f601)

HTTP response: 201| +|[01429-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01429-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d61eb3e750b90a42678c4/download)
[Logs](https://api.biosimulations.org/logs/677d61eb3e750b90a42678c4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61eb3e750b90a42678c4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d61e867468f9f3fc5f622/download)
[Logs](https://api.biosimulations.org/logs/677d61e867468f9f3fc5f622?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61e867468f9f3fc5f622)

HTTP response: 201| +|[01430-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01430-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d61f1f8016f90e7cbdbf4/download)
[Logs](https://api.biosimulations.org/logs/677d61f1f8016f90e7cbdbf4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61f1f8016f90e7cbdbf4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d61ef67468f9f3fc5f630/download)
[Logs](https://api.biosimulations.org/logs/677d61ef67468f9f3fc5f630?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61ef67468f9f3fc5f630)

HTTP response: 201| +|[01431-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01431-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d61f7f8016f90e7cbdc12/download)
[Logs](https://api.biosimulations.org/logs/677d61f7f8016f90e7cbdc12?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61f7f8016f90e7cbdc12)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d61f43e750b90a42678ee/download)
[Logs](https://api.biosimulations.org/logs/677d61f43e750b90a42678ee?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61f43e750b90a42678ee)

HTTP response: 201| +|[01432-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01432-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d61fc3e750b90a4267914/download)
[Logs](https://api.biosimulations.org/logs/677d61fc3e750b90a4267914?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61fc3e750b90a4267914)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d61faf8016f90e7cbdc1f/download)
[Logs](https://api.biosimulations.org/logs/677d61faf8016f90e7cbdc1f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61faf8016f90e7cbdc1f)

HTTP response: 201| +|[01433-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01433-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d62013e750b90a4267922/download)
[Logs](https://api.biosimulations.org/logs/677d62013e750b90a4267922?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62013e750b90a4267922)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d61ff3e750b90a426791e/download)
[Logs](https://api.biosimulations.org/logs/677d61ff3e750b90a426791e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d61ff3e750b90a426791e)

HTTP response: 201| +|[01434-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01434-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d620667468f9f3fc5f686/download)
[Logs](https://api.biosimulations.org/logs/677d620667468f9f3fc5f686?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d620667468f9f3fc5f686)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6204f8016f90e7cbdc37/download)
[Logs](https://api.biosimulations.org/logs/677d6204f8016f90e7cbdc37?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6204f8016f90e7cbdc37)

HTTP response: 201| +|[01435-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01435-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d620c67468f9f3fc5f696/download)
[Logs](https://api.biosimulations.org/logs/677d620c67468f9f3fc5f696?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d620c67468f9f3fc5f696)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d62093e750b90a426794d/download)
[Logs](https://api.biosimulations.org/logs/677d62093e750b90a426794d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62093e750b90a426794d)

HTTP response: 201| +|[01436-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01436-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d621167468f9f3fc5f6b1/download)
[Logs](https://api.biosimulations.org/logs/677d621167468f9f3fc5f6b1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d621167468f9f3fc5f6b1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d620e3e750b90a4267962/download)
[Logs](https://api.biosimulations.org/logs/677d620e3e750b90a4267962?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d620e3e750b90a4267962)

HTTP response: 201| +|[01437-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01437-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6217f8016f90e7cbdc88/download)
[Logs](https://api.biosimulations.org/logs/677d6217f8016f90e7cbdc88?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6217f8016f90e7cbdc88)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d62143e750b90a426798a/download)
[Logs](https://api.biosimulations.org/logs/677d62143e750b90a426798a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62143e750b90a426798a)

HTTP response: 201| +|[01438-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01438-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d621b67468f9f3fc5f6dc/download)
[Logs](https://api.biosimulations.org/logs/677d621b67468f9f3fc5f6dc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d621b67468f9f3fc5f6dc)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d621967468f9f3fc5f6d5/download)
[Logs](https://api.biosimulations.org/logs/677d621967468f9f3fc5f6d5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d621967468f9f3fc5f6d5)

HTTP response: 201| +|[01439-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01439-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d622167468f9f3fc5f6ed/download)
[Logs](https://api.biosimulations.org/logs/677d622167468f9f3fc5f6ed?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d622167468f9f3fc5f6ed)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d621e3e750b90a42679b5/download)
[Logs](https://api.biosimulations.org/logs/677d621e3e750b90a42679b5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d621e3e750b90a42679b5)

HTTP response: 201| +|[01440-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01440-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d622667468f9f3fc5f6fb/download)
[Logs](https://api.biosimulations.org/logs/677d622667468f9f3fc5f6fb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d622667468f9f3fc5f6fb)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d62243e750b90a42679d1/download)
[Logs](https://api.biosimulations.org/logs/677d62243e750b90a42679d1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62243e750b90a42679d1)

HTTP response: 201| +|[01441-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01441-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d622b3e750b90a42679fa/download)
[Logs](https://api.biosimulations.org/logs/677d622b3e750b90a42679fa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d622b3e750b90a42679fa)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6229f8016f90e7cbdccf/download)
[Logs](https://api.biosimulations.org/logs/677d6229f8016f90e7cbdccf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6229f8016f90e7cbdccf)

HTTP response: 201| +|[01442-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01442-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6230f8016f90e7cbdd01/download)
[Logs](https://api.biosimulations.org/logs/677d6230f8016f90e7cbdd01?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6230f8016f90e7cbdd01)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d622e3e750b90a4267a02/download)
[Logs](https://api.biosimulations.org/logs/677d622e3e750b90a4267a02?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d622e3e750b90a4267a02)

HTTP response: 201| +|[01443-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01443-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d623567468f9f3fc5f74b/download)
[Logs](https://api.biosimulations.org/logs/677d623567468f9f3fc5f74b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d623567468f9f3fc5f74b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d62333e750b90a4267a18/download)
[Logs](https://api.biosimulations.org/logs/677d62333e750b90a4267a18?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62333e750b90a4267a18)

HTTP response: 201| +|[01444-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01444-sbml-l3v2.xml)|pass|pass|pass|
stochiometry Mutable stochiometry for species which appear multiple times in a single reaction is not currently supported, species reference id: A1_sr, at ?storeSymbolValue@ModelDataStoreSymbolResolver@rrllvm@@UEAAPEAVValue@llvm@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEAV34@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d623a67468f9f3fc5f758/download)
[Logs](https://api.biosimulations.org/logs/677d623a67468f9f3fc5f758?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d623a67468f9f3fc5f758)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Mutable stochiometry for species which appear multiple times in a single reaction is not currently supported, species reference id: A1_sr, at virtual llvm::Value* rrllvm::ModelDataStoreSymbolResolver::storeSymbolValue(const string&, llvm::Value*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d6238f8016f90e7cbdd1b/download)
[Logs](https://api.biosimulations.org/logs/677d6238f8016f90e7cbdd1b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6238f8016f90e7cbdd1b)

HTTP response: 201| +|[01445-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01445-sbml-l3v2.xml)|pass|pass|pass|
stochiometry Mutable stochiometry for species which appear multiple times in a single reaction is not currently supported, species reference id: A1_sr, at ?storeSymbolValue@ModelDataStoreSymbolResolver@rrllvm@@UEAAPEAVValue@llvm@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEAV34@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d623f67468f9f3fc5f780/download)
[Logs](https://api.biosimulations.org/logs/677d623f67468f9f3fc5f780?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d623f67468f9f3fc5f780)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Mutable stochiometry for species which appear multiple times in a single reaction is not currently supported, species reference id: A1_sr, at virtual llvm::Value* rrllvm::ModelDataStoreSymbolResolver::storeSymbolValue(const string&, llvm::Value*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d623d3e750b90a4267a32/download)
[Logs](https://api.biosimulations.org/logs/677d623d3e750b90a4267a32?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d623d3e750b90a4267a32)

HTTP response: 201| +|[01446-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01446-sbml-l3v2.xml)|pass|pass|pass|
stochiometry Mutable stochiometry for species which appear multiple times in a single reaction is not currently supported, species reference id: A1_sr, at ?storeSymbolValue@ModelDataStoreSymbolResolver@rrllvm@@UEAAPEAVValue@llvm@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEAV34@@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d62453e750b90a4267a57/download)
[Logs](https://api.biosimulations.org/logs/677d62453e750b90a4267a57?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62453e750b90a4267a57)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d624267468f9f3fc5f78a/download)
[Logs](https://api.biosimulations.org/logs/677d624267468f9f3fc5f78a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d624267468f9f3fc5f78a)

HTTP response: 201| +|[01447-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01447-sbml-l3v2.xml)|pass|pass|pass|
stochiometry Mutable stochiometry for species which appear multiple times in a single reaction is not currently supported, species reference id: A_sr1, at ?storeSymbolValue@ModelDataStoreSymbolResolver@rrllvm@@UEAAPEAVValue@llvm@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEAV34@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d624967468f9f3fc5f7ab/download)
[Logs](https://api.biosimulations.org/logs/677d624967468f9f3fc5f7ab?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d624967468f9f3fc5f7ab)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Mutable stochiometry for species which appear multiple times in a single reaction is not currently supported, species reference id: A_sr1, at virtual llvm::Value* rrllvm::ModelDataStoreSymbolResolver::storeSymbolValue(const string&, llvm::Value*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d624767468f9f3fc5f7a1/download)
[Logs](https://api.biosimulations.org/logs/677d624767468f9f3fc5f7a1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d624767468f9f3fc5f7a1)

HTTP response: 201| +|[01448-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01448-sbml-l3v2.xml)|pass|pass|pass|
stochiometry Mutable stochiometry for species which appear multiple times in a single reaction is not currently supported, species reference id: A_sr1, at ?storeSymbolValue@ModelDataStoreSymbolResolver@rrllvm@@UEAAPEAVValue@llvm@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEAV34@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d624f3e750b90a4267a8a/download)
[Logs](https://api.biosimulations.org/logs/677d624f3e750b90a4267a8a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d624f3e750b90a4267a8a)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Mutable stochiometry for species which appear multiple times in a single reaction is not currently supported, species reference id: A_sr1, at virtual llvm::Value* rrllvm::ModelDataStoreSymbolResolver::storeSymbolValue(const string&, llvm::Value*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d624df8016f90e7cbdd7a/download)
[Logs](https://api.biosimulations.org/logs/677d624df8016f90e7cbdd7a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d624df8016f90e7cbdd7a)

HTTP response: 201| +|[01449-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01449-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d62553e750b90a4267a9f/download)
[Logs](https://api.biosimulations.org/logs/677d62553e750b90a4267a9f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62553e750b90a4267a9f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d62523e750b90a4267a9a/download)
[Logs](https://api.biosimulations.org/logs/677d62523e750b90a4267a9a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62523e750b90a4267a9a)

HTTP response: 201| +|[01450-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01450-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d625a67468f9f3fc5f7ea/download)
[Logs](https://api.biosimulations.org/logs/677d625a67468f9f3fc5f7ea?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d625a67468f9f3fc5f7ea)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d625767468f9f3fc5f7d7/download)
[Logs](https://api.biosimulations.org/logs/677d625767468f9f3fc5f7d7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d625767468f9f3fc5f7d7)

HTTP response: 201| +|[01451-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01451-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d625ff8016f90e7cbddba/download)
[Logs](https://api.biosimulations.org/logs/677d625ff8016f90e7cbddba?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d625ff8016f90e7cbddba)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d625d3e750b90a4267ac0/download)
[Logs](https://api.biosimulations.org/logs/677d625d3e750b90a4267ac0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d625d3e750b90a4267ac0)

HTTP response: 201| +|[01452-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01452-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6265f8016f90e7cbddcd/download)
[Logs](https://api.biosimulations.org/logs/677d6265f8016f90e7cbddcd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6265f8016f90e7cbddcd)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d62623e750b90a4267ad1/download)
[Logs](https://api.biosimulations.org/logs/677d62623e750b90a4267ad1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62623e750b90a4267ad1)

HTTP response: 201| +|[01453-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01453-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d626a67468f9f3fc5f834/download)
[Logs](https://api.biosimulations.org/logs/677d626a67468f9f3fc5f834?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d626a67468f9f3fc5f834)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d626867468f9f3fc5f82b/download)
[Logs](https://api.biosimulations.org/logs/677d626867468f9f3fc5f82b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d626867468f9f3fc5f82b)

HTTP response: 201| +|[01454-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01454-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(S1, 0.1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d627167468f9f3fc5f84e/download)
[Logs](https://api.biosimulations.org/logs/677d627167468f9f3fc5f84e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d627167468f9f3fc5f84e)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(S1, 0.1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d626ef8016f90e7cbdde9/download)
[Logs](https://api.biosimulations.org/logs/677d626ef8016f90e7cbdde9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d626ef8016f90e7cbdde9)

HTTP response: 201| +|[01455-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01455-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d62783e750b90a4267b26/download)
[Logs](https://api.biosimulations.org/logs/677d62783e750b90a4267b26?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62783e750b90a4267b26)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf S1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d62753e750b90a4267b1a/download)
[Logs](https://api.biosimulations.org/logs/677d62753e750b90a4267b1a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62753e750b90a4267b1a)

HTTP response: 201| +|[01456-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01456-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d627df8016f90e7cbde24/download)
[Logs](https://api.biosimulations.org/logs/677d627df8016f90e7cbde24?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d627df8016f90e7cbde24)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf S1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d627a3e750b90a4267b2a/download)
[Logs](https://api.biosimulations.org/logs/677d627a3e750b90a4267b2a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d627a3e750b90a4267b2a)

HTTP response: 201| +|[01457-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01457-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d6285f8016f90e7cbde41/download)
[Logs](https://api.biosimulations.org/logs/677d6285f8016f90e7cbde41?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6285f8016f90e7cbde41)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf S1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d628167468f9f3fc5f88d/download)
[Logs](https://api.biosimulations.org/logs/677d628167468f9f3fc5f88d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d628167468f9f3fc5f88d)

HTTP response: 201| +|[01458-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01458-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d628b3e750b90a4267b59/download)
[Logs](https://api.biosimulations.org/logs/677d628b3e750b90a4267b59?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d628b3e750b90a4267b59)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf S1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d62893e750b90a4267b4c/download)
[Logs](https://api.biosimulations.org/logs/677d62893e750b90a4267b4c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62893e750b90a4267b4c)

HTTP response: 201| +|[01459-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01459-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d62913e750b90a4267b66/download)
[Logs](https://api.biosimulations.org/logs/677d62913e750b90a4267b66?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62913e750b90a4267b66)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf k1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d628e67468f9f3fc5f8be/download)
[Logs](https://api.biosimulations.org/logs/677d628e67468f9f3fc5f8be?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d628e67468f9f3fc5f8be)

HTTP response: 201| +|[01460-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01460-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d6296f8016f90e7cbde7a/download)
[Logs](https://api.biosimulations.org/logs/677d6296f8016f90e7cbde7a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6296f8016f90e7cbde7a)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf k1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d629467468f9f3fc5f8c7/download)
[Logs](https://api.biosimulations.org/logs/677d629467468f9f3fc5f8c7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d629467468f9f3fc5f8c7)

HTTP response: 201| +|[01461-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01461-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d629b67468f9f3fc5f8f3/download)
[Logs](https://api.biosimulations.org/logs/677d629b67468f9f3fc5f8f3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d629b67468f9f3fc5f8f3)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf p , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d629967468f9f3fc5f8e8/download)
[Logs](https://api.biosimulations.org/logs/677d629967468f9f3fc5f8e8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d629967468f9f3fc5f8e8)

HTTP response: 201| +|[01462-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01462-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d62a03e750b90a4267b9d/download)
[Logs](https://api.biosimulations.org/logs/677d62a03e750b90a4267b9d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62a03e750b90a4267b9d)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf S1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d629e67468f9f3fc5f8fd/download)
[Logs](https://api.biosimulations.org/logs/677d629e67468f9f3fc5f8fd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d629e67468f9f3fc5f8fd)

HTTP response: 201| +|[01463-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01463-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d62a83e750b90a4267bcf/download)
[Logs](https://api.biosimulations.org/logs/677d62a83e750b90a4267bcf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62a83e750b90a4267bcf)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf S1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d62a367468f9f3fc5f905/download)
[Logs](https://api.biosimulations.org/logs/677d62a367468f9f3fc5f905?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62a367468f9f3fc5f905)

HTTP response: 201| +|[01464-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01464-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d62ad3e750b90a4267bdb/download)
[Logs](https://api.biosimulations.org/logs/677d62ad3e750b90a4267bdb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62ad3e750b90a4267bdb)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d62aa3e750b90a4267bd3/download)
[Logs](https://api.biosimulations.org/logs/677d62aa3e750b90a4267bd3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62aa3e750b90a4267bd3)

HTTP response: 201| +|[01465-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01465-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d62b2f8016f90e7cbdeee/download)
[Logs](https://api.biosimulations.org/logs/677d62b2f8016f90e7cbdeee?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62b2f8016f90e7cbdeee)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d62b03e750b90a4267be2/download)
[Logs](https://api.biosimulations.org/logs/677d62b03e750b90a4267be2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62b03e750b90a4267be2)

HTTP response: 201| +|[01466-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01466-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d62b867468f9f3fc5f957/download)
[Logs](https://api.biosimulations.org/logs/677d62b867468f9f3fc5f957?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62b867468f9f3fc5f957)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d62b567468f9f3fc5f94b/download)
[Logs](https://api.biosimulations.org/logs/677d62b567468f9f3fc5f94b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62b567468f9f3fc5f94b)

HTTP response: 201| +|[01467-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01467-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d62bd3e750b90a4267c14/download)
[Logs](https://api.biosimulations.org/logs/677d62bd3e750b90a4267c14?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62bd3e750b90a4267c14)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d62bb67468f9f3fc5f969/download)
[Logs](https://api.biosimulations.org/logs/677d62bb67468f9f3fc5f969?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62bb67468f9f3fc5f969)

HTTP response: 201| +|[01468-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01468-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d62c3f8016f90e7cbdf28/download)
[Logs](https://api.biosimulations.org/logs/677d62c3f8016f90e7cbdf28?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62c3f8016f90e7cbdf28)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp635025 is invalid. - Data generator sub2__sub1__s1_1 is invalid. - Variable sub2__sub1__s1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub2__sub1__s1'] does not match any elements of model model_1 . - Data generator sub2__sub1__C_1 is invalid. - Variable sub2__sub1__C is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='sub2__sub1__C'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d62c03e750b90a4267c1e/download)
[Logs](https://api.biosimulations.org/logs/677d62c03e750b90a4267c1e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62c03e750b90a4267c1e)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp160237 is invalid. - Data generator sub2__sub1__s1_1 is invalid. - Variable sub2__sub1__s1 is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='sub2__sub1__s1'] does not match any elements of model model_1 . - Data generator sub2__sub1__C_1 is invalid. - Variable sub2__sub1__C is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfCompartments/sbml:compartment[@id='sub2__sub1__C'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01469-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01469-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d62c8f8016f90e7cbdf3c/download)
[Logs](https://api.biosimulations.org/logs/677d62c8f8016f90e7cbdf3c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62c8f8016f90e7cbdf3c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d62c567468f9f3fc5f97d/download)
[Logs](https://api.biosimulations.org/logs/677d62c567468f9f3fc5f97d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62c567468f9f3fc5f97d)

HTTP response: 201| +|[01470-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01470-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d62cd67468f9f3fc5f99e/download)
[Logs](https://api.biosimulations.org/logs/677d62cd67468f9f3fc5f99e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62cd67468f9f3fc5f99e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d62ca67468f9f3fc5f99a/download)
[Logs](https://api.biosimulations.org/logs/677d62ca67468f9f3fc5f99a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62ca67468f9f3fc5f99a)

HTTP response: 201| +|[01471-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01471-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d62d3f8016f90e7cbdf70/download)
[Logs](https://api.biosimulations.org/logs/677d62d3f8016f90e7cbdf70?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62d3f8016f90e7cbdf70)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp343007 is invalid. - Model model_1 is invalid. - The model file 01471-sbml-l3v2.xml is invalid. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 27, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 27, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 27, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 27, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 27, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 27, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. The with the id 'ExtMod1' refers to a source 'enzyme_model-l3v2.xml' that cannot be accessed from here. Further checks relating to this document cannot be performed. - Data generator A__E_1 is invalid. - Variable A__E_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__E'] does not match any elements of model model_1 . - Data generator A__ES_1 is invalid. - Variable A__ES_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__ES'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d62d067468f9f3fc5f9a7/download)
[Logs](https://api.biosimulations.org/logs/677d62d067468f9f3fc5f9a7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62d067468f9f3fc5f9a7)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp108948 is invalid. - Model model_1 is invalid. - The model file 01471-sbml-l3v2.xml is invalid. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 27, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 27, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 27, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 27, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 27, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 27, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 63, column 4: The external model referenced in this model could not be resolved. The with the id 'ExtMod1' refers to a source 'enzyme_model-l3v2.xml' that cannot be accessed from here. Further checks relating to this document cannot be performed. - Data generator A__E_1 is invalid. - Variable A__E_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__E'] does not match any elements of model model_1 . - Data generator A__ES_1 is invalid. - Variable A__ES_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__ES'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01472-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01472-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d62d8f8016f90e7cbdf96/download)
[Logs](https://api.biosimulations.org/logs/677d62d8f8016f90e7cbdf96?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62d8f8016f90e7cbdf96)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp871078 is invalid. - Model model_1 is invalid. - The model file 01472-sbml-l3v2.xml is invalid. - SBML component consistency (1090101) at line 28, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 24, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 28, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 24, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 28, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 24, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 28, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 24, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 28, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 24, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 28, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 24, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 28, column 4: The external model referenced in this model could not be resolved. The with the id 'ExtMod1' refers to a source 'enzyme_model-l3v2.xml' that cannot be accessed from here. Further checks relating to this document cannot be performed. - Data generator A__submod1__E_1 is invalid. - Variable A__submod1__E_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__submod1__E'] does not match any elements of model model_1 . - Data generator A__submod1__ES_1 is invalid. - Variable A__submod1__ES_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__submod1__ES'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d62d567468f9f3fc5f9be/download)
[Logs](https://api.biosimulations.org/logs/677d62d567468f9f3fc5f9be?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62d567468f9f3fc5f9be)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp319829 is invalid. - Model model_1 is invalid. - The model file 01472-sbml-l3v2.xml is invalid. - SBML component consistency (1090101) at line 28, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 24, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 28, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 24, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 28, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 24, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 28, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 24, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 28, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 24, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 28, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 24, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 28, column 4: The external model referenced in this model could not be resolved. The with the id 'ExtMod1' refers to a source 'enzyme_model-l3v2.xml' that cannot be accessed from here. Further checks relating to this document cannot be performed. - Data generator A__submod1__E_1 is invalid. - Variable A__submod1__E_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__submod1__E'] does not match any elements of model model_1 . - Data generator A__submod1__ES_1 is invalid. - Variable A__submod1__ES_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__submod1__ES'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01473-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01473-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d62ddf8016f90e7cbdfa8/download)
[Logs](https://api.biosimulations.org/logs/677d62ddf8016f90e7cbdfa8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62ddf8016f90e7cbdfa8)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp440555 is invalid. - Model model_1 is invalid. - The model file 01473-sbml-l3v2.xml is invalid. - SBML component consistency (1090101) at line 34, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 30, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 34, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 30, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 34, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 30, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 34, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 30, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 34, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 30, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 34, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 30, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 34, column 4: The external model referenced in this model could not be resolved. The with the id 'ExtMod1' refers to a source 'enzyme_model-l3v2.xml' that cannot be accessed from here. Further checks relating to this document cannot be performed. - Data generator A__submod1__E_1 is invalid. - Variable A__submod1__E_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__submod1__E'] does not match any elements of model model_1 . - Data generator A__submod1__ES_1 is invalid. - Variable A__submod1__ES_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__submod1__ES'] does not match any elements of model model_1 .```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d62db3e750b90a4267ca3/download)
[Logs](https://api.biosimulations.org/logs/677d62db3e750b90a4267ca3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62db3e750b90a4267ca3)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp940942 is invalid. - Model model_1 is invalid. - The model file 01473-sbml-l3v2.xml is invalid. - SBML component consistency (1090101) at line 34, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 30, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 34, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 30, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 34, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 30, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 34, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 30, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 34, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 30, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 34, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'ExtMod1': could not the resolve 'source' attribute 'enzyme_model-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 30, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'A' because the external model definition it referenced (model 'ExtMod1') could not be resolved. - SBML component consistency (1090101) at line 34, column 4: The external model referenced in this model could not be resolved. The with the id 'ExtMod1' refers to a source 'enzyme_model-l3v2.xml' that cannot be accessed from here. Further checks relating to this document cannot be performed. - Data generator A__submod1__E_1 is invalid. - Variable A__submod1__E_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__submod1__E'] does not match any elements of model model_1 . - Data generator A__submod1__ES_1 is invalid. - Variable A__submod1__ES_1_s is invalid. - XPath /sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='A__submod1__ES'] does not match any elements of model model_1 .```

Exception type: ```ValueError```| +|[01474-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01474-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d62e2f8016f90e7cbdfbc/download)
[Logs](https://api.biosimulations.org/logs/677d62e2f8016f90e7cbdfbc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62e2f8016f90e7cbdfbc)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d62e03e750b90a4267cb1/download)
[Logs](https://api.biosimulations.org/logs/677d62e03e750b90a4267cb1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62e03e750b90a4267cb1)

HTTP response: 201| +|[01475-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01475-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d62e8f8016f90e7cbdfd1/download)
[Logs](https://api.biosimulations.org/logs/677d62e8f8016f90e7cbdfd1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62e8f8016f90e7cbdfd1)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp536772 is invalid. - Model model_1 is invalid. - The model file 01475-sbml-l3v2.xml is invalid. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. The with the id 'moddef2' refers to a source 'external-l3v2.xml' that cannot be accessed from here. Further checks relating to this document cannot be performed. ```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d62e5f8016f90e7cbdfc9/download)
[Logs](https://api.biosimulations.org/logs/677d62e5f8016f90e7cbdfc9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62e5f8016f90e7cbdfc9)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp145754 is invalid. - Model model_1 is invalid. - The model file 01475-sbml-l3v2.xml is invalid. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. The with the id 'moddef2' refers to a source 'external-l3v2.xml' that cannot be accessed from here. Further checks relating to this document cannot be performed. ```

Exception type: ```ValueError```| +|[01476-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01476-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d62ed67468f9f3fc5fa09/download)
[Logs](https://api.biosimulations.org/logs/677d62ed67468f9f3fc5fa09?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62ed67468f9f3fc5fa09)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp744772 is invalid. - Model model_1 is invalid. - The model file 01476-sbml-l3v2.xml is invalid. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. The with the id 'moddef2' refers to a source 'external-l3v2.xml' that cannot be accessed from here. Further checks relating to this document cannot be performed. ```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d62eaf8016f90e7cbdfdc/download)
[Logs](https://api.biosimulations.org/logs/677d62eaf8016f90e7cbdfdc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62eaf8016f90e7cbdfdc)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp445141 is invalid. - Model model_1 is invalid. - The model file 01476-sbml-l3v2.xml is invalid. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. The with the id 'moddef2' refers to a source 'external-l3v2.xml' that cannot be accessed from here. Further checks relating to this document cannot be performed. ```

Exception type: ```ValueError```| +|[01477-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01477-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d62f3f8016f90e7cbe000/download)
[Logs](https://api.biosimulations.org/logs/677d62f3f8016f90e7cbe000?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62f3f8016f90e7cbe000)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp170507 is invalid. - Model model_1 is invalid. - The model file 01477-sbml-l3v2.xml is invalid. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. The with the id 'moddef2' refers to a source 'external-l3v2.xml' that cannot be accessed from here. Further checks relating to this document cannot be performed. ```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d62f0f8016f90e7cbdff4/download)
[Logs](https://api.biosimulations.org/logs/677d62f0f8016f90e7cbdff4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62f0f8016f90e7cbdff4)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp328591 is invalid. - Model model_1 is invalid. - The model file 01477-sbml-l3v2.xml is invalid. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. The with the id 'moddef2' refers to a source 'external-l3v2.xml' that cannot be accessed from here. Further checks relating to this document cannot be performed. ```

Exception type: ```ValueError```| +|[01478-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01478-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d62f867468f9f3fc5fa23/download)
[Logs](https://api.biosimulations.org/logs/677d62f867468f9f3fc5fa23?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62f867468f9f3fc5fa23)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d62f63e750b90a4267d16/download)
[Logs](https://api.biosimulations.org/logs/677d62f63e750b90a4267d16?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62f63e750b90a4267d16)

HTTP response: 201| +|[01479-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01479-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = avogadro / 1e23 - P1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d62fd3e750b90a4267d30/download)
[Logs](https://api.biosimulations.org/logs/677d62fd3e750b90a4267d30?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62fd3e750b90a4267d30)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'P1' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d62fbf8016f90e7cbe028/download)
[Logs](https://api.biosimulations.org/logs/677d62fbf8016f90e7cbe028?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d62fbf8016f90e7cbe028)

HTTP response: 201| +|[01480-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01480-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d6303f8016f90e7cbe057/download)
[Logs](https://api.biosimulations.org/logs/677d6303f8016f90e7cbe057?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6303f8016f90e7cbe057)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d6300f8016f90e7cbe052/download)
[Logs](https://api.biosimulations.org/logs/677d6300f8016f90e7cbe052?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6300f8016f90e7cbe052)

HTTP response: 201| +|[01481-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01481-sbml-l2v5.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d630867468f9f3fc5fa6b/download)
[Logs](https://api.biosimulations.org/logs/677d630867468f9f3fc5fa6b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d630867468f9f3fc5fa6b)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d630567468f9f3fc5fa5f/download)
[Logs](https://api.biosimulations.org/logs/677d630567468f9f3fc5fa5f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d630567468f9f3fc5fa5f)

HTTP response: 201| +|[01482-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01482-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = rateOf(S1) - P1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d630df8016f90e7cbe080/download)
[Logs](https://api.biosimulations.org/logs/677d630df8016f90e7cbe080?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d630df8016f90e7cbe080)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'P1' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d630bf8016f90e7cbe074/download)
[Logs](https://api.biosimulations.org/logs/677d630bf8016f90e7cbe074?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d630bf8016f90e7cbe074)

HTTP response: 201| +|[01483-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01483-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = rateOf(S1) - P1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d631267468f9f3fc5fa92/download)
[Logs](https://api.biosimulations.org/logs/677d631267468f9f3fc5fa92?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d631267468f9f3fc5fa92)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'P1' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d630ff8016f90e7cbe08b/download)
[Logs](https://api.biosimulations.org/logs/677d630ff8016f90e7cbe08b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d630ff8016f90e7cbe08b)

HTTP response: 201| +|[01484-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01484-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = P1 - S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d631967468f9f3fc5fab0/download)
[Logs](https://api.biosimulations.org/logs/677d631967468f9f3fc5fab0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d631967468f9f3fc5fab0)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'P1' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d631667468f9f3fc5fa9e/download)
[Logs](https://api.biosimulations.org/logs/677d631667468f9f3fc5fa9e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d631667468f9f3fc5fa9e)

HTTP response: 201| +|[01485-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01485-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d631e3e750b90a4267dc9/download)
[Logs](https://api.biosimulations.org/logs/677d631e3e750b90a4267dc9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d631e3e750b90a4267dc9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d631b67468f9f3fc5fabc/download)
[Logs](https://api.biosimulations.org/logs/677d631b67468f9f3fc5fabc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d631b67468f9f3fc5fabc)

HTTP response: 201| +|[01486-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01486-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d632367468f9f3fc5fae7/download)
[Logs](https://api.biosimulations.org/logs/677d632367468f9f3fc5fae7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d632367468f9f3fc5fae7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6320f8016f90e7cbe0ca/download)
[Logs](https://api.biosimulations.org/logs/677d6320f8016f90e7cbe0ca?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6320f8016f90e7cbe0ca)

HTTP response: 201| +|[01487-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01487-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d63293e750b90a4267df4/download)
[Logs](https://api.biosimulations.org/logs/677d63293e750b90a4267df4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63293e750b90a4267df4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d63263e750b90a4267dea/download)
[Logs](https://api.biosimulations.org/logs/677d63263e750b90a4267dea?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63263e750b90a4267dea)

HTTP response: 201| +|[01488-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01488-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d632e3e750b90a4267e00/download)
[Logs](https://api.biosimulations.org/logs/677d632e3e750b90a4267e00?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d632e3e750b90a4267e00)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d632cf8016f90e7cbe0f8/download)
[Logs](https://api.biosimulations.org/logs/677d632cf8016f90e7cbe0f8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d632cf8016f90e7cbe0f8)

HTTP response: 201| +|[01489-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01489-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d633367468f9f3fc5fb14/download)
[Logs](https://api.biosimulations.org/logs/677d633367468f9f3fc5fb14?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d633367468f9f3fc5fb14)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d63313e750b90a4267e11/download)
[Logs](https://api.biosimulations.org/logs/677d63313e750b90a4267e11?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63313e750b90a4267e11)

HTTP response: 201| +|[01490-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01490-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6339f8016f90e7cbe136/download)
[Logs](https://api.biosimulations.org/logs/677d6339f8016f90e7cbe136?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6339f8016f90e7cbe136)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d63363e750b90a4267e21/download)
[Logs](https://api.biosimulations.org/logs/677d63363e750b90a4267e21?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63363e750b90a4267e21)

HTTP response: 201| +|[01491-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01491-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d633e67468f9f3fc5fb3d/download)
[Logs](https://api.biosimulations.org/logs/677d633e67468f9f3fc5fb3d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d633e67468f9f3fc5fb3d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d633b67468f9f3fc5fb34/download)
[Logs](https://api.biosimulations.org/logs/677d633b67468f9f3fc5fb34?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d633b67468f9f3fc5fb34)

HTTP response: 201| +|[01492-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01492-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6343f8016f90e7cbe159/download)
[Logs](https://api.biosimulations.org/logs/677d6343f8016f90e7cbe159?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6343f8016f90e7cbe159)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d63413e750b90a4267e42/download)
[Logs](https://api.biosimulations.org/logs/677d63413e750b90a4267e42?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63413e750b90a4267e42)

HTTP response: 201| +|[01493-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01493-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d634d67468f9f3fc5fb77/download)
[Logs](https://api.biosimulations.org/logs/677d634d67468f9f3fc5fb77?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d634d67468f9f3fc5fb77)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6349f8016f90e7cbe16a/download)
[Logs](https://api.biosimulations.org/logs/677d6349f8016f90e7cbe16a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6349f8016f90e7cbe16a)

HTTP response: 201| +|[01494-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01494-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6352f8016f90e7cbe192/download)
[Logs](https://api.biosimulations.org/logs/677d6352f8016f90e7cbe192?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6352f8016f90e7cbe192)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d63503e750b90a4267e72/download)
[Logs](https://api.biosimulations.org/logs/677d63503e750b90a4267e72?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63503e750b90a4267e72)

HTTP response: 201| +|[01495-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01495-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d635867468f9f3fc5fba7/download)
[Logs](https://api.biosimulations.org/logs/677d635867468f9f3fc5fba7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d635867468f9f3fc5fba7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6355f8016f90e7cbe19c/download)
[Logs](https://api.biosimulations.org/logs/677d6355f8016f90e7cbe19c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6355f8016f90e7cbe19c)

HTTP response: 201| +|[01496-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01496-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d635d3e750b90a4267ea9/download)
[Logs](https://api.biosimulations.org/logs/677d635d3e750b90a4267ea9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d635d3e750b90a4267ea9)

HTTP response: 201|
FAIL[Download](https://api.biosimulations.org/results/677d635b67468f9f3fc5fbae/download)
[Logs](https://api.biosimulations.org/logs/677d635b67468f9f3fc5fbae?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d635b67468f9f3fc5fbae)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :("SBML '/tmp/tmpt9xp2p_h/./01496-sbml-l3v2.xml' could not be imported into COPASI;\n\t", >)```

Exception type: ```CombineArchiveExecutionError```| +|[01497-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01497-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d63623e750b90a4267eb4/download)
[Logs](https://api.biosimulations.org/logs/677d63623e750b90a4267eb4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63623e750b90a4267eb4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d636067468f9f3fc5fbb6/download)
[Logs](https://api.biosimulations.org/logs/677d636067468f9f3fc5fbb6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d636067468f9f3fc5fbb6)

HTTP response: 201| +|[01498-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01498-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d636767468f9f3fc5fbcd/download)
[Logs](https://api.biosimulations.org/logs/677d636767468f9f3fc5fbcd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d636767468f9f3fc5fbcd)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d636567468f9f3fc5fbc5/download)
[Logs](https://api.biosimulations.org/logs/677d636567468f9f3fc5fbc5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d636567468f9f3fc5fbc5)

HTTP response: 201| +|[01499-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01499-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = P0 - S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d636df8016f90e7cbe1e3/download)
[Logs](https://api.biosimulations.org/logs/677d636df8016f90e7cbe1e3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d636df8016f90e7cbe1e3)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'P0' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d636b3e750b90a4267edd/download)
[Logs](https://api.biosimulations.org/logs/677d636b3e750b90a4267edd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d636b3e750b90a4267edd)

HTTP response: 201| +|[01500-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01500-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = P0 - S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d6372f8016f90e7cbe1fa/download)
[Logs](https://api.biosimulations.org/logs/677d6372f8016f90e7cbe1fa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6372f8016f90e7cbe1fa)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'P0' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d636ff8016f90e7cbe1ee/download)
[Logs](https://api.biosimulations.org/logs/677d636ff8016f90e7cbe1ee?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d636ff8016f90e7cbe1ee)

HTTP response: 201| +|[01501-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01501-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = P0 - S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d637767468f9f3fc5fc13/download)
[Logs](https://api.biosimulations.org/logs/677d637767468f9f3fc5fc13?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d637767468f9f3fc5fc13)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'P0' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d637467468f9f3fc5fc06/download)
[Logs](https://api.biosimulations.org/logs/677d637467468f9f3fc5fc06?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d637467468f9f3fc5fc06)

HTTP response: 201| +|[01502-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01502-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = P2 - abs(-1)' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d637d3e750b90a4267f35/download)
[Logs](https://api.biosimulations.org/logs/677d637d3e750b90a4267f35?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d637d3e750b90a4267f35)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'P2' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d637a3e750b90a4267f1b/download)
[Logs](https://api.biosimulations.org/logs/677d637a3e750b90a4267f1b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d637a3e750b90a4267f1b)

HTTP response: 201| +|[01503-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01503-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = P1 - plus()' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d63823e750b90a4267f46/download)
[Logs](https://api.biosimulations.org/logs/677d63823e750b90a4267f46?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63823e750b90a4267f46)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'P1' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d637ff8016f90e7cbe22c/download)
[Logs](https://api.biosimulations.org/logs/677d637ff8016f90e7cbe22c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d637ff8016f90e7cbe22c)

HTTP response: 201| +|[01504-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01504-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d63873e750b90a4267f5b/download)
[Logs](https://api.biosimulations.org/logs/677d63873e750b90a4267f5b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63873e750b90a4267f5b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d63853e750b90a4267f51/download)
[Logs](https://api.biosimulations.org/logs/677d63853e750b90a4267f51?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63853e750b90a4267f51)

HTTP response: 201| +|[01505-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01505-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d638df8016f90e7cbe262/download)
[Logs](https://api.biosimulations.org/logs/677d638df8016f90e7cbe262?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d638df8016f90e7cbe262)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d638b67468f9f3fc5fc8c/download)
[Logs](https://api.biosimulations.org/logs/677d638b67468f9f3fc5fc8c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d638b67468f9f3fc5fc8c)

HTTP response: 201| +|[01506-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01506-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d63923e750b90a4267f7d/download)
[Logs](https://api.biosimulations.org/logs/677d63923e750b90a4267f7d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63923e750b90a4267f7d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d63903e750b90a4267f78/download)
[Logs](https://api.biosimulations.org/logs/677d63903e750b90a4267f78?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63903e750b90a4267f78)

HTTP response: 201| +|[01507-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01507-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d639767468f9f3fc5fcb8/download)
[Logs](https://api.biosimulations.org/logs/677d639767468f9f3fc5fcb8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d639767468f9f3fc5fcb8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d639567468f9f3fc5fcac/download)
[Logs](https://api.biosimulations.org/logs/677d639567468f9f3fc5fcac?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d639567468f9f3fc5fcac)

HTTP response: 201| +|[01508-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01508-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d639df8016f90e7cbe29a/download)
[Logs](https://api.biosimulations.org/logs/677d639df8016f90e7cbe29a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d639df8016f90e7cbe29a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d639a67468f9f3fc5fcc8/download)
[Logs](https://api.biosimulations.org/logs/677d639a67468f9f3fc5fcc8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d639a67468f9f3fc5fcc8)

HTTP response: 201| +|[01509-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01509-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d63a267468f9f3fc5fce0/download)
[Logs](https://api.biosimulations.org/logs/677d63a267468f9f3fc5fce0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63a267468f9f3fc5fce0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d63a0f8016f90e7cbe2aa/download)
[Logs](https://api.biosimulations.org/logs/677d63a0f8016f90e7cbe2aa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63a0f8016f90e7cbe2aa)

HTTP response: 201| +|[01510-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01510-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d63a767468f9f3fc5fcf7/download)
[Logs](https://api.biosimulations.org/logs/677d63a767468f9f3fc5fcf7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63a767468f9f3fc5fcf7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d63a5f8016f90e7cbe2b8/download)
[Logs](https://api.biosimulations.org/logs/677d63a5f8016f90e7cbe2b8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63a5f8016f90e7cbe2b8)

HTTP response: 201| +|[01511-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01511-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d63adf8016f90e7cbe2e1/download)
[Logs](https://api.biosimulations.org/logs/677d63adf8016f90e7cbe2e1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63adf8016f90e7cbe2e1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d63aa3e750b90a4267fd4/download)
[Logs](https://api.biosimulations.org/logs/677d63aa3e750b90a4267fd4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63aa3e750b90a4267fd4)

HTTP response: 201| +|[01512-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01512-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d63b3f8016f90e7cbe2f8/download)
[Logs](https://api.biosimulations.org/logs/677d63b3f8016f90e7cbe2f8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63b3f8016f90e7cbe2f8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d63b03e750b90a4267fea/download)
[Logs](https://api.biosimulations.org/logs/677d63b03e750b90a4267fea?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63b03e750b90a4267fea)

HTTP response: 201| +|[01513-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01513-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d63b93e750b90a4268017/download)
[Logs](https://api.biosimulations.org/logs/677d63b93e750b90a4268017?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63b93e750b90a4268017)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d63b63e750b90a4268012/download)
[Logs](https://api.biosimulations.org/logs/677d63b63e750b90a4268012?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63b63e750b90a4268012)

HTTP response: 201| +|[01514-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01514-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d63bef8016f90e7cbe31d/download)
[Logs](https://api.biosimulations.org/logs/677d63bef8016f90e7cbe31d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63bef8016f90e7cbe31d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d63bbf8016f90e7cbe307/download)
[Logs](https://api.biosimulations.org/logs/677d63bbf8016f90e7cbe307?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63bbf8016f90e7cbe307)

HTTP response: 201| +|[01515-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01515-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d63c43e750b90a426804a/download)
[Logs](https://api.biosimulations.org/logs/677d63c43e750b90a426804a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63c43e750b90a426804a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d63c167468f9f3fc5fd68/download)
[Logs](https://api.biosimulations.org/logs/677d63c167468f9f3fc5fd68?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63c167468f9f3fc5fd68)

HTTP response: 201| +|[01516-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01516-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d63cb3e750b90a426805f/download)
[Logs](https://api.biosimulations.org/logs/677d63cb3e750b90a426805f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63cb3e750b90a426805f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d63c867468f9f3fc5fd7e/download)
[Logs](https://api.biosimulations.org/logs/677d63c867468f9f3fc5fd7e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63c867468f9f3fc5fd7e)

HTTP response: 201| +|[01517-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01517-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d63d03e750b90a4268071/download)
[Logs](https://api.biosimulations.org/logs/677d63d03e750b90a4268071?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63d03e750b90a4268071)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d63ce67468f9f3fc5fd8f/download)
[Logs](https://api.biosimulations.org/logs/677d63ce67468f9f3fc5fd8f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63ce67468f9f3fc5fd8f)

HTTP response: 201| +|[01518-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01518-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(P1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d63d83e750b90a426808b/download)
[Logs](https://api.biosimulations.org/logs/677d63d83e750b90a426808b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63d83e750b90a426808b)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(P1, 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d63d5f8016f90e7cbe384/download)
[Logs](https://api.biosimulations.org/logs/677d63d5f8016f90e7cbe384?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63d5f8016f90e7cbe384)

HTTP response: 201| +|[01519-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01519-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(P1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d63dd3e750b90a4268098/download)
[Logs](https://api.biosimulations.org/logs/677d63dd3e750b90a4268098?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63dd3e750b90a4268098)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(P1, 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d63db3e750b90a426808e/download)
[Logs](https://api.biosimulations.org/logs/677d63db3e750b90a426808e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63db3e750b90a426808e)

HTTP response: 201| +|[01520-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01520-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(P1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d63e2f8016f90e7cbe3aa/download)
[Logs](https://api.biosimulations.org/logs/677d63e2f8016f90e7cbe3aa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63e2f8016f90e7cbe3aa)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(P1, 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d63e067468f9f3fc5fdd3/download)
[Logs](https://api.biosimulations.org/logs/677d63e067468f9f3fc5fdd3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63e067468f9f3fc5fdd3)

HTTP response: 201| +|[01521-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01521-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(P1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d63e83e750b90a42680b9/download)
[Logs](https://api.biosimulations.org/logs/677d63e83e750b90a42680b9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63e83e750b90a42680b9)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(P1, 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d63e567468f9f3fc5fdd9/download)
[Logs](https://api.biosimulations.org/logs/677d63e567468f9f3fc5fdd9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63e567468f9f3fc5fdd9)

HTTP response: 201| +|[01522-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01522-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(P1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d63ed3e750b90a42680d6/download)
[Logs](https://api.biosimulations.org/logs/677d63ed3e750b90a42680d6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63ed3e750b90a42680d6)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(P1, 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d63eb3e750b90a42680c4/download)
[Logs](https://api.biosimulations.org/logs/677d63eb3e750b90a42680c4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63eb3e750b90a42680c4)

HTTP response: 201| +|[01523-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01523-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(P1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d63f33e750b90a42680df/download)
[Logs](https://api.biosimulations.org/logs/677d63f33e750b90a42680df?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63f33e750b90a42680df)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(P1, 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d63f0f8016f90e7cbe3db/download)
[Logs](https://api.biosimulations.org/logs/677d63f0f8016f90e7cbe3db?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63f0f8016f90e7cbe3db)

HTTP response: 201| +|[01524-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01524-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(P1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d63f83e750b90a42680fa/download)
[Logs](https://api.biosimulations.org/logs/677d63f83e750b90a42680fa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63f83e750b90a42680fa)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(P1, 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d63f667468f9f3fc5fe38/download)
[Logs](https://api.biosimulations.org/logs/677d63f667468f9f3fc5fe38?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63f667468f9f3fc5fe38)

HTTP response: 201| +|[01525-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01525-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d63fe3e750b90a4268116/download)
[Logs](https://api.biosimulations.org/logs/677d63fe3e750b90a4268116?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63fe3e750b90a4268116)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d63fbf8016f90e7cbe400/download)
[Logs](https://api.biosimulations.org/logs/677d63fbf8016f90e7cbe400?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d63fbf8016f90e7cbe400)

HTTP response: 201| +|[01526-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01526-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d64033e750b90a426812c/download)
[Logs](https://api.biosimulations.org/logs/677d64033e750b90a426812c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64033e750b90a426812c)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d64003e750b90a4268125/download)
[Logs](https://api.biosimulations.org/logs/677d64003e750b90a4268125?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64003e750b90a4268125)

HTTP response: 201| +|[01527-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01527-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d640867468f9f3fc5fe81/download)
[Logs](https://api.biosimulations.org/logs/677d640867468f9f3fc5fe81?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d640867468f9f3fc5fe81)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d640667468f9f3fc5fe7c/download)
[Logs](https://api.biosimulations.org/logs/677d640667468f9f3fc5fe7c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d640667468f9f3fc5fe7c)

HTTP response: 201| +|[01528-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01528-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d640df8016f90e7cbe439/download)
[Logs](https://api.biosimulations.org/logs/677d640df8016f90e7cbe439?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d640df8016f90e7cbe439)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf P1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d640bf8016f90e7cbe429/download)
[Logs](https://api.biosimulations.org/logs/677d640bf8016f90e7cbe429?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d640bf8016f90e7cbe429)

HTTP response: 201| +|[01529-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01529-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d6413f8016f90e7cbe449/download)
[Logs](https://api.biosimulations.org/logs/677d6413f8016f90e7cbe449?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6413f8016f90e7cbe449)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf P1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d64103e750b90a426815d/download)
[Logs](https://api.biosimulations.org/logs/677d64103e750b90a426815d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64103e750b90a426815d)

HTTP response: 201| +|[01530-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01530-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d641967468f9f3fc5fed2/download)
[Logs](https://api.biosimulations.org/logs/677d641967468f9f3fc5fed2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d641967468f9f3fc5fed2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6416f8016f90e7cbe45c/download)
[Logs](https://api.biosimulations.org/logs/677d6416f8016f90e7cbe45c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6416f8016f90e7cbe45c)

HTTP response: 201| +|[01531-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01531-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6420f8016f90e7cbe47d/download)
[Logs](https://api.biosimulations.org/logs/677d6420f8016f90e7cbe47d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6420f8016f90e7cbe47d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d641d67468f9f3fc5fedb/download)
[Logs](https://api.biosimulations.org/logs/677d641d67468f9f3fc5fedb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d641d67468f9f3fc5fedb)

HTTP response: 201| +|[01532-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01532-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d64263e750b90a42681ae/download)
[Logs](https://api.biosimulations.org/logs/677d64263e750b90a42681ae?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64263e750b90a42681ae)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d64233e750b90a426819b/download)
[Logs](https://api.biosimulations.org/logs/677d64233e750b90a426819b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64233e750b90a426819b)

HTTP response: 201| +|[01533-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01533-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d642c67468f9f3fc5ff12/download)
[Logs](https://api.biosimulations.org/logs/677d642c67468f9f3fc5ff12?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d642c67468f9f3fc5ff12)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6429f8016f90e7cbe4a3/download)
[Logs](https://api.biosimulations.org/logs/677d6429f8016f90e7cbe4a3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6429f8016f90e7cbe4a3)

HTTP response: 201| +|[01534-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01534-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d64313e750b90a42681c7/download)
[Logs](https://api.biosimulations.org/logs/677d64313e750b90a42681c7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64313e750b90a42681c7)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d642e3e750b90a42681b5/download)
[Logs](https://api.biosimulations.org/logs/677d642e3e750b90a42681b5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d642e3e750b90a42681b5)

HTTP response: 201| +|[01535-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01535-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d643767468f9f3fc5ff3b/download)
[Logs](https://api.biosimulations.org/logs/677d643767468f9f3fc5ff3b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d643767468f9f3fc5ff3b)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d6433f8016f90e7cbe4cc/download)
[Logs](https://api.biosimulations.org/logs/677d6433f8016f90e7cbe4cc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6433f8016f90e7cbe4cc)

HTTP response: 201| +|[01536-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01536-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(P1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d643c67468f9f3fc5ff47/download)
[Logs](https://api.biosimulations.org/logs/677d643c67468f9f3fc5ff47?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d643c67468f9f3fc5ff47)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(P1, 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d643af8016f90e7cbe4da/download)
[Logs](https://api.biosimulations.org/logs/677d643af8016f90e7cbe4da?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d643af8016f90e7cbe4da)

HTTP response: 201| +|[01537-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01537-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d6441f8016f90e7cbe4f2/download)
[Logs](https://api.biosimulations.org/logs/677d6441f8016f90e7cbe4f2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6441f8016f90e7cbe4f2)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d643f67468f9f3fc5ff50/download)
[Logs](https://api.biosimulations.org/logs/677d643f67468f9f3fc5ff50?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d643f67468f9f3fc5ff50)

HTTP response: 201| +|[01538-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01538-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d644667468f9f3fc5ff62/download)
[Logs](https://api.biosimulations.org/logs/677d644667468f9f3fc5ff62?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d644667468f9f3fc5ff62)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(S1, 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d64443e750b90a4268215/download)
[Logs](https://api.biosimulations.org/logs/677d64443e750b90a4268215?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64443e750b90a4268215)

HTTP response: 201| +|[01539-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01539-sbml-l3v1.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(S1, 1.5)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d644bf8016f90e7cbe51a/download)
[Logs](https://api.biosimulations.org/logs/677d644bf8016f90e7cbe51a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d644bf8016f90e7cbe51a)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(S1, 1.5)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d6449f8016f90e7cbe511/download)
[Logs](https://api.biosimulations.org/logs/677d6449f8016f90e7cbe511?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6449f8016f90e7cbe511)

HTTP response: 201| +|[01540-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01540-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d64513e750b90a4268240/download)
[Logs](https://api.biosimulations.org/logs/677d64513e750b90a4268240?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64513e750b90a4268240)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf S1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d644ef8016f90e7cbe525/download)
[Logs](https://api.biosimulations.org/logs/677d644ef8016f90e7cbe525?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d644ef8016f90e7cbe525)

HTTP response: 201| +|[01541-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01541-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d6456f8016f90e7cbe54b/download)
[Logs](https://api.biosimulations.org/logs/677d6456f8016f90e7cbe54b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6456f8016f90e7cbe54b)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf S1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d64533e750b90a426824d/download)
[Logs](https://api.biosimulations.org/logs/677d64533e750b90a426824d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64533e750b90a426824d)

HTTP response: 201| +|[01542-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01542-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d645c3e750b90a4268261/download)
[Logs](https://api.biosimulations.org/logs/677d645c3e750b90a4268261?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d645c3e750b90a4268261)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf S1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d645967468f9f3fc5ffc0/download)
[Logs](https://api.biosimulations.org/logs/677d645967468f9f3fc5ffc0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d645967468f9f3fc5ffc0)

HTTP response: 201| +|[01543-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01543-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d6462f8016f90e7cbe573/download)
[Logs](https://api.biosimulations.org/logs/677d6462f8016f90e7cbe573?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6462f8016f90e7cbe573)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unknown ASTNode type of 323, from rateOf S1 , at llvm::Value* rrllvm::ASTNodeCodeGen::codeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d645f67468f9f3fc5ffd4/download)
[Logs](https://api.biosimulations.org/logs/677d645f67468f9f3fc5ffd4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d645f67468f9f3fc5ffd4)

HTTP response: 201| +|[01544-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01544-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d64683e750b90a42682b9/download)
[Logs](https://api.biosimulations.org/logs/677d64683e750b90a42682b9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64683e750b90a42682b9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d64653e750b90a4268295/download)
[Logs](https://api.biosimulations.org/logs/677d64653e750b90a4268295?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64653e750b90a4268295)

HTTP response: 201| +|[01545-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01545-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d646e3e750b90a42682bc/download)
[Logs](https://api.biosimulations.org/logs/677d646e3e750b90a42682bc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d646e3e750b90a42682bc)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d646b67468f9f3fc6000a/download)
[Logs](https://api.biosimulations.org/logs/677d646b67468f9f3fc6000a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d646b67468f9f3fc6000a)

HTTP response: 201| +|[01546-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01546-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d64753e750b90a42682d5/download)
[Logs](https://api.biosimulations.org/logs/677d64753e750b90a42682d5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64753e750b90a42682d5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d647167468f9f3fc60029/download)
[Logs](https://api.biosimulations.org/logs/677d647167468f9f3fc60029?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d647167468f9f3fc60029)

HTTP response: 201| +|[01547-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01547-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d647af8016f90e7cbe5c6/download)
[Logs](https://api.biosimulations.org/logs/677d647af8016f90e7cbe5c6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d647af8016f90e7cbe5c6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6478f8016f90e7cbe5c1/download)
[Logs](https://api.biosimulations.org/logs/677d6478f8016f90e7cbe5c1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6478f8016f90e7cbe5c1)

HTTP response: 201| +|[01548-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01548-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6480f8016f90e7cbe5e3/download)
[Logs](https://api.biosimulations.org/logs/677d6480f8016f90e7cbe5e3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6480f8016f90e7cbe5e3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d647d3e750b90a42682ee/download)
[Logs](https://api.biosimulations.org/logs/677d647d3e750b90a42682ee?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d647d3e750b90a42682ee)

HTTP response: 201| +|[01549-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01549-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6485f8016f90e7cbe600/download)
[Logs](https://api.biosimulations.org/logs/677d6485f8016f90e7cbe600?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6485f8016f90e7cbe600)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6482f8016f90e7cbe5f2/download)
[Logs](https://api.biosimulations.org/logs/677d6482f8016f90e7cbe5f2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6482f8016f90e7cbe5f2)

HTTP response: 201| +|[01550-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01550-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d648cf8016f90e7cbe614/download)
[Logs](https://api.biosimulations.org/logs/677d648cf8016f90e7cbe614?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d648cf8016f90e7cbe614)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6489f8016f90e7cbe60c/download)
[Logs](https://api.biosimulations.org/logs/677d6489f8016f90e7cbe60c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6489f8016f90e7cbe60c)

HTTP response: 201| +|[01551-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01551-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d649167468f9f3fc60094/download)
[Logs](https://api.biosimulations.org/logs/677d649167468f9f3fc60094?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d649167468f9f3fc60094)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d648e67468f9f3fc6008f/download)
[Logs](https://api.biosimulations.org/logs/677d648e67468f9f3fc6008f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d648e67468f9f3fc6008f)

HTTP response: 201| +|[01552-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01552-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d64963e750b90a426834c/download)
[Logs](https://api.biosimulations.org/logs/677d64963e750b90a426834c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64963e750b90a426834c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6493f8016f90e7cbe640/download)
[Logs](https://api.biosimulations.org/logs/677d6493f8016f90e7cbe640?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6493f8016f90e7cbe640)

HTTP response: 201| +|[01553-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01553-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d649b3e750b90a4268366/download)
[Logs](https://api.biosimulations.org/logs/677d649b3e750b90a4268366?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d649b3e750b90a4268366)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6498f8016f90e7cbe65c/download)
[Logs](https://api.biosimulations.org/logs/677d6498f8016f90e7cbe65c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6498f8016f90e7cbe65c)

HTTP response: 201| +|[01554-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01554-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d64a13e750b90a426837d/download)
[Logs](https://api.biosimulations.org/logs/677d64a13e750b90a426837d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64a13e750b90a426837d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d649e67468f9f3fc600c4/download)
[Logs](https://api.biosimulations.org/logs/677d649e67468f9f3fc600c4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d649e67468f9f3fc600c4)

HTTP response: 201| +|[01555-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01555-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d64a63e750b90a4268396/download)
[Logs](https://api.biosimulations.org/logs/677d64a63e750b90a4268396?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64a63e750b90a4268396)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d64a467468f9f3fc600d7/download)
[Logs](https://api.biosimulations.org/logs/677d64a467468f9f3fc600d7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64a467468f9f3fc600d7)

HTTP response: 201| +|[01556-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01556-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d64ab67468f9f3fc600f8/download)
[Logs](https://api.biosimulations.org/logs/677d64ab67468f9f3fc600f8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64ab67468f9f3fc600f8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d64a9f8016f90e7cbe68d/download)
[Logs](https://api.biosimulations.org/logs/677d64a9f8016f90e7cbe68d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64a9f8016f90e7cbe68d)

HTTP response: 201| +|[01557-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01557-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d64b167468f9f3fc60111/download)
[Logs](https://api.biosimulations.org/logs/677d64b167468f9f3fc60111?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64b167468f9f3fc60111)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d64af67468f9f3fc6010c/download)
[Logs](https://api.biosimulations.org/logs/677d64af67468f9f3fc6010c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64af67468f9f3fc6010c)

HTTP response: 201| +|[01558-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01558-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d64b63e750b90a42683d4/download)
[Logs](https://api.biosimulations.org/logs/677d64b63e750b90a42683d4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64b63e750b90a42683d4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d64b4f8016f90e7cbe6c4/download)
[Logs](https://api.biosimulations.org/logs/677d64b4f8016f90e7cbe6c4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64b4f8016f90e7cbe6c4)

HTTP response: 201| +|[01559-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01559-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d64bd67468f9f3fc60150/download)
[Logs](https://api.biosimulations.org/logs/677d64bd67468f9f3fc60150?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64bd67468f9f3fc60150)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d64ba67468f9f3fc60139/download)
[Logs](https://api.biosimulations.org/logs/677d64ba67468f9f3fc60139?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64ba67468f9f3fc60139)

HTTP response: 201| +|[01560-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01560-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d64c33e750b90a4268407/download)
[Logs](https://api.biosimulations.org/logs/677d64c33e750b90a4268407?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64c33e750b90a4268407)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d64c067468f9f3fc60157/download)
[Logs](https://api.biosimulations.org/logs/677d64c067468f9f3fc60157?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64c067468f9f3fc60157)

HTTP response: 201| +|[01561-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01561-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d64c967468f9f3fc60185/download)
[Logs](https://api.biosimulations.org/logs/677d64c967468f9f3fc60185?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64c967468f9f3fc60185)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d64c667468f9f3fc60176/download)
[Logs](https://api.biosimulations.org/logs/677d64c667468f9f3fc60176?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64c667468f9f3fc60176)

HTTP response: 201| +|[01562-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01562-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d64cef8016f90e7cbe74c/download)
[Logs](https://api.biosimulations.org/logs/677d64cef8016f90e7cbe74c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64cef8016f90e7cbe74c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d64ccf8016f90e7cbe747/download)
[Logs](https://api.biosimulations.org/logs/677d64ccf8016f90e7cbe747?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64ccf8016f90e7cbe747)

HTTP response: 201| +|[01563-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01563-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d64d567468f9f3fc601a6/download)
[Logs](https://api.biosimulations.org/logs/677d64d567468f9f3fc601a6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64d567468f9f3fc601a6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d64d23e750b90a4268437/download)
[Logs](https://api.biosimulations.org/logs/677d64d23e750b90a4268437?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64d23e750b90a4268437)

HTTP response: 201| +|[01564-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01564-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d64db3e750b90a426845d/download)
[Logs](https://api.biosimulations.org/logs/677d64db3e750b90a426845d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64db3e750b90a426845d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d64d8f8016f90e7cbe76b/download)
[Logs](https://api.biosimulations.org/logs/677d64d8f8016f90e7cbe76b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64d8f8016f90e7cbe76b)

HTTP response: 201| +|[01565-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01565-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d64e067468f9f3fc601c4/download)
[Logs](https://api.biosimulations.org/logs/677d64e067468f9f3fc601c4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64e067468f9f3fc601c4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d64dd3e750b90a4268463/download)
[Logs](https://api.biosimulations.org/logs/677d64dd3e750b90a4268463?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64dd3e750b90a4268463)

HTTP response: 201| +|[01566-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01566-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d64e63e750b90a426847b/download)
[Logs](https://api.biosimulations.org/logs/677d64e63e750b90a426847b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64e63e750b90a426847b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d64e367468f9f3fc601d1/download)
[Logs](https://api.biosimulations.org/logs/677d64e367468f9f3fc601d1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64e367468f9f3fc601d1)

HTTP response: 201| +|[01567-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01567-sbml-l3v1.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = k + 3' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d64eb3e750b90a4268483/download)
[Logs](https://api.biosimulations.org/logs/677d64eb3e750b90a4268483?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64eb3e750b90a4268483)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'k' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d64e93e750b90a426847e/download)
[Logs](https://api.biosimulations.org/logs/677d64e93e750b90a426847e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64e93e750b90a426847e)

HTTP response: 201| +|[01568-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01568-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d64f1f8016f90e7cbe7b0/download)
[Logs](https://api.biosimulations.org/logs/677d64f1f8016f90e7cbe7b0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64f1f8016f90e7cbe7b0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d64ef67468f9f3fc601e3/download)
[Logs](https://api.biosimulations.org/logs/677d64ef67468f9f3fc601e3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64ef67468f9f3fc601e3)

HTTP response: 201| +|[01569-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01569-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d64f6f8016f90e7cbe7d5/download)
[Logs](https://api.biosimulations.org/logs/677d64f6f8016f90e7cbe7d5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64f6f8016f90e7cbe7d5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d64f43e750b90a42684a1/download)
[Logs](https://api.biosimulations.org/logs/677d64f43e750b90a42684a1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64f43e750b90a42684a1)

HTTP response: 201| +|[01570-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01570-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d64fb67468f9f3fc6023a/download)
[Logs](https://api.biosimulations.org/logs/677d64fb67468f9f3fc6023a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64fb67468f9f3fc6023a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d64f9f8016f90e7cbe7df/download)
[Logs](https://api.biosimulations.org/logs/677d64f9f8016f90e7cbe7df?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64f9f8016f90e7cbe7df)

HTTP response: 201| +|[01571-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01571-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d650167468f9f3fc60251/download)
[Logs](https://api.biosimulations.org/logs/677d650167468f9f3fc60251?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d650167468f9f3fc60251)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d64fe67468f9f3fc60246/download)
[Logs](https://api.biosimulations.org/logs/677d64fe67468f9f3fc60246?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d64fe67468f9f3fc60246)

HTTP response: 201| +|[01572-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01572-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d650767468f9f3fc60264/download)
[Logs](https://api.biosimulations.org/logs/677d650767468f9f3fc60264?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d650767468f9f3fc60264)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d65043e750b90a42684ee/download)
[Logs](https://api.biosimulations.org/logs/677d65043e750b90a42684ee?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65043e750b90a42684ee)

HTTP response: 201| +|[01573-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01573-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d650c67468f9f3fc60276/download)
[Logs](https://api.biosimulations.org/logs/677d650c67468f9f3fc60276?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d650c67468f9f3fc60276)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d650a3e750b90a4268509/download)
[Logs](https://api.biosimulations.org/logs/677d650a3e750b90a4268509?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d650a3e750b90a4268509)

HTTP response: 201| +|[01574-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01574-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d651167468f9f3fc60292/download)
[Logs](https://api.biosimulations.org/logs/677d651167468f9f3fc60292?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d651167468f9f3fc60292)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d650ff8016f90e7cbe839/download)
[Logs](https://api.biosimulations.org/logs/677d650ff8016f90e7cbe839?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d650ff8016f90e7cbe839)

HTTP response: 201| +|[01575-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01575-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = k1 - k2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d6517f8016f90e7cbe870/download)
[Logs](https://api.biosimulations.org/logs/677d6517f8016f90e7cbe870?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6517f8016f90e7cbe870)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'k2' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d651467468f9f3fc602ab/download)
[Logs](https://api.biosimulations.org/logs/677d651467468f9f3fc602ab?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d651467468f9f3fc602ab)

HTTP response: 201| +|[01576-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01576-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = k1 - k2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d65203e750b90a4268566/download)
[Logs](https://api.biosimulations.org/logs/677d65203e750b90a4268566?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65203e750b90a4268566)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'k2' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d651c3e750b90a4268558/download)
[Logs](https://api.biosimulations.org/logs/677d651c3e750b90a4268558?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d651c3e750b90a4268558)

HTTP response: 201| +|[01577-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01577-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = 10 - k1 - k2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d652967468f9f3fc602f9/download)
[Logs](https://api.biosimulations.org/logs/677d652967468f9f3fc602f9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d652967468f9f3fc602f9)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'k2' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d65253e750b90a4268577/download)
[Logs](https://api.biosimulations.org/logs/677d65253e750b90a4268577?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65253e750b90a4268577)

HTTP response: 201| +|[01578-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01578-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = 10 - k1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d652e67468f9f3fc60305/download)
[Logs](https://api.biosimulations.org/logs/677d652e67468f9f3fc60305?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d652e67468f9f3fc60305)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d652c67468f9f3fc602ff/download)
[Logs](https://api.biosimulations.org/logs/677d652c67468f9f3fc602ff?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d652c67468f9f3fc602ff)

HTTP response: 201| +|[01579-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01579-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = k1 - k2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d6535f8016f90e7cbe8da/download)
[Logs](https://api.biosimulations.org/logs/677d6535f8016f90e7cbe8da?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6535f8016f90e7cbe8da)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'k2' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d6532f8016f90e7cbe8d4/download)
[Logs](https://api.biosimulations.org/logs/677d6532f8016f90e7cbe8d4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6532f8016f90e7cbe8d4)

HTTP response: 201| +|[01580-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01580-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d653cf8016f90e7cbe8f3/download)
[Logs](https://api.biosimulations.org/logs/677d653cf8016f90e7cbe8f3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d653cf8016f90e7cbe8f3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d653967468f9f3fc6031b/download)
[Logs](https://api.biosimulations.org/logs/677d653967468f9f3fc6031b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d653967468f9f3fc6031b)

HTTP response: 201| +|[01581-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01581-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d65413e750b90a42685d3/download)
[Logs](https://api.biosimulations.org/logs/677d65413e750b90a42685d3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65413e750b90a42685d3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d653f67468f9f3fc6032b/download)
[Logs](https://api.biosimulations.org/logs/677d653f67468f9f3fc6032b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d653f67468f9f3fc6032b)

HTTP response: 201| +|[01582-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01582-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d654667468f9f3fc60348/download)
[Logs](https://api.biosimulations.org/logs/677d654667468f9f3fc60348?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d654667468f9f3fc60348)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6544f8016f90e7cbe90e/download)
[Logs](https://api.biosimulations.org/logs/677d6544f8016f90e7cbe90e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6544f8016f90e7cbe90e)

HTTP response: 201| +|[01583-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01583-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d654ef8016f90e7cbe934/download)
[Logs](https://api.biosimulations.org/logs/677d654ef8016f90e7cbe934?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d654ef8016f90e7cbe934)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d654b3e750b90a42685e2/download)
[Logs](https://api.biosimulations.org/logs/677d654b3e750b90a42685e2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d654b3e750b90a42685e2)

HTTP response: 201| +|[01584-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01584-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6554f8016f90e7cbe94e/download)
[Logs](https://api.biosimulations.org/logs/677d6554f8016f90e7cbe94e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6554f8016f90e7cbe94e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d655167468f9f3fc6035e/download)
[Logs](https://api.biosimulations.org/logs/677d655167468f9f3fc6035e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d655167468f9f3fc6035e)

HTTP response: 201| +|[01585-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01585-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d655af8016f90e7cbe964/download)
[Logs](https://api.biosimulations.org/logs/677d655af8016f90e7cbe964?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d655af8016f90e7cbe964)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d65573e750b90a426860c/download)
[Logs](https://api.biosimulations.org/logs/677d65573e750b90a426860c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65573e750b90a426860c)

HTTP response: 201| +|[01586-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01586-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6560f8016f90e7cbe987/download)
[Logs](https://api.biosimulations.org/logs/677d6560f8016f90e7cbe987?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6560f8016f90e7cbe987)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d655d3e750b90a4268616/download)
[Logs](https://api.biosimulations.org/logs/677d655d3e750b90a4268616?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d655d3e750b90a4268616)

HTTP response: 201| +|[01587-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01587-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d656667468f9f3fc603ae/download)
[Logs](https://api.biosimulations.org/logs/677d656667468f9f3fc603ae?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d656667468f9f3fc603ae)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d65633e750b90a4268631/download)
[Logs](https://api.biosimulations.org/logs/677d65633e750b90a4268631?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65633e750b90a4268631)

HTTP response: 201| +|[01588-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01588-sbml-l3v2.xml)|pass|pass|pass|
skippedCase is skipped because it leads to a float error when trying to run it in tellurium natively, which leads to reset errors in subsequent cases that would otherwise pass.
|True|
pass[Download](https://api.biosimulations.org/results/677d656d67468f9f3fc603b4/download)
[Logs](https://api.biosimulations.org/logs/677d656d67468f9f3fc603b4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d656d67468f9f3fc603b4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6569f8016f90e7cbe99f/download)
[Logs](https://api.biosimulations.org/logs/677d6569f8016f90e7cbe99f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6569f8016f90e7cbe99f)

HTTP response: 201| +|[01589-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01589-sbml-l3v2.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = Q + R - S' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d6573f8016f90e7cbe9c6/download)
[Logs](https://api.biosimulations.org/logs/677d6573f8016f90e7cbe9c6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6573f8016f90e7cbe9c6)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Global parameter 'S' is missing a value. While roadrunner gives species a default value of zero, and compartments a default value of one, it requires parameters to be initialized. Set one by giving it a value, initial assignment, or an assignment rule.```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d6570f8016f90e7cbe9ae/download)
[Logs](https://api.biosimulations.org/logs/677d6570f8016f90e7cbe9ae?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6570f8016f90e7cbe9ae)

HTTP response: 201| +|[01590-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01590-sbml-l3v2.xml)|pass|pass|pass|
skippedCase is skipped because it leads to a float error when trying to run it in tellurium natively, which leads to reset errors in subsequent cases that would otherwise pass.
|True|
pass[Download](https://api.biosimulations.org/results/677d657a67468f9f3fc603fb/download)
[Logs](https://api.biosimulations.org/logs/677d657a67468f9f3fc603fb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d657a67468f9f3fc603fb)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d657867468f9f3fc603e7/download)
[Logs](https://api.biosimulations.org/logs/677d657867468f9f3fc603e7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d657867468f9f3fc603e7)

HTTP response: 201| +|[01591-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01591-sbml-l3v2.xml)|pass|pass|pass|
skippedCase is skipped because it leads to a float error when trying to run it in tellurium natively, which leads to reset errors in subsequent cases that would otherwise pass.
|True|
pass[Download](https://api.biosimulations.org/results/677d65803e750b90a4268683/download)
[Logs](https://api.biosimulations.org/logs/677d65803e750b90a4268683?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65803e750b90a4268683)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d657e67468f9f3fc6040e/download)
[Logs](https://api.biosimulations.org/logs/677d657e67468f9f3fc6040e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d657e67468f9f3fc6040e)

HTTP response: 201| +|[01592-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01592-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(reset, 0.005)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d6586f8016f90e7cbea02/download)
[Logs](https://api.biosimulations.org/logs/677d6586f8016f90e7cbea02?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6586f8016f90e7cbea02)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(reset, 0.005)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d6584f8016f90e7cbe9ff/download)
[Logs](https://api.biosimulations.org/logs/677d6584f8016f90e7cbe9ff?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6584f8016f90e7cbe9ff)

HTTP response: 201| +|[01593-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01593-sbml-l3v2.xml)|pass|pass|pass|
delay Unable to support delay differential equations. The function 'delay(Q, 1)' is not supported., at ?delayExprCodeGen@ASTNodeCodeGen@rrllvm@@AEAAPEAVValue@llvm@@PEBVASTNode@libsbml@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d658b67468f9f3fc60440/download)
[Logs](https://api.biosimulations.org/logs/677d658b67468f9f3fc60440?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d658b67468f9f3fc60440)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Unable to support delay differential equations. The function 'delay(Q, 1)' is not supported., at llvm::Value* rrllvm::ASTNodeCodeGen::delayExprCodeGen(const libsbml::ASTNode*)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d6589f8016f90e7cbea14/download)
[Logs](https://api.biosimulations.org/logs/677d6589f8016f90e7cbea14?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6589f8016f90e7cbea14)

HTTP response: 201| +|[01594-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01594-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6591f8016f90e7cbea29/download)
[Logs](https://api.biosimulations.org/logs/677d6591f8016f90e7cbea29?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6591f8016f90e7cbea29)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d658f3e750b90a42686c5/download)
[Logs](https://api.biosimulations.org/logs/677d658f3e750b90a42686c5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d658f3e750b90a42686c5)

HTTP response: 201| +|[01595-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01595-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d65983e750b90a42686e2/download)
[Logs](https://api.biosimulations.org/logs/677d65983e750b90a42686e2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65983e750b90a42686e2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d659567468f9f3fc60453/download)
[Logs](https://api.biosimulations.org/logs/677d659567468f9f3fc60453?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d659567468f9f3fc60453)

HTTP response: 201| +|[01596-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01596-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d659f67468f9f3fc6047e/download)
[Logs](https://api.biosimulations.org/logs/677d659f67468f9f3fc6047e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d659f67468f9f3fc6047e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d659c67468f9f3fc60478/download)
[Logs](https://api.biosimulations.org/logs/677d659c67468f9f3fc60478?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d659c67468f9f3fc60478)

HTTP response: 201| +|[01597-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01597-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d65a7f8016f90e7cbea82/download)
[Logs](https://api.biosimulations.org/logs/677d65a7f8016f90e7cbea82?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65a7f8016f90e7cbea82)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d65a467468f9f3fc6048f/download)
[Logs](https://api.biosimulations.org/logs/677d65a467468f9f3fc6048f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65a467468f9f3fc6048f)

HTTP response: 201| +|[01598-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01598-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d65ae3e750b90a4268726/download)
[Logs](https://api.biosimulations.org/logs/677d65ae3e750b90a4268726?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65ae3e750b90a4268726)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d65ab67468f9f3fc604b3/download)
[Logs](https://api.biosimulations.org/logs/677d65ab67468f9f3fc604b3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65ab67468f9f3fc604b3)

HTTP response: 201| +|[01599-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01599-sbml-l3v2.xml)|pass|pass|pass|
skippedCase is skipped because it leads to a float error when trying to run it in tellurium natively, which leads to reset errors in subsequent cases that would otherwise pass.
|True|
pass[Download](https://api.biosimulations.org/results/677d65b867468f9f3fc604d4/download)
[Logs](https://api.biosimulations.org/logs/677d65b867468f9f3fc604d4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65b867468f9f3fc604d4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d65b2f8016f90e7cbeaa2/download)
[Logs](https://api.biosimulations.org/logs/677d65b2f8016f90e7cbeaa2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65b2f8016f90e7cbeaa2)

HTTP response: 201| +|[01600-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01600-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d65bef8016f90e7cbeab6/download)
[Logs](https://api.biosimulations.org/logs/677d65bef8016f90e7cbeab6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65bef8016f90e7cbeab6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d65bb67468f9f3fc604e0/download)
[Logs](https://api.biosimulations.org/logs/677d65bb67468f9f3fc604e0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65bb67468f9f3fc604e0)

HTTP response: 201| +|[01601-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01601-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d65c467468f9f3fc604ed/download)
[Logs](https://api.biosimulations.org/logs/677d65c467468f9f3fc604ed?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65c467468f9f3fc604ed)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d65c167468f9f3fc604e8/download)
[Logs](https://api.biosimulations.org/logs/677d65c167468f9f3fc604e8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65c167468f9f3fc604e8)

HTTP response: 201| +|[01602-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01602-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d65ca67468f9f3fc604fe/download)
[Logs](https://api.biosimulations.org/logs/677d65ca67468f9f3fc604fe?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65ca67468f9f3fc604fe)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d65c73e750b90a4268765/download)
[Logs](https://api.biosimulations.org/logs/677d65c73e750b90a4268765?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65c73e750b90a4268765)

HTTP response: 201| +|[01603-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01603-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d65cf67468f9f3fc60513/download)
[Logs](https://api.biosimulations.org/logs/677d65cf67468f9f3fc60513?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65cf67468f9f3fc60513)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d65cd3e750b90a4268774/download)
[Logs](https://api.biosimulations.org/logs/677d65cd3e750b90a4268774?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65cd3e750b90a4268774)

HTTP response: 201| +|[01604-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01604-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d65d43e750b90a426878d/download)
[Logs](https://api.biosimulations.org/logs/677d65d43e750b90a426878d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65d43e750b90a426878d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d65d23e750b90a4268784/download)
[Logs](https://api.biosimulations.org/logs/677d65d23e750b90a4268784?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65d23e750b90a4268784)

HTTP response: 201| +|[01605-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01605-sbml-l3v2.xml)|pass|pass|pass|
skippedCase is skipped because it leads to a float error when trying to run it in tellurium natively, which leads to reset errors in subsequent cases that would otherwise pass.
|True|
pass[Download](https://api.biosimulations.org/results/677d65daf8016f90e7cbeb2d/download)
[Logs](https://api.biosimulations.org/logs/677d65daf8016f90e7cbeb2d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65daf8016f90e7cbeb2d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d65d7f8016f90e7cbeb25/download)
[Logs](https://api.biosimulations.org/logs/677d65d7f8016f90e7cbeb25?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65d7f8016f90e7cbeb25)

HTTP response: 201| +|[01606-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01606-sbml-l3v2.xml)|pass|pass|pass|
other 'NoneType' object is not subscriptable
|True|
FAIL[Download](https://api.biosimulations.org/results/677d65e167468f9f3fc6054a/download)
[Logs](https://api.biosimulations.org/logs/677d65e167468f9f3fc6054a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65e167468f9f3fc6054a)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d65de67468f9f3fc60544/download)
[Logs](https://api.biosimulations.org/logs/677d65de67468f9f3fc60544?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65de67468f9f3fc60544)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01607-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01607-sbml-l3v2.xml)|pass|pass|pass|
other 'NoneType' object is not subscriptable
|True|
FAIL[Download](https://api.biosimulations.org/results/677d65e8f8016f90e7cbeb5a/download)
[Logs](https://api.biosimulations.org/logs/677d65e8f8016f90e7cbeb5a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65e8f8016f90e7cbeb5a)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d65e43e750b90a42687d6/download)
[Logs](https://api.biosimulations.org/logs/677d65e43e750b90a42687d6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65e43e750b90a42687d6)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01608-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01608-sbml-l3v2.xml)|pass|pass|pass|
other 'NoneType' object is not subscriptable
|True|
FAIL[Download](https://api.biosimulations.org/results/677d65ee67468f9f3fc6058f/download)
[Logs](https://api.biosimulations.org/logs/677d65ee67468f9f3fc6058f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65ee67468f9f3fc6058f)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d65eb3e750b90a42687f4/download)
[Logs](https://api.biosimulations.org/logs/677d65eb3e750b90a42687f4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65eb3e750b90a42687f4)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01609-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01609-sbml-l3v2.xml)|pass|pass|pass|
other 'NoneType' object is not subscriptable
|True|
FAIL[Download](https://api.biosimulations.org/results/677d65f4f8016f90e7cbeb82/download)
[Logs](https://api.biosimulations.org/logs/677d65f4f8016f90e7cbeb82?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65f4f8016f90e7cbeb82)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d65f13e750b90a4268805/download)
[Logs](https://api.biosimulations.org/logs/677d65f13e750b90a4268805?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65f13e750b90a4268805)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01610-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01610-sbml-l3v2.xml)|pass|pass|pass|
other 'NoneType' object is not subscriptable
|True|
FAIL[Download](https://api.biosimulations.org/results/677d65f9f8016f90e7cbeb96/download)
[Logs](https://api.biosimulations.org/logs/677d65f9f8016f90e7cbeb96?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65f9f8016f90e7cbeb96)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d65f63e750b90a426881c/download)
[Logs](https://api.biosimulations.org/logs/677d65f63e750b90a426881c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65f63e750b90a426881c)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01611-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01611-sbml-l3v2.xml)|pass|pass|pass|
other 'NoneType' object is not subscriptable
|True|
FAIL[Download](https://api.biosimulations.org/results/677d65fff8016f90e7cbebab/download)
[Logs](https://api.biosimulations.org/logs/677d65fff8016f90e7cbebab?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65fff8016f90e7cbebab)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d65fcf8016f90e7cbeba3/download)
[Logs](https://api.biosimulations.org/logs/677d65fcf8016f90e7cbeba3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d65fcf8016f90e7cbeba3)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01612-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01612-sbml-l3v2.xml)|pass|pass|pass|
other 'NoneType' object is not subscriptable
|True|
FAIL[Download](https://api.biosimulations.org/results/677d6604f8016f90e7cbebbb/download)
[Logs](https://api.biosimulations.org/logs/677d6604f8016f90e7cbebbb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6604f8016f90e7cbebbb)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d660167468f9f3fc605dc/download)
[Logs](https://api.biosimulations.org/logs/677d660167468f9f3fc605dc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d660167468f9f3fc605dc)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01613-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01613-sbml-l3v2.xml)|pass|pass|pass|
other 'NoneType' object is not subscriptable
|True|
FAIL[Download](https://api.biosimulations.org/results/677d660a67468f9f3fc6060d/download)
[Logs](https://api.biosimulations.org/logs/677d660a67468f9f3fc6060d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d660a67468f9f3fc6060d)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d6608f8016f90e7cbebc3/download)
[Logs](https://api.biosimulations.org/logs/677d6608f8016f90e7cbebc3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6608f8016f90e7cbebc3)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01614-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01614-sbml-l3v2.xml)|pass|pass|pass|
other 'NoneType' object is not subscriptable
|True|
FAIL[Download](https://api.biosimulations.org/results/677d6610f8016f90e7cbebdc/download)
[Logs](https://api.biosimulations.org/logs/677d6610f8016f90e7cbebdc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6610f8016f90e7cbebdc)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d660e67468f9f3fc60612/download)
[Logs](https://api.biosimulations.org/logs/677d660e67468f9f3fc60612?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d660e67468f9f3fc60612)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01615-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01615-sbml-l3v2.xml)|pass|pass|pass|
other 'NoneType' object is not subscriptable
|True|
FAIL[Download](https://api.biosimulations.org/results/677d66183e750b90a426888c/download)
[Logs](https://api.biosimulations.org/logs/677d66183e750b90a426888c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66183e750b90a426888c)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d6614f8016f90e7cbebed/download)
[Logs](https://api.biosimulations.org/logs/677d6614f8016f90e7cbebed?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6614f8016f90e7cbebed)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01616-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01616-sbml-l3v2.xml)|pass|pass|pass|
other 'NoneType' object is not subscriptable
|True|
FAIL[Download](https://api.biosimulations.org/results/677d661e3e750b90a426889e/download)
[Logs](https://api.biosimulations.org/logs/677d661e3e750b90a426889e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d661e3e750b90a426889e)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d661b3e750b90a4268890/download)
[Logs](https://api.biosimulations.org/logs/677d661b3e750b90a4268890?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d661b3e750b90a4268890)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01617-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01617-sbml-l3v2.xml)|pass|pass|pass|
other 'NoneType' object is not subscriptable
|True|
FAIL[Download](https://api.biosimulations.org/results/677d6625f8016f90e7cbec20/download)
[Logs](https://api.biosimulations.org/logs/677d6625f8016f90e7cbec20?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6625f8016f90e7cbec20)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d662167468f9f3fc6064e/download)
[Logs](https://api.biosimulations.org/logs/677d662167468f9f3fc6064e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d662167468f9f3fc6064e)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01618-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01618-sbml-l3v2.xml)|pass|pass|pass|
other 'NoneType' object is not subscriptable
|True|
FAIL[Download](https://api.biosimulations.org/results/677d662a3e750b90a42688c6/download)
[Logs](https://api.biosimulations.org/logs/677d662a3e750b90a42688c6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d662a3e750b90a42688c6)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d66273e750b90a42688be/download)
[Logs](https://api.biosimulations.org/logs/677d66273e750b90a42688be?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66273e750b90a42688be)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01619-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01619-sbml-l3v2.xml)|pass|pass|pass|
other 'NoneType' object is not subscriptable
|True|
FAIL[Download](https://api.biosimulations.org/results/677d663067468f9f3fc60674/download)
[Logs](https://api.biosimulations.org/logs/677d663067468f9f3fc60674?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d663067468f9f3fc60674)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d662df8016f90e7cbec49/download)
[Logs](https://api.biosimulations.org/logs/677d662df8016f90e7cbec49?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d662df8016f90e7cbec49)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01620-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01620-sbml-l3v2.xml)|pass|pass|pass|
other 'NoneType' object is not subscriptable
|True|
FAIL[Download](https://api.biosimulations.org/results/677d663667468f9f3fc60687/download)
[Logs](https://api.biosimulations.org/logs/677d663667468f9f3fc60687?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d663667468f9f3fc60687)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d6633f8016f90e7cbec57/download)
[Logs](https://api.biosimulations.org/logs/677d6633f8016f90e7cbec57?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6633f8016f90e7cbec57)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01621-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01621-sbml-l3v2.xml)|pass|pass|pass|
other 'NoneType' object is not subscriptable
|True|
FAIL[Download](https://api.biosimulations.org/results/677d663e67468f9f3fc606ab/download)
[Logs](https://api.biosimulations.org/logs/677d663e67468f9f3fc606ab?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d663e67468f9f3fc606ab)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d663967468f9f3fc60693/download)
[Logs](https://api.biosimulations.org/logs/677d663967468f9f3fc60693?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d663967468f9f3fc60693)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01622-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01622-sbml-l3v2.xml)|pass|pass|pass|
other 'NoneType' object is not subscriptable
|True|
FAIL[Download](https://api.biosimulations.org/results/677d664467468f9f3fc606cb/download)
[Logs](https://api.biosimulations.org/logs/677d664467468f9f3fc606cb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d664467468f9f3fc606cb)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d664167468f9f3fc606b9/download)
[Logs](https://api.biosimulations.org/logs/677d664167468f9f3fc606b9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d664167468f9f3fc606b9)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01623-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01623-sbml-l3v2.xml)|pass|pass|pass|
other 'NoneType' object is not subscriptable
|True|
FAIL[Download](https://api.biosimulations.org/results/677d66493e750b90a4268929/download)
[Logs](https://api.biosimulations.org/logs/677d66493e750b90a4268929?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66493e750b90a4268929)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d66463e750b90a426891e/download)
[Logs](https://api.biosimulations.org/logs/677d66463e750b90a426891e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66463e750b90a426891e)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01624-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01624-sbml-l3v2.xml)|pass|pass|pass|
other 'NoneType' object is not subscriptable
|True|
FAIL[Download](https://api.biosimulations.org/results/677d664f3e750b90a4268936/download)
[Logs](https://api.biosimulations.org/logs/677d664f3e750b90a4268936?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d664f3e750b90a4268936)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d664cf8016f90e7cbecab/download)
[Logs](https://api.biosimulations.org/logs/677d664cf8016f90e7cbecab?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d664cf8016f90e7cbecab)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01625-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01625-sbml-l3v2.xml)|pass|pass|pass|
other 'NoneType' object is not subscriptable
|True|
FAIL[Download](https://api.biosimulations.org/results/677d66543e750b90a4268941/download)
[Logs](https://api.biosimulations.org/logs/677d66543e750b90a4268941?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66543e750b90a4268941)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d665267468f9f3fc606f9/download)
[Logs](https://api.biosimulations.org/logs/677d665267468f9f3fc606f9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d665267468f9f3fc606f9)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01626-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01626-sbml-l3v2.xml)|pass|pass|pass|
stochiometry Mutable stochiometry for species which appear multiple times in a single reaction is not currently supported, species reference id: Q, at ?loadSymbolValue@ModelDataLoadSymbolResolver@rrllvm@@UEAAPEAVValue@llvm@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEBV?$ArrayRef@PEAVValue@llvm@@@4@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d665b3e750b90a4268959/download)
[Logs](https://api.biosimulations.org/logs/677d665b3e750b90a4268959?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d665b3e750b90a4268959)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Mutable stochiometry for species which appear multiple times in a single reaction is not currently supported, species reference id: Q, at virtual llvm::Value* rrllvm::ModelDataLoadSymbolResolver::loadSymbolValue(const string&, const llvm::ArrayRef&)```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d665867468f9f3fc60701/download)
[Logs](https://api.biosimulations.org/logs/677d665867468f9f3fc60701?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d665867468f9f3fc60701)

HTTP response: 201| +|[01627-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01627-sbml-l3v2.xml)|pass|pass|pass|
skippedCase is skipped because it leads to a float error when trying to run it in tellurium natively, which leads to reset errors in subsequent cases that would otherwise pass.
|True|
pass[Download](https://api.biosimulations.org/results/677d666167468f9f3fc6071f/download)
[Logs](https://api.biosimulations.org/logs/677d666167468f9f3fc6071f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d666167468f9f3fc6071f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d665ef8016f90e7cbece6/download)
[Logs](https://api.biosimulations.org/logs/677d665ef8016f90e7cbece6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d665ef8016f90e7cbece6)

HTTP response: 201| +|[01628-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01628-sbml-l3v2.xml)|pass|pass|pass|
other 'NoneType' object is not subscriptable
|True|
FAIL[Download](https://api.biosimulations.org/results/677d66673e750b90a42689a8/download)
[Logs](https://api.biosimulations.org/logs/677d66673e750b90a42689a8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66673e750b90a42689a8)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d666567468f9f3fc6072c/download)
[Logs](https://api.biosimulations.org/logs/677d666567468f9f3fc6072c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d666567468f9f3fc6072c)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01629-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01629-sbml-l3v2.xml)|pass|pass|pass|
other 'NoneType' object is not subscriptable
|True|
FAIL[Download](https://api.biosimulations.org/results/677d666ef8016f90e7cbed17/download)
[Logs](https://api.biosimulations.org/logs/677d666ef8016f90e7cbed17?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d666ef8016f90e7cbed17)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d666af8016f90e7cbed0c/download)
[Logs](https://api.biosimulations.org/logs/677d666af8016f90e7cbed0c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d666af8016f90e7cbed0c)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01630-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01630-sbml-l3v2.xml)|pass|pass|pass|
other 'NoneType' object is not subscriptable
|True|
FAIL[Download](https://api.biosimulations.org/results/677d66733e750b90a42689c4/download)
[Logs](https://api.biosimulations.org/logs/677d66733e750b90a42689c4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66733e750b90a42689c4)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: Algorithm substitution for "flux balance analysis" (http://www.biomodels.net/kisao/KISAO#KISAO_0000437) for policy SIMILAR_VARIABLES is not supported.```

Exception type: ```CombineArchiveExecutionError```|
FAIL[Download](https://api.biosimulations.org/results/677d667167468f9f3fc6076f/download)
[Logs](https://api.biosimulations.org/logs/677d667167468f9f3fc6076f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d667167468f9f3fc6076f)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: :No suitable equivalent for 'KISAO_0000437' could be found with the provided substitution policy```

Exception type: ```CombineArchiveExecutionError```| +|[01631-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01631-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d667967468f9f3fc60780/download)
[Logs](https://api.biosimulations.org/logs/677d667967468f9f3fc60780?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d667967468f9f3fc60780)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d66773e750b90a42689cb/download)
[Logs](https://api.biosimulations.org/logs/677d66773e750b90a42689cb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66773e750b90a42689cb)

HTTP response: 201| +|[01632-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01632-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d667ff8016f90e7cbed56/download)
[Logs](https://api.biosimulations.org/logs/677d667ff8016f90e7cbed56?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d667ff8016f90e7cbed56)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d667d3e750b90a42689e1/download)
[Logs](https://api.biosimulations.org/logs/677d667d3e750b90a42689e1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d667d3e750b90a42689e1)

HTTP response: 201| +|[01633-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01633-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6685f8016f90e7cbed6c/download)
[Logs](https://api.biosimulations.org/logs/677d6685f8016f90e7cbed6c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6685f8016f90e7cbed6c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d668267468f9f3fc607b6/download)
[Logs](https://api.biosimulations.org/logs/677d668267468f9f3fc607b6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d668267468f9f3fc607b6)

HTTP response: 201| +|[01634-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01634-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d668b67468f9f3fc607c2/download)
[Logs](https://api.biosimulations.org/logs/677d668b67468f9f3fc607c2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d668b67468f9f3fc607c2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d66883e750b90a42689ff/download)
[Logs](https://api.biosimulations.org/logs/677d66883e750b90a42689ff?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66883e750b90a42689ff)

HTTP response: 201| +|[01635-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01635-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d66913e750b90a4268a27/download)
[Logs](https://api.biosimulations.org/logs/677d66913e750b90a4268a27?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66913e750b90a4268a27)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d668ef8016f90e7cbed91/download)
[Logs](https://api.biosimulations.org/logs/677d668ef8016f90e7cbed91?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d668ef8016f90e7cbed91)

HTTP response: 201| +|[01636-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01636-sbml-l2v5.xml)|pass|pass|pass|
SpeciesRef S1_stoich is not a named SpeciesReference, at ?getNamedSpeciesReferenceInfo@LLVMModelDataSymbols@rrllvm@@QEAAAEBUSpeciesReferenceInfo@12@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d66963e750b90a4268a36/download)
[Logs](https://api.biosimulations.org/logs/677d66963e750b90a4268a36?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66963e750b90a4268a36)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: S1_stoich is not a named SpeciesReference, at const rrllvm::LLVMModelDataSymbols::SpeciesReferenceInfo& rrllvm::LLVMModelDataSymbols::getNamedSpeciesReferenceInfo(const string&) const```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d66943e750b90a4268a2c/download)
[Logs](https://api.biosimulations.org/logs/677d66943e750b90a4268a2c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66943e750b90a4268a2c)

HTTP response: 201| +|[01637-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01637-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d669cf8016f90e7cbedc7/download)
[Logs](https://api.biosimulations.org/logs/677d669cf8016f90e7cbedc7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d669cf8016f90e7cbedc7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d66993e750b90a4268a3d/download)
[Logs](https://api.biosimulations.org/logs/677d66993e750b90a4268a3d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66993e750b90a4268a3d)

HTTP response: 201| +|[01638-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01638-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d66a2f8016f90e7cbede9/download)
[Logs](https://api.biosimulations.org/logs/677d66a2f8016f90e7cbede9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66a2f8016f90e7cbede9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d669f67468f9f3fc60811/download)
[Logs](https://api.biosimulations.org/logs/677d669f67468f9f3fc60811?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d669f67468f9f3fc60811)

HTTP response: 201| +|[01639-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01639-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d66a767468f9f3fc60825/download)
[Logs](https://api.biosimulations.org/logs/677d66a767468f9f3fc60825?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66a767468f9f3fc60825)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d66a467468f9f3fc6081d/download)
[Logs](https://api.biosimulations.org/logs/677d66a467468f9f3fc6081d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66a467468f9f3fc6081d)

HTTP response: 201| +|[01640-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01640-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d66ad3e750b90a4268aa2/download)
[Logs](https://api.biosimulations.org/logs/677d66ad3e750b90a4268aa2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66ad3e750b90a4268aa2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d66aa3e750b90a4268a90/download)
[Logs](https://api.biosimulations.org/logs/677d66aa3e750b90a4268a90?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66aa3e750b90a4268a90)

HTTP response: 201| +|[01641-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01641-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d66b33e750b90a4268ab8/download)
[Logs](https://api.biosimulations.org/logs/677d66b33e750b90a4268ab8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66b33e750b90a4268ab8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d66b067468f9f3fc60841/download)
[Logs](https://api.biosimulations.org/logs/677d66b067468f9f3fc60841?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66b067468f9f3fc60841)

HTTP response: 201| +|[01642-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01642-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d66b8f8016f90e7cbee2e/download)
[Logs](https://api.biosimulations.org/logs/677d66b8f8016f90e7cbee2e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66b8f8016f90e7cbee2e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d66b63e750b90a4268ac3/download)
[Logs](https://api.biosimulations.org/logs/677d66b63e750b90a4268ac3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66b63e750b90a4268ac3)

HTTP response: 201| +|[01643-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01643-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d66be67468f9f3fc60878/download)
[Logs](https://api.biosimulations.org/logs/677d66be67468f9f3fc60878?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66be67468f9f3fc60878)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d66bb3e750b90a4268add/download)
[Logs](https://api.biosimulations.org/logs/677d66bb3e750b90a4268add?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66bb3e750b90a4268add)

HTTP response: 201| +|[01644-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01644-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d66c3f8016f90e7cbee59/download)
[Logs](https://api.biosimulations.org/logs/677d66c3f8016f90e7cbee59?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66c3f8016f90e7cbee59)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d66c167468f9f3fc60886/download)
[Logs](https://api.biosimulations.org/logs/677d66c167468f9f3fc60886?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66c167468f9f3fc60886)

HTTP response: 201| +|[01645-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01645-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d66c967468f9f3fc6089f/download)
[Logs](https://api.biosimulations.org/logs/677d66c967468f9f3fc6089f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66c967468f9f3fc6089f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d66c767468f9f3fc60891/download)
[Logs](https://api.biosimulations.org/logs/677d66c767468f9f3fc60891?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66c767468f9f3fc60891)

HTTP response: 201| +|[01646-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01646-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d66ce3e750b90a4268b30/download)
[Logs](https://api.biosimulations.org/logs/677d66ce3e750b90a4268b30?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66ce3e750b90a4268b30)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d66cc3e750b90a4268b2b/download)
[Logs](https://api.biosimulations.org/logs/677d66cc3e750b90a4268b2b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66cc3e750b90a4268b2b)

HTTP response: 201| +|[01647-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01647-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d66d467468f9f3fc608e0/download)
[Logs](https://api.biosimulations.org/logs/677d66d467468f9f3fc608e0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66d467468f9f3fc608e0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d66d2f8016f90e7cbee98/download)
[Logs](https://api.biosimulations.org/logs/677d66d2f8016f90e7cbee98?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66d2f8016f90e7cbee98)

HTTP response: 201| +|[01648-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01648-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d66d93e750b90a4268b6e/download)
[Logs](https://api.biosimulations.org/logs/677d66d93e750b90a4268b6e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66d93e750b90a4268b6e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d66d7f8016f90e7cbeea9/download)
[Logs](https://api.biosimulations.org/logs/677d66d7f8016f90e7cbeea9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66d7f8016f90e7cbeea9)

HTTP response: 201| +|[01649-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01649-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d66de67468f9f3fc608f4/download)
[Logs](https://api.biosimulations.org/logs/677d66de67468f9f3fc608f4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66de67468f9f3fc608f4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d66dc67468f9f3fc608f1/download)
[Logs](https://api.biosimulations.org/logs/677d66dc67468f9f3fc608f1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66dc67468f9f3fc608f1)

HTTP response: 201| +|[01650-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01650-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d66e367468f9f3fc60920/download)
[Logs](https://api.biosimulations.org/logs/677d66e367468f9f3fc60920?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66e367468f9f3fc60920)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d66e13e750b90a4268b8f/download)
[Logs](https://api.biosimulations.org/logs/677d66e13e750b90a4268b8f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66e13e750b90a4268b8f)

HTTP response: 201| +|[01651-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01651-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d66e93e750b90a4268ba4/download)
[Logs](https://api.biosimulations.org/logs/677d66e93e750b90a4268ba4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66e93e750b90a4268ba4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d66e7f8016f90e7cbeeea/download)
[Logs](https://api.biosimulations.org/logs/677d66e7f8016f90e7cbeeea?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66e7f8016f90e7cbeeea)

HTTP response: 201| +|[01652-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01652-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d66eef8016f90e7cbef07/download)
[Logs](https://api.biosimulations.org/logs/677d66eef8016f90e7cbef07?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66eef8016f90e7cbef07)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d66ecf8016f90e7cbeef3/download)
[Logs](https://api.biosimulations.org/logs/677d66ecf8016f90e7cbeef3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66ecf8016f90e7cbeef3)

HTTP response: 201| +|[01653-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01653-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d66f33e750b90a4268bc9/download)
[Logs](https://api.biosimulations.org/logs/677d66f33e750b90a4268bc9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66f33e750b90a4268bc9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d66f167468f9f3fc6095b/download)
[Logs](https://api.biosimulations.org/logs/677d66f167468f9f3fc6095b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66f167468f9f3fc6095b)

HTTP response: 201| +|[01654-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01654-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d66f9f8016f90e7cbef31/download)
[Logs](https://api.biosimulations.org/logs/677d66f9f8016f90e7cbef31?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66f9f8016f90e7cbef31)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d66f667468f9f3fc6096f/download)
[Logs](https://api.biosimulations.org/logs/677d66f667468f9f3fc6096f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66f667468f9f3fc6096f)

HTTP response: 201| +|[01655-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01655-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d66fff8016f90e7cbef4b/download)
[Logs](https://api.biosimulations.org/logs/677d66fff8016f90e7cbef4b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66fff8016f90e7cbef4b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d66fcf8016f90e7cbef44/download)
[Logs](https://api.biosimulations.org/logs/677d66fcf8016f90e7cbef44?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d66fcf8016f90e7cbef44)

HTTP response: 201| +|[01656-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01656-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d670467468f9f3fc6099f/download)
[Logs](https://api.biosimulations.org/logs/677d670467468f9f3fc6099f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d670467468f9f3fc6099f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67023e750b90a4268bf9/download)
[Logs](https://api.biosimulations.org/logs/677d67023e750b90a4268bf9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67023e750b90a4268bf9)

HTTP response: 201| +|[01657-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01657-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d670967468f9f3fc609b8/download)
[Logs](https://api.biosimulations.org/logs/677d670967468f9f3fc609b8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d670967468f9f3fc609b8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6706f8016f90e7cbef6c/download)
[Logs](https://api.biosimulations.org/logs/677d6706f8016f90e7cbef6c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6706f8016f90e7cbef6c)

HTTP response: 201| +|[01658-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01658-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d670ef8016f90e7cbef99/download)
[Logs](https://api.biosimulations.org/logs/677d670ef8016f90e7cbef99?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d670ef8016f90e7cbef99)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d670c3e750b90a4268c31/download)
[Logs](https://api.biosimulations.org/logs/677d670c3e750b90a4268c31?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d670c3e750b90a4268c31)

HTTP response: 201| +|[01659-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01659-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d67143e750b90a4268c48/download)
[Logs](https://api.biosimulations.org/logs/677d67143e750b90a4268c48?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67143e750b90a4268c48)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6711f8016f90e7cbefa2/download)
[Logs](https://api.biosimulations.org/logs/677d6711f8016f90e7cbefa2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6711f8016f90e7cbefa2)

HTTP response: 201| +|[01660-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01660-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d671967468f9f3fc609ed/download)
[Logs](https://api.biosimulations.org/logs/677d671967468f9f3fc609ed?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d671967468f9f3fc609ed)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6716f8016f90e7cbefaf/download)
[Logs](https://api.biosimulations.org/logs/677d6716f8016f90e7cbefaf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6716f8016f90e7cbefaf)

HTTP response: 201| +|[01661-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01661-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d671e67468f9f3fc609fd/download)
[Logs](https://api.biosimulations.org/logs/677d671e67468f9f3fc609fd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d671e67468f9f3fc609fd)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d671bf8016f90e7cbefbb/download)
[Logs](https://api.biosimulations.org/logs/677d671bf8016f90e7cbefbb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d671bf8016f90e7cbefbb)

HTTP response: 201| +|[01662-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01662-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6723f8016f90e7cbeff4/download)
[Logs](https://api.biosimulations.org/logs/677d6723f8016f90e7cbeff4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6723f8016f90e7cbeff4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d672067468f9f3fc60a11/download)
[Logs](https://api.biosimulations.org/logs/677d672067468f9f3fc60a11?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d672067468f9f3fc60a11)

HTTP response: 201| +|[01663-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01663-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d672867468f9f3fc60a31/download)
[Logs](https://api.biosimulations.org/logs/677d672867468f9f3fc60a31?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d672867468f9f3fc60a31)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6726f8016f90e7cbf008/download)
[Logs](https://api.biosimulations.org/logs/677d6726f8016f90e7cbf008?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6726f8016f90e7cbf008)

HTTP response: 201| +|[01664-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01664-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d672e67468f9f3fc60a59/download)
[Logs](https://api.biosimulations.org/logs/677d672e67468f9f3fc60a59?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d672e67468f9f3fc60a59)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d672b67468f9f3fc60a42/download)
[Logs](https://api.biosimulations.org/logs/677d672b67468f9f3fc60a42?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d672b67468f9f3fc60a42)

HTTP response: 201| +|[01665-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01665-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d67343e750b90a4268cda/download)
[Logs](https://api.biosimulations.org/logs/677d67343e750b90a4268cda?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67343e750b90a4268cda)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67313e750b90a4268ccf/download)
[Logs](https://api.biosimulations.org/logs/677d67313e750b90a4268ccf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67313e750b90a4268ccf)

HTTP response: 201| +|[01666-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01666-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6739f8016f90e7cbf044/download)
[Logs](https://api.biosimulations.org/logs/677d6739f8016f90e7cbf044?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6739f8016f90e7cbf044)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d673667468f9f3fc60a71/download)
[Logs](https://api.biosimulations.org/logs/677d673667468f9f3fc60a71?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d673667468f9f3fc60a71)

HTTP response: 201| +|[01667-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01667-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d673e3e750b90a4268cf9/download)
[Logs](https://api.biosimulations.org/logs/677d673e3e750b90a4268cf9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d673e3e750b90a4268cf9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d673b3e750b90a4268cf3/download)
[Logs](https://api.biosimulations.org/logs/677d673b3e750b90a4268cf3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d673b3e750b90a4268cf3)

HTTP response: 201| +|[01668-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01668-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d674367468f9f3fc60aa8/download)
[Logs](https://api.biosimulations.org/logs/677d674367468f9f3fc60aa8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d674367468f9f3fc60aa8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6741f8016f90e7cbf06a/download)
[Logs](https://api.biosimulations.org/logs/677d6741f8016f90e7cbf06a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6741f8016f90e7cbf06a)

HTTP response: 201| +|[01669-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01669-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d67483e750b90a4268d2e/download)
[Logs](https://api.biosimulations.org/logs/677d67483e750b90a4268d2e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67483e750b90a4268d2e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6746f8016f90e7cbf07a/download)
[Logs](https://api.biosimulations.org/logs/677d6746f8016f90e7cbf07a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6746f8016f90e7cbf07a)

HTTP response: 201| +|[01670-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01670-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d674ef8016f90e7cbf091/download)
[Logs](https://api.biosimulations.org/logs/677d674ef8016f90e7cbf091?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d674ef8016f90e7cbf091)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d674b3e750b90a4268d3d/download)
[Logs](https://api.biosimulations.org/logs/677d674b3e750b90a4268d3d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d674b3e750b90a4268d3d)

HTTP response: 201| +|[01671-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01671-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d67543e750b90a4268d77/download)
[Logs](https://api.biosimulations.org/logs/677d67543e750b90a4268d77?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67543e750b90a4268d77)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67513e750b90a4268d64/download)
[Logs](https://api.biosimulations.org/logs/677d67513e750b90a4268d64?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67513e750b90a4268d64)

HTTP response: 201| +|[01672-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01672-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d675af8016f90e7cbf0cc/download)
[Logs](https://api.biosimulations.org/logs/677d675af8016f90e7cbf0cc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d675af8016f90e7cbf0cc)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6757f8016f90e7cbf0be/download)
[Logs](https://api.biosimulations.org/logs/677d6757f8016f90e7cbf0be?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6757f8016f90e7cbf0be)

HTTP response: 201| +|[01673-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01673-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d67603e750b90a4268db3/download)
[Logs](https://api.biosimulations.org/logs/677d67603e750b90a4268db3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67603e750b90a4268db3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d675d3e750b90a4268dab/download)
[Logs](https://api.biosimulations.org/logs/677d675d3e750b90a4268dab?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d675d3e750b90a4268dab)

HTTP response: 201| +|[01674-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01674-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6765f8016f90e7cbf0f9/download)
[Logs](https://api.biosimulations.org/logs/677d6765f8016f90e7cbf0f9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6765f8016f90e7cbf0f9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67623e750b90a4268db7/download)
[Logs](https://api.biosimulations.org/logs/677d67623e750b90a4268db7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67623e750b90a4268db7)

HTTP response: 201| +|[01675-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01675-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d676af8016f90e7cbf11c/download)
[Logs](https://api.biosimulations.org/logs/677d676af8016f90e7cbf11c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d676af8016f90e7cbf11c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67673e750b90a4268dcc/download)
[Logs](https://api.biosimulations.org/logs/677d67673e750b90a4268dcc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67673e750b90a4268dcc)

HTTP response: 201| +|[01676-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01676-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d676f3e750b90a4268dde/download)
[Logs](https://api.biosimulations.org/logs/677d676f3e750b90a4268dde?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d676f3e750b90a4268dde)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d676df8016f90e7cbf125/download)
[Logs](https://api.biosimulations.org/logs/677d676df8016f90e7cbf125?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d676df8016f90e7cbf125)

HTTP response: 201| +|[01677-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01677-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d677467468f9f3fc60b3a/download)
[Logs](https://api.biosimulations.org/logs/677d677467468f9f3fc60b3a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d677467468f9f3fc60b3a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67723e750b90a4268de1/download)
[Logs](https://api.biosimulations.org/logs/677d67723e750b90a4268de1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67723e750b90a4268de1)

HTTP response: 201| +|[01678-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01678-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d677a67468f9f3fc60b5c/download)
[Logs](https://api.biosimulations.org/logs/677d677a67468f9f3fc60b5c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d677a67468f9f3fc60b5c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6777f8016f90e7cbf14a/download)
[Logs](https://api.biosimulations.org/logs/677d6777f8016f90e7cbf14a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6777f8016f90e7cbf14a)

HTTP response: 201| +|[01679-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01679-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d678067468f9f3fc60b79/download)
[Logs](https://api.biosimulations.org/logs/677d678067468f9f3fc60b79?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d678067468f9f3fc60b79)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d677d3e750b90a4268e1a/download)
[Logs](https://api.biosimulations.org/logs/677d677d3e750b90a4268e1a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d677d3e750b90a4268e1a)

HTTP response: 201| +|[01680-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01680-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d67853e750b90a4268e2d/download)
[Logs](https://api.biosimulations.org/logs/677d67853e750b90a4268e2d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67853e750b90a4268e2d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67823e750b90a4268e29/download)
[Logs](https://api.biosimulations.org/logs/677d67823e750b90a4268e29?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67823e750b90a4268e29)

HTTP response: 201| +|[01681-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01681-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d678b67468f9f3fc60bb2/download)
[Logs](https://api.biosimulations.org/logs/677d678b67468f9f3fc60bb2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d678b67468f9f3fc60bb2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67893e750b90a4268e49/download)
[Logs](https://api.biosimulations.org/logs/677d67893e750b90a4268e49?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67893e750b90a4268e49)

HTTP response: 201| +|[01682-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01682-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6791f8016f90e7cbf1a4/download)
[Logs](https://api.biosimulations.org/logs/677d6791f8016f90e7cbf1a4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6791f8016f90e7cbf1a4)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d678ff8016f90e7cbf195/download)
[Logs](https://api.biosimulations.org/logs/677d678ff8016f90e7cbf195?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d678ff8016f90e7cbf195)

HTTP response: 201| +|[01683-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01683-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d679667468f9f3fc60bd7/download)
[Logs](https://api.biosimulations.org/logs/677d679667468f9f3fc60bd7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d679667468f9f3fc60bd7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67943e750b90a4268e72/download)
[Logs](https://api.biosimulations.org/logs/677d67943e750b90a4268e72?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67943e750b90a4268e72)

HTTP response: 201| +|[01684-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01684-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d679e3e750b90a4268e95/download)
[Logs](https://api.biosimulations.org/logs/677d679e3e750b90a4268e95?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d679e3e750b90a4268e95)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d679bf8016f90e7cbf1c9/download)
[Logs](https://api.biosimulations.org/logs/677d679bf8016f90e7cbf1c9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d679bf8016f90e7cbf1c9)

HTTP response: 201| +|[01685-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01685-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d67a4f8016f90e7cbf1f6/download)
[Logs](https://api.biosimulations.org/logs/677d67a4f8016f90e7cbf1f6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67a4f8016f90e7cbf1f6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67a267468f9f3fc60c07/download)
[Logs](https://api.biosimulations.org/logs/677d67a267468f9f3fc60c07?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67a267468f9f3fc60c07)

HTTP response: 201| +|[01686-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01686-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d67aaf8016f90e7cbf209/download)
[Logs](https://api.biosimulations.org/logs/677d67aaf8016f90e7cbf209?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67aaf8016f90e7cbf209)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67a73e750b90a4268ea9/download)
[Logs](https://api.biosimulations.org/logs/677d67a73e750b90a4268ea9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67a73e750b90a4268ea9)

HTTP response: 201| +|[01687-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01687-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d67b03e750b90a4268ecb/download)
[Logs](https://api.biosimulations.org/logs/677d67b03e750b90a4268ecb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67b03e750b90a4268ecb)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67ad67468f9f3fc60c31/download)
[Logs](https://api.biosimulations.org/logs/677d67ad67468f9f3fc60c31?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67ad67468f9f3fc60c31)

HTTP response: 201| +|[01688-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01688-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d67b667468f9f3fc60c55/download)
[Logs](https://api.biosimulations.org/logs/677d67b667468f9f3fc60c55?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67b667468f9f3fc60c55)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67b3f8016f90e7cbf224/download)
[Logs](https://api.biosimulations.org/logs/677d67b3f8016f90e7cbf224?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67b3f8016f90e7cbf224)

HTTP response: 201| +|[01689-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01689-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d67bd3e750b90a4268ee8/download)
[Logs](https://api.biosimulations.org/logs/677d67bd3e750b90a4268ee8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67bd3e750b90a4268ee8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67ba67468f9f3fc60c5a/download)
[Logs](https://api.biosimulations.org/logs/677d67ba67468f9f3fc60c5a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67ba67468f9f3fc60c5a)

HTTP response: 201| +|[01690-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01690-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d67c33e750b90a4268eff/download)
[Logs](https://api.biosimulations.org/logs/677d67c33e750b90a4268eff?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67c33e750b90a4268eff)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67c067468f9f3fc60c7a/download)
[Logs](https://api.biosimulations.org/logs/677d67c067468f9f3fc60c7a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67c067468f9f3fc60c7a)

HTTP response: 201| +|[01691-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01691-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d67ca3e750b90a4268f0f/download)
[Logs](https://api.biosimulations.org/logs/677d67ca3e750b90a4268f0f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67ca3e750b90a4268f0f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67c7f8016f90e7cbf261/download)
[Logs](https://api.biosimulations.org/logs/677d67c7f8016f90e7cbf261?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67c7f8016f90e7cbf261)

HTTP response: 201| +|[01692-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01692-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d67d067468f9f3fc60cb1/download)
[Logs](https://api.biosimulations.org/logs/677d67d067468f9f3fc60cb1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67d067468f9f3fc60cb1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67cd67468f9f3fc60ca7/download)
[Logs](https://api.biosimulations.org/logs/677d67cd67468f9f3fc60ca7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67cd67468f9f3fc60ca7)

HTTP response: 201| +|[01693-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01693-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d67d53e750b90a4268f3e/download)
[Logs](https://api.biosimulations.org/logs/677d67d53e750b90a4268f3e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67d53e750b90a4268f3e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67d2f8016f90e7cbf289/download)
[Logs](https://api.biosimulations.org/logs/677d67d2f8016f90e7cbf289?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67d2f8016f90e7cbf289)

HTTP response: 201| +|[01694-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01694-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d67daf8016f90e7cbf2aa/download)
[Logs](https://api.biosimulations.org/logs/677d67daf8016f90e7cbf2aa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67daf8016f90e7cbf2aa)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67d7f8016f90e7cbf29c/download)
[Logs](https://api.biosimulations.org/logs/677d67d7f8016f90e7cbf29c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67d7f8016f90e7cbf29c)

HTTP response: 201| +|[01695-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01695-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d67df3e750b90a4268f64/download)
[Logs](https://api.biosimulations.org/logs/677d67df3e750b90a4268f64?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67df3e750b90a4268f64)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67dcf8016f90e7cbf2b5/download)
[Logs](https://api.biosimulations.org/logs/677d67dcf8016f90e7cbf2b5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67dcf8016f90e7cbf2b5)

HTTP response: 201| +|[01696-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01696-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d67e467468f9f3fc60cec/download)
[Logs](https://api.biosimulations.org/logs/677d67e467468f9f3fc60cec?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67e467468f9f3fc60cec)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67e23e750b90a4268f6e/download)
[Logs](https://api.biosimulations.org/logs/677d67e23e750b90a4268f6e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67e23e750b90a4268f6e)

HTTP response: 201| +|[01697-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01697-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d67eaf8016f90e7cbf2e7/download)
[Logs](https://api.biosimulations.org/logs/677d67eaf8016f90e7cbf2e7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67eaf8016f90e7cbf2e7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67e7f8016f90e7cbf2cb/download)
[Logs](https://api.biosimulations.org/logs/677d67e7f8016f90e7cbf2cb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67e7f8016f90e7cbf2cb)

HTTP response: 201| +|[01698-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01698-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d67f03e750b90a4268f9e/download)
[Logs](https://api.biosimulations.org/logs/677d67f03e750b90a4268f9e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67f03e750b90a4268f9e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67edf8016f90e7cbf2ff/download)
[Logs](https://api.biosimulations.org/logs/677d67edf8016f90e7cbf2ff?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67edf8016f90e7cbf2ff)

HTTP response: 201| +|[01699-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01699-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d67f5f8016f90e7cbf31b/download)
[Logs](https://api.biosimulations.org/logs/677d67f5f8016f90e7cbf31b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67f5f8016f90e7cbf31b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67f33e750b90a4268fa6/download)
[Logs](https://api.biosimulations.org/logs/677d67f33e750b90a4268fa6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67f33e750b90a4268fa6)

HTTP response: 201| +|[01700-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01700-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d67fb3e750b90a4268fbd/download)
[Logs](https://api.biosimulations.org/logs/677d67fb3e750b90a4268fbd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67fb3e750b90a4268fbd)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67f83e750b90a4268fb9/download)
[Logs](https://api.biosimulations.org/logs/677d67f83e750b90a4268fb9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67f83e750b90a4268fb9)

HTTP response: 201| +|[01701-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01701-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6800f8016f90e7cbf337/download)
[Logs](https://api.biosimulations.org/logs/677d6800f8016f90e7cbf337?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6800f8016f90e7cbf337)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d67fef8016f90e7cbf32d/download)
[Logs](https://api.biosimulations.org/logs/677d67fef8016f90e7cbf32d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d67fef8016f90e7cbf32d)

HTTP response: 201| +|[01702-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01702-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6806f8016f90e7cbf34c/download)
[Logs](https://api.biosimulations.org/logs/677d6806f8016f90e7cbf34c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6806f8016f90e7cbf34c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6803f8016f90e7cbf341/download)
[Logs](https://api.biosimulations.org/logs/677d6803f8016f90e7cbf341?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6803f8016f90e7cbf341)

HTTP response: 201| +|[01703-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01703-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d680bf8016f90e7cbf36a/download)
[Logs](https://api.biosimulations.org/logs/677d680bf8016f90e7cbf36a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d680bf8016f90e7cbf36a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6808f8016f90e7cbf35e/download)
[Logs](https://api.biosimulations.org/logs/677d6808f8016f90e7cbf35e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6808f8016f90e7cbf35e)

HTTP response: 201| +|[01704-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01704-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d681067468f9f3fc60db1/download)
[Logs](https://api.biosimulations.org/logs/677d681067468f9f3fc60db1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d681067468f9f3fc60db1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d680ef8016f90e7cbf37c/download)
[Logs](https://api.biosimulations.org/logs/677d680ef8016f90e7cbf37c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d680ef8016f90e7cbf37c)

HTTP response: 201| +|[01705-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01705-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d681667468f9f3fc60dc9/download)
[Logs](https://api.biosimulations.org/logs/677d681667468f9f3fc60dc9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d681667468f9f3fc60dc9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d681367468f9f3fc60dbc/download)
[Logs](https://api.biosimulations.org/logs/677d681367468f9f3fc60dbc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d681367468f9f3fc60dbc)

HTTP response: 201| +|[01706-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01706-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d681bf8016f90e7cbf3c0/download)
[Logs](https://api.biosimulations.org/logs/677d681bf8016f90e7cbf3c0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d681bf8016f90e7cbf3c0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6818f8016f90e7cbf3a2/download)
[Logs](https://api.biosimulations.org/logs/677d6818f8016f90e7cbf3a2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6818f8016f90e7cbf3a2)

HTTP response: 201| +|[01707-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01707-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6820f8016f90e7cbf3c6/download)
[Logs](https://api.biosimulations.org/logs/677d6820f8016f90e7cbf3c6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6820f8016f90e7cbf3c6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d681e67468f9f3fc60ddd/download)
[Logs](https://api.biosimulations.org/logs/677d681e67468f9f3fc60ddd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d681e67468f9f3fc60ddd)

HTTP response: 201| +|[01708-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01708-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6827f8016f90e7cbf3e7/download)
[Logs](https://api.biosimulations.org/logs/677d6827f8016f90e7cbf3e7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6827f8016f90e7cbf3e7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6823f8016f90e7cbf3d4/download)
[Logs](https://api.biosimulations.org/logs/677d6823f8016f90e7cbf3d4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6823f8016f90e7cbf3d4)

HTTP response: 201| +|[01709-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01709-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d682d67468f9f3fc60e0a/download)
[Logs](https://api.biosimulations.org/logs/677d682d67468f9f3fc60e0a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d682d67468f9f3fc60e0a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d682af8016f90e7cbf3ee/download)
[Logs](https://api.biosimulations.org/logs/677d682af8016f90e7cbf3ee?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d682af8016f90e7cbf3ee)

HTTP response: 201| +|[01710-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01710-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d683267468f9f3fc60e29/download)
[Logs](https://api.biosimulations.org/logs/677d683267468f9f3fc60e29?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d683267468f9f3fc60e29)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d683067468f9f3fc60e24/download)
[Logs](https://api.biosimulations.org/logs/677d683067468f9f3fc60e24?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d683067468f9f3fc60e24)

HTTP response: 201| +|[01711-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01711-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d683867468f9f3fc60e3f/download)
[Logs](https://api.biosimulations.org/logs/677d683867468f9f3fc60e3f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d683867468f9f3fc60e3f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6836f8016f90e7cbf430/download)
[Logs](https://api.biosimulations.org/logs/677d6836f8016f90e7cbf430?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6836f8016f90e7cbf430)

HTTP response: 201| +|[01712-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01712-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d683ef8016f90e7cbf45b/download)
[Logs](https://api.biosimulations.org/logs/677d683ef8016f90e7cbf45b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d683ef8016f90e7cbf45b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d683c3e750b90a42690b0/download)
[Logs](https://api.biosimulations.org/logs/677d683c3e750b90a42690b0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d683c3e750b90a42690b0)

HTTP response: 201| +|[01713-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01713-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d684567468f9f3fc60e75/download)
[Logs](https://api.biosimulations.org/logs/677d684567468f9f3fc60e75?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d684567468f9f3fc60e75)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d68423e750b90a42690d4/download)
[Logs](https://api.biosimulations.org/logs/677d68423e750b90a42690d4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68423e750b90a42690d4)

HTTP response: 201| +|[01714-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01714-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d684a3e750b90a42690ec/download)
[Logs](https://api.biosimulations.org/logs/677d684a3e750b90a42690ec?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d684a3e750b90a42690ec)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d684867468f9f3fc60e78/download)
[Logs](https://api.biosimulations.org/logs/677d684867468f9f3fc60e78?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d684867468f9f3fc60e78)

HTTP response: 201| +|[01715-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01715-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d68503e750b90a42690fa/download)
[Logs](https://api.biosimulations.org/logs/677d68503e750b90a42690fa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68503e750b90a42690fa)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d684df8016f90e7cbf490/download)
[Logs](https://api.biosimulations.org/logs/677d684df8016f90e7cbf490?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d684df8016f90e7cbf490)

HTTP response: 201| +|[01716-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01716-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6856f8016f90e7cbf4b5/download)
[Logs](https://api.biosimulations.org/logs/677d6856f8016f90e7cbf4b5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6856f8016f90e7cbf4b5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d685367468f9f3fc60e9d/download)
[Logs](https://api.biosimulations.org/logs/677d685367468f9f3fc60e9d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d685367468f9f3fc60e9d)

HTTP response: 201| +|[01717-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01717-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d685bf8016f90e7cbf4c6/download)
[Logs](https://api.biosimulations.org/logs/677d685bf8016f90e7cbf4c6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d685bf8016f90e7cbf4c6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d685967468f9f3fc60eb3/download)
[Logs](https://api.biosimulations.org/logs/677d685967468f9f3fc60eb3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d685967468f9f3fc60eb3)

HTTP response: 201| +|[01718-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01718-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d686167468f9f3fc60ece/download)
[Logs](https://api.biosimulations.org/logs/677d686167468f9f3fc60ece?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d686167468f9f3fc60ece)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d685ff8016f90e7cbf4df/download)
[Logs](https://api.biosimulations.org/logs/677d685ff8016f90e7cbf4df?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d685ff8016f90e7cbf4df)

HTTP response: 201| +|[01719-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01719-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d686867468f9f3fc60ee2/download)
[Logs](https://api.biosimulations.org/logs/677d686867468f9f3fc60ee2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d686867468f9f3fc60ee2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d686567468f9f3fc60ed9/download)
[Logs](https://api.biosimulations.org/logs/677d686567468f9f3fc60ed9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d686567468f9f3fc60ed9)

HTTP response: 201| +|[01720-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01720-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d686d3e750b90a4269174/download)
[Logs](https://api.biosimulations.org/logs/677d686d3e750b90a4269174?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d686d3e750b90a4269174)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d686af8016f90e7cbf506/download)
[Logs](https://api.biosimulations.org/logs/677d686af8016f90e7cbf506?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d686af8016f90e7cbf506)

HTTP response: 201| +|[01721-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01721-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d68733e750b90a426918b/download)
[Logs](https://api.biosimulations.org/logs/677d68733e750b90a426918b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68733e750b90a426918b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d687067468f9f3fc60ef4/download)
[Logs](https://api.biosimulations.org/logs/677d687067468f9f3fc60ef4?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d687067468f9f3fc60ef4)

HTTP response: 201| +|[01722-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01722-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d68783e750b90a42691a9/download)
[Logs](https://api.biosimulations.org/logs/677d68783e750b90a42691a9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68783e750b90a42691a9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6876f8016f90e7cbf531/download)
[Logs](https://api.biosimulations.org/logs/677d6876f8016f90e7cbf531?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6876f8016f90e7cbf531)

HTTP response: 201| +|[01723-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01723-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d687ef8016f90e7cbf564/download)
[Logs](https://api.biosimulations.org/logs/677d687ef8016f90e7cbf564?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d687ef8016f90e7cbf564)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d687b67468f9f3fc60f30/download)
[Logs](https://api.biosimulations.org/logs/677d687b67468f9f3fc60f30?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d687b67468f9f3fc60f30)

HTTP response: 201| +|[01724-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01724-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d688367468f9f3fc60f40/download)
[Logs](https://api.biosimulations.org/logs/677d688367468f9f3fc60f40?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d688367468f9f3fc60f40)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6881f8016f90e7cbf569/download)
[Logs](https://api.biosimulations.org/logs/677d6881f8016f90e7cbf569?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6881f8016f90e7cbf569)

HTTP response: 201| +|[01725-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01725-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6889f8016f90e7cbf598/download)
[Logs](https://api.biosimulations.org/logs/677d6889f8016f90e7cbf598?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6889f8016f90e7cbf598)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d68863e750b90a42691ce/download)
[Logs](https://api.biosimulations.org/logs/677d68863e750b90a42691ce?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68863e750b90a42691ce)

HTTP response: 201| +|[01726-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01726-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d688f67468f9f3fc60f6d/download)
[Logs](https://api.biosimulations.org/logs/677d688f67468f9f3fc60f6d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d688f67468f9f3fc60f6d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d688c3e750b90a42691e1/download)
[Logs](https://api.biosimulations.org/logs/677d688c3e750b90a42691e1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d688c3e750b90a42691e1)

HTTP response: 201| +|[01727-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01727-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6896f8016f90e7cbf5bd/download)
[Logs](https://api.biosimulations.org/logs/677d6896f8016f90e7cbf5bd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6896f8016f90e7cbf5bd)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d68923e750b90a42691f5/download)
[Logs](https://api.biosimulations.org/logs/677d68923e750b90a42691f5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68923e750b90a42691f5)

HTTP response: 201| +|[01728-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01728-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d689d3e750b90a426922d/download)
[Logs](https://api.biosimulations.org/logs/677d689d3e750b90a426922d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d689d3e750b90a426922d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d689af8016f90e7cbf5d6/download)
[Logs](https://api.biosimulations.org/logs/677d689af8016f90e7cbf5d6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d689af8016f90e7cbf5d6)

HTTP response: 201| +|[01729-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01729-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d68a367468f9f3fc60fc8/download)
[Logs](https://api.biosimulations.org/logs/677d68a367468f9f3fc60fc8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68a367468f9f3fc60fc8)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d68a13e750b90a4269237/download)
[Logs](https://api.biosimulations.org/logs/677d68a13e750b90a4269237?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68a13e750b90a4269237)

HTTP response: 201| +|[01730-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01730-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d68a9f8016f90e7cbf60b/download)
[Logs](https://api.biosimulations.org/logs/677d68a9f8016f90e7cbf60b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68a9f8016f90e7cbf60b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d68a6f8016f90e7cbf601/download)
[Logs](https://api.biosimulations.org/logs/677d68a6f8016f90e7cbf601?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68a6f8016f90e7cbf601)

HTTP response: 201| +|[01731-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01731-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d68b03e750b90a426927e/download)
[Logs](https://api.biosimulations.org/logs/677d68b03e750b90a426927e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68b03e750b90a426927e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d68ad3e750b90a4269251/download)
[Logs](https://api.biosimulations.org/logs/677d68ad3e750b90a4269251?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68ad3e750b90a4269251)

HTTP response: 201| +|[01732-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01732-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d68b567468f9f3fc6100f/download)
[Logs](https://api.biosimulations.org/logs/677d68b567468f9f3fc6100f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68b567468f9f3fc6100f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d68b23e750b90a4269283/download)
[Logs](https://api.biosimulations.org/logs/677d68b23e750b90a4269283?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68b23e750b90a4269283)

HTTP response: 201| +|[01733-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01733-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d68bb67468f9f3fc6102d/download)
[Logs](https://api.biosimulations.org/logs/677d68bb67468f9f3fc6102d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68bb67468f9f3fc6102d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d68b83e750b90a4269295/download)
[Logs](https://api.biosimulations.org/logs/677d68b83e750b90a4269295?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68b83e750b90a4269295)

HTTP response: 201| +|[01734-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01734-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d68c1f8016f90e7cbf659/download)
[Logs](https://api.biosimulations.org/logs/677d68c1f8016f90e7cbf659?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68c1f8016f90e7cbf659)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d68be3e750b90a42692ab/download)
[Logs](https://api.biosimulations.org/logs/677d68be3e750b90a42692ab?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68be3e750b90a42692ab)

HTTP response: 201| +|[01735-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01735-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d68c667468f9f3fc61057/download)
[Logs](https://api.biosimulations.org/logs/677d68c667468f9f3fc61057?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68c667468f9f3fc61057)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d68c3f8016f90e7cbf662/download)
[Logs](https://api.biosimulations.org/logs/677d68c3f8016f90e7cbf662?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68c3f8016f90e7cbf662)

HTTP response: 201| +|[01736-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01736-sbml-l3v2.xml)|pass|pass|pass|
SpeciesRef S4_stoich is not a named SpeciesReference, at ?getNamedSpeciesReferenceInfo@LLVMModelDataSymbols@rrllvm@@QEAAAEBUSpeciesReferenceInfo@12@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d68cbf8016f90e7cbf682/download)
[Logs](https://api.biosimulations.org/logs/677d68cbf8016f90e7cbf682?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68cbf8016f90e7cbf682)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: S4_stoich is not a named SpeciesReference, at const rrllvm::LLVMModelDataSymbols::SpeciesReferenceInfo& rrllvm::LLVMModelDataSymbols::getNamedSpeciesReferenceInfo(const string&) const```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d68c8f8016f90e7cbf676/download)
[Logs](https://api.biosimulations.org/logs/677d68c8f8016f90e7cbf676?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68c8f8016f90e7cbf676)

HTTP response: 201| +|[01737-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01737-sbml-l3v2.xml)|pass|pass|pass|
SpeciesRef S4_stoich is not a named SpeciesReference, at ?getNamedSpeciesReferenceInfo@LLVMModelDataSymbols@rrllvm@@QEAAAEBUSpeciesReferenceInfo@12@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d68d067468f9f3fc61073/download)
[Logs](https://api.biosimulations.org/logs/677d68d067468f9f3fc61073?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68d067468f9f3fc61073)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: S4_stoich is not a named SpeciesReference, at const rrllvm::LLVMModelDataSymbols::SpeciesReferenceInfo& rrllvm::LLVMModelDataSymbols::getNamedSpeciesReferenceInfo(const string&) const```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d68ce67468f9f3fc61069/download)
[Logs](https://api.biosimulations.org/logs/677d68ce67468f9f3fc61069?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68ce67468f9f3fc61069)

HTTP response: 201| +|[01738-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01738-sbml-l3v2.xml)|pass|pass|pass|
SpeciesRef S4_stoich is not a named SpeciesReference, at ?getNamedSpeciesReferenceInfo@LLVMModelDataSymbols@rrllvm@@QEAAAEBUSpeciesReferenceInfo@12@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z
|True|
FAIL[Download](https://api.biosimulations.org/results/677d68d6f8016f90e7cbf69d/download)
[Logs](https://api.biosimulations.org/logs/677d68d6f8016f90e7cbf69d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68d6f8016f90e7cbf69d)

HTTP response: 201

Error message: ```The COMBINE/OMEX did not execute successfully: The SED document did not execute successfully: S4_stoich is not a named SpeciesReference, at const rrllvm::LLVMModelDataSymbols::SpeciesReferenceInfo& rrllvm::LLVMModelDataSymbols::getNamedSpeciesReferenceInfo(const string&) const```

Exception type: ```CombineArchiveExecutionError```|
pass[Download](https://api.biosimulations.org/results/677d68d33e750b90a42692f9/download)
[Logs](https://api.biosimulations.org/logs/677d68d33e750b90a42692f9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68d33e750b90a42692f9)

HTTP response: 201| +|[01739-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01739-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d68db67468f9f3fc610a7/download)
[Logs](https://api.biosimulations.org/logs/677d68db67468f9f3fc610a7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68db67468f9f3fc610a7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d68d867468f9f3fc61087/download)
[Logs](https://api.biosimulations.org/logs/677d68d867468f9f3fc61087?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68d867468f9f3fc61087)

HTTP response: 201| +|[01740-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01740-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d68e167468f9f3fc610b7/download)
[Logs](https://api.biosimulations.org/logs/677d68e167468f9f3fc610b7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68e167468f9f3fc610b7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d68de3e750b90a426932c/download)
[Logs](https://api.biosimulations.org/logs/677d68de3e750b90a426932c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68de3e750b90a426932c)

HTTP response: 201| +|[01741-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01741-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d68e767468f9f3fc610c3/download)
[Logs](https://api.biosimulations.org/logs/677d68e767468f9f3fc610c3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68e767468f9f3fc610c3)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d68e4f8016f90e7cbf6d3/download)
[Logs](https://api.biosimulations.org/logs/677d68e4f8016f90e7cbf6d3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68e4f8016f90e7cbf6d3)

HTTP response: 201| +|[01742-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01742-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d68ec67468f9f3fc610dd/download)
[Logs](https://api.biosimulations.org/logs/677d68ec67468f9f3fc610dd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68ec67468f9f3fc610dd)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d68eaf8016f90e7cbf6eb/download)
[Logs](https://api.biosimulations.org/logs/677d68eaf8016f90e7cbf6eb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68eaf8016f90e7cbf6eb)

HTTP response: 201| +|[01743-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01743-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d68f267468f9f3fc610f6/download)
[Logs](https://api.biosimulations.org/logs/677d68f267468f9f3fc610f6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68f267468f9f3fc610f6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d68eff8016f90e7cbf702/download)
[Logs](https://api.biosimulations.org/logs/677d68eff8016f90e7cbf702?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68eff8016f90e7cbf702)

HTTP response: 201| +|[01744-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01744-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d68f767468f9f3fc61107/download)
[Logs](https://api.biosimulations.org/logs/677d68f767468f9f3fc61107?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68f767468f9f3fc61107)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d68f467468f9f3fc61101/download)
[Logs](https://api.biosimulations.org/logs/677d68f467468f9f3fc61101?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68f467468f9f3fc61101)

HTTP response: 201| +|[01745-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01745-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d68fc67468f9f3fc61122/download)
[Logs](https://api.biosimulations.org/logs/677d68fc67468f9f3fc61122?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68fc67468f9f3fc61122)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d68faf8016f90e7cbf726/download)
[Logs](https://api.biosimulations.org/logs/677d68faf8016f90e7cbf726?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d68faf8016f90e7cbf726)

HTTP response: 201| +|[01746-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01746-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d69023e750b90a42693a2/download)
[Logs](https://api.biosimulations.org/logs/677d69023e750b90a42693a2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69023e750b90a42693a2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d690067468f9f3fc6112f/download)
[Logs](https://api.biosimulations.org/logs/677d690067468f9f3fc6112f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d690067468f9f3fc6112f)

HTTP response: 201| +|[01747-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01747-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6908f8016f90e7cbf758/download)
[Logs](https://api.biosimulations.org/logs/677d6908f8016f90e7cbf758?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6908f8016f90e7cbf758)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6905f8016f90e7cbf749/download)
[Logs](https://api.biosimulations.org/logs/677d6905f8016f90e7cbf749?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6905f8016f90e7cbf749)

HTTP response: 201| +|[01748-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01748-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d690e67468f9f3fc61160/download)
[Logs](https://api.biosimulations.org/logs/677d690e67468f9f3fc61160?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d690e67468f9f3fc61160)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d690bf8016f90e7cbf764/download)
[Logs](https://api.biosimulations.org/logs/677d690bf8016f90e7cbf764?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d690bf8016f90e7cbf764)

HTTP response: 201| +|[01749-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01749-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6914f8016f90e7cbf77a/download)
[Logs](https://api.biosimulations.org/logs/677d6914f8016f90e7cbf77a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6914f8016f90e7cbf77a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d69123e750b90a42693e8/download)
[Logs](https://api.biosimulations.org/logs/677d69123e750b90a42693e8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69123e750b90a42693e8)

HTTP response: 201| +|[01750-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01750-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d691bf8016f90e7cbf799/download)
[Logs](https://api.biosimulations.org/logs/677d691bf8016f90e7cbf799?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d691bf8016f90e7cbf799)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d69183e750b90a4269400/download)
[Logs](https://api.biosimulations.org/logs/677d69183e750b90a4269400?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69183e750b90a4269400)

HTTP response: 201| +|[01751-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01751-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d692167468f9f3fc611a1/download)
[Logs](https://api.biosimulations.org/logs/677d692167468f9f3fc611a1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d692167468f9f3fc611a1)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d691ef8016f90e7cbf79f/download)
[Logs](https://api.biosimulations.org/logs/677d691ef8016f90e7cbf79f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d691ef8016f90e7cbf79f)

HTTP response: 201| +|[01752-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01752-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d69273e750b90a426942f/download)
[Logs](https://api.biosimulations.org/logs/677d69273e750b90a426942f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69273e750b90a426942f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6923f8016f90e7cbf7b7/download)
[Logs](https://api.biosimulations.org/logs/677d6923f8016f90e7cbf7b7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6923f8016f90e7cbf7b7)

HTTP response: 201| +|[01753-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01753-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d692df8016f90e7cbf7db/download)
[Logs](https://api.biosimulations.org/logs/677d692df8016f90e7cbf7db?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d692df8016f90e7cbf7db)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d692a3e750b90a426943a/download)
[Logs](https://api.biosimulations.org/logs/677d692a3e750b90a426943a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d692a3e750b90a426943a)

HTTP response: 201| +|[01754-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01754-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6932f8016f90e7cbf7eb/download)
[Logs](https://api.biosimulations.org/logs/677d6932f8016f90e7cbf7eb?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6932f8016f90e7cbf7eb)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d693067468f9f3fc611d7/download)
[Logs](https://api.biosimulations.org/logs/677d693067468f9f3fc611d7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d693067468f9f3fc611d7)

HTTP response: 201| +|[01755-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01755-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d69383e750b90a4269463/download)
[Logs](https://api.biosimulations.org/logs/677d69383e750b90a4269463?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69383e750b90a4269463)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d69363e750b90a426945c/download)
[Logs](https://api.biosimulations.org/logs/677d69363e750b90a426945c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69363e750b90a426945c)

HTTP response: 201| +|[01756-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01756-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d693d3e750b90a4269478/download)
[Logs](https://api.biosimulations.org/logs/677d693d3e750b90a4269478?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d693d3e750b90a4269478)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d693b67468f9f3fc61229/download)
[Logs](https://api.biosimulations.org/logs/677d693b67468f9f3fc61229?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d693b67468f9f3fc61229)

HTTP response: 201| +|[01757-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01757-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6943f8016f90e7cbf820/download)
[Logs](https://api.biosimulations.org/logs/677d6943f8016f90e7cbf820?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6943f8016f90e7cbf820)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6940f8016f90e7cbf81d/download)
[Logs](https://api.biosimulations.org/logs/677d6940f8016f90e7cbf81d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6940f8016f90e7cbf81d)

HTTP response: 201| +|[01758-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01758-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d694967468f9f3fc61252/download)
[Logs](https://api.biosimulations.org/logs/677d694967468f9f3fc61252?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d694967468f9f3fc61252)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6946f8016f90e7cbf82d/download)
[Logs](https://api.biosimulations.org/logs/677d6946f8016f90e7cbf82d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6946f8016f90e7cbf82d)

HTTP response: 201| +|[01759-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01759-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d694d67468f9f3fc61265/download)
[Logs](https://api.biosimulations.org/logs/677d694d67468f9f3fc61265?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d694d67468f9f3fc61265)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d694b67468f9f3fc6125f/download)
[Logs](https://api.biosimulations.org/logs/677d694b67468f9f3fc6125f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d694b67468f9f3fc6125f)

HTTP response: 201| +|[01760-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01760-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6953f8016f90e7cbf85b/download)
[Logs](https://api.biosimulations.org/logs/677d6953f8016f90e7cbf85b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6953f8016f90e7cbf85b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6950f8016f90e7cbf84d/download)
[Logs](https://api.biosimulations.org/logs/677d6950f8016f90e7cbf84d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6950f8016f90e7cbf84d)

HTTP response: 201| +|[01761-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01761-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d695867468f9f3fc61296/download)
[Logs](https://api.biosimulations.org/logs/677d695867468f9f3fc61296?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d695867468f9f3fc61296)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6955f8016f90e7cbf868/download)
[Logs](https://api.biosimulations.org/logs/677d6955f8016f90e7cbf868?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6955f8016f90e7cbf868)

HTTP response: 201| +|[01762-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01762-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d695ef8016f90e7cbf88a/download)
[Logs](https://api.biosimulations.org/logs/677d695ef8016f90e7cbf88a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d695ef8016f90e7cbf88a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d695b67468f9f3fc612a0/download)
[Logs](https://api.biosimulations.org/logs/677d695b67468f9f3fc612a0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d695b67468f9f3fc612a0)

HTTP response: 201| +|[01763-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01763-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6963f8016f90e7cbf898/download)
[Logs](https://api.biosimulations.org/logs/677d6963f8016f90e7cbf898?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6963f8016f90e7cbf898)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6960f8016f90e7cbf890/download)
[Logs](https://api.biosimulations.org/logs/677d6960f8016f90e7cbf890?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6960f8016f90e7cbf890)

HTTP response: 201| +|[01764-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01764-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d696867468f9f3fc612c5/download)
[Logs](https://api.biosimulations.org/logs/677d696867468f9f3fc612c5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d696867468f9f3fc612c5)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d69663e750b90a426951f/download)
[Logs](https://api.biosimulations.org/logs/677d69663e750b90a426951f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69663e750b90a426951f)

HTTP response: 201| +|[01765-sbml-l3v1.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01765-sbml-l3v1.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d696df8016f90e7cbf8bc/download)
[Logs](https://api.biosimulations.org/logs/677d696df8016f90e7cbf8bc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d696df8016f90e7cbf8bc)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d696b3e750b90a4269536/download)
[Logs](https://api.biosimulations.org/logs/677d696b3e750b90a4269536?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d696b3e750b90a4269536)

HTTP response: 201| +|[01766-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01766-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d697367468f9f3fc612fe/download)
[Logs](https://api.biosimulations.org/logs/677d697367468f9f3fc612fe?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d697367468f9f3fc612fe)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d69703e750b90a4269557/download)
[Logs](https://api.biosimulations.org/logs/677d69703e750b90a4269557?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69703e750b90a4269557)

HTTP response: 201| +|[01767-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01767-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d697967468f9f3fc61313/download)
[Logs](https://api.biosimulations.org/logs/677d697967468f9f3fc61313?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d697967468f9f3fc61313)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6976f8016f90e7cbf8df/download)
[Logs](https://api.biosimulations.org/logs/677d6976f8016f90e7cbf8df?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6976f8016f90e7cbf8df)

HTTP response: 201| +|[01768-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01768-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d69863e750b90a426959b/download)
[Logs](https://api.biosimulations.org/logs/677d69863e750b90a426959b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69863e750b90a426959b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d697d67468f9f3fc61322/download)
[Logs](https://api.biosimulations.org/logs/677d697d67468f9f3fc61322?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d697d67468f9f3fc61322)

HTTP response: 201| +|[01769-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01769-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d698cf8016f90e7cbf930/download)
[Logs](https://api.biosimulations.org/logs/677d698cf8016f90e7cbf930?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d698cf8016f90e7cbf930)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6989f8016f90e7cbf910/download)
[Logs](https://api.biosimulations.org/logs/677d6989f8016f90e7cbf910?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6989f8016f90e7cbf910)

HTTP response: 201| +|[01770-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01770-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d69923e750b90a42695c0/download)
[Logs](https://api.biosimulations.org/logs/677d69923e750b90a42695c0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69923e750b90a42695c0)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d698f3e750b90a42695bc/download)
[Logs](https://api.biosimulations.org/logs/677d698f3e750b90a42695bc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d698f3e750b90a42695bc)

HTTP response: 201| +|[01771-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01771-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d699967468f9f3fc6136f/download)
[Logs](https://api.biosimulations.org/logs/677d699967468f9f3fc6136f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d699967468f9f3fc6136f)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6995f8016f90e7cbf942/download)
[Logs](https://api.biosimulations.org/logs/677d6995f8016f90e7cbf942?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6995f8016f90e7cbf942)

HTTP response: 201| +|[01772-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01772-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d699e67468f9f3fc6138d/download)
[Logs](https://api.biosimulations.org/logs/677d699e67468f9f3fc6138d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d699e67468f9f3fc6138d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d699c67468f9f3fc6137b/download)
[Logs](https://api.biosimulations.org/logs/677d699c67468f9f3fc6137b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d699c67468f9f3fc6137b)

HTTP response: 201| +|[01773-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01773-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d69a367468f9f3fc613a6/download)
[Logs](https://api.biosimulations.org/logs/677d69a367468f9f3fc613a6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69a367468f9f3fc613a6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d69a167468f9f3fc61397/download)
[Logs](https://api.biosimulations.org/logs/677d69a167468f9f3fc61397?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69a167468f9f3fc61397)

HTTP response: 201| +|[01774-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01774-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d69a9f8016f90e7cbf98d/download)
[Logs](https://api.biosimulations.org/logs/677d69a9f8016f90e7cbf98d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69a9f8016f90e7cbf98d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d69a7f8016f90e7cbf976/download)
[Logs](https://api.biosimulations.org/logs/677d69a7f8016f90e7cbf976?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69a7f8016f90e7cbf976)

HTTP response: 201| +|[01775-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01775-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d69af3e750b90a4269606/download)
[Logs](https://api.biosimulations.org/logs/677d69af3e750b90a4269606?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69af3e750b90a4269606)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d69ac3e750b90a4269601/download)
[Logs](https://api.biosimulations.org/logs/677d69ac3e750b90a4269601?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69ac3e750b90a4269601)

HTTP response: 201| +|[01776-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01776-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d69b43e750b90a426961c/download)
[Logs](https://api.biosimulations.org/logs/677d69b43e750b90a426961c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69b43e750b90a426961c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d69b2f8016f90e7cbf994/download)
[Logs](https://api.biosimulations.org/logs/677d69b2f8016f90e7cbf994?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69b2f8016f90e7cbf994)

HTTP response: 201| +|[01777-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01777-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d69b9f8016f90e7cbf9ab/download)
[Logs](https://api.biosimulations.org/logs/677d69b9f8016f90e7cbf9ab?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69b9f8016f90e7cbf9ab)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d69b73e750b90a4269621/download)
[Logs](https://api.biosimulations.org/logs/677d69b73e750b90a4269621?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69b73e750b90a4269621)

HTTP response: 201| +|[01778-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01778-sbml-l3v2.xml)|pass|pass|pass|pass|True|
FAIL[Download](https://api.biosimulations.org/results/677d69bff8016f90e7cbf9b6/download)
[Logs](https://api.biosimulations.org/logs/677d69bff8016f90e7cbf9b6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69bff8016f90e7cbf9b6)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp826000 is invalid. - Model model_1 is invalid. - The model file 01778-sbml-l3v2.xml is invalid. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. The with the id 'moddef2' refers to a source 'external-l3v2.xml' that cannot be accessed from here. Further checks relating to this document cannot be performed. ```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d69bcf8016f90e7cbf9b1/download)
[Logs](https://api.biosimulations.org/logs/677d69bcf8016f90e7cbf9b1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69bcf8016f90e7cbf9b1)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp85927 is invalid. - Model model_1 is invalid. - The model file 01778-sbml-l3v2.xml is invalid. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. In ExternalModelDefinition::getReferencedModel, unable to resolve the external model definition 'moddef2': could not the resolve 'source' attribute 'external-l3v2.xml' as a valid SBML Document. - SBML component consistency (1020615) at line 26, column 6: The value of a 'comp:modelRef' attribute on a must be the identifier of a , , or object in the same SBML object as the . Reference: L3V1 Comp V1 Section 3.5.1 In Submodel::instantiate, unable to instantiate submodel 'sub2' because the external model definition it referenced (model 'moddef2') could not be resolved. - SBML component consistency (1090101) at line 30, column 4: The external model referenced in this model could not be resolved. The with the id 'moddef2' refers to a source 'external-l3v2.xml' that cannot be accessed from here. Further checks relating to this document cannot be performed. ```

Exception type: ```ValueError```| +|[01779-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01779-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d69c5f8016f90e7cbf9cf/download)
[Logs](https://api.biosimulations.org/logs/677d69c5f8016f90e7cbf9cf?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69c5f8016f90e7cbf9cf)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d69c2f8016f90e7cbf9c3/download)
[Logs](https://api.biosimulations.org/logs/677d69c2f8016f90e7cbf9c3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69c2f8016f90e7cbf9c3)

HTTP response: 201| +|[01780-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01780-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d69ca3e750b90a426965a/download)
[Logs](https://api.biosimulations.org/logs/677d69ca3e750b90a426965a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69ca3e750b90a426965a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d69c73e750b90a4269653/download)
[Logs](https://api.biosimulations.org/logs/677d69c73e750b90a4269653?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69c73e750b90a4269653)

HTTP response: 201| +|[01781-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01781-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d69d0f8016f90e7cbf9f7/download)
[Logs](https://api.biosimulations.org/logs/677d69d0f8016f90e7cbf9f7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69d0f8016f90e7cbf9f7)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d69cdf8016f90e7cbf9ee/download)
[Logs](https://api.biosimulations.org/logs/677d69cdf8016f90e7cbf9ee?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69cdf8016f90e7cbf9ee)

HTTP response: 201| +|[01782-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01782-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d69d567468f9f3fc6145a/download)
[Logs](https://api.biosimulations.org/logs/677d69d567468f9f3fc6145a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69d567468f9f3fc6145a)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d69d33e750b90a4269696/download)
[Logs](https://api.biosimulations.org/logs/677d69d33e750b90a4269696?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69d33e750b90a4269696)

HTTP response: 201| +|[01783-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01783-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d69da3e750b90a42696ca/download)
[Logs](https://api.biosimulations.org/logs/677d69da3e750b90a42696ca?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69da3e750b90a42696ca)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d69d83e750b90a42696bd/download)
[Logs](https://api.biosimulations.org/logs/677d69d83e750b90a42696bd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69d83e750b90a42696bd)

HTTP response: 201| +|[01784-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01784-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d69e067468f9f3fc6149b/download)
[Logs](https://api.biosimulations.org/logs/677d69e067468f9f3fc6149b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69e067468f9f3fc6149b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d69dd3e750b90a42696d0/download)
[Logs](https://api.biosimulations.org/logs/677d69dd3e750b90a42696d0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69dd3e750b90a42696d0)

HTTP response: 201| +|[01785-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01785-sbml-l2v5.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = C2 - C1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d69e53e750b90a42696ed/download)
[Logs](https://api.biosimulations.org/logs/677d69e53e750b90a42696ed?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69e53e750b90a42696ed)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d69e3f8016f90e7cbfa70/download)
[Logs](https://api.biosimulations.org/logs/677d69e3f8016f90e7cbfa70?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69e3f8016f90e7cbfa70)

HTTP response: 201| +|[01786-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01786-sbml-l2v5.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = C2 - C1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d69ea67468f9f3fc614c2/download)
[Logs](https://api.biosimulations.org/logs/677d69ea67468f9f3fc614c2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69ea67468f9f3fc614c2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d69e83e750b90a42696f8/download)
[Logs](https://api.biosimulations.org/logs/677d69e83e750b90a42696f8?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69e83e750b90a42696f8)

HTTP response: 201| +|[01787-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01787-sbml-l2v5.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = S2 - S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d69ef67468f9f3fc614d6/download)
[Logs](https://api.biosimulations.org/logs/677d69ef67468f9f3fc614d6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69ef67468f9f3fc614d6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d69ed3e750b90a4269705/download)
[Logs](https://api.biosimulations.org/logs/677d69ed3e750b90a4269705?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69ed3e750b90a4269705)

HTTP response: 201| +|[01788-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01788-sbml-l2v5.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = S2 - S1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d69f567468f9f3fc614ed/download)
[Logs](https://api.biosimulations.org/logs/677d69f567468f9f3fc614ed?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69f567468f9f3fc614ed)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d69f2f8016f90e7cbfab7/download)
[Logs](https://api.biosimulations.org/logs/677d69f2f8016f90e7cbfab7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69f2f8016f90e7cbfab7)

HTTP response: 201| +|[01789-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01789-sbml-l2v5.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = P2 - P1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d69fa3e750b90a4269737/download)
[Logs](https://api.biosimulations.org/logs/677d69fa3e750b90a4269737?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69fa3e750b90a4269737)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d69f8f8016f90e7cbfad1/download)
[Logs](https://api.biosimulations.org/logs/677d69f8f8016f90e7cbfad1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69f8f8016f90e7cbfad1)

HTTP response: 201| +|[01790-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01790-sbml-l2v5.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = P2 - P1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d69fff8016f90e7cbfaf2/download)
[Logs](https://api.biosimulations.org/logs/677d69fff8016f90e7cbfaf2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69fff8016f90e7cbfaf2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d69fdf8016f90e7cbfaea/download)
[Logs](https://api.biosimulations.org/logs/677d69fdf8016f90e7cbfaea?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d69fdf8016f90e7cbfaea)

HTTP response: 201| +|[01791-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01791-sbml-l2v5.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = P2 - C1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d6a07f8016f90e7cbfb0e/download)
[Logs](https://api.biosimulations.org/logs/677d6a07f8016f90e7cbfb0e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a07f8016f90e7cbfb0e)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6a043e750b90a426976e/download)
[Logs](https://api.biosimulations.org/logs/677d6a043e750b90a426976e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a043e750b90a426976e)

HTTP response: 201| +|[01792-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01792-sbml-l2v5.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = P2 - C1' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d6a0d3e750b90a4269797/download)
[Logs](https://api.biosimulations.org/logs/677d6a0d3e750b90a4269797?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a0d3e750b90a4269797)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6a0a67468f9f3fc61543/download)
[Logs](https://api.biosimulations.org/logs/677d6a0a67468f9f3fc61543?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a0a67468f9f3fc61543)

HTTP response: 201| +|[01793-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01793-sbml-l2v5.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = 1 * C1 - S2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d6a12f8016f90e7cbfb2d/download)
[Logs](https://api.biosimulations.org/logs/677d6a12f8016f90e7cbfb2d?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a12f8016f90e7cbfb2d)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6a103e750b90a426979e/download)
[Logs](https://api.biosimulations.org/logs/677d6a103e750b90a426979e?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a103e750b90a426979e)

HTTP response: 201| +|[01794-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01794-sbml-l2v5.xml)|pass|pass|pass|
algebraic Unable to support algebraic rules. The formula '0 = P1 - S2' is not supported., at ??0LLVMModelDataSymbols@rrllvm@@QEAA@PEBVModel@libsbml@@I@Z
|True|
pass[Download](https://api.biosimulations.org/results/677d6a18f8016f90e7cbfb3c/download)
[Logs](https://api.biosimulations.org/logs/677d6a18f8016f90e7cbfb3c?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a18f8016f90e7cbfb3c)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6a15f8016f90e7cbfb37/download)
[Logs](https://api.biosimulations.org/logs/677d6a15f8016f90e7cbfb37?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a15f8016f90e7cbfb37)

HTTP response: 201| +|[01795-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01795-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6a1df8016f90e7cbfb4b/download)
[Logs](https://api.biosimulations.org/logs/677d6a1df8016f90e7cbfb4b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a1df8016f90e7cbfb4b)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6a1a3e750b90a42697c6/download)
[Logs](https://api.biosimulations.org/logs/677d6a1a3e750b90a42697c6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a1a3e750b90a42697c6)

HTTP response: 201| +|[01796-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01796-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6a23f8016f90e7cbfb67/download)
[Logs](https://api.biosimulations.org/logs/677d6a23f8016f90e7cbfb67?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a23f8016f90e7cbfb67)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6a203e750b90a42697d7/download)
[Logs](https://api.biosimulations.org/logs/677d6a203e750b90a42697d7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a203e750b90a42697d7)

HTTP response: 201| +|[01797-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01797-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6a2a3e750b90a4269802/download)
[Logs](https://api.biosimulations.org/logs/677d6a2a3e750b90a4269802?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a2a3e750b90a4269802)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6a27f8016f90e7cbfb71/download)
[Logs](https://api.biosimulations.org/logs/677d6a27f8016f90e7cbfb71?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a27f8016f90e7cbfb71)

HTTP response: 201| +|[01798-sbml-l2v5.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01798-sbml-l2v5.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6a30f8016f90e7cbfb97/download)
[Logs](https://api.biosimulations.org/logs/677d6a30f8016f90e7cbfb97?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a30f8016f90e7cbfb97)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6a2df8016f90e7cbfb86/download)
[Logs](https://api.biosimulations.org/logs/677d6a2df8016f90e7cbfb86?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a2df8016f90e7cbfb86)

HTTP response: 201| +|[01799-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01799-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6a36f8016f90e7cbfba9/download)
[Logs](https://api.biosimulations.org/logs/677d6a36f8016f90e7cbfba9?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a36f8016f90e7cbfba9)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6a3367468f9f3fc615e1/download)
[Logs](https://api.biosimulations.org/logs/677d6a3367468f9f3fc615e1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a3367468f9f3fc615e1)

HTTP response: 201| +|[01800-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01800-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6a3c67468f9f3fc615fa/download)
[Logs](https://api.biosimulations.org/logs/677d6a3c67468f9f3fc615fa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a3c67468f9f3fc615fa)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6a393e750b90a4269832/download)
[Logs](https://api.biosimulations.org/logs/677d6a393e750b90a4269832?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a393e750b90a4269832)

HTTP response: 201| +|[01801-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01801-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6a4267468f9f3fc61615/download)
[Logs](https://api.biosimulations.org/logs/677d6a4267468f9f3fc61615?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a4267468f9f3fc61615)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6a3f67468f9f3fc61603/download)
[Logs](https://api.biosimulations.org/logs/677d6a3f67468f9f3fc61603?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a3f67468f9f3fc61603)

HTTP response: 201| +|[01802-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01802-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6a47f8016f90e7cbfbe6/download)
[Logs](https://api.biosimulations.org/logs/677d6a47f8016f90e7cbfbe6?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a47f8016f90e7cbfbe6)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6a443e750b90a4269858/download)
[Logs](https://api.biosimulations.org/logs/677d6a443e750b90a4269858?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a443e750b90a4269858)

HTTP response: 201| +|[01803-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01803-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6a4c3e750b90a4269866/download)
[Logs](https://api.biosimulations.org/logs/677d6a4c3e750b90a4269866?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a4c3e750b90a4269866)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6a4af8016f90e7cbfbf5/download)
[Logs](https://api.biosimulations.org/logs/677d6a4af8016f90e7cbfbf5?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a4af8016f90e7cbfbf5)

HTTP response: 201| +|[01804-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01804-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6a523e750b90a4269880/download)
[Logs](https://api.biosimulations.org/logs/677d6a523e750b90a4269880?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a523e750b90a4269880)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6a4f67468f9f3fc6163f/download)
[Logs](https://api.biosimulations.org/logs/677d6a4f67468f9f3fc6163f?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a4f67468f9f3fc6163f)

HTTP response: 201| +|[01805-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01805-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6a573e750b90a4269899/download)
[Logs](https://api.biosimulations.org/logs/677d6a573e750b90a4269899?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a573e750b90a4269899)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6a5467468f9f3fc61659/download)
[Logs](https://api.biosimulations.org/logs/677d6a5467468f9f3fc61659?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a5467468f9f3fc61659)

HTTP response: 201| +|[01806-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01806-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6a5d67468f9f3fc61672/download)
[Logs](https://api.biosimulations.org/logs/677d6a5d67468f9f3fc61672?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a5d67468f9f3fc61672)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6a5a67468f9f3fc61663/download)
[Logs](https://api.biosimulations.org/logs/677d6a5a67468f9f3fc61663?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a5a67468f9f3fc61663)

HTTP response: 201| +|[01807-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01807-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6a633e750b90a42698d2/download)
[Logs](https://api.biosimulations.org/logs/677d6a633e750b90a42698d2?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a633e750b90a42698d2)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6a6067468f9f3fc61682/download)
[Logs](https://api.biosimulations.org/logs/677d6a6067468f9f3fc61682?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a6067468f9f3fc61682)

HTTP response: 201| +|[01808-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01808-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6a68f8016f90e7cbfc63/download)
[Logs](https://api.biosimulations.org/logs/677d6a68f8016f90e7cbfc63?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a68f8016f90e7cbfc63)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6a6567468f9f3fc616a1/download)
[Logs](https://api.biosimulations.org/logs/677d6a6567468f9f3fc616a1?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a6567468f9f3fc616a1)

HTTP response: 201| +|[01809-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01809-sbml-l3v2.xml)|pass|pass|pass|pass|True|
pass[Download](https://api.biosimulations.org/results/677d6a6d3e750b90a42698fa/download)
[Logs](https://api.biosimulations.org/logs/677d6a6d3e750b90a42698fa?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a6d3e750b90a42698fa)

HTTP response: 201|
pass[Download](https://api.biosimulations.org/results/677d6a6bf8016f90e7cbfc73/download)
[Logs](https://api.biosimulations.org/logs/677d6a6bf8016f90e7cbfc73?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a6bf8016f90e7cbfc73)

HTTP response: 201| +|[01810-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01810-sbml-l3v2.xml)|pass|pass|pass|
other name 'INF' is not defined
|True|
FAIL[Download](https://api.biosimulations.org/results/677d6a7367468f9f3fc616c3/download)
[Logs](https://api.biosimulations.org/logs/677d6a7367468f9f3fc616c3?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a7367468f9f3fc616c3)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp565330 is invalid. - Data generator Inf_1 is invalid. - The mathematical expression INF cannot be evaluated. - Expression INF could not be evaluated: name 'INF' is not defined workspace: Inf: 1 - Data generator inf_1 is invalid. - The mathematical expression INF cannot be evaluated. - Expression INF could not be evaluated: name 'INF' is not defined workspace: inf: 1```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d6a70f8016f90e7cbfc82/download)
[Logs](https://api.biosimulations.org/logs/677d6a70f8016f90e7cbfc82?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a70f8016f90e7cbfc82)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp815714 is invalid. - Data generator Inf_1 is invalid. - The mathematical expression INF cannot be evaluated. - Expression INF could not be evaluated: name 'INF' is not defined workspace: Inf: 1 - Data generator inf_1 is invalid. - The mathematical expression INF cannot be evaluated. - Expression INF could not be evaluated: name 'INF' is not defined workspace: inf: 1```

Exception type: ```ValueError```| +|[01811-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01811-sbml-l3v2.xml)|pass|pass|pass|
other name 'INF' is not defined
|True|
FAIL[Download](https://api.biosimulations.org/results/677d6a793e750b90a4269930/download)
[Logs](https://api.biosimulations.org/logs/677d6a793e750b90a4269930?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a793e750b90a4269930)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp878272 is invalid. - Data generator Inf_1 is invalid. - The mathematical expression INF cannot be evaluated. - Expression INF could not be evaluated: name 'INF' is not defined workspace: Inf: 1 - Data generator inf_1 is invalid. - The mathematical expression INF cannot be evaluated. - Expression INF could not be evaluated: name 'INF' is not defined workspace: inf: 1```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d6a763e750b90a4269927/download)
[Logs](https://api.biosimulations.org/logs/677d6a763e750b90a4269927?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a763e750b90a4269927)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp608608 is invalid. - Data generator Inf_1 is invalid. - The mathematical expression INF cannot be evaluated. - Expression INF could not be evaluated: name 'INF' is not defined workspace: Inf: 1 - Data generator inf_1 is invalid. - The mathematical expression INF cannot be evaluated. - Expression INF could not be evaluated: name 'INF' is not defined workspace: inf: 1```

Exception type: ```ValueError```| +|[01812-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01812-sbml-l3v2.xml)|pass|pass|pass|
other name 'NaN' is not defined
|True|
FAIL[Download](https://api.biosimulations.org/results/677d6a7d67468f9f3fc616e0/download)
[Logs](https://api.biosimulations.org/logs/677d6a7d67468f9f3fc616e0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a7d67468f9f3fc616e0)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp71338 is invalid. - Data generator NAN_1 is invalid. - The mathematical expression NaN cannot be evaluated. - Expression NaN could not be evaluated: name 'NaN' is not defined workspace: NAN: 1 - Data generator nan_1 is invalid. - The mathematical expression NaN cannot be evaluated. - Expression NaN could not be evaluated: name 'NaN' is not defined workspace: nan: 1```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d6a7b67468f9f3fc616db/download)
[Logs](https://api.biosimulations.org/logs/677d6a7b67468f9f3fc616db?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a7b67468f9f3fc616db)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp425328 is invalid. - Data generator NAN_1 is invalid. - The mathematical expression NaN cannot be evaluated. - Expression NaN could not be evaluated: name 'NaN' is not defined workspace: NAN: 1 - Data generator nan_1 is invalid. - The mathematical expression NaN cannot be evaluated. - Expression NaN could not be evaluated: name 'NaN' is not defined workspace: nan: 1```

Exception type: ```ValueError```| +|[01813-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01813-sbml-l3v2.xml)|pass|pass|pass|
other name 'NaN' is not defined
|True|
FAIL[Download](https://api.biosimulations.org/results/677d6a8367468f9f3fc616f7/download)
[Logs](https://api.biosimulations.org/logs/677d6a8367468f9f3fc616f7?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a8367468f9f3fc616f7)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp451024 is invalid. - Data generator NAN_1 is invalid. - The mathematical expression NaN cannot be evaluated. - Expression NaN could not be evaluated: name 'NaN' is not defined workspace: NAN: 1 - Data generator nan_1 is invalid. - The mathematical expression NaN cannot be evaluated. - Expression NaN could not be evaluated: name 'NaN' is not defined workspace: nan: 1```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d6a803e750b90a4269942/download)
[Logs](https://api.biosimulations.org/logs/677d6a803e750b90a4269942?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a803e750b90a4269942)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp793486 is invalid. - Data generator NAN_1 is invalid. - The mathematical expression NaN cannot be evaluated. - Expression NaN could not be evaluated: name 'NaN' is not defined workspace: NAN: 1 - Data generator nan_1 is invalid. - The mathematical expression NaN cannot be evaluated. - Expression NaN could not be evaluated: name 'NaN' is not defined workspace: nan: 1```

Exception type: ```ValueError```| +|[01814-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01814-sbml-l3v2.xml)|pass|pass|pass|
other name 'true' is not defined
|True|
FAIL[Download](https://api.biosimulations.org/results/677d6a8867468f9f3fc616fe/download)
[Logs](https://api.biosimulations.org/logs/677d6a8867468f9f3fc616fe?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a8867468f9f3fc616fe)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp311021 is invalid. - Data generator true_1 is invalid. - The mathematical expression true cannot be evaluated. - Variables for mathematical expressions cannot have ids equal to the following reserved symbols: - true ```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d6a86f8016f90e7cbfcdc/download)
[Logs](https://api.biosimulations.org/logs/677d6a86f8016f90e7cbfcdc?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a86f8016f90e7cbfcdc)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp298765 is invalid. - Data generator true_1 is invalid. - The mathematical expression true cannot be evaluated. - Variables for mathematical expressions cannot have ids equal to the following reserved symbols: - true ```

Exception type: ```ValueError```| +|[01815-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01815-sbml-l3v2.xml)|pass|pass|pass|
other name 'true' is not defined
|True|
FAIL[Download](https://api.biosimulations.org/results/677d6a8e67468f9f3fc61719/download)
[Logs](https://api.biosimulations.org/logs/677d6a8e67468f9f3fc61719?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a8e67468f9f3fc61719)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp612983 is invalid. - Data generator true_1 is invalid. - The mathematical expression true cannot be evaluated. - Variables for mathematical expressions cannot have ids equal to the following reserved symbols: - true ```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d6a8b3e750b90a4269964/download)
[Logs](https://api.biosimulations.org/logs/677d6a8b3e750b90a4269964?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a8b3e750b90a4269964)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp764237 is invalid. - Data generator true_1 is invalid. - The mathematical expression true cannot be evaluated. - Variables for mathematical expressions cannot have ids equal to the following reserved symbols: - true ```

Exception type: ```ValueError```| +|[01816-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01816-sbml-l3v2.xml)|pass|pass|pass|
other name 'false' is not defined
|True|
FAIL[Download](https://api.biosimulations.org/results/677d6a94f8016f90e7cbfd23/download)
[Logs](https://api.biosimulations.org/logs/677d6a94f8016f90e7cbfd23?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a94f8016f90e7cbfd23)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp778218 is invalid. - Data generator false_1 is invalid. - The mathematical expression false cannot be evaluated. - Variables for mathematical expressions cannot have ids equal to the following reserved symbols: - false ```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d6a9167468f9f3fc6172a/download)
[Logs](https://api.biosimulations.org/logs/677d6a9167468f9f3fc6172a?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a9167468f9f3fc6172a)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp837114 is invalid. - Data generator false_1 is invalid. - The mathematical expression false cannot be evaluated. - Variables for mathematical expressions cannot have ids equal to the following reserved symbols: - false ```

Exception type: ```ValueError```| +|[01817-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01817-sbml-l3v2.xml)|pass|pass|pass|
other name 'false' is not defined
|True|
FAIL[Download](https://api.biosimulations.org/results/677d6a99f8016f90e7cbfd41/download)
[Logs](https://api.biosimulations.org/logs/677d6a99f8016f90e7cbfd41?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a99f8016f90e7cbfd41)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp444394 is invalid. - Data generator false_1 is invalid. - The mathematical expression false cannot be evaluated. - Variables for mathematical expressions cannot have ids equal to the following reserved symbols: - false ```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d6a9767468f9f3fc61753/download)
[Logs](https://api.biosimulations.org/logs/677d6a9767468f9f3fc61753?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a9767468f9f3fc61753)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp259010 is invalid. - Data generator false_1 is invalid. - The mathematical expression false cannot be evaluated. - Variables for mathematical expressions cannot have ids equal to the following reserved symbols: - false ```

Exception type: ```ValueError```| +|[01818-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01818-sbml-l3v2.xml)|pass|pass|pass|
other 'float' object is not subscriptable
|True|
FAIL[Download](https://api.biosimulations.org/results/677d6a9e3e750b90a42699e0/download)
[Logs](https://api.biosimulations.org/logs/677d6a9e3e750b90a42699e0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a9e3e750b90a42699e0)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp164154 is invalid. - Data generator pi_1 is invalid. - The mathematical expression pi cannot be evaluated. - Variables for mathematical expressions cannot have ids equal to the following reserved symbols: - pi ```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d6a9c67468f9f3fc6177b/download)
[Logs](https://api.biosimulations.org/logs/677d6a9c67468f9f3fc6177b?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6a9c67468f9f3fc6177b)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp771429 is invalid. - Data generator pi_1 is invalid. - The mathematical expression pi cannot be evaluated. - Variables for mathematical expressions cannot have ids equal to the following reserved symbols: - pi ```

Exception type: ```ValueError```| +|[01819-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01819-sbml-l3v2.xml)|pass|pass|pass|
other 'float' object is not subscriptable
|True|
FAIL[Download](https://api.biosimulations.org/results/677d6aa4f8016f90e7cbfd70/download)
[Logs](https://api.biosimulations.org/logs/677d6aa4f8016f90e7cbfd70?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6aa4f8016f90e7cbfd70)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp80392 is invalid. - Data generator pi_1 is invalid. - The mathematical expression pi cannot be evaluated. - Variables for mathematical expressions cannot have ids equal to the following reserved symbols: - pi ```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d6aa167468f9f3fc61787/download)
[Logs](https://api.biosimulations.org/logs/677d6aa167468f9f3fc61787?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6aa167468f9f3fc61787)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp917496 is invalid. - Data generator pi_1 is invalid. - The mathematical expression pi cannot be evaluated. - Variables for mathematical expressions cannot have ids equal to the following reserved symbols: - pi ```

Exception type: ```ValueError```| +|[01820-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01820-sbml-l3v2.xml)|pass|pass|pass|
other only integers, slices ( : ), ellipsis ( ... ), numpy.newaxis ( None ) and integer or boolean arrays are valid indices
|True|
FAIL[Download](https://api.biosimulations.org/results/677e71e83e750b90a426a2c0/download)
[Logs](https://api.biosimulations.org/logs/677e71e83e750b90a426a2c0?includeOutput=true)
[View](https://api.biosimulations.org/runs/677e71e83e750b90a426a2c0)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp719891 is invalid. - Each identified SED object must have a unique id. Multiple objects have the following ids: - time```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677e71e667468f9f3fc62037/download)
[Logs](https://api.biosimulations.org/logs/677e71e667468f9f3fc62037?includeOutput=true)
[View](https://api.biosimulations.org/runs/677e71e667468f9f3fc62037)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp139699 is invalid. - Each identified SED object must have a unique id. Multiple objects have the following ids: - time```

Exception type: ```ValueError```| +|[01821-sbml-l3v2.xml](https://github.com/sbmlteam/sbml-test-suite/blob/release/cases/semantic\01821-sbml-l3v2.xml)|pass|pass|pass|
other only integers, slices ( : ), ellipsis ( ... ), numpy.newaxis ( None ) and integer or boolean arrays are valid indices
|True|
FAIL[Download](https://api.biosimulations.org/results/677d6aaf67468f9f3fc617bd/download)
[Logs](https://api.biosimulations.org/logs/677d6aaf67468f9f3fc617bd?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6aaf67468f9f3fc617bd)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp454022 is invalid. - Each identified SED object must have a unique id. Multiple objects have the following ids: - time```

Exception type: ```ValueError```|
FAIL[Download](https://api.biosimulations.org/results/677d6aad3e750b90a4269a17/download)
[Logs](https://api.biosimulations.org/logs/677d6aad3e750b90a4269a17?includeOutput=true)
[View](https://api.biosimulations.org/runs/677d6aad3e750b90a4269a17)

HTTP response: 201

Error message: ``` /root/archive.omex is not a valid COMBINE/OMEX archive. - The SED-ML file at location ./tmp684479 is invalid. - Each identified SED object must have a unique id. Multiple objects have the following ids: - time```

Exception type: ```ValueError```| diff --git a/utils/__init__.py b/utils/__init__.py index caec12dc..6f11dd51 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -696,7 +696,7 @@ def run_biosimulators_remote(engine, sedml_filepath, sbml_filepath): engine_version = biosimulations.get_simulator_versions(engine) sim_dict = { - "name": "test", + "name": omex_file_name, "simulator": engine, "simulatorVersion": engine_version[engine][-1], # get the latest version "cpus": 1, @@ -723,6 +723,7 @@ def run_biosimulators_remote(engine, sedml_filepath, sbml_filepath): "logs": "", "exception": exception_message, } + return results_urls return results_urls @@ -732,7 +733,6 @@ def get_remote_results(engine, download_link, output_dir="remote_results"): extract_dir = os.path.join(os.getcwd(), output_dir, engine) shutil.unpack_archive(filepath_results, extract_dir=extract_dir) os.remove(filepath_results) - return extract_dir @@ -786,6 +786,14 @@ def run_biosimulators_docker( if "RuntimeException" in detailed_error_log: detailed_error_log_dict["status"] = "FAIL" detailed_error_log_dict["error_message"] = "Runtime Exception" + return { + "exception_message": exception_message, + "log_yml": log_yml_dict, + "detailed_error_log": detailed_error_log_dict, + } + if "RuntimeException" in detailed_error_log: + detailed_error_log_dict["status"] = "FAIL" + detailed_error_log_dict["error_message"] = "Runtime Exception" return { "exception_message": exception_message, @@ -829,6 +837,15 @@ def biosimulators_core(engine, omex_filepath, output_dir=None): command=f"-i '/root/in/{omex_file}' -o /root/out", auto_remove=True, ) + client.containers.run( + f"ghcr.io/biosimulators/{engine}", + mounts=[mount_in, mount_out], + command=f"-i '/root/in/{omex_file}' -o /root/out", + auto_remove=True, + ) + + if os.path.exists(omex_filepath_no_spaces): + os.remove(omex_filepath_no_spaces) def test_engine(engine, filename, error_categories=error_categories): @@ -840,6 +857,7 @@ def test_engine(engine, filename, error_categories=error_categories): unknown_engine = False try: if engine == "tellurium": + print(f"Running tellurium natively for {filename}", file=sys.__stdout__) tellurium.run_from_sedml_file([filename], ["-outputdir", "none"]) return "pass" # no errors # elif engine == "some_other_engine": @@ -850,6 +868,7 @@ def test_engine(engine, filename, error_categories=error_categories): except Exception as e: # return error object error_str = safe_md_string(e) + print(error_str, file=sys.__stdout__) if unknown_engine: raise RuntimeError(f"unknown engine {engine}") @@ -1197,7 +1216,7 @@ def process_engine_outcomes(self, engine, key): error_tag = error_categories[engine][pattern] errors[error_tag] += 1 cell_text = self.make_fold( - f"FAIL ({error_tag})", error_str, quote=True + "FAIL ({error_tag})", error_str, quote=True ) break @@ -1228,6 +1247,8 @@ def safe_md_string(value): .replace("\t", " ") .replace(" ", " ") .replace(" ", " ") + .replace("|", "
") + .replace("`", " ") ) @@ -1375,7 +1396,7 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): if ( results_table.loc[results_table[ENGINE] == e, PASS_FAIL].values[0] - == f"{xfail_html}" + == "{xfail_html}" ): expected_fail = "EXPECTED FAIL

" if len(results_table.loc[results_table[ENGINE] == e, ERROR].values[0]) > 1: