Clustering

Here, we show how SuperSCC conducts heirarchical clustering, wherby cell identity and makers heirarchy could be constrcuted, benefiting to dig scRNAseq data in a finer resolution.

[1]:
import SuperSCC as scc
from os.path import basename
import scanpy as sc
import pandas as pd
import numpy as np
[3]:
file_path =  "/mnt/disk5/zhongmin/superscc/师兄整理的肺数据/未去批次效应couns数据/没有去除批次效应_Banovich_Kropski_2020数据.csv"
[4]:
data = pd.read_csv(file_path, index_col=0)
data.head(5)
[4]:
ENSG00000000003 ENSG00000000005 ENSG00000000419 ENSG00000000457 ENSG00000000460 ENSG00000000938 ENSG00000000971 ENSG00000001036 ENSG00000001084 ENSG00000001167 ... ENSG00000283052 ENSG00000283063 ENSG00000283064 ENSG00000283071 ENSG00000283075 ENSG00000283078 ENSG00000283103 ENSG00000283117 ENSG00000283118 ENSG00000283125
ACGGCCACAATGTAAG_F02611 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
ACATGGTGTCTAGCGC_HD66 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
ACGCCGACAATTGCTG_HD68 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
CTTAACTTCATAAAGG_F02992 0.0 0.0 0.0 0.0 0.0 3.0 0.0 1.0 1.0 0.0 ... 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
GGCGACTCATCTCCCA_HD67 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0

5 rows × 28024 columns

Since SuperSCC requires log-normalized expression matrix as input, we need to use Scanpy to log normalize the raw expression matrix. Otherwise, if data is already log normalized, it could be directly fed to SuperSCC. Here we do the log-normalization step because the data is raw counts matrix.

[ ]:
adata = sc.AnnData(data) # convert dataframe into AnnData object

sc.pp.normalize_total(adata, target_sum=1e4)
sc.pp.log1p(adata)

norm_data = pd.DataFrame(np.array(adata.X)) # convert AnnData object back to data frame required by SuperSCC
norm_data.index = adata.obs_names
norm_data.columns = adata.var_names

# alternatively
# norm_data = scc.utils.pre_processing(data)
[ ]:
filename = basename(file_path) # get the filename
my_logger = scc.log_file(f"consensus_{filename}", "w") # construct logging object

# get clustering under M level
global_consensus = scc.clustering.global_consensus_cluster(
                        data = norm_data.copy(),
                        n_components = 30,
                        resolution = 1,
                        only_positive = True,
                        cut_off = 0.1,
                        class_weight = "balanced",
                        n_jobs = -1,
                        logger = my_logger,
                        save = True,
                        variance_threshold = "mean",
                        n_features_to_select = 0.15,
                        model = "svm",
                        file_name = filename,
                        mutual_info = False,
                        F_test = True,
                        normalization_method = "Min-Max"
                        )


# get clustering under F level
sub_consensus = scc.clustering.sub_consensus_cluster(
                            norm_data.copy(),
                            global_consensus, # clustering under M level is one input for sub_consensus_cluster
                            logger = my_logger,
                            save = True,
                            resolution = 0.2,
                            ep_cut_off = 1,
                            pct_cut_off = 0.5,
                            variance_threshold = "mean",
                            n_features_to_select = 0.15,
                            model = "svm",
                            file_name = filename,
                            n_neighbors = 100,
                            mutual_info = False,
                            F_test = True,
                            n_jobs = -1,
                            normalization_method = "Min-Max"
                            )

[5]:
# load F/M clustering
global_consensus = pd.read_pickle("/mnt/disk5/zhongmin/superscc/师兄整理的肺数据/结果/Banovich_Kropski_2020/2025-02-07/task3/consensus_cluster_result_没有去除批次效应_Banovich_Kropski_2020数据.csv_2025-02-07 17:13:59.pkl")

sub_consensus = pd.read_pickle("/mnt/disk5/zhongmin/superscc/师兄整理的肺数据/结果/Banovich_Kropski_2020/2025-02-07/task3/sub_consensus_cluster_result_没有去除批次效应_Banovich_Kropski_2020数据.csv_2025-02-07 18:03:35.pkl")

The output clustering from global_consenssus (M level) includes five sections:

  1. global_features_before_merging containing the highly variable genes for the whole dataset before cluster merging,

  2. global_sign_features_before_merging or global_sign_features_after_merging containing the markers of each cluster before/after cluster merging

  3. global_cluster_before_merging or global_cluster_after_merging containing the clusterings before/after cluster merging.

[15]:
global_consensus.keys()
[15]:
dict_keys(['global_features_before_merging', 'global_sign_features_before_merging', 'global_cluster_before_merging', 'global_sign_features_after_merging', 'global_cluster_after_merging'])

The output clustering from sub_consenssus (F level) includes seven sections:

  1. sub_cluster containing the clusterings before cluster merging,

  2. sub_sign_features_before_merging or sub_sign_features_after_merging containing the markers of each cluster before/after cluster merging

  3. merge_labels containing the recode labels after cluster merging

  4. merge_candidates containing the members be or not be merged

  5. label_encoder containing a LabelEncoder object for recoding labels after cluster megring and

  6. neighbors containg the potential neighborhoods considered being merged for each cluster.

[42]:
sub_consensus.keys()
[42]:
dict_keys(['sub_cluster', 'sub_sign_genes_after_merging', 'sub_sign_genes_before_merging', 'neighbors', 'merge_labels', 'merge_candidates', 'label_encoder'])

We show the M/F clustering and ground truth cell type labels below:

[8]:
# read the meta data
metadata = pd.read_csv("/mnt/disk5/zhongmin/superscc/师兄整理的肺数据/未去批次效应数据/没有去除批次效应_Banovich_Kropski_2020数据metadata.csv", index_col=0)
[7]:
# do standard scanpy pipeline
sc.pp.highly_variable_genes(adata, n_top_genes = 3000)
sc.pp.scale(adata)
sc.tl.pca(adata)
sc.pp.neighbors(adata, n_pcs = 30)
sc.tl.umap(adata)
/home/fengtang/anaconda3/envs/SuperSCC/lib/python3.11/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html
  from .autonotebook import tqdm as notebook_tqdm
[12]:
# add M/F clustering into AnnData object
adata.obs.loc[:, "clusters_before_cluster_mergeing_under_M_clustering"] = global_consensus["global_cluster_before_merging"]
adata.obs.loc[:, "clusters_after_cluster_mergeing_under_M_clustering"] = global_consensus["global_cluster_after_merging"]["merge_label"]

adata.obs.loc[:, "clusters_after_cluster_mergeing_under_F_clustering"] = [sub_consensus["label_encoder"].classes_[i] for i in sub_consensus["merge_labels"]]

# add groud truth labels under different resolution
adata.obs.loc[:, "coarse_label"] = metadata.loc[:, "ann_level_2"].tolist()
adata.obs.loc[:, "finest_label"] = metadata.loc[:, "ann_finest_level"].tolist()

/tmp/ipykernel_3941583/311754443.py:8: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '['Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Mesothelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Lymphatic EC', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Fibroblast lineage', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphatic EC', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphatic EC', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Lymphatic EC', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Blood vessels', 'Myeloid', 'Fibroblast lineage', 'Fibroblast lineage', 'Lymphatic EC', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphatic EC', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Lymphatic EC', 'Mesothelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Blood vessels', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Smooth muscle', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Lymphatic EC', 'Lymphoid', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Lymphatic EC', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Fibroblast lineage', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Fibroblast lineage', 'Airway epithelium', 'Lymphoid', 'Airway epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Fibroblast lineage', 'Smooth muscle', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphatic EC', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Smooth muscle', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Fibroblast lineage', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Smooth muscle', 'Myeloid', 'Lymphatic EC', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Fibroblast lineage', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Smooth muscle', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Lymphatic EC', 'Alveolar epithelium', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Smooth muscle', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Fibroblast lineage', 'Lymphoid', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Fibroblast lineage', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Smooth muscle', 'Alveolar epithelium', 'Myeloid', 'Smooth muscle', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphatic EC', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Blood vessels', 'Lymphoid', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Lymphatic EC', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Lymphatic EC', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Mesothelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Lymphatic EC', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Blood vessels', 'Lymphoid', 'Mesothelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphatic EC', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Airway epithelium', 'Myeloid', 'Fibroblast lineage', 'Airway epithelium', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Fibroblast lineage', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Fibroblast lineage', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Smooth muscle', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Smooth muscle', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Fibroblast lineage', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Fibroblast lineage', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphatic EC', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Fibroblast lineage', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Fibroblast lineage', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphatic EC', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Mesothelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Lymphatic EC', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Lymphatic EC', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphatic EC', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Fibroblast lineage', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Fibroblast lineage', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Fibroblast lineage', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Smooth muscle', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Lymphatic EC', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Mesothelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphatic EC', 'Fibroblast lineage', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Fibroblast lineage', 'Airway epithelium', 'Smooth muscle', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Fibroblast lineage', 'Lymphatic EC', 'Myeloid', 'Lymphatic EC', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Mesothelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Lymphatic EC', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphatic EC', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Smooth muscle', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Lymphatic EC', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Fibroblast lineage', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Fibroblast lineage', 'Fibroblast lineage', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Fibroblast lineage', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Lymphatic EC', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Hematopoietic stem cells', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Lymphatic EC', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphatic EC', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Fibroblast lineage', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Smooth muscle', 'Myeloid', 'Blood vessels', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Fibroblast lineage', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Fibroblast lineage', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Smooth muscle', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Fibroblast lineage', 'Airway epithelium', 'Myeloid', 'Mesothelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Fibroblast lineage', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Smooth muscle', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Lymphoid', 'Blood vessels', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Lymphatic EC', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Smooth muscle', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Fibroblast lineage', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Fibroblast lineage', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Mesothelium', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Fibroblast lineage', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Lymphatic EC', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Mesothelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Smooth muscle', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Mesothelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Blood vessels', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Smooth muscle', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Fibroblast lineage', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Hematopoietic stem cells', 'Lymphatic EC', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Fibroblast lineage', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Smooth muscle', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Lymphatic EC', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Smooth muscle', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Fibroblast lineage', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Lymphatic EC', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Smooth muscle', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Fibroblast lineage', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Smooth muscle', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Fibroblast lineage', 'Smooth muscle', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Lymphatic EC', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Lymphatic EC', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphatic EC', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphatic EC', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Fibroblast lineage', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Fibroblast lineage', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Smooth muscle', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Lymphatic EC', 'Lymphoid', 'Lymphatic EC', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Lymphatic EC', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphatic EC', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Lymphatic EC', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Lymphatic EC', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphatic EC', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphatic EC', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Fibroblast lineage', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Fibroblast lineage', 'Fibroblast lineage', 'Myeloid', 'Lymphatic EC', 'Fibroblast lineage', 'Lymphatic EC', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Lymphatic EC', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Smooth muscle', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Fibroblast lineage', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Smooth muscle', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphatic EC', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphatic EC', 'Fibroblast lineage', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Lymphatic EC', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphatic EC', 'Alveolar epithelium', 'Airway epithelium', 'Lymphatic EC', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Fibroblast lineage', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Smooth muscle', 'Myeloid', 'Fibroblast lineage', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Lymphatic EC', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Fibroblast lineage', 'Fibroblast lineage', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Airway epithelium', 'Smooth muscle', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphatic EC', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Smooth muscle', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Smooth muscle', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphatic EC', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Smooth muscle', 'Fibroblast lineage', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Smooth muscle', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Fibroblast lineage', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Lymphatic EC', 'Airway epithelium', 'Myeloid', 'Fibroblast lineage', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Lymphatic EC', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Smooth muscle', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Mesothelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Fibroblast lineage', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Fibroblast lineage', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphatic EC', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphatic EC', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Smooth muscle', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Fibroblast lineage', 'Smooth muscle', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Lymphatic EC', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Fibroblast lineage', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Smooth muscle', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Lymphatic EC', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Lymphatic EC', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Smooth muscle', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Smooth muscle', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Blood vessels', 'Lymphatic EC', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Fibroblast lineage', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Smooth muscle', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Fibroblast lineage', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Smooth muscle', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Smooth muscle', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Mesothelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Lymphatic EC', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Lymphatic EC', 'Lymphoid', 'Lymphatic EC', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Mesothelium', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphatic EC', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Lymphatic EC', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Lymphatic EC', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Fibroblast lineage', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphatic EC', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Lymphatic EC', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphatic EC', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Mesothelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Fibroblast lineage', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Lymphatic EC', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Fibroblast lineage', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Lymphatic EC', 'Lymphoid', 'Lymphatic EC', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Lymphatic EC', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Lymphatic EC', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphatic EC', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Smooth muscle', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Fibroblast lineage', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Lymphatic EC', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Fibroblast lineage', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Blood vessels', 'Lymphatic EC', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Smooth muscle', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Lymphatic EC', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Fibroblast lineage', 'Lymphatic EC', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Fibroblast lineage', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Lymphatic EC', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Smooth muscle', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Smooth muscle', 'Lymphatic EC', 'Lymphatic EC', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Smooth muscle', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Smooth muscle', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphatic EC', 'Fibroblast lineage', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Lymphatic EC', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Mesothelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Lymphatic EC', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Smooth muscle', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphatic EC', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Fibroblast lineage', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Smooth muscle', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Lymphatic EC', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Mesothelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Lymphatic EC', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Blood vessels', 'Smooth muscle', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphatic EC', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphatic EC', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Fibroblast lineage', 'Blood vessels', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Hematopoietic stem cells', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Lymphoid', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Lymphoid', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Airway epithelium', 'Airway epithelium', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Fibroblast lineage', 'Smooth muscle', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Lymphatic EC', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Smooth muscle', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Fibroblast lineage', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Smooth muscle', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Lymphatic EC', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphatic EC', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Smooth muscle', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Smooth muscle', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Fibroblast lineage', 'Myeloid', 'Lymphatic EC', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Smooth muscle', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Lymphatic EC', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Mesothelium', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Lymphatic EC', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Fibroblast lineage', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Lymphoid', 'Airway epithelium', 'Airway epithelium', 'Lymphatic EC', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Smooth muscle', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Smooth muscle', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Lymphatic EC', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Lymphatic EC', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Fibroblast lineage', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Smooth muscle', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Airway epithelium', 'Mesothelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Lymphoid', 'Lymphatic EC', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Smooth muscle', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Lymphoid', 'Airway epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Fibroblast lineage', 'Blood vessels', 'Lymphoid', 'Lymphatic EC', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Fibroblast lineage', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Fibroblast lineage', 'Myeloid', 'Fibroblast lineage', 'Lymphatic EC', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Lymphatic EC', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Lymphatic EC', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Smooth muscle', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Fibroblast lineage', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Fibroblast lineage', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Fibroblast lineage', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphatic EC', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Smooth muscle', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Fibroblast lineage', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphatic EC', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Blood vessels', 'Alveolar epithelium', 'Lymphatic EC', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Fibroblast lineage', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Lymphatic EC', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Lymphatic EC', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Smooth muscle', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Fibroblast lineage', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Fibroblast lineage', 'Fibroblast lineage', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Smooth muscle', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphatic EC', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Lymphatic EC', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Fibroblast lineage', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Smooth muscle', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Fibroblast lineage', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Lymphatic EC', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphatic EC', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Smooth muscle', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Lymphatic EC', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Lymphatic EC', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Lymphatic EC', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphatic EC', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Fibroblast lineage', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphatic EC', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Airway epithelium', 'Fibroblast lineage', 'Blood vessels', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphatic EC', 'Smooth muscle', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphatic EC', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Smooth muscle', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Fibroblast lineage', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Smooth muscle', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Fibroblast lineage', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Fibroblast lineage', 'Airway epithelium', 'Smooth muscle', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Lymphatic EC', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Smooth muscle', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Smooth muscle', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Fibroblast lineage', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Mesothelium', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Fibroblast lineage', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Fibroblast lineage', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Fibroblast lineage', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Lymphatic EC', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Smooth muscle', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphatic EC', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Airway epithelium', 'Lymphoid', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Lymphatic EC', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Fibroblast lineage', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Fibroblast lineage', 'Fibroblast lineage', 'Lymphatic EC', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Fibroblast lineage', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Lymphatic EC', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Lymphoid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Lymphatic EC', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Fibroblast lineage', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Mesothelium', 'Lymphoid', 'Lymphatic EC', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Fibroblast lineage', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Fibroblast lineage', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Lymphatic EC', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphatic EC', 'Lymphatic EC', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Lymphatic EC', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Lymphatic EC', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Fibroblast lineage', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphatic EC', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Smooth muscle', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Lymphatic EC', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Smooth muscle', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Airway epithelium', 'Lymphatic EC', 'Airway epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Lymphatic EC', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Fibroblast lineage', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Fibroblast lineage', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Fibroblast lineage', 'Fibroblast lineage', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Smooth muscle', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Smooth muscle', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Blood vessels', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Lymphatic EC', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Fibroblast lineage', 'Lymphoid', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Fibroblast lineage', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Fibroblast lineage', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphatic EC', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Fibroblast lineage', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Fibroblast lineage', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Lymphatic EC', 'Lymphoid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Lymphatic EC', 'Blood vessels', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Alveolar epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Blood vessels', 'Lymphoid', 'Fibroblast lineage', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphatic EC', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Lymphoid', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Airway epithelium', 'Lymphoid', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Lymphoid', 'Myeloid', 'Lymphatic EC', 'Myeloid', 'Blood vessels', 'Lymphatic EC', 'Alveolar epithelium', 'Lymphoid', 'Myeloid', 'Myeloid', 'Lymphoid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Lymphoid', 'Mesothelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Fibroblast lineage', 'Blood vessels', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Fibroblast lineage', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Lymphoid', 'Alveolar epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Airway epithelium', 'Alveolar epithelium', 'Blood vessels', 'Fibroblast lineage', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Airway epithelium', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Blood vessels', 'Myeloid', 'Lymphoid', 'Blood vessels', 'Alveolar epithelium', 'Lymphatic EC', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Fibroblast lineage', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Lymphoid', 'Lymphoid', 'Myeloid', 'Airway epithelium', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Airway epithelium', 'Lymphoid', 'Alveolar epithelium', 'Blood vessels', 'Myeloid', 'Myeloid', 'Alveolar epithelium', 'Blood vessels', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Alveolar epithelium', 'Alveolar epithelium', 'Alveolar epithelium', 'Myeloid', 'Myeloid', 'Myeloid', 'Myeloid', 'Blood vessels', 'Myeloid', 'Alveolar epithelium', 'Alveolar epithelium']' has dtype incompatible with category, please explicitly cast to a compatible dtype first.
  adata.obs.loc[:, "coarse_label"] = metadata.loc[:, "ann_level_2"].tolist()
[14]:
sc.pl.umap(
    adata,
    color = ["clusters_before_cluster_mergeing_under_M_clustering",
             "clusters_after_cluster_mergeing_under_M_clustering",
             "clusters_after_cluster_mergeing_under_F_clustering",
             "coarse_label",
             "finest_label"],
    size = 4,
    legend_loc = "on data"
)
../_images/Tutorials_tutorial_clustering_17_0.png

Obviously, M clustering can correctly match the broad ground truth cell type labels, while F clustering exceeds the number of finest cell type labels, which may provide a finer biological clues (such as rare cell population) that would be discussed in our manuscript.