Spaces:
Build error
Build error
JChoi
commited on
Commit
•
32952b3
1
Parent(s):
42d9dbe
add app.py, documents, and requimrents
Browse files- .DS_Store +0 -0
- app.py +48 -0
- docs/April 20, 2023 Approval Letter COMIRNATY.txt +51 -0
- docs/August 23, 2021 Approval Letter - Comirnaty.txt +234 -0
- docs/August-25-2022-Approval-Letter-COMIRNATY.txt +52 -0
- docs/Benefit-Risk Assessment Review Memo - COMIRNATY.txt +2115 -0
- docs/Bioresearch Monitoring Discipline Review Memo, August 13, 2021 - COMIRNATY.txt +97 -0
- docs/CBER CMC BLA Review Memo - COMIRNATY.txt +0 -0
- docs/CBER Sentinel Program Sufficiency Memo - COMIRNATY.txt +219 -0
- docs/CMC Review Memo, August 21, 2021 - COMIRNATY.txt +1285 -0
- docs/Clinical Review Memo, August 23, 2021 - COMIRNATY.txt +0 -0
- docs/December 16, 2021 Approval Letter - Comirnaty.txt +50 -0
- docs/Employee-Officer List Memo, August 22, 2021 - COMIRNATY.txt +63 -0
- docs/July-8-2022-Approval-Letter-COMIRNATY.txt +59 -0
- docs/July-8-2022-Clinical-Review-Memo-COMIRNATY.txt +0 -0
- docs/November 8, 2021 Summary Basis for Regulatory Action - Comirnaty.txt +1008 -0
- docs/Package Insert – COMIRNATY (gray cap).txt +1549 -0
- docs/Package Insert – COMIRNATY (purple cap).txt +1593 -0
- docs/Pharmacovigilance Plan Review Memo - COMIRNATY.txt +697 -0
- docs/Pharmacovigilance Plan Review-Addendum Memo - COMIRNATY.txt +183 -0
- docs/Real World Evidence BLA Memo - COMIRNATY.txt +134 -0
- docs/Statistical Review - COMIRNATY.txt +1088 -0
- docs/Statistical Review -- COMIRNATY.txt +266 -0
- docs/Statistical Review-COMIRNATY.txt +1200 -0
- docs/Statistical-Review-COMIRNATY.txt +1111 -0
- docs/Toxicology Review - COMIRNATY.txt +0 -0
- requirements.txt +5 -0
.DS_Store
ADDED
Binary file (6.15 kB). View file
|
|
app.py
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
import openai
|
3 |
+
from pathlib import Path
|
4 |
+
|
5 |
+
from langchain.embeddings.openai import OpenAIEmbeddings
|
6 |
+
from langchain.indexes import VectorstoreIndexCreator
|
7 |
+
from langchain.document_loaders import TextLoader
|
8 |
+
from langchain.chat_models import ChatOpenAI
|
9 |
+
|
10 |
+
import gradio as gr
|
11 |
+
|
12 |
+
def index_txt(directory):
|
13 |
+
files = directory.glob("*.txt")
|
14 |
+
loaders = [TextLoader(str(file)) for file in files]
|
15 |
+
return VectorstoreIndexCreator().from_loaders(loaders)
|
16 |
+
|
17 |
+
def vector_search(natural_lang_query):
|
18 |
+
llm = ChatOpenAI(temperature=0, model_name="gpt-4")
|
19 |
+
query_result = index.query_with_sources(natural_lang_query, llm=llm)
|
20 |
+
final_result = "Answer: " + query_result['answer']
|
21 |
+
final_result += f"\n Sources: {query_result['sources']}"
|
22 |
+
return final_result
|
23 |
+
|
24 |
+
def create_gradio_interface(title, description):
|
25 |
+
"""Create a Gradio interface with a single text input and a single text output."""
|
26 |
+
interface = gr.Interface(
|
27 |
+
fn=vector_search,
|
28 |
+
inputs=[
|
29 |
+
gr.inputs.Textbox(label="What would you like to ask your data?")
|
30 |
+
],
|
31 |
+
outputs=gr.outputs.Textbox(label="Results"),
|
32 |
+
title=title,
|
33 |
+
description=description
|
34 |
+
)
|
35 |
+
return interface
|
36 |
+
|
37 |
+
# Define path for documents
|
38 |
+
output_dir = Path("docs/")
|
39 |
+
|
40 |
+
# Launch the interface
|
41 |
+
index = index_txt(output_dir)
|
42 |
+
|
43 |
+
interface = create_gradio_interface(title="ChatBot - Question answering across Pfizer Comirnaty Documents",
|
44 |
+
description=(
|
45 |
+
"Semantic search: Enter a query to receive an answer with cited source documents.\n\n"
|
46 |
+
"DISCLAIMER: This is an early alpha product and not intended for production use.")
|
47 |
+
)
|
48 |
+
interface.launch()
|
docs/April 20, 2023 Approval Letter COMIRNATY.txt
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FDA U.S. FOOD & DRUG
|
2 |
+
ADMINISTRATION
|
3 |
+
Our ST: BL 125742/214
|
4 |
+
SUPPLEMENT APPROVAL
|
5 |
+
BioNTech Manufacturing GmbH
|
6 |
+
Attention: Leslie Sands
|
7 |
+
Pfizer, Inc.
|
8 |
+
500 Arcola Road
|
9 |
+
Collegeville, PA 19426
|
10 |
+
April 20, 2023
|
11 |
+
Dear Ms. Sands:
|
12 |
+
We have approved your request received October 18, 2022, to supplement your Biologics License Application (BLA) submitted under section 351(a) of the Public Health Service Act for COVID-19 Vaccine, mRNA (COMIRNATY), manufactured at the Pfizer Manufacturing Belgium NV, Puurs, Belgium (Pfizer, Purs), Pharmacia & Upjohn Company LLC, Kalamazoo, Michigan (Pfizer, Kalamazoo) and Hospira, Inc., McPherson, Kansas (Pfizer, McPherson) facilities, to update the Package Inserts for the PBS/Sucrose 30 mcg and Tris/Sucrose 30 mcg formulations of COMIRNATY to include
|
13 |
+
"dizziness" in Section 6.2 Postmarketing Experience.
|
14 |
+
LABELING
|
15 |
+
We hereby approve the draft content of labeling: Package Inserts submitted under amendment 2, dated April 11, 2023.
|
16 |
+
CONTENT OF LABELING
|
17 |
+
As soon as possible, but no later than 14 days from the date of this letter, please submit the final content of labeling (21 CFR 601.14) in Structured Product Labeling (SPL) format via the FDA automated drug registration and listing system (eLIST), as described at http://www.fda.gov/For|ndustry/DataStandards/StructuredProductLabeling/ default.htm. Content of labeling must be identical to the Package Inserts submitted on April 11, 2023. Information on submitting SPL files using eLIST may be found in the guidance for industry SPL Standard for Content of Labeling Technical Qs and As at http://www.fda.gov/downloads/Drugs/GuidanceComplianceRegulatoryInformation/Guida nces/UCM072392.pdf.
|
18 |
+
The SPL will be accessible via publicly available labeling repositories.
|
19 |
+
All final labeling should be submitted as Product Correspondence to this BLA, ST BL 125742, at the time of use and include implementation information on Form
|
20 |
+
FDA 356h.
|
21 |
+
U.S. Food & Drug Administration
|
22 |
+
10903 New Hampshire Avenue
|
23 |
+
Silver Spring, MD 20993
|
24 |
+
www.fda.gov
|
25 |
+
|
26 |
+
Page 2 - ST BL 125742/214 - Leslie Sands
|
27 |
+
ADVERTISING AND PROMOTIONAL LABELING
|
28 |
+
You may submit two draft copies of the proposed introductory advertising and promotional labeling with Form FDA 2253 to the Advertising and Promotional Labeling
|
29 |
+
Branch at the following address:
|
30 |
+
Food and Drug Administration
|
31 |
+
Center for Biologics Evaluation and Research
|
32 |
+
Document Control Center
|
33 |
+
10903 New Hampshire Ave.
|
34 |
+
WO71-G112
|
35 |
+
Silver Spring, MD 20993-0002
|
36 |
+
You must submit copies of your final advertising and promotional labeling at the time of initial dissemination or publication, accompanied by Form FDA 2253 (21 CFR 601.12(f)(4)).
|
37 |
+
All promotional claims must be consistent with and not contrary to approved labeling.
|
38 |
+
You should not make a comparative promotional claim or claim of superiorit over other products unless you have substantial evidence or substantial clinical experience to support such claims (21 CFR 202.1(e)(6)).
|
39 |
+
Please submit an amendment to all pending supplemental applications for this BLA that include revised labeling incorporating a revised content of labeling that includes this change.
|
40 |
+
We will include information contained in the above-referenced supplement in your BLA
|
41 |
+
files.
|
42 |
+
Sincerely,
|
43 |
+
Joseph G. Toerner, MD, MPH
|
44 |
+
Acting Deputy Director - Clinical
|
45 |
+
Division of Vaccines and
|
46 |
+
Related Products Applications
|
47 |
+
Office of Vaccines
|
48 |
+
Research and Review
|
49 |
+
Center for Biologics
|
50 |
+
Evaluation and Research
|
51 |
+
|
docs/August 23, 2021 Approval Letter - Comirnaty.txt
ADDED
@@ -0,0 +1,234 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FDA U.S. FOOD & DRUG
|
2 |
+
ADMINISTRATION
|
3 |
+
Our ST: BL 125742/0
|
4 |
+
BLA APPROVAL
|
5 |
+
BioNTech Manufacturing GmbH
|
6 |
+
Attention: Amit Patel
|
7 |
+
Pfizer Inc.
|
8 |
+
235 East 42nd Street
|
9 |
+
New York, NY 10017
|
10 |
+
August 23, 2021
|
11 |
+
Dear Mr. Patel:
|
12 |
+
Please refer to your Biologics License Application (BLA) submitted and received on May 18, 2021, under section 351(a) of the Public Health Service Act (PHS Act) for COVID-19 Vaccine, mRNA.
|
13 |
+
LICENSING
|
14 |
+
We are issuing Department of Health and Human Services U.S. License No. 2229 to BioNTech Manufacturing GmbH, Mainz, Germany, under the provisions of section 351(a) of the PHS Act controlling the manufacture and sale of biological products. The license authorizes you to introduce or deliver for introduction into interstate commerce, those products for which your company has demonstrated compliance with establishment and product standards.
|
15 |
+
Under this license, you are authorized to manufacture the product, COVID-19 Vaccine, mRNA, which is indicated for active immunization to prevent coronavirus disease 2019 (COVID-19) caused by severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2) in individuals 16 years of age and older.
|
16 |
+
The review of this product was associated with the following National Clinical Trial
|
17 |
+
(NCT) numbers: NCT04368728 and NCT04380701.
|
18 |
+
MANUFACTURING LOCATIONS
|
19 |
+
Under this license, you are approved to manufacture COVID-19 Vaccine, mRNA drug substance at Wyeth BioPharma Division of Wyeth Pharmaceuticals LLC, 1 Burtt Road,
|
20 |
+
Andover, Massachusetts. The final formulated product will be manufactured, filled, labeled and packaged at Pfizer Manufacturing Belgium NV, Riksweg 12, Puurs, Belgium and at Pharmacia & Upjohn Company LLC, 7000 Portage Road, Kalamazoo, Michigan. The diluent, 0.9% Sodium Chloride Injection, US, will be manufactured at Hospira, Inc., (b) (4)
|
21 |
+
and at Fresenius Kabi
|
22 |
+
USA, LLC, (b) (4)
|
23 |
+
U.S. Food & Drug Administration
|
24 |
+
10903 New Hampshire Avenue
|
25 |
+
Silver Spring, MD 20993
|
26 |
+
www.fda.gov
|
27 |
+
|
28 |
+
Page 2 - ST BL 125742/0 - Elisa Harkins
|
29 |
+
You may label your product with the proprietary name, COMIRNATY, and market it in 2.0 mL glass vials, in packages of 25 and 195 vials.
|
30 |
+
We did not refer your application to the Vaccines and Related Biological Products
|
31 |
+
Advisory Committee because our review of information submitted in your BLA, including the clinical study design and trial results, did not raise concerns or controversial issues that would have benefited from an advisory committee discussion.
|
32 |
+
DATING PERIOD
|
33 |
+
The dating period for COVID-19 Vaccine, mRNA shall be 9 months from the date of manufacture when stored between -90°C to -60°C (-130°F to -76°F). The date of manufacture shall be no later than the date of final sterile filtration of the formulated drug product (at Pharmacia & Upjohn Company LLC in Kalamazoo, Michigan, the date of manufacture is defined as the date of sterile filtration for the final drug product; at Pfizer Manufacturing Belgium NV in Purs, Belgium, it is defined as the date of the (o) (4)
|
34 |
+
Following the final sterile filtration, (b) (4)
|
35 |
+
, no
|
36 |
+
reprocessing/reworking is allowed without prior approval from the Agency. The dating period for your drug substance shall be b) (4) when stored at (b) (4)
|
37 |
+
We have
|
38 |
+
approved the stability protocols in your license application for the purpose of extending the expiration dating period of your drug substance and drug product under 21 CFR
|
39 |
+
601.12.
|
40 |
+
FDA LOT RELEASE
|
41 |
+
Please submit final container samples of the product in final containers together with protocols showing results of all applicable tests. You may not distribute any lots of product until you receive a notification of release from the Director, Center for Biologics Evaluation and Research (CBER).
|
42 |
+
BIOLOGICAL PRODUCT DEVIATIONS
|
43 |
+
You must submit reports of biological product deviations under 21 CFR 600.14. You should identify and investigate all manufacturing deviations promptly, including those associated with processing, testing, packaging, labeling, storage, holding and distribution. If the deviation involves a distributed product, may affect the safety, purity, or potency of the product, and meets the other criteria in the regulation, you must submit a report on Form FDA 3486 to the Director, Office of Compliance and Biologics Quality, electronically through the eBPDR web application or at the address below.
|
44 |
+
Links for the instructions on completing the electronic form (eBPDR) may be found on CBER's web site at https://www.fda.gov/vaccines-blood-biologics/report-problem-center-biologics-evaluation-research/biological-product-deviations:
|
45 |
+
Food and Drug Administration
|
46 |
+
Center for Biologics Evaluation and Research
|
47 |
+
Document Control Center
|
48 |
+
|
49 |
+
Page 3 - STN BL 125742/0 - Elisa Harkins
|
50 |
+
10903 New Hampshire Ave.
|
51 |
+
WO71-G112
|
52 |
+
Silver Spring, MD 20993-0002
|
53 |
+
MANUFACTURING CHANGES
|
54 |
+
You must submit information to your BLA for our review and written approval under 21
|
55 |
+
CFR 601.12 for any changes in, including but not limited to, the manufacturing, testing, packaging or labeling of COVID-19 Vaccine, mRNA, or in the manufacturing facilities.
|
56 |
+
LABELING
|
57 |
+
We hereby approve the draft content of labeling including Package Insert, submitted under amendment 74, dated August 21, 2021, and the draft carton and container labels submitted under amendment 63, dated August 19, 2021.
|
58 |
+
CONTENT OF LABELING
|
59 |
+
As soon as possible, but no later than 14 days from the date of this letter, please submit the final content of labeling (21 CFR 601.14) in Structured Product Labeling (SPL) format via the FDA automated drug registration and listing system, (eLIST) as described at http://www.fda.gov/ForIndustry/DataStandards/StructuredProductLabeling/ default.htm. Content of labeling must be identical to the Package Insert submitted on August 21, 2021. Information on submitting SPL files using eLIST may be found in the guidance for industry SPL Standard for Content of Labeling Technical Qs and As at http://www.fda.gov/downloads/Drugs/GuidanceComplianceRegulatorylnformation/Guida nces/UCM072392.pdf.
|
60 |
+
The SPL will be accessible via publicly available labeling repositories.
|
61 |
+
CARTON AND CONTAINER LABELS
|
62 |
+
Please electronically submit final printed carton and container labels identical to the carton and container labels submitted on August 19, 2021, according to the guidance for industry Providing Regulatory Submissions in Electronic Format - Certain Human Pharmaceutical Product Applications and Related Submissions Using the eCTD Specifications at https://www.fda.gov/regulatory-information/search-fda-guidance-documents/providing-regulatory-submissions-electronic-format-certain-human-pharmaceutical-product-applications.
|
63 |
+
All final labeling should be submitted as Product Correspondence to this BLAST BL
|
64 |
+
125742 at the time of use and include implementation information on Form FDA 356h.
|
65 |
+
ADVERTISING AND PROMOTIONAL LABELING
|
66 |
+
|
67 |
+
Page 4 - STN BL 125742/0 - Elisa Harkins
|
68 |
+
You may submit two draft copies of the proposed introductory advertising and promotional labeling with Form FDA 2253 to the Advertising and Promotional Labeling
|
69 |
+
Branch at the following address:
|
70 |
+
Food and Drug Administration
|
71 |
+
Center for Biologics Evaluation and Research
|
72 |
+
Document Control Center
|
73 |
+
10903 New Hampshire Ave.
|
74 |
+
WO71-G112
|
75 |
+
Silver Spring, MD 20993-0002
|
76 |
+
You must submit copies of your final advertising and promotional labeling at the time of initial dissemination or publication, accompanied by Form FDA 2253 (21 CFR
|
77 |
+
601.12(f) (4)).
|
78 |
+
All promotional claims must be consistent with and not contrary to approved labeling.
|
79 |
+
You should not make a comparative promotional claim or claim of superiority over other products unless you have substantial evidence or substantial clinical experience to support such claims (21 CFR 202.1(e)(6)).
|
80 |
+
ADVERSE EVENT REPORTING
|
81 |
+
You must submit adverse experience reports in accordance with the adverse experience reporting requirements for licensed biological products (21 CF 600.80), and you must submit distribution reports at monthly intervals as described in 21 CFR
|
82 |
+
600.81. For information on adverse experience reporting, please refer to the guidance for industry Providing Submissions in Electronic Format -Postmarketing Safety Reports for Vaccines at https://www.fda.gov/requlatory-information/search-fda-guidance-documents/providing-submissions-electronic-format-postmarketing-safety-reports-vaccines. For information on distribution reporting, please refer to the guidance for industry Electronic Submission of Lot Distribution Reports at
|
83 |
+
http://www.fda.gov/BiologicsBloodVaccines/GuidanceComplianceRegulatoryInformation
|
84 |
+
/Post-MarketActivities/LotReleases/ucm061966.htm.
|
85 |
+
PEDIATRIC REQUIREMENTS
|
86 |
+
Under the Pediatric Research Equity Act (PREA) (21 U.S.C. 355c), all applications for new active ingredients, new indications, new dosage forms, new dosing regimens, or new routes of administration are reauired to contain an assessment of the safetv and effectiveness of the product for the claimed indication in pediatric patients unless this requirement is waived, deferred, or inapplicable.
|
87 |
+
We are deferring submission of your pediatric studies for ages younger than 16 years for this application because this product is ready for approval for use in individuals 16 years of age and older, and the pediatric studies for younger ages have not been completed.
|
88 |
+
|
89 |
+
Page 5 - STN BL 125742/0 - Elisa Harkins
|
90 |
+
Your deferred pediatric studies required under section 505B(a) of the Federal Food, Drug, and Cosmetic Act (FDCA) are required postmarketing studies. The status of these postmarketing studies must be reported according to 21 CFR 601.28 and section 505B(a)(4)(C) of the FDCA. In addition, section 506B of the FDCA and 21 CFR 601.70 require you to report annually on the status of any postmarketing commitments or required studies or clinical trials.
|
91 |
+
Label your annual report as an "Annual Status Report of Postmarketing Study Requirement/Commitments" and submit it to the FDA each vear within 60 calendar davs of the anniversary date of this letter until all Reguirements and Commitments subject to the reporting requirements under section 506B of the FDCA are released or fulfilled. These required studies are listed below:
|
92 |
+
1. Deferred pediatric Study C4591001 to evaluate the safety and effectiveness of
|
93 |
+
COMIRNATY in children 12 years through 15 years of age.
|
94 |
+
Final Protocol Submission: October 7, 2020
|
95 |
+
Study Completion: May 31, 2023
|
96 |
+
Final Report Submission: October 31, 2023
|
97 |
+
2. Deferred pediatric Study C4591007 to evaluate the safety and effectiveness of
|
98 |
+
COMIRNATY in infants and children 6 months to <12 years of age.
|
99 |
+
Final Protocol Submission: February 8, 2021
|
100 |
+
Study Completion: November 30, 2023
|
101 |
+
Final Report Submission: May 31, 2024
|
102 |
+
3. Deferred pediatric Study C4591023 to evaluate the safety and effectiveness of
|
103 |
+
COMIRNATY in infants <6 months of age.
|
104 |
+
Final Protocol Submission: January 31, 2022
|
105 |
+
Study Completion: July 31, 2024
|
106 |
+
Final Report Submission: October 31, 2024
|
107 |
+
Submit the protocols to your IND 19736, with a cross-reference letter to this BLAST BL 125742 explaining that these protocols were submitted to the IND. Please refer to the PMR sequential number for each study/clinical trial and the submission number as shown in this letter.
|
108 |
+
Submit final study reports to this BLA ST BL 125742. In order for your PREA PMRs to be considered fulfilled, you must submit and receive approval of an efficacy or a labeling
|
109 |
+
|
110 |
+
Page 6 - STN BL 125742/0 - Elisa Harkins
|
111 |
+
supplement. For administrative purposes, all submissions related to these required pediatric postmarketing studies must be clearly designated as:
|
112 |
+
• Required Pediatric Assessments)
|
113 |
+
We note that you have fulfilled the pediatric study requirement for ages 16 through 17 ears for this application.
|
114 |
+
POSTMARKETING REQUIREMENTS UNDER SECTION 505(0)
|
115 |
+
Section 505(o) of the Federal Food, Drug, and Cosmetic Act (FDCA) authorizes FDA to require holders of approved drug and biological product applications to conduct postmarketing studies and clinical trials for certain purposes, if FDA makes certain findings required by the statute (section 505(o)(3)(A), 21 U.S.C. 355(o)(3)(A)).
|
116 |
+
We have determined that an analysis of spontaneous postmarketing adverse events reported under section 505(k)(1) of the FDCA will not be sufficient to assess known serious risks of myocarditis and pericarditis and identify an unexpected serious risk of subclinical myocarditis.
|
117 |
+
Furthermore, the pharmacovigilance system that FDA is required to maintain under section 505(k)(3) of the FDCA is not sufficient to assess these serious risks.
|
118 |
+
Therefore, based on appropriate scientific data, we have determined that you are required to conduct the following studies:
|
119 |
+
4. Study C4591009, entitled "A Non-Interventional Post-Approval Safety Study of the Pfizer-BioNTech COVID-19 mRNA Vaccine in the United States," to evaluate the occurrence of myocarditis and pericarditis following administration of COMIRNATY.
|
120 |
+
We acknowledge the timetable you submitted on August 21, 2021, which states that you will conduct this study according to the following schedule:
|
121 |
+
Final Protocol Submission: August 31, 2021
|
122 |
+
Monitoring Report Submission: October 31, 2022
|
123 |
+
Interim Report Submission: October 31, 2023
|
124 |
+
Study Completion: June 30, 2025
|
125 |
+
Final Report Submission: October 31, 2025
|
126 |
+
5. Study C4591021, entitled "Post Conditional Approval Active Surveillance Study
|
127 |
+
Among Individuals in Europe Receiving the Pfizer-BioNTech Coronavirus
|
128 |
+
|
129 |
+
Page 7 - STN BL 125742/0 - Elisa Harkins
|
130 |
+
Disease 2019 (COVID-19) Vaccine," to evaluate the occurrence of myocarditis and pericarditis following administration of COMIRNATY.
|
131 |
+
We acknowledge the timetable you submitted on August 21, 2021, which states that you will conduct this study according to the following schedule:
|
132 |
+
Final Protocol Submission: August 11, 2021
|
133 |
+
Progress Report Submission: September 30, 2021
|
134 |
+
Interim Report 1 Submission: March 31, 2022
|
135 |
+
Interim Report 2 Submission: September 30, 2022
|
136 |
+
Interim Report 3 Submission: March 31, 2023
|
137 |
+
Interim Report 4 Submission: September 30, 2023
|
138 |
+
Interim Report 5 Submission: March 31, 2024
|
139 |
+
Study Completion: March 31, 2024
|
140 |
+
Final Report Submission: September 30, 2024
|
141 |
+
6. Study C4591021 substudy to describe the natural history of myocarditis and pericarditis following administration of COMIRNATY.
|
142 |
+
We acknowledge the timetable you submitted on August 21, 2021, which states that you will conduct this study according to the following schedule:
|
143 |
+
Final Protocol Submission: January 31, 2022
|
144 |
+
Study Completion: March 31, 2024
|
145 |
+
Final Report Submission: September 30, 2024
|
146 |
+
7. Study C4591036, a prospective cohort study with at least 5 years of follow-up for potential long-term sequelae of myocarditis after vaccination (in collaboration with Pediatric Heart Network).
|
147 |
+
We acknowledge the timetable you submitted on August 21, 2021, which states that you will conduct this study according to the following schedule:
|
148 |
+
Final Protocol Submission: November 30, 2021
|
149 |
+
Study Completion: December 31, 2026
|
150 |
+
|
151 |
+
Page 8 - ST BL 125742/0 - Elisa Harkins
|
152 |
+
Final Report Submission: May 31, 2027
|
153 |
+
8. Study C4591007 substudy to prospectively assess the incidence of subclinical myocarditis following administration of the second dose of COMIRNATY in a subset of participants 5 through 15 years of age.
|
154 |
+
We acknowledge the timetable you submitted on August 21, 2021, which states that you will conduct this assessment according to the following schedule:
|
155 |
+
Final Protocol Submission: September 30, 2021
|
156 |
+
Study Completion: November 30, 2023
|
157 |
+
Final Report Submission: May 31, 2024
|
158 |
+
9. Study C4591031 substudy to prospectively assess the incidence of subclinical myocarditis following administration of a third dose of COMIRNATY in a subset of participants 16 to 30 years of age.
|
159 |
+
We acknowledge the timetable you submitted on August 21, 2021, which states that you will conduct this study according to the following schedule:
|
160 |
+
Final Protocol Submission: November 30, 2021
|
161 |
+
Study Completion: June 30, 2022
|
162 |
+
Final Report Submission: December 31, 2022
|
163 |
+
Please submit the protocols to your IND 19736, with a cross-reference letter to this BLA ST BL 125742 explaining that these protocols were submitted to the IND. Please refer to the PMR sequential number for each study/clinical trial and the submission number as shown in this letter.
|
164 |
+
Please submit final study reports to the BLA. If the information in the final study report supports a change in the label, the final study report must be submitted as a supplement to this BLA ST BL 125742. For administrative purposes, all submissions related to these postmarketing studies required under section 505(o) must be submitted to this BLA and be clearly designated as:
|
165 |
+
• Required Postmarketing Correspondence under Section 505(o)
|
166 |
+
• Required Postmarketing Final Report under Section 505(o)
|
167 |
+
Supplement contains Required Postmarketing Final Report under Section 505(0)
|
168 |
+
Section 505(o)(3)(E)(ii) of the FDCA requires you to report periodically on the status of any study or clinical trial required under this section. This section also requires you to periodically report to FDA on the status of any study or clinical trial otherwise
|
169 |
+
|
170 |
+
Page 9 - ST BL 125742/0 - Elisa Harkins
|
171 |
+
undertaken to investigate a safety issue. In addition, section 506B of the FDCA and 21
|
172 |
+
CFR 601.70 require you to report annually on the status of any postmarketing commitments or required studies or clinical trials.
|
173 |
+
You must describe the status in an annual report on postmarketing studies for this product. Label your annual report as an Annual Status Report of Postmarketing Requirements/Commitments and submit it to the FDA each year within 60 calendar davs of the anniversary date of this letter until all Requirements and Commitments subject to the reporting requirements of section 506B of the FDCA are fulfilled or released. The status report for each study should include:
|
174 |
+
• the sequential number for each study as shown in this letter;
|
175 |
+
• information to identify and describe the postmarketing requirement;
|
176 |
+
• the original milestone schedule for the requirement;
|
177 |
+
• the revised milestone schedule for the requirement, if appropriate;
|
178 |
+
• the current status of the requirement (i.e., pending, ongoing, delayed, terminated, or submitted); and,
|
179 |
+
an explanation of the status for the study or clinical trial. The explanation should include how the study is progressing in reference to the original projected schedule, including, the patient accrual rate (i.e., number enrolled to date and the total planned enrollment).
|
180 |
+
As described in 21 CFR 601.70(e), we may publicly disclose information regarding these postmarketing studies on our website at http://www.fda.qov/Drugs/Guidance ComplianceRegulatoryInformation/Post-marketingPhaselCommitments/default.htm.
|
181 |
+
We will consider the submission of your annual report under section 506B of the FDCA and 21 CFR 601.70 to satisfy the periodic reporting requirement under section
|
182 |
+
505(o)(3)(E)(¡i) provided that you include the elements listed in section 505(o) and 21
|
183 |
+
CFR 601.70. We remind you that to comply with section 505(o), your annual report must also include a report on the status of any study or clinical trial otherwise undertaken to investigate a safety issue. Failure to periodically report on the status of studies or clinical trials required under section 505(o) may be a violation of FDCA section 505(o)(3)(E)(¡i) and could result in regulatory action.
|
184 |
+
POSTMARKETING COMMITMENTS SUBJECT TO REPORTING REQUIREMENTS
|
185 |
+
UNDER SECTION 506B
|
186 |
+
We acknowledge your written commitments as described in your letter of August 21, 2021 as outlined below:
|
187 |
+
10. Study C4591022, entitled "Pfizer-BioNTech COVID-19 Vaccine Exposure during Pregnancy: A Non-Interventional Post-Approval Safety Study of Pregnancy and Infant Outcomes in the Organization of Teratology Information Specialists (OTIS)/MotherToBaby Pregnancy Registry.'
|
188 |
+
Final Protocol Submission: July 1, 2021
|
189 |
+
|
190 |
+
Page 10 - ST BL 125742/0 - Elisa Harkins
|
191 |
+
Study Completion: June 30, 2025
|
192 |
+
Final Report Submission: December 31, 2025
|
193 |
+
11. Study C4591007 substudy to evaluate the immunogenicity and safety of lower dose levels of COMIRNATY in individuals 12 through <30 years of age.
|
194 |
+
Final Protocol Submission: September 30, 2021
|
195 |
+
Study Completion: November 30, 2023
|
196 |
+
Final Report Submission: May 31, 2024
|
197 |
+
12. Study C4591012, entitled "Post-emergency Use Authorization Active Safety
|
198 |
+
Surveillance Study Among Individuals in the Veteran's Affairs Health System Receiving Pfizer-BioNTech Coronavirus Disease 2019 (COVID-19) Vaccine."
|
199 |
+
Final Protocol Submission: January 29, 2021
|
200 |
+
Study Completion: June 30, 2023
|
201 |
+
Final Report Submission: December 31, 2023
|
202 |
+
13. Study C4591014, entitled "Pfizer-BioNTech COVID-19 BNT1622 Vaccine
|
203 |
+
Effectiveness Study - Kaiser Permanente Southern California."
|
204 |
+
Final Protocol Submission: March 22, 2021
|
205 |
+
Study Completion: December 31, 2022
|
206 |
+
Final Report Submission: June 30, 2023
|
207 |
+
Please submit clinical protocols to your IND 19736, and a cross-reference letter to this BLA ST BL 125742 explaining that these protocols were submitted to the IND. Please refer to the PMC sequential number for each study/clinical trial and the submission number as shown in this letter.
|
208 |
+
If the information in the final study report supports a change in the label, the final study report must be submitted as a supplement. Please use the following designators to prominently label all submissions, including supplements, relating to these postmarketing study commitments as appropriate:
|
209 |
+
• Postmarketing Commitment - Correspondence Study Update
|
210 |
+
• Postmarketing Commitment - Final Study Report
|
211 |
+
• Supplement contains Postmarketing Commitment - Final Study Report
|
212 |
+
|
213 |
+
Page 11 - ST BL 125742/0 - Elisa Harkins
|
214 |
+
For each postmarketing study subject to the reporting requirements of 21 CFR 601.70, vou must describe the status in an annual report on postmarketing studies for this product. Label your annual report as an Annual Status Report of Postmarketing Requirements/Commitments and submit it to the FDA each year within 60 calendar davs of the anniversary date of this letter until all Requirements and Commitments subject to the reporting requirements of section 506B of the FDCA are fulfilled or released. The status report for each study should include:
|
215 |
+
• the sequential number for each study as shown in this letter;
|
216 |
+
• information to identify and describe the postmarketing commitment;
|
217 |
+
• the original schedule for the commitment;
|
218 |
+
• the status of the commitment (i.e., pending, ongoing, delayed, terminated, or submitted); and,
|
219 |
+
• an explanation of the status including, for clinical studies, the patient accrual rate (i.e., number enrolled to date and the total planned enrollment).
|
220 |
+
As described in 21 CFR 601.70(e), we may publicly disclose information regarding these postmarketing studies on our website at http://www.fda.gov/Drugs/Guidance ComplianceRegulatoryInformation/Post-marketingPhaselVCommitments/default.htm.
|
221 |
+
POST APPROVAL FEEDBACK MEETING
|
222 |
+
New biological products qualify for a post approval feedback meeting. Such meetings are used to discuss the qualitv of the application and to evaluate the communication process during drug development and marketing application review. The purpose is to learn from successful aspects of the review process and to identify areas that could benefit from improvement. If you would like to have such a meeting with us, please contact the Regulatory Project Manager for this application.
|
223 |
+
Sincerely,
|
224 |
+
Mary A. Malarkey
|
225 |
+
Director
|
226 |
+
Office of Compliance and Biologics Quality
|
227 |
+
Center for Biologics
|
228 |
+
Evaluation and Research
|
229 |
+
Marion F. Gruber, PhD Director
|
230 |
+
Office of Vaccines
|
231 |
+
Research and Review
|
232 |
+
Center for Biologics
|
233 |
+
Evaluation and Research
|
234 |
+
|
docs/August-25-2022-Approval-Letter-COMIRNATY.txt
ADDED
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FDA U.S. FOOD & DRUG
|
2 |
+
ADMINISTRATION
|
3 |
+
Our ST: BL 125742/175
|
4 |
+
SUPPLEMENT APPROVAL
|
5 |
+
BioNTech Manufacturing GmbH
|
6 |
+
Attention: Adrienne Stafford
|
7 |
+
Pfizer Inc.
|
8 |
+
4300 Oak Park Road
|
9 |
+
Sanford, NC 27330
|
10 |
+
August 25, 2022
|
11 |
+
Dear Ms. Stafford:
|
12 |
+
We have approved your request received on June 10, 2022, to supplement your Biologics License Application (BLA) under section 351 (a) of the Public Health Service Act for COVID-19 Vaccine, mRNA (COMIRNATY), manufactured at the Pfizer Manufacturing Belgium NV, Puurs, Belgium (Pfizer, Purs), Pharmacia & Upjohn Company LLC, Kalamazoo, Michigan (Pfizer, Kalamazoo) and Hospira, Inc., McPherson, Kansas (Pfizer, McPherson) facilities, to include the introduction of the Monovalent Tris/Sucrose (30 mcg) Single Dose Vial with 0.48 mL Fill Volume to be filled on b) (4)
|
13 |
+
(b) (4) and (b) (4)
|
14 |
+
filling lines at the Purs, Belgium
|
15 |
+
location, and associated labeling changes.
|
16 |
+
LABELING
|
17 |
+
We hereby approve the draft content of labeling including the Package Insert submitted under amendment 5, dated August 25, 2022.
|
18 |
+
CONTENT OF LABELING
|
19 |
+
As soon as possible, but no later than 14 days from the date of this letter, please submit the final content of labeling (21 CFR 601.14) in Structured Product Labeling (SPL) format via the FDA automated drug registration and listing system, (eLIST) as described at http://www.fda.gov/ForIndustry/DataStandards/StructuredProductLabeling/default.htm.
|
20 |
+
Content of labeling must be identical to the Package Insert submitted on
|
21 |
+
August 25, 2022. Information on submitting SPL files using LIST may be found in the guidance for industry SPL Standard for Content of Labeling Technical Qs and As at http://www.fda.gov/downloads/Drugs/GuidanceComplianceRegulatoryInformation/Guida nces/UCM072392.pdf.
|
22 |
+
The SPL will be accessible via publicly available labeling repositories.
|
23 |
+
All final labeling should be submitted as Product Correspondence to this BLA, ST BL 125742, at the time of use and include implementation information on Form FDA 356h.
|
24 |
+
U.S. Food & Drug Administration
|
25 |
+
10903 New Hampshire Avenue
|
26 |
+
Silver Spring, MD 20993
|
27 |
+
www.fda.gov
|
28 |
+
|
29 |
+
Page 2 - ST BL 125742/175 - Adrienne Stafford
|
30 |
+
ADVERTISING AND PROMOTIONAL LABELING
|
31 |
+
You may submit two draft copies of the proposed introductory advertising and promotional labeling with Form FDA 2253 to the Advertising and Promotional Labeling
|
32 |
+
Branch at the following address:
|
33 |
+
Food and Drug Administration
|
34 |
+
Center for Biologics Evaluation and Research
|
35 |
+
Document Control Center
|
36 |
+
10903 New Hampshire Ave.
|
37 |
+
WO71-G112
|
38 |
+
Silver Spring, MD 20993-0002
|
39 |
+
You must submit copies of your final advertising and promotional labeling at the time of initial dissemination or publication, accompanied by Form FDA 2253 (21 CFR 601.12(f)(4)).
|
40 |
+
All promotional claims must be consistent with and not contrary to approved labeling.
|
41 |
+
You should not make a comparative promotional claim or claim of superiorit over other products unless you have substantial evidence or substantial clinical experience to support such claims (21 CFR 202.1(e)(6)).
|
42 |
+
Please submit an amendment to all pending supplemental applications for this BLA that include revised labeling incorporating a revised content of labeling that includes these changes.
|
43 |
+
We will include information contained in the above-referenced supplement in your BLA file.
|
44 |
+
Sincerely,
|
45 |
+
Jerry P. Weir, Ph.D.
|
46 |
+
Director
|
47 |
+
Division of Viral Products
|
48 |
+
Office of Vaccines
|
49 |
+
Research and Review
|
50 |
+
Center for Biologics
|
51 |
+
Evaluation and Research
|
52 |
+
|
docs/Benefit-Risk Assessment Review Memo - COMIRNATY.txt
ADDED
@@ -0,0 +1,2115 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FDA U.S. FOOD & DRUG
|
2 |
+
ADMINISTRATION
|
3 |
+
Department of Health and Human Services
|
4 |
+
Food and Drug Administration
|
5 |
+
Center for Biologics Evaluation and Research
|
6 |
+
MEMORANDUM
|
7 |
+
Date:
|
8 |
+
To:
|
9 |
+
From:
|
10 |
+
September 13, 2021
|
11 |
+
Ramachandra Naik
|
12 |
+
Hong Yang, Ph.D., Patrick Funk, Ph.D., and Osman N. Yogurtcu, Ph.D.
|
13 |
+
Analytics and Benefit-Risk Assessment Team
|
14 |
+
ОВЕ
|
15 |
+
Through:
|
16 |
+
Re:
|
17 |
+
Richard Forshee, Ph.D.
|
18 |
+
Acting Deputy Office Director
|
19 |
+
ОВЕ
|
20 |
+
ST 125742/0: review memo for benefit-risk assessment
|
21 |
+
|
22 |
+
Page 2 - Hong Yang - 125742/0
|
23 |
+
Review Memo on Benefit-Risk Assessment of Pfizer Vaccines for Age 16-17 yrs
|
24 |
+
Reference submission: BLA 125742/0
|
25 |
+
Reviewers: Hong Yang, Patrick Funk, and Osman Yogurtcu Date: August 20, 2021
|
26 |
+
Contents
|
27 |
+
1. Executive Summary
|
28 |
+
2. Background and regulatory questions.
|
29 |
+
3. Methods.
|
30 |
+
3.1. Model Overview
|
31 |
+
3.2. Benefits...
|
32 |
+
3.3. Risks...
|
33 |
+
4. Results..
|
34 |
+
4.1. Scenario 1: Base case.
|
35 |
+
4.2. Scenario 2: Most likely scenario.
|
36 |
+
4.3. Scenario 3: Worst case scenario.
|
37 |
+
5. Conclusions and discussion..
|
38 |
+
6. Limitations ..
|
39 |
+
|
40 |
+
7. Acknowledgements
|
41 |
+
References.
|
42 |
+
List of Tables.
|
43 |
+
List of Figures.
|
44 |
+
Supplementary Materials.
|
45 |
+
5
|
46 |
+
..9
|
47 |
+
..9
|
48 |
+
..9
|
49 |
+
.9
|
50 |
+
..10
|
51 |
+
11
|
52 |
+
..12
|
53 |
+
13
|
54 |
+
14
|
55 |
+
14
|
56 |
+
26
|
57 |
+
|
58 |
+
Page 3 - Hong Yang - 125742/0
|
59 |
+
1. Executive Summary
|
60 |
+
FDA conducted a benefit-risk assessment to inform the review of the Biologics License Application (BLA) for use of the Pfizer-BioNTech COVID-19 mRNA vaccine (also referred to as BNT162b2) among ages 16 vears and older. We assessed the benefits and risks per million individuals who are vaccinated with two complete doses of BNT162b2. The analysis was conducted for the groups stratified by combinations of sex and age (12-15, 16-17, 18-24, and 25-29 years). The model assesses the benefits of vaccine-preventable COVID-19 cases, hospitalizations, intensive care unit (ICUs) visits, and deaths, and the risks of vaccine-related excess myocarditis/pericarditis cases, hospitalizations, and deaths. The major sources of data include age/sex specific COVID-19 case and hospitalization incidences reported on COVID NET on July 10, 2021, the myocarditis/pericarditis case rate attributable to vaccine obtained from the OPTUM health claims database, and the vaccine related myocarditis/pericarditis deaths reported through VAERS.
|
61 |
+
We constructed scenarios for both the most likely short-term moving direction of the pandemic and the worst case, which used the most conservative assumptions for all model inputs.
|
62 |
+
The most likely scenario:
|
63 |
+
We assumed vaccine protection duration of 6-months, 10 COVID-19 case incidence and 4x COVID-19 hospitalization incidence as of July 10, 70% vaccine efficacy against COVID-19 cases, 80% vaccine efficacy against hospitalization, and no vaccine-related myocarditis death. The model results indicate that, for all age/sex groups and across all model outcomes, the benefits clearly outweigh the risks. For males 16-17 years old-the group with the highest risk of myocarditis/pericarditis-the model predicts that prevented COVID cases, hospitalizations, ICUs, and deaths are 135,771, 506, 166, and 4, respectively. The excess myocarditis/pericarditis cases, associated hospitalizations, and deaths attributable to vaccine are 196, 196, and 0, respectively.
|
64 |
+
The worst-case scenario:
|
65 |
+
We used the most conservative assumptions for all the model inputs in this scenario. We assumed 6-months vaccine protection, the COVID-19 case and hospitalization incidence as of July 10, 2021, 70% vaccine efficacy against COVID-19 case, 80% vaccine efficacy against COVID-19 hospitalization, and 0.002% myocarditis/pericarditis death rate.
|
66 |
+
For males 16-17 years old, the model predicts that prevented COVID cases, hospitalizations, ICUs, and deaths are 13,577, 127, 41, and 1, respectively. The excess myocarditis/pericarditis cases and associated hospitalizations and deaths attributable to the vaccine are 196, 196, and 0, respectively. Even with the conservative assumption on the myocarditis/pericarditis death rate, the model predicted 0 deaths associated with myocarditis/pericarditis. The model predicted a higher number of myocarditis/pericarditis related hospitalizations compared to prevented COVID-19 hospitalizations.
|
67 |
+
However, considering the differential clinical outcomes of the hospitalization from two difference causes, we consider the benefits of the vaccine still outweigh the risks for the highest risk group, males 16-17 years old, under this worst-case scenario.
|
68 |
+
Our results demonstrate that the benefits of BNT162b2 clearly outweigh its risks for all age and sex
|
69 |
+
|
70 |
+
Page 4 - Hong Yang - 125742/0
|
71 |
+
groups we analyzed. However, the benefit-risk estimates are highly uncertain due to the dynamics of pandemics. Other major uncertainties in benefits are vaccine efficacy and duration of protection in the face of emerging virus variants. The major risk uncertainty is the data on vaccine-related myocarditis cases and deaths.
|
72 |
+
2. Background and regulatory questions
|
73 |
+
The Pfizer-BioNTech COVID-19 mRNA vaccine (also referred to as BNT162b2) has been recommended for persons 12 years of age and older in the United States under FDA's Emergency Use Authorization (EUA).
|
74 |
+
Since authorization of mRNA COVID-19 vaccines (Pfizer-BioNTech and Moderna), real-world evidence has indicated the vaccines are effective in preventing COVID-19 cases and related hospitalizations and deaths. However, increased cases of myocarditis and pericarditis have been reported in the United States associated with mRNA COVID-19 vaccination, particularly in adolescents and young adults (Marshall et al. 2021; Shay et al. 2021; Watkins, et al., 2021). FDA conducted a benefit-risk assessment to inform regulatory decisions related to the Biologics License Application (BLA) for use of BNT162b2 vaccines among ages 16 years and older. The regulatory question to be answered is whether the benefits of vaccination outweigh the risks among various age and sex subgroups being considered for approved use of the vaccine (and in particular, males, age 16-17 years old), considering the potentially elevated myocarditis/pericarditis risk after vaccination suggested by post-authorization safety surveillance.
|
75 |
+
3. Methods
|
76 |
+
3.1. Model Overview
|
77 |
+
We assessed the benefits and risks per million individuals who are vaccinated with two complete doses of BNT162b2. The analysis was conducted for the groups stratified by combinations of sex and age (12-15, 16-17, 18-24, and 25-29 years). The model assesses the benefits of vaccine-preventable COVID-19 cases, hospitalizations, intensive care unit (ICUs) visits and deaths, and the risks of vaccine related excess myocarditis/pericarditis cases, hospitalizations, and deaths (Figure 1). The key model inputs include duration of vaccine protection, vaccine efficacy against COVID-19 cases and hospitalizations, age/sex specific COVID-19 case and hospitalization incidence rates, age/sex specific vaccine-attributable myocarditis case rate, and myocarditis death rate (Table 1). To evaluate the impact of uncertainty of these key model inputs on the benefits and risks, low and high values of these model inputs are used for sensitivity analysis.
|
78 |
+
Our model generates benefit-risk outcomes for seven scenarios (Table 2 and Supplement Table
|
79 |
+
S1) with different combinations of the input values. The three most important scenarios are presented in the main body of this report: Scenario 1, a base scenario using the COVID-19 incidence on July 10; Scenario 2, the most likely scenario; and Scenario 3, the worst-case scenario. Other scenarios are summarized in the supplementary materials of the report.
|
80 |
+
|
81 |
+
Page 5 - Hong Yang - 125742/o
|
82 |
+
3.2. Benefits
|
83 |
+
3.2.1. Calculation of benefits
|
84 |
+
Our benefit-risk model has four benefit endpoints (Figure 1): preventable COVID-19 cases hospitalizations, Intensive Care Unit admissions (ICUs), and deaths. To calculate the potential
|
85 |
+
COVID-19 cases preventable by vaccine (Cp), we use Equation 1
|
86 |
+
Cp =
|
87 |
+
ICID Ec
|
88 |
+
Pu
|
89 |
+
Eq. 1
|
90 |
+
where Ic is the COVID-19 case incidence rate, Pu is the proportion of the population that is at risk (i.e., unvaccinated), L is the duration of vaccine protection, D is the number of second vaccine doses administered (fixed at 1 million), and E is the vaccine efficacy against COVID-19 cases. For preventable COVID-19 hospitalizations (H), we use a similar equation (Equation 2) in which we consider the COVID-19 hospitalization incidence rate (I and vaccine efficacy against hospitalization (EH).
|
91 |
+
Hp =
|
92 |
+
브LDEn
|
93 |
+
Pu
|
94 |
+
Eq. 2
|
95 |
+
The preventable COVID-19 ICUs (Ip) and preventable COVID-19 deaths (D) are fractions of Hp,
|
96 |
+
such that Ip = fim Hp and Dp = faH Hp.
|
97 |
+
We perform these calculations over the individual age and sex groups and combined male and female groups.
|
98 |
+
3.2.2. Data and assumptions
|
99 |
+
3.2.2.1.
|
100 |
+
Duration of vaccine protection
|
101 |
+
We assume the vaccine has at the least 6 months of protection since this is the period examined by Pfizer in their ongoing study (Thomas et al., 2021). The model assesses the benefits for a period of 6 months post 2nd dose of vaccination. For the sensitivity analysis in the supplement, we use a protection period of 12 months as an upper bound. For simplicity, the model does not account for the benefits of partial vaccination (protection between the first and second dose) or the second order benefits of reducing the risk of transmission of COVID-19.
|
102 |
+
3.2.2.2.
|
103 |
+
Incidences of COVID-19 case, hospitalization, ICU, and death
|
104 |
+
We assume the incidence rates of COVID-19 case and hospitalization remain constant over the assessment period (next 6 or 12 months). The incidence rates of COVID-19 cases as of week July 10 are obtained from COVID NET for all sex/age groups. Four-week averages of incidence (6/26-7/10) are used due to the variability in rates given
|
105 |
+
|
106 |
+
Page 6 - Hong Yang - 125742/0
|
107 |
+
the small numbers of hospitalizations per age sex groups. The percent of hospitalizations going to ICU and the percent of hospitalized patients who die are estimated based on cumulative rates of hospitalizations, ICUs, and deaths for each sex/age groups reported on COVID NET since March 2020. All the incidence data for these factors are summarized in Table 3. Comparing the incidence from the 2nd week of August with those reported at the lowest point in the summer, we find a 10-time incidence and 4-time hospitalization increase over a 6-week period. Considering the great uncertainty in COVID-19 incidence during the pandemic, we conduct a sensitivity analysis using a 10-times multiplier for case incidence and 4-times multiplier for hospitalization incidence in the sensitivit analvsis. The multipliers were derived from the public data in COVID data tracker and COVID NET, respectively, to project the increase in COVID-19 infections/hospitalizations.
|
108 |
+
3.2.2.3.
|
109 |
+
Unvaccinated population
|
110 |
+
We estimate the unvaccinated population among each age/sex groups using US census data and "Age groups of people with at least one dose" from COVID data tracker. Data for Texas is not contained in COVID data tracker so we impute proportional vaccination counts based on population averages from the census data.
|
111 |
+
The incidence of COVID-19 cases and hospitalization, described in section 2.2.2.2
|
112 |
+
"Incidences of COVID-19 case, hospitalization, ICU and death," are converted into the incidence of COVID-19 cases and hospitalizations among unvaccinated individuals of each age sex group.
|
113 |
+
3.2.2.4.
|
114 |
+
Vaccine efficacy
|
115 |
+
We use vaccine efficacy rates of protection against COVID-19 cases of 70% and 90% and vaccine efficacy rates of protection against COVID-19 hospitalizations of 80% and 90% in different scenarios. The high efficacy of 90% represents the lower bound of the confidence interval from the clinical trial data (Oliver et al. 2020). The low efficacy of 70% for cases and 80% for hospitalization represents a conservative efficac rate given the uncertainty of the vaccine's protection against the Delta variant. Early studies on the vaccine's efficacy against cases from the Delta variant suggest 79% in Scotland (Sheikh et al., 2021), 87% in Canada (Nasreen et al., 2021), and 88% in India (Lopez Bernal et al., 2021). To remain conservative in the face of uncertainty in this rapidly changing pandemic, we use a lower bound of vaccine efficacy from these early reports.
|
116 |
+
3.3. Risks
|
117 |
+
3.3.1. Calculation of risks
|
118 |
+
Our benefit-risk model has three risk endpoints (Figure 1): excess myocarditis/pericarditis cases, hospitalizations, and deaths. Estimates of excess cases of mvocarditis/pericarditis are calculated by subtracting the background rate of myocarditis in Optum's sample population from 2019 from
|
119 |
+
|
120 |
+
Page 7 - Hong Yang - 125742/0
|
121 |
+
the rate of myocarditis in the study window from 12/10/2020 - 07/10/2021. We use Equation 3 to calculate excess cases of myocarditis/pericarditis (Mex) per one million fully vaccinated individuals.
|
122 |
+
MExc = (Mobs1 - MExp1 + Mobs2 - MExp2) * F
|
123 |
+
Eq. 3
|
124 |
+
Mobs1 and MExp1 are observed and expected myocarditis/pericarditis case rates post dose 1, Mobs and MExp2 are corresponding case rates post dose 2, and F is a multiplier for unit conversion.
|
125 |
+
Expected myocarditis/pericarditis case rates are the predicted background case rate unassociated with vaccine.
|
126 |
+
The number of mvocarditis hospitalization (M- and deaths (Mo) are fractions of excess
|
127 |
+
myocarditis/pericarditis cases (MExc), such that MH = MExc* Frmand MD = Mexc* fom.
|
128 |
+
3.3.2. Data and assumptions
|
129 |
+
3.3.2.1.
|
130 |
+
Myocarditis/pericarditis attributable to vaccine
|
131 |
+
We use myocarditis/pericarditis reports data provided by Acumen LLC that are derived from the Optum health claims database (Table 5). Acumen reports cases of myocarditis in 7-, 21-, and 42-day risk windows from each vaccine dose. Our analysis focuses on the 7-day risk window where most cases are found for all groups. The database contains rates of expected (MExp 1 and MExp2) and observed (Mobs1 and Mobs2) myocarditis/pericarditis in 100k person-vears for the 1st and 2nd dose of the vaccine.
|
132 |
+
Converting from 100k person-years in the risk window to one million vaccinated
|
133 |
+
individuals' daily risk, we multiply the rates by a factor F = (7*10)/365. This factor is
|
134 |
+
used to convert the rate per 100k person years to an expected case count for one million full vaccinations assuming a 7-day risk window. Confidence intervals for the myocarditis cases are calculated using the chi-square method for Poison distribution of rare events (Garwood, 1936).
|
135 |
+
3.3.2.2.
|
136 |
+
Myocarditis/pericarditis hospitalization and death rate
|
137 |
+
Almost all adolescent and young adult patients with suspected myocarditis/pericarditis cases are hospitalized and monitored for the condition. In this model, we assume all myocarditis/pericarditis cases are hospitalized, but Vaccine Adverse Events Reporting System (VAERS) data show median stay lengths of one day for observation.
|
138 |
+
A total of 1,061 myocarditis cases among US <30 ears old after vaccination with BNT162b2 are reported through VAERS. Among them, two deaths are reported. The search terms used for query and the narratives for two deaths who had vaccination with BNT162b2 are included in the supplement. Review of the available data b FDA
|
139 |
+
|
140 |
+
Page 8 - Hong Yang - 125742/0
|
141 |
+
and CDC indicates that both cases are unlikely to be related to the vaccine. In our model, we assume the death rate related to vaccine is most likely to be zero in the base case and most likely scenarios (Scenario 1 and 2). However, we use 2/1,061 as the death rate for the worst-case scenario (Scenario 3) to account for the very unlikely outcome of these two deaths being attributed to vaccine related myocarditis/pericarditis.
|
142 |
+
|
143 |
+
Page 9 - Hong Yang - 125742/0
|
144 |
+
4. Results
|
145 |
+
This section summarizes the results for three major model scenarios.
|
146 |
+
4.1. Scenario 1: Base case
|
147 |
+
Our model scenarios start with the base case that is using the most recent available incidence data on July 10, 2021 and assume a 6-month vaccine protection period, 90% vaccine efficacy against both COVID-19 case and hospitalization, and zero myocarditis/pericarditis death rate.
|
148 |
+
Figures 2, 3, and 4 summarize the results for analyses of combined male/female, male only, and female only, respectively. The results indicate that benefit-risk is more favorable for male and female combined, female only, and male >18 years old. The model predicted far more prevented
|
149 |
+
COVID-19 cases compared to excess myocarditis/pericarditis for male 12-15 and 16-17 years old, but the model predicted 142 prevented COVID-19 hospitalizations vs. 196 myocarditis/pericarditis hospitalizations for male age 16-17 years old and 122 prevented COVID-19 hospitalizations vs. 179 myocarditis/pericarditis hospitalizations for male 12-15 years old.
|
150 |
+
However, hospitalizations associated with COVID-19 have more severe clinical outcomes than those associated with myocarditis/pericarditis. For this reason, we consider that the benefits of the vaccine outweigh the risks in this scenario even for male age 12-15 and 16-17 years old. See Table 5 for details and the benefit-risk results for 16-17 year olds.
|
151 |
+
4.2. Scenario 2: Most likely scenario
|
152 |
+
We constructed a scenario that most likely represents the short-term moving direction of the pandemic. We assume 6-month vaccine protection, and 10X higher COVID-19 case incidence and 4X higher COVID-19 hospitalizations incidence compared to the incidence on July 10. We also assume lower vaccine efficacy (70% against COVID-19 case, 80% against hospitalization) against newly emerging virus variants such as Delta strain. We assumed zero myocarditis death rate based on our best knowledge on the vaccine related myocarditis.
|
153 |
+
Figures 5, 6, and 7 summarize the results for analyses of combined male/female, male only, and female only, respectively. For all age/sex groups and across all attributes, the benefits clearly outweigh the risks in this scenario. See Table 5 for details and benefit-risk results for 16-17 year olds.
|
154 |
+
4.3. Scenario 3: Worst case scenario
|
155 |
+
We also constructed the worst-case scenario using the most conservative assumptions for all the model inputs. We assumed 6-month vaccine protection, the COVID-19 incidence as of July 10, 2021, 70% vaccine efficacy against COVID-19 case, 80% vaccine efficacy against COVID-19 hospitalization, and 0.002% (2/1,061) myocarditis/pericarditis death rate.
|
156 |
+
Figures 8, 9, and 10 summarize the results for analyses of combined male/female, male only, and female only, respectively. Even with the conservative assumption on
|
157 |
+
|
158 |
+
Page 10 - Hong Yang - 125742/0
|
159 |
+
myocarditis/pericarditis death rate, the model predicted 0 deaths associated with myocarditis/pericarditis compared to 1 prevented COVID-19 death for both male 12-15 and 16-17 year old groups. The model predicted 127 prevented COVID-19 hospitalizations vs 196 myocarditis/pericarditis hospitalizations for male age 16-17 years old and 109 prevented COVID-19 hospitalizations vs 179 myocarditis/pericarditis hospitalizations for male 12-15 years old.
|
160 |
+
Considering the differential clinical outcomes of the hospitalization from two different causes, we consider the benefits of the vaccine still outweigh the risks in this "worst case scenario". See Table 5 for details and the benefit-risk results for 16-17 year olds.
|
161 |
+
5. Conclusions and discussion
|
162 |
+
Our results demonstrate that the benefits of BNT162b2 clearly outweigh its risks for all age and sex groups we analyzed. Under the base case scenario and the worst-case scenario (Scenario 1 and 3), we predicted a higher number of myocarditis hospitalizations than the COVID-19 hospitalizations among male 16-17 years old; however, considering the differential clinical implications of COVID-19 and myocarditis hospitalization, we consider the benefits of the vaccine still outweigh its risks. Moreover, under all other scenarios including the most likely (Scenario 2), our model predicted that preventable COVID-19 cases, hospitalizations, and deaths exceed the myocarditis cases and related hospitalizations and deaths for all age and sex groups.
|
163 |
+
We note that COVID-19 incidence highly influences the predicted benefits of the vaccine. If the disease incidence is higher, the benefits of the vaccine will be greater, and vice versa. Therefore, the benefit-risk conclusion may change if the COVID-19 incidence rate becomes very low in the future. Also, "the worst-case scenario" presented here is the worst only among the modelled scenarios. Scenarios worse than Scenario 3 could occur if the data fall outside the ranges of model inputs we used, such as lower COVID-19 incidence than those reported on July 10, lower vaccine effectiveness against COVID-19 cases (<70%) and against hospitalizations (<80%), and shorter vaccine protection duration (<6 months).
|
164 |
+
|
165 |
+
Page 11 - Hong Yang - 125742/0
|
166 |
+
6. Limitations
|
167 |
+
• (BENEFIT) The constant COVID-19 incidence rate assumption in our model generates high uncertainty on the estimate of benefits considering the uncertain dynamics of the pandemic. Additionally, estimated benefits of the vaccine would decrease if the vaccine becomes less effective against novel variants of COVID-19. The durability of vaccine protection is another source of uncertainty for the model. Any significant waning of vaccine-induced immunity before 6 or 12 months would reduce the benefit of the vaccine.
|
168 |
+
• RISK) There is uncertainty in the myocarditis case and death rates attributable to the vaccine. In the US, two deaths among those less than 30 years old occurred following the administration of BNT162b2 and were evaluated by FDA and CDC. Based on the review of the available clinical information, the causes of death for both cases are not thought to be related to vaccination. To estimate myocarditis/pericarditis risk attributable to the vaccine, health claims data are used, which have inherent limitations such as small sample sizes for these rare outcomes. The cases have not been validated by medical chart review. The crude myocarditis rate in our model was adjusted using myocarditis 2019 background rate, which did not account for COVID-19 infection related risk of myocarditis/pericarditis and may lead to overestimating the risk attributed to the vaccine.
|
169 |
+
• (BENEFIT-RISK BALANCE) Some benefit-risk endpoints in our assessment are difficult to compare directly, for example, hospitalizations from COVID-19 and myocarditis hospitalizations. This benefit-risk assessment does not consider the potential long-term health impacts of COVID-19 or myocarditis. Also, it does not include secondary benefits and risks, such as any potential impact on the public trust in COVID-19 vaccines and the benefit ofthe vaccine in reducing the viral transmission in the population. In this analysis, we did not investigate the benefits and risks of subpopulations with comorbidity due to limited information. The benefit-risk profile could be different depending on the individual's health condition.
|
170 |
+
|
171 |
+
Page 12 - Hong Yang - 125742/0
|
172 |
+
7. Acknowledgements
|
173 |
+
We thank J. Rosser Matthews, Ph.D., and Katherine Scott, M.D., for editing this Benefit-Risk review memo.
|
174 |
+
|
175 |
+
Page 13 - Hong Yang - 125742/0
|
176 |
+
References
|
177 |
+
1. Garwood, F. "Fiducial limits for the Poison distribution." Biometrika 28.3/4 (1936): 437-442.
|
178 |
+
2. Lopez Bernal, Jamie, et al. "Effectiveness of Covid-19 vaccines against the B. 1.617. 2 (delta) variant." New England Journal of Medicine (2021).
|
179 |
+
3. Marshall, Mayme, et al. "Symptomatic acute myocarditis in seven adolescents following Pfizer-BioNTech
|
180 |
+
COVID-19 vaccination." Pediatrics (2021): 2.
|
181 |
+
4. Nasreen, Sharifa, et al.
|
182 |
+
"Effectiveness of COVID-19 vaccines against variants of concern,
|
183 |
+
Canada." Medrxiv (2021).
|
184 |
+
5. Oliver, Sara E., et al. "The advisory committee on immunization practices' interim recommendation for use of Pfizer-BioNTech COVID-19 vaccine- United States, December 2020." Morbidity and Mortality Weekly Report
|
185 |
+
69.50 (2020): 1922.
|
186 |
+
6. "Population-Level Risk-Benefit Analysis." Centers for Disease Control and Prevention, Centers for Disease Control and Prevention, 5 May 2021, www.cdc.gov/vaccines/covid-19/info-by-product/janssen/risk-benefit-analysis.html.
|
187 |
+
7. Shay, David K., Tom T. Shimabukuro, and Frank DeStefano. "Myocarditis occurring after immunization with mRNA-based COVID-19 vaccines." JAMA cardiology (2021).
|
188 |
+
8. Sheikh, Aziz, et al. "SARS-CoV-2 Delta VOC in Scotland: demographics, risk of hospital admission, and vaccine effectiveness." The Lancet (2021).
|
189 |
+
9. Thomas, Stephen J., et al. "Six Month Safety and Efficacy of the BNT162b2 mRNA COVID-19
|
190 |
+
Vaccine." medRxiv (2021).
|
191 |
+
10. Watkins, Kevin, et al. "Myocarditis after BNT162b2 vaccination in a healthy male." The American Journal of Emergency Medicine (2021).
|
192 |
+
|
193 |
+
Page 14 - Hong Yang - 125742/0
|
194 |
+
List of Tables
|
195 |
+
Table 1. Low and high values for model input parameters considered in our sensitivity analysis
|
196 |
+
...... 15
|
197 |
+
Table 2. The three main model scenarios with different combinations of model input values that are shown on Table 1...
|
198 |
+
Table 3. Vaccine coverage and COVID incidences by sex and age groups
|
199 |
+
...15
|
200 |
+
..15
|
201 |
+
Table 4. Optum-reported myocarditis cases for 1 million fully vaccinated individuals by age and sex.
|
202 |
+
95% confidence intervals for the rates are shown in brackets ......
|
203 |
+
................. 15
|
204 |
+
Table 5. Model predicted benefit-risk outcomes of Scenarios 1-3 for the 16-17-year-old groups..........16
|
205 |
+
List of Figures
|
206 |
+
Figure 1. Benefits-risks value tree.
|
207 |
+
Figure 2. Results of Scenario 1 for combined male and female populations
|
208 |
+
Figure 3. Results of Scenario 1 for the male population ...
|
209 |
+
Figure 4. Results of Scenario 1 for the female population ....
|
210 |
+
Figure 5. Results of Scenario 2 for combined male and female populations....
|
211 |
+
Figure 6. Results of Scenario 2 for the male population ....
|
212 |
+
Figure 7. Results of Scenario 2 for the female population..
|
213 |
+
Figure 8. Results of Scenario 3 for combined male and female populations
|
214 |
+
Figure 9. Results of Scenario 3 for the male population.
|
215 |
+
Figure 10. Results of Scenario 3 for the female population.....
|
216 |
+
16
|
217 |
+
.....17
|
218 |
+
..18
|
219 |
+
...19
|
220 |
+
....... 20
|
221 |
+
.21
|
222 |
+
.22
|
223 |
+
.23
|
224 |
+
24
|
225 |
+
.25
|
226 |
+
|
227 |
+
Page 15 - Hong Yang - 125742/0
|
228 |
+
Table 1. Low and high values model input parameters considered in our sensitivity analysis
|
229 |
+
Model inputs
|
230 |
+
Vaccine protection period
|
231 |
+
Vaccine efficacy against cases
|
232 |
+
Vaccine efficacy against hospitalization
|
233 |
+
COVID-19 case incidence rate
|
234 |
+
COVID-19 hospitalization case incidence rate
|
235 |
+
Myocarditis death rate
|
236 |
+
Low
|
237 |
+
6 months
|
238 |
+
70%
|
239 |
+
80%
|
240 |
+
July 10 rate
|
241 |
+
July 10 rate
|
242 |
+
0%
|
243 |
+
High
|
244 |
+
12 months
|
245 |
+
90%
|
246 |
+
90%
|
247 |
+
10X July 10 rate
|
248 |
+
4X July 10 rate
|
249 |
+
0.002%
|
250 |
+
Table 2. The three main model scenarios with different combinations of model input values that are shown on
|
251 |
+
Table 1
|
252 |
+
Scenario
|
253 |
+
Scenario 1
|
254 |
+
Scenario 2
|
255 |
+
(Most Likelv)
|
256 |
+
Scenario 3
|
257 |
+
(Worst Case
|
258 |
+
Protection
|
259 |
+
period
|
260 |
+
Low
|
261 |
+
Efficacy against
|
262 |
+
Efficacy against
|
263 |
+
cases hospitalization
|
264 |
+
High
|
265 |
+
High
|
266 |
+
COVID-19
|
267 |
+
case incidence
|
268 |
+
Low
|
269 |
+
COVID-19 hospitalization incidence
|
270 |
+
Low
|
271 |
+
Vaccine attributable myocarditis death rate
|
272 |
+
Low
|
273 |
+
Low
|
274 |
+
Low
|
275 |
+
Low
|
276 |
+
High
|
277 |
+
High
|
278 |
+
Low
|
279 |
+
Low
|
280 |
+
Low
|
281 |
+
Low
|
282 |
+
Low
|
283 |
+
Low
|
284 |
+
High
|
285 |
+
Table 3. Vaccine coverage and COVID incidences by sex and age groups
|
286 |
+
COVID-19 Hospitalizati Percent of Percent of
|
287 |
+
Vaccinated cases/100k ons/100k hospitalized hospitalized
|
288 |
+
Sex
|
289 |
+
Female
|
290 |
+
Male
|
291 |
+
Age group
|
292 |
+
12-15
|
293 |
+
16-17
|
294 |
+
18-24
|
295 |
+
25-29
|
296 |
+
12-15
|
297 |
+
16-17
|
298 |
+
18-24
|
299 |
+
25-29
|
300 |
+
Population1 population?
|
301 |
+
persons persons3 going to ICU3 who die
|
302 |
+
8,183,216
|
303 |
+
2,886,252
|
304 |
+
4,119,686
|
305 |
+
1,985,672
|
306 |
+
14,923,948
|
307 |
+
8.033.040
|
308 |
+
11,428,122
|
309 |
+
5,918,524
|
310 |
+
8,535,307
|
311 |
+
2,815,693
|
312 |
+
4,300,731
|
313 |
+
1,826,299
|
314 |
+
15,633,953
|
315 |
+
7,217,945
|
316 |
+
12,036,982
|
317 |
+
5,592,473
|
318 |
+
37.3
|
319 |
+
47.9
|
320 |
+
64.6
|
321 |
+
68.6
|
322 |
+
33.1
|
323 |
+
42.9
|
324 |
+
53.3
|
325 |
+
57.8
|
326 |
+
0.671
|
327 |
+
23.9
|
328 |
+
1.593
|
329 |
+
19.5
|
330 |
+
2.025
|
331 |
+
8.1
|
332 |
+
2.45
|
333 |
+
5.9
|
334 |
+
0.35
|
335 |
+
31.8
|
336 |
+
0.35
|
337 |
+
32.7
|
338 |
+
0.8
|
339 |
+
22.2
|
340 |
+
0.875
|
341 |
+
22.7
|
342 |
+
0
|
343 |
+
0.7
|
344 |
+
1
|
345 |
+
0.3
|
346 |
+
0.9
|
347 |
+
0.7
|
348 |
+
0.6
|
349 |
+
1.5
|
350 |
+
Source: 1-CDC Wonder, 2-COVID Data Tracker, 3-COVID NET
|
351 |
+
Table 4. Estimated excess number of myocarditis/pericarditis cases for 1 million fully vaccinated individuals with Pfizer BNT162b2 by age and sex. 95% confidence intervals for the rates are shown in brackets
|
352 |
+
Rate of excess myocarditis/pericarditis per 1 million fully vaccinated and 95%
|
353 |
+
Sex
|
354 |
+
Male
|
355 |
+
Female
|
356 |
+
Age (years)
|
357 |
+
12-15
|
358 |
+
16-17
|
359 |
+
18-25
|
360 |
+
26-35
|
361 |
+
12-15
|
362 |
+
16-17
|
363 |
+
18-25
|
364 |
+
26-35
|
365 |
+
confidence intervals
|
366 |
+
179 [38, 332]
|
367 |
+
196 [36, 424]
|
368 |
+
131 [27, 224]
|
369 |
+
49 [0, 123]
|
370 |
+
32 [0, 235]
|
371 |
+
36 [0, 298]
|
372 |
+
57 [9, 147]
|
373 |
+
2 [0. 801
|
374 |
+
Source: Optum Database pre-adiudicated claims 12/11/2020 - 07/10/2021
|
375 |
+
|
376 |
+
Page 16 - Hong Yang - 125742/0
|
377 |
+
Table 5. Model predicted benefit-risk outcomes of Scenarios 1-3 for the 16-17-year-old groups
|
378 |
+
Benefits
|
379 |
+
Prevented
|
380 |
+
Prevented Prevented Prevented
|
381 |
+
COVID-19
|
382 |
+
COVID-19
|
383 |
+
COVID-19 COVID-19 Myocarditis
|
384 |
+
Scenario
|
385 |
+
Cases Hospitalizations
|
386 |
+
ICUs
|
387 |
+
Deaths
|
388 |
+
Risks
|
389 |
+
Excess
|
390 |
+
Excess
|
391 |
+
Excess
|
392 |
+
Myocarditis Myocarditis
|
393 |
+
Cases Hospitalizations
|
394 |
+
Deaths
|
395 |
+
Males & Females
|
396 |
+
Scenario 1
|
397 |
+
Scenario 2
|
398 |
+
Scenario 3
|
399 |
+
19,425
|
400 |
+
151.080
|
401 |
+
15.108
|
402 |
+
Males only
|
403 |
+
Scenario 1
|
404 |
+
Scenario 2
|
405 |
+
Scenario 3
|
406 |
+
17.456
|
407 |
+
135,771
|
408 |
+
13.577
|
409 |
+
Females only
|
410 |
+
Scenario 1
|
411 |
+
Scenario 2
|
412 |
+
Scenario 3
|
413 |
+
21,657
|
414 |
+
168,443
|
415 |
+
16.844
|
416 |
+
Figure 1. Benefits-risks value tree.
|
417 |
+
Benefits
|
418 |
+
241
|
419 |
+
855
|
420 |
+
214
|
421 |
+
142
|
422 |
+
506
|
423 |
+
127
|
424 |
+
350
|
425 |
+
1245
|
426 |
+
311
|
427 |
+
59
|
428 |
+
210
|
429 |
+
52
|
430 |
+
2
|
431 |
+
6
|
432 |
+
1
|
433 |
+
116
|
434 |
+
116
|
435 |
+
116
|
436 |
+
47
|
437 |
+
166
|
438 |
+
41
|
439 |
+
1
|
440 |
+
4
|
441 |
+
1
|
442 |
+
196
|
443 |
+
196
|
444 |
+
196
|
445 |
+
68
|
446 |
+
243
|
447 |
+
61
|
448 |
+
2
|
449 |
+
9
|
450 |
+
2
|
451 |
+
36
|
452 |
+
36
|
453 |
+
36
|
454 |
+
Preventable COVID cases
|
455 |
+
Preventable COVID hospitalizations
|
456 |
+
Preventable COVID ICUs
|
457 |
+
116
|
458 |
+
116
|
459 |
+
116
|
460 |
+
196
|
461 |
+
196
|
462 |
+
196
|
463 |
+
36
|
464 |
+
36
|
465 |
+
36
|
466 |
+
Preventable COVID deaths
|
467 |
+
0
|
468 |
+
0
|
469 |
+
o 00
|
470 |
+
O
|
471 |
+
Pfizer-BioNTech
|
472 |
+
COVID-19 Vaccine
|
473 |
+
Risks
|
474 |
+
Excess myocarditis/pericarditis cases
|
475 |
+
Excess myocarditis/pericarditis hospitalizations
|
476 |
+
Excess myocarditis/pericarditis deaths
|
477 |
+
Source : Reviewer Analysis
|
478 |
+
|
479 |
+
Page 17 - Hong Yang - 125742/o
|
480 |
+
Figure 2. Results of Scenario 1 for combined male and female populations
|
481 |
+
BENEFITS
|
482 |
+
12-15 yo
|
483 |
+
Preventer counstepains
|
484 |
+
Prevented COVID-19 ICUs
|
485 |
+
Prevented COVID-19 Hospitalizations
|
486 |
+
160
|
487 |
+
12,489
|
488 |
+
Prevented COVID-19 Cases
|
489 |
+
400
|
490 |
+
300
|
491 |
+
200
|
492 |
+
100
|
493 |
+
16-17 Yo
|
494 |
+
Prevented COVID-19 Deaths
|
495 |
+
Prevented COVID-19 ICUs
|
496 |
+
Prevented COVID-19 Hospitalizations
|
497 |
+
19.425
|
498 |
+
Prevented COVID.19 Cases
|
499 |
+
400
|
500 |
+
300
|
501 |
+
200
|
502 |
+
100
|
503 |
+
106
|
504 |
+
106
|
505 |
+
200
|
506 |
+
116
|
507 |
+
116
|
508 |
+
100
|
509 |
+
200
|
510 |
+
300
|
511 |
+
18-24 yo
|
512 |
+
Prevented COVID-19 Deaths
|
513 |
+
Prevented COVID-19 ICUs
|
514 |
+
CERO
|
515 |
+
Prevented COVID-19 Hospitalizations
|
516 |
+
27,539
|
517 |
+
Prevented COVID-19 Cases
|
518 |
+
400
|
519 |
+
200
|
520 |
+
100
|
521 |
+
100
|
522 |
+
200
|
523 |
+
300
|
524 |
+
25-29 yo
|
525 |
+
Prevented COVID-19 Deaths
|
526 |
+
Prevented COVID.19 ICUs
|
527 |
+
Prevented COVID-19 Hospitalizations
|
528 |
+
Prevented COVID-19 Cases29,032
|
529 |
+
Source: Reviewer Analvsis
|
530 |
+
400
|
531 |
+
300
|
532 |
+
200
|
533 |
+
100
|
534 |
+
100
|
535 |
+
200
|
536 |
+
300
|
537 |
+
RISKS
|
538 |
+
400
|
539 |
+
400
|
540 |
+
400
|
541 |
+
Excess Myo/Pericarditis Deaths
|
542 |
+
Excess Myo/Pericarditis Hospitalizations
|
543 |
+
Excess Myo/Pericarditis Cases
|
544 |
+
500
|
545 |
+
Excess Myo/Pericarditis Deaths
|
546 |
+
Excess Myo/Pericarditis Hospitalizations
|
547 |
+
Excess Myo/Pericarditis Cases
|
548 |
+
500
|
549 |
+
Excess Myo/Pericarditis Deaths
|
550 |
+
Excess My/Pericarditis Hospitalizations
|
551 |
+
Excess Myo/Pericarditis Cases
|
552 |
+
500
|
553 |
+
Excess Myo/Pericarditis Deaths
|
554 |
+
Excess MyoPericarditis Hospitalization!
|
555 |
+
Excess Myo/Pericarditis Cases
|
556 |
+
500
|
557 |
+
|
558 |
+
Page 18 - Hong Yang - 125742/0
|
559 |
+
Figure 3. Results of Scenario 1 for the male population
|
560 |
+
BENEFITS
|
561 |
+
Prevented COVID-19 Deaths
|
562 |
+
Prevented COVID-19 ICUS
|
563 |
+
Prevented COVID-19 Hospitalizations g 581
|
564 |
+
prevented countere casas
|
565 |
+
300
|
566 |
+
Prevented COVID-19 Deaths
|
567 |
+
Prevented COVID-19 ICUs
|
568 |
+
Prevented COVID-19 Hospitalizations 17.456
|
569 |
+
Prevented COVID-19 Cases
|
570 |
+
400
|
571 |
+
300
|
572 |
+
12-15 vo
|
573 |
+
122
|
574 |
+
200
|
575 |
+
100
|
576 |
+
16-17 yo
|
577 |
+
142
|
578 |
+
200
|
579 |
+
100
|
580 |
+
18-24 yo
|
581 |
+
Prevented COVID-19 Deaths
|
582 |
+
Prevented COVID.19 Hospitalizations
|
583 |
+
23,183
|
584 |
+
Prevented COVID-19 Cases
|
585 |
+
Prevented COVID-19 Deaths
|
586 |
+
Prevented COVID.19 ICUs
|
587 |
+
Prevented COVID-19 Hospitalizations
|
588 |
+
25.249
|
589 |
+
Source : Reviewer Analysis
|
590 |
+
400
|
591 |
+
382
|
592 |
+
400
|
593 |
+
300
|
594 |
+
200
|
595 |
+
100
|
596 |
+
87
|
597 |
+
25-29 yo
|
598 |
+
300
|
599 |
+
200
|
600 |
+
• 179
|
601 |
+
• 179
|
602 |
+
10
|
603 |
+
200
|
604 |
+
300
|
605 |
+
196
|
606 |
+
196
|
607 |
+
100 200
|
608 |
+
300
|
609 |
+
131
|
610 |
+
131
|
611 |
+
100
|
612 |
+
200
|
613 |
+
300
|
614 |
+
200
|
615 |
+
300
|
616 |
+
RISKS
|
617 |
+
400
|
618 |
+
400
|
619 |
+
400
|
620 |
+
400
|
621 |
+
Excess Myo/Pericarditis Deaths
|
622 |
+
Excess Mvo/Pericarditis Hospitalizations
|
623 |
+
Excess Myo/Pericarditis Cases
|
624 |
+
500
|
625 |
+
Excess Myo/Pericarditis Deaths
|
626 |
+
Excess Myo/Pericarditis Hospitalizations
|
627 |
+
Excess Myo/Pericarditis Cases
|
628 |
+
500
|
629 |
+
Excess Myo/Pericarditis Deaths
|
630 |
+
Excess Myo/Pericarditis Hospitalizations
|
631 |
+
Excess Myo/Pericarditis Cases
|
632 |
+
500
|
633 |
+
Excess Myo/Pericarditis Deaths
|
634 |
+
Excess My/Pericarditis Hospitalizations
|
635 |
+
Excess Myo/Pericarditis Cases
|
636 |
+
500
|
637 |
+
|
638 |
+
Page 19 - Hong Yang - 125742/o
|
639 |
+
Figure 4. Results of Scenario 1 for the female population
|
640 |
+
BENEFITS
|
641 |
+
12-15 yo
|
642 |
+
Prevented COVID-19 Deaths
|
643 |
+
Prevented soneteos
|
644 |
+
Prevented COVID-19 Hospitalizations
|
645 |
+
13,479
|
646 |
+
199
|
647 |
+
Prevented COVID-19 Cases
|
648 |
+
37
|
649 |
+
200
|
650 |
+
16-17 yo
|
651 |
+
Prevented COVID-19 ICUs
|
652 |
+
Prevented COVID-19 Hospitalizations
|
653 |
+
350
|
654 |
+
400
|
655 |
+
100
|
656 |
+
200
|
657 |
+
18-24 yo
|
658 |
+
10 I
|
659 |
+
Prevented COVID-19 Deaths
|
660 |
+
Prevented COVID-19 ICUs
|
661 |
+
Prevented COVID-19 Hospitalizations
|
662 |
+
1,026
|
663 |
+
Prevented COVID-19 Cases
|
664 |
+
400
|
665 |
+
200
|
666 |
+
57
|
667 |
+
100
|
668 |
+
100
|
669 |
+
70
|
670 |
+
200
|
671 |
+
25-29 vo
|
672 |
+
Prevented COVID-19 Deaths
|
673 |
+
Prevented COVID.19 ICUs
|
674 |
+
Prevented COVID-19 Hospitalizations
|
675 |
+
Prevented COVID-19 Cases 33,317
|
676 |
+
Source : Reviewer Analysis
|
677 |
+
400
|
678 |
+
200
|
679 |
+
100
|
680 |
+
200
|
681 |
+
300
|
682 |
+
300
|
683 |
+
300
|
684 |
+
RISKS
|
685 |
+
400
|
686 |
+
400
|
687 |
+
Excess Myo/Pericarditis Deaths
|
688 |
+
Excess Myo/Pericarditis Hospitalizations
|
689 |
+
Excess Myo/Pericarditis Cases
|
690 |
+
500
|
691 |
+
Excess Myo/Pericarditis Deaths
|
692 |
+
Excess Myo/Pericarditis Hospitalizations
|
693 |
+
Excess Myo/Pericarditis Cases
|
694 |
+
500
|
695 |
+
Excess Myo/Pericarditis Deaths
|
696 |
+
Excess Myo/Pericarditis Hospitalizations
|
697 |
+
Fycess Muo Pericarditis Case
|
698 |
+
500
|
699 |
+
Excess Myo/Pericarditis Deaths
|
700 |
+
Excess Myo/Pericarditis Hospitalizations
|
701 |
+
Excess Myo/Pericarditis Cases
|
702 |
+
500
|
703 |
+
|
704 |
+
Page 20 - Hong Yang - 125742/0
|
705 |
+
Figure 5. Results of Scenario 2 for combined male and female populations
|
706 |
+
BENEFITS
|
707 |
+
12-15 yo
|
708 |
+
Prevented COVID.19 Deaths
|
709 |
+
Prevented COVID-19 ICUs
|
710 |
+
156
|
711 |
+
Prevented COVID-19 Hospitalizations
|
712 |
+
Prevented COVID.19 Cases
|
713 |
+
97,136
|
714 |
+
400
|
715 |
+
300
|
716 |
+
Prevented COVID-19 Deaths
|
717 |
+
Prevented COVID-19 ICUs
|
718 |
+
210
|
719 |
+
855
|
720 |
+
Prevented COVID-19 Hospitalizations
|
721 |
+
151,080,
|
722 |
+
400
|
723 |
+
300
|
724 |
+
200
|
725 |
+
Prevented COVID-19 Deaths
|
726 |
+
Prevented COVID-19 ICUs
|
727 |
+
298
|
728 |
+
Prevented COVID-19 Hospitalizations
|
729 |
+
214,189
|
730 |
+
400
|
731 |
+
300
|
732 |
+
200
|
733 |
+
100
|
734 |
+
16-17 yo
|
735 |
+
100
|
736 |
+
18-24 yo
|
737 |
+
21 M
|
738 |
+
100
|
739 |
+
106
|
740 |
+
106
|
741 |
+
200
|
742 |
+
116
|
743 |
+
116
|
744 |
+
100
|
745 |
+
200
|
746 |
+
94
|
747 |
+
94
|
748 |
+
100
|
749 |
+
200
|
750 |
+
300
|
751 |
+
300
|
752 |
+
25-29 yo
|
753 |
+
Prevented COVID.19 Deaths
|
754 |
+
Prevented COVID-19 ICUs
|
755 |
+
2,715
|
756 |
+
Prevented COVID-19 Hospitalizations
|
757 |
+
225,807
|
758 |
+
Prevented COVID.19 Cases
|
759 |
+
400
|
760 |
+
Source : Reviewer Analysis
|
761 |
+
■95
|
762 |
+
300
|
763 |
+
200
|
764 |
+
100
|
765 |
+
100
|
766 |
+
200
|
767 |
+
300
|
768 |
+
RISKS
|
769 |
+
400
|
770 |
+
400
|
771 |
+
400
|
772 |
+
Excess Myo/Pericarditis Deaths
|
773 |
+
Excess Myo/Pericarditis Hospitalizations
|
774 |
+
Excess Myo/Pericarditis Cases
|
775 |
+
500
|
776 |
+
Excess Myo/Pericarditis Deaths
|
777 |
+
Excess Myo/Pericarditis Hospitalizations
|
778 |
+
Excess Myo/Pericarditis Cases
|
779 |
+
500
|
780 |
+
Excess Myo/Pericarditis Deaths
|
781 |
+
Excess Myo/Pericarditis Hospitalizations
|
782 |
+
Excess Myo/Pericarditis Cases
|
783 |
+
500
|
784 |
+
EXCEsS MvoPericarditis Deaths
|
785 |
+
Excess Mo/Pericarditis Hospitalizations
|
786 |
+
Excess Myo/Pericarditis Cases
|
787 |
+
500
|
788 |
+
|
789 |
+
Page 21 - Hong Yang - 125742/0
|
790 |
+
Figure 6. Results of Scenario 2 for the male population
|
791 |
+
BENEFITS
|
792 |
+
Prevented COVID-19 Deaths
|
793 |
+
Prevented COVID-19 ICUs
|
794 |
+
Prevented COVID-19 Hospitalizations
|
795 |
+
435
|
796 |
+
89,767
|
797 |
+
Prevented COVID-19 Cases
|
798 |
+
12-15 yo
|
799 |
+
100
|
800 |
+
16-17 yo
|
801 |
+
Prevented COVID-19 Deaths
|
802 |
+
Prevented COVID-19 ICUs
|
803 |
+
Prevented COVID-19 Hospitalizations
|
804 |
+
Prevented COVID-19 Cases
|
805 |
+
18-24 yo
|
806 |
+
Prevented COVID-19 Deaths
|
807 |
+
Prevented COVID-19 ICUs
|
808 |
+
Prevented COVID-19 Hospitalizations 1,236
|
809 |
+
Prevented COVID-19 Cases 180,31
|
810 |
+
300
|
811 |
+
200
|
812 |
+
100
|
813 |
+
25-29 yo
|
814 |
+
Prevented COVID-19 Deaths
|
815 |
+
Prevented COVID-19 ICUs
|
816 |
+
Prevented COVID.19 Hospitalizations
|
817 |
+
Prevented COVID-19 Cases
|
818 |
+
300
|
819 |
+
200
|
820 |
+
100
|
821 |
+
Source : Reviewer Analysis
|
822 |
+
179
|
823 |
+
196
|
824 |
+
300
|
825 |
+
137
|
826 |
+
100
|
827 |
+
200
|
828 |
+
300
|
829 |
+
RISKS
|
830 |
+
Excess Myo/Pericarditis Deaths
|
831 |
+
Excess My/Pericarditis Hospitalizations
|
832 |
+
Excess Myo/Pericarditis Cases
|
833 |
+
Dexcess mivovercarenus eacns
|
834 |
+
excess myoPericarditis Mospitalizations
|
835 |
+
400
|
836 |
+
a00
|
837 |
+
500
|
838 |
+
500
|
839 |
+
500
|
840 |
+
Excess Myo/Pericarditis Deaths
|
841 |
+
Excess Myo/Pericarditis Hospitalizations
|
842 |
+
Excess Myo/Pericarditis Cases
|
843 |
+
Excess Myo/Pericarditis Hospitalizations
|
844 |
+
|
845 |
+
Page 22 - Hong Yang - 125742/0
|
846 |
+
Figure 7. Results of Scenario 2 for the female population
|
847 |
+
BENEFITS
|
848 |
+
12-15 yo
|
849 |
+
Prevented COVID-19 Death:
|
850 |
+
Prevented COVID.19 ICI
|
851 |
+
160
|
852 |
+
Prevented COVID-19 Hospitalizations
|
853 |
+
Prevented COVID-19 Cases
|
854 |
+
200
|
855 |
+
100
|
856 |
+
Prevented COVID.19 Deaths
|
857 |
+
Prevented COVID-19 ICUS
|
858 |
+
Prevented COVID-19 Hospitalization:
|
859 |
+
Prevented COVID-19 Cases
|
860 |
+
1,245
|
861 |
+
400
|
862 |
+
300
|
863 |
+
243
|
864 |
+
20
|
865 |
+
16-17 yo
|
866 |
+
200
|
867 |
+
Prevented COVID-19 Deaths
|
868 |
+
Prevented COVID-19 ICUs
|
869 |
+
Prevented COVID-19 Hospitalizations
|
870 |
+
Prevented COVID.19 Cases
|
871 |
+
300
|
872 |
+
200
|
873 |
+
100
|
874 |
+
100
|
875 |
+
18-24 yo
|
876 |
+
36
|
877 |
+
25-29 vo
|
878 |
+
Prevented COVID-19 Deaths
|
879 |
+
Provented on aTe enc
|
880 |
+
Prevented COVID-19 Hospitalization:
|
881 |
+
Prevented COVID-19 Cases 259,1
|
882 |
+
Source : Reviewer Analysis
|
883 |
+
300
|
884 |
+
200
|
885 |
+
100
|
886 |
+
100
|
887 |
+
200
|
888 |
+
200
|
889 |
+
200
|
890 |
+
200
|
891 |
+
300
|
892 |
+
300
|
893 |
+
300
|
894 |
+
RISKS
|
895 |
+
Excess Mvo/Pericarditis Deaths
|
896 |
+
Excess Mo/Pericarditis Hospitalizations
|
897 |
+
Excess Mvo/Pericarditis Cases
|
898 |
+
500
|
899 |
+
Excess Myo/Pericarditis Deaths
|
900 |
+
Excess Myo/Pericarditis Hospitalizations
|
901 |
+
Excess Myo/Pericarditis Cases
|
902 |
+
400
|
903 |
+
500
|
904 |
+
Excess Myo/Pericarditis Deaths
|
905 |
+
Excess Myo/Pericarditis Hospitalizations
|
906 |
+
Excess Myo/Pericarditis Cases
|
907 |
+
400
|
908 |
+
500
|
909 |
+
Excess Myo/Pericarditis Deaths
|
910 |
+
Excess My/Pericarditis Hospitalizations
|
911 |
+
Excess MyoPericarditis Cases
|
912 |
+
400
|
913 |
+
|
914 |
+
Page 23 - Hong Yang - 125742/0
|
915 |
+
Figure 8. Results of Scenario 3 for combined male and female populations
|
916 |
+
BENEFITS
|
917 |
+
12-15 yo
|
918 |
+
Prevented COVID-19 Deaths
|
919 |
+
Prevented COVID-19 Hospitalizations
|
920 |
+
9,714
|
921 |
+
Prevented COVID-19 Cases
|
922 |
+
RISKS
|
923 |
+
Excess Myo/Pericarditis Deaths
|
924 |
+
Excess Myo/Pericarditis Hospitalizations
|
925 |
+
Excess Myo/Pericarditis Cases
|
926 |
+
300
|
927 |
+
16-17 yo
|
928 |
+
Prevented COVID-19 Deaths
|
929 |
+
Prevented COVID-19 ICUs
|
930 |
+
Prevented COVID-19 Hospitalizations
|
931 |
+
Prevented COVID-19 Cases
|
932 |
+
15,108
|
933 |
+
Excess Myo/Pericarditis Deaths
|
934 |
+
excess myoPericarditis Mospitalizations
|
935 |
+
excess vonvercardias cases
|
936 |
+
10
|
937 |
+
100
|
938 |
+
300
|
939 |
+
18-24 yo
|
940 |
+
5 I
|
941 |
+
Prevented COVID-19 Deaths
|
942 |
+
Prevented COVID-19 ICUs
|
943 |
+
587
|
944 |
+
Prevented COVID-19 Hospitalizations
|
945 |
+
Prevented cOVID-19 cases
|
946 |
+
300
|
947 |
+
200
|
948 |
+
100
|
949 |
+
200
|
950 |
+
300
|
951 |
+
400
|
952 |
+
25-29 yo
|
953 |
+
Prevented COVID-19 Deaths
|
954 |
+
Prevented COVID-19 ICUs
|
955 |
+
Prevented COVID-19 Hospitalizations
|
956 |
+
Prevented COVID-19 Cases 22,581
|
957 |
+
Source : Reviewer Analysis
|
958 |
+
• 26
|
959 |
+
200
|
960 |
+
100
|
961 |
+
200
|
962 |
+
300
|
963 |
+
400
|
964 |
+
500
|
965 |
+
500
|
966 |
+
500
|
967 |
+
Excess Myo/Pericarditis Deaths
|
968 |
+
Excess Myo/Pericarditis Hospitalizations
|
969 |
+
Excess Mvo Pericarditis Cases
|
970 |
+
EXCESS MyoPericarditis Death:
|
971 |
+
Excess Myo/Pericarditis Hospitalizations
|
972 |
+
Excess Myo/Pericarditis Cases
|
973 |
+
|
974 |
+
Page 24 - Hong Yang - 125742/0
|
975 |
+
Figure 9. Results of Scenario 3 for the male population
|
976 |
+
BENEFITS
|
977 |
+
Prevented COVID-19 Deaths
|
978 |
+
Prevented COVID-19 ICUS
|
979 |
+
Prevented COVID-19 Hospitalizations
|
980 |
+
Prevented COVID-19 Cases 8,977 |
|
981 |
+
300
|
982 |
+
Prevented COVID-19 Deaths
|
983 |
+
Prevented COVID-19 ICUs
|
984 |
+
Prevented COVID-19 Hospitalizations
|
985 |
+
13,577
|
986 |
+
Prevented COVID-19 Cases
|
987 |
+
12-15 yo
|
988 |
+
109
|
989 |
+
200
|
990 |
+
100
|
991 |
+
16-17 yo
|
992 |
+
127
|
993 |
+
400
|
994 |
+
300
|
995 |
+
200
|
996 |
+
100
|
997 |
+
18-24 yo
|
998 |
+
Prevented COVID-19 Deaths
|
999 |
+
Prevented COVID.19 Hospitalizations
|
1000 |
+
Prevented COVID-10 Cases 18,031
|
1001 |
+
200
|
1002 |
+
400
|
1003 |
+
300
|
1004 |
+
200
|
1005 |
+
100
|
1006 |
+
25-29 yo
|
1007 |
+
provenred covinste pains
|
1008 |
+
Prevented COVID.19 ICUs
|
1009 |
+
Prevented COVID-19 Hospitalizations
|
1010 |
+
Prevented COVID-19 Cases 19,638
|
1011 |
+
400
|
1012 |
+
Source : Reviewer Analysis
|
1013 |
+
300
|
1014 |
+
100
|
1015 |
+
100
|
1016 |
+
• 179
|
1017 |
+
• 179
|
1018 |
+
200
|
1019 |
+
300
|
1020 |
+
196
|
1021 |
+
196
|
1022 |
+
200
|
1023 |
+
300
|
1024 |
+
131
|
1025 |
+
131
|
1026 |
+
200
|
1027 |
+
300
|
1028 |
+
200
|
1029 |
+
300
|
1030 |
+
RISKS
|
1031 |
+
400
|
1032 |
+
400
|
1033 |
+
400
|
1034 |
+
400
|
1035 |
+
Excess Myo/Pericarditis Deaths
|
1036 |
+
Excess Mvo/Pericarditis Hospitalizations
|
1037 |
+
Excess Myo/Pericarditis Cases
|
1038 |
+
500
|
1039 |
+
Excess Myo/Pericarditis Deaths
|
1040 |
+
Excess Myo/Pericarditis Hospitalizations
|
1041 |
+
Excess Myo/Pericarditis Cases
|
1042 |
+
500
|
1043 |
+
Excess Myo/Pericarditis Deaths
|
1044 |
+
Excess Myo/Pericarditis Hospitalizations
|
1045 |
+
Excess Myo/Pericarditis Cases
|
1046 |
+
500
|
1047 |
+
Excess Myo/Pericarditis Deaths
|
1048 |
+
Excess Myo/Pericarditis Hospitalizations
|
1049 |
+
Excess Myo/Pericarditis Cases
|
1050 |
+
500
|
1051 |
+
|
1052 |
+
Page 25 - Hong Yang - 125742/0
|
1053 |
+
Figure 10. Results of Scenario 3 for the female population
|
1054 |
+
BENEFITS
|
1055 |
+
12-15 yo
|
1056 |
+
Prevented COVID-19 Deaths
|
1057 |
+
Prevented COVID-19 ICUs
|
1058 |
+
Prevented COVID-19 Hospitalizations
|
1059 |
+
10,484
|
1060 |
+
Prevented COVID-19 Cases
|
1061 |
+
400
|
1062 |
+
300
|
1063 |
+
200
|
1064 |
+
100
|
1065 |
+
100
|
1066 |
+
16-17 yo
|
1067 |
+
Prevented COVID-19 Death‹
|
1068 |
+
Prevented COVID-19 ICU‹
|
1069 |
+
Prevented COVID.19 Hospitalizations
|
1070 |
+
16.844
|
1071 |
+
Prevented COVID-19 Cases
|
1072 |
+
311
|
1073 |
+
400
|
1074 |
+
200
|
1075 |
+
Prevented COVID-19 Deaths
|
1076 |
+
Prevented COVID.19 ICUs
|
1077 |
+
Prevented COVID-19 Hospitalizations
|
1078 |
+
Prevented COVID.19 Cas
|
1079 |
+
25,451
|
1080 |
+
200
|
1081 |
+
Prevented COVID.19 Deaths
|
1082 |
+
Prevented COVID.19 ICUs
|
1083 |
+
Prevented COVID.19 Hospitalizations
|
1084 |
+
Prevented COVID-19 Cases 25,913
|
1085 |
+
Source : Reviewer Analvsis
|
1086 |
+
300
|
1087 |
+
200
|
1088 |
+
100
|
1089 |
+
18-24 yo
|
1090 |
+
9 I
|
1091 |
+
74 L
|
1092 |
+
25-29 yo
|
1093 |
+
62 B
|
1094 |
+
100
|
1095 |
+
100
|
1096 |
+
100
|
1097 |
+
200
|
1098 |
+
200
|
1099 |
+
200
|
1100 |
+
300
|
1101 |
+
200
|
1102 |
+
300
|
1103 |
+
RISKS
|
1104 |
+
Excess Myo/Pericarditis Deaths
|
1105 |
+
Excess Myo/Pericarditis Hospitalizations
|
1106 |
+
Excess Myo/Pericarditis Cases
|
1107 |
+
400
|
1108 |
+
500
|
1109 |
+
excoss ivorPericardiris earns
|
1110 |
+
Excess Myo/Pericarditis Hospitalizations
|
1111 |
+
Excess Myo/Pericarditis Cases
|
1112 |
+
400
|
1113 |
+
400
|
1114 |
+
400
|
1115 |
+
500
|
1116 |
+
Excess Myo/Pericarditis Deaths
|
1117 |
+
Excess My/Pericarditis Hospitalizations
|
1118 |
+
Excess Myo/Pericarditis Cases
|
1119 |
+
500
|
1120 |
+
Excess Myo/Pericarditis Deaths
|
1121 |
+
Excess Myo/Pericarditis Hospitalizations
|
1122 |
+
Excess Myo/Pericarditis Cases
|
1123 |
+
500
|
1124 |
+
|
1125 |
+
Page 26 - Hong Yang - 125742/0
|
1126 |
+
Supplementary Materials
|
1127 |
+
Text S1. Narratives of Myocarditis Death cases and Terms Used in VAERS Search
|
1128 |
+
Table S1. Additional model scenarios with different combinations of model input values that are shown on Table 1 in the main text
|
1129 |
+
Figure S1: Results of Scenario 4 for combined male and female populations.
|
1130 |
+
Figure S2: Results of Scenario 4 for the male population.
|
1131 |
+
Figure S3: Results of Scenario 4 for the female population.
|
1132 |
+
Figure S4: Results of Scenario 5 for combined male and female populations.
|
1133 |
+
Figure S5: Results of Scenario 5 for the male population.
|
1134 |
+
Figure S6: Results of Scenario 5 for the female population.
|
1135 |
+
Figure S7: Results of Scenario 6 for combined male and female populations.
|
1136 |
+
Figure S8: Results of Scenario 6 for the male population.
|
1137 |
+
Figure S9: Results of Scenario 6 for the female population.
|
1138 |
+
Figure S10: Results of Scenario 6 for combined male and female populations.
|
1139 |
+
Figure S11: Results of Scenario 6 for the male population.
|
1140 |
+
Figure S12: Results of Scenario 6 for the female population.
|
1141 |
+
|
1142 |
+
Page 27 - Hong Yang - 125742/0
|
1143 |
+
Text S1. Narratives of Myocarditis Death cases and Terms Used in VAERS Search
|
1144 |
+
Narratives of Myocarditis Death Cases
|
1145 |
+
Pfizer BioNTech Vaccine
|
1146 |
+
VAERS ID 1406840: 13 years old male with attention deficit hyperactivity disorder and developmental coordination disorder experienced flu-like symptoms for is days and then was found deceased; onset of symptoms 1-day post-vaccination. The preliminary autopsy report revealed cardiomegaly with biventricular dilatation, bilateral serous pulmonary effusions and serous pericardial effusion, marked pulmonary edema and congestion, and moderate degree of diffuse cerebral edema. COVID-19 and influenza A/B tests were negative. Additional testing on autopsy found this patient died of sepsis due
|
1147 |
+
Clostridium septicum.
|
1148 |
+
VAERS ID 1486852: 21 years old female who experienced fever, confusion, seizure, cardiac arrest days post vaccination. Autopsy revealed histology with extensive lymphocytic/plasmocytic myocarditis with rare eosinophils no granuloma. Additional review by pathologists at CDC found the patient had severe myocarditis with intravascular leukocytosis suggestive of sepsis.
|
1149 |
+
Reviewer Comment: Both of these death cases had alternate etiologies likely related to non-COVID-19 infections and were not attributed to vaccine.
|
1150 |
+
VAERS Search Terms
|
1151 |
+
Atypical mycobacterium pericarditis, Autoimmune myocarditis, Autoimmune pericarditis, Bacterial pericarditis,
|
1152 |
+
Coxsackie myocarditis,
|
1153 |
+
Coxsackie pericarditis, Cytomegalovirus myocarditis,
|
1154 |
+
Cytomegalovirus pericarditis, Enterovirus myocarditis, Eosinophilic myocarditis, Hypersensitivity myocarditis, Immune-mediated myocarditis, Myocarditis, Myocarditis bacterial, Myocarditis helminthic, Myocarditis infectious, Myocarditis meningococcal, Myocarditis mycotic, Myocarditis post infection, Myocarditis septic, Pericarditis, Pericarditis adhesive, Pericarditis constrictive, Pericarditis helminthic, Pericarditis infective, Pericarditis mycoplasmal, Pleuropericarditis, Purulent pericarditis, Viral myocarditis, Viral pericarditis.
|
1155 |
+
|
1156 |
+
Page 28 - Hong Yang - 125742/0
|
1157 |
+
Table S1. Additional model scenarios with different combinations of model input values that are shown on Table 1 in the main text.
|
1158 |
+
Efficacy
|
1159 |
+
Scenario
|
1160 |
+
4
|
1161 |
+
5
|
1162 |
+
6
|
1163 |
+
7
|
1164 |
+
Protection period
|
1165 |
+
Low
|
1166 |
+
High
|
1167 |
+
Low
|
1168 |
+
Low
|
1169 |
+
against cases
|
1170 |
+
High
|
1171 |
+
High
|
1172 |
+
Low
|
1173 |
+
Low
|
1174 |
+
Efficacy against hospitalization
|
1175 |
+
High
|
1176 |
+
High
|
1177 |
+
Low
|
1178 |
+
Low
|
1179 |
+
Note: Additional scenarios are used to examine the impact of specific changes to model inputs
|
1180 |
+
COVID-19
|
1181 |
+
COVID-19 case hospitalization
|
1182 |
+
incidence
|
1183 |
+
incidence
|
1184 |
+
High
|
1185 |
+
High
|
1186 |
+
Low
|
1187 |
+
Low
|
1188 |
+
Low
|
1189 |
+
Low
|
1190 |
+
High
|
1191 |
+
High
|
1192 |
+
Vaccine attributable myocarditis death rate
|
1193 |
+
Low
|
1194 |
+
Low
|
1195 |
+
Low
|
1196 |
+
High
|
1197 |
+
|
1198 |
+
Page 29 - Hong Yang - 125742/0
|
1199 |
+
BENEFITS
|
1200 |
+
Prevented COVID-19 Deaths
|
1201 |
+
Prevented COVID-19 ICUs
|
1202 |
+
Prevented COVID-19 Hospitalizations 639
|
1203 |
+
Prevented COVID-19 Cases
|
1204 |
+
124,889
|
1205 |
+
400
|
1206 |
+
Prevented COVID-19 Deaths
|
1207 |
+
Prevented COVID-19 ICUS 962
|
1208 |
+
Prevented COVID-19 Hospitalizations 194,245,
|
1209 |
+
Prevented COVID.19 Cases
|
1210 |
+
Prevented COVID-19 Deaths
|
1211 |
+
Prevented COVID-19 ICUS 2.639
|
1212 |
+
Prevented COVID-19 Hospitalizations
|
1213 |
+
335
|
1214 |
+
275,386,
|
1215 |
+
Prevented COVID.19 Cases
|
1216 |
+
400
|
1217 |
+
Prevented COVID-19 Deaths
|
1218 |
+
Prevented COVID-19 ICUs
|
1219 |
+
3,055
|
1220 |
+
Prevented COVID-19 Hospitalizations
|
1221 |
+
290.32
|
1222 |
+
Prevented COVID.19 Cases
|
1223 |
+
400
|
1224 |
+
300
|
1225 |
+
236
|
1226 |
+
300
|
1227 |
+
300
|
1228 |
+
176
|
1229 |
+
200
|
1230 |
+
200
|
1231 |
+
200
|
1232 |
+
200
|
1233 |
+
12-15 yo
|
1234 |
+
100
|
1235 |
+
16-17 yo
|
1236 |
+
18-24 yo
|
1237 |
+
24 B
|
1238 |
+
o
|
1239 |
+
100
|
1240 |
+
25-29 yo
|
1241 |
+
106
|
1242 |
+
106
|
1243 |
+
100
|
1244 |
+
200
|
1245 |
+
• 116
|
1246 |
+
• 116
|
1247 |
+
94
|
1248 |
+
94
|
1249 |
+
100
|
1250 |
+
200
|
1251 |
+
1 26
|
1252 |
+
300
|
1253 |
+
300
|
1254 |
+
300
|
1255 |
+
100
|
1256 |
+
RISKS
|
1257 |
+
400
|
1258 |
+
400
|
1259 |
+
Excess Myo/Pericarditis Deaths
|
1260 |
+
Excess Myo/Pericarditis Hospitalization
|
1261 |
+
Excess Myo/Pericarditis Cases
|
1262 |
+
500
|
1263 |
+
Excess Myo/Pericarditis Deaths
|
1264 |
+
Excess Myo/Pericarditis Hospitalization
|
1265 |
+
Excess Myo/Pericarditis Cases
|
1266 |
+
500
|
1267 |
+
Excess Myo/Pericarditis Deaths
|
1268 |
+
Excess Myo/Pericarditis Hospitalization
|
1269 |
+
Excess Myo/Pericarditis Cases
|
1270 |
+
500
|
1271 |
+
Excess Myo/Pericarditis Deaths
|
1272 |
+
Excess Myo/Pericarditis Hospitalization
|
1273 |
+
Excess Myo/Pericarditis Cases
|
1274 |
+
о
|
1275 |
+
100
|
1276 |
+
2∞ 300
|
1277 |
+
400
|
1278 |
+
500
|
1279 |
+
Figure S1: Results of Scenario 4 for combined male and female populations
|
1280 |
+
|
1281 |
+
Page 30 - Hong Yang - 125742/0
|
1282 |
+
BENEFITS
|
1283 |
+
Prevented COVID-19 Deaths
|
1284 |
+
Prevented COVID-19 ICUs
|
1285 |
+
Prevented COVID-19 Hospitalizations
|
1286 |
+
Prevented COVID-19 Cases 15.415
|
1287 |
+
Prevented COVID-19 Deaths
|
1288 |
+
Prevented COVID-19 ICUs
|
1289 |
+
569
|
1290 |
+
Prevented COVID-19 Hospitalizations
|
1291 |
+
174 56'
|
1292 |
+
Prevented COVID-19 Cases
|
1293 |
+
Prevented COVID-19 Deaths
|
1294 |
+
Prevented COVID-19 ICUs
|
1295 |
+
1,391
|
1296 |
+
Prevented COVID-19 Hospitalizations
|
1297 |
+
231,833
|
1298 |
+
Prevented COVID-19 Deaths
|
1299 |
+
Prevented COVID-19 ICUs
|
1300 |
+
1.530
|
1301 |
+
Prevented COVID-19 Hospitalizations
|
1302 |
+
400
|
1303 |
+
300
|
1304 |
+
400
|
1305 |
+
300
|
1306 |
+
309
|
1307 |
+
400
|
1308 |
+
300
|
1309 |
+
252.490
|
1310 |
+
Prevented COVID-19 Cases
|
1311 |
+
400
|
1312 |
+
200
|
1313 |
+
186
|
1314 |
+
200
|
1315 |
+
200
|
1316 |
+
300
|
1317 |
+
200
|
1318 |
+
100
|
1319 |
+
100
|
1320 |
+
12-15 yo
|
1321 |
+
16-17 yo
|
1322 |
+
18-24 yo
|
1323 |
+
25-29 vo
|
1324 |
+
100
|
1325 |
+
179
|
1326 |
+
100
|
1327 |
+
200
|
1328 |
+
300
|
1329 |
+
196
|
1330 |
+
100
|
1331 |
+
200
|
1332 |
+
300
|
1333 |
+
| 131
|
1334 |
+
| 131
|
1335 |
+
300
|
1336 |
+
100 200
|
1337 |
+
RISKS
|
1338 |
+
400
|
1339 |
+
400
|
1340 |
+
400
|
1341 |
+
Excess Myo/Pericarditis Deaths
|
1342 |
+
Excess Myo/Pericarditis Hospitalizations
|
1343 |
+
Excess Myo/Pericarditis Cases
|
1344 |
+
500
|
1345 |
+
Excess Myo/Pericarditis Deaths
|
1346 |
+
Excess Myo/Pericarditis Hospitalizations
|
1347 |
+
Excess Myo/Pericarditis Cases
|
1348 |
+
500
|
1349 |
+
Excess Myo/Pericarditis Deaths
|
1350 |
+
Excess Myo/Pericarditis Hospitalizations
|
1351 |
+
Excess Myo/Pericarditis Cases
|
1352 |
+
500
|
1353 |
+
Excess Myo/Pericarditis Deaths
|
1354 |
+
Excess Myo/Pericarditis Hospitalizations
|
1355 |
+
Excess Myo/Pericarditis Cases
|
1356 |
+
500
|
1357 |
+
Figure S2: Results of Scenario 4 for the male population
|
1358 |
+
|
1359 |
+
Page 31 - Hong Yang - 125742/0
|
1360 |
+
BENEFITS
|
1361 |
+
Prevented COVID-19 Deaths
|
1362 |
+
Prevented COVID-19 ICUs
|
1363 |
+
795
|
1364 |
+
Prevented COVID-19 Hospitalizations
|
1365 |
+
134,791
|
1366 |
+
Prevented COVID.19 Cases
|
1367 |
+
12-15 yo
|
1368 |
+
400
|
1369 |
+
190
|
1370 |
+
200
|
1371 |
+
300
|
1372 |
+
273
|
1373 |
+
100
|
1374 |
+
0
|
1375 |
+
16-17 yo
|
1376 |
+
Prevented COVID-19 Deaths
|
1377 |
+
Prevented COVID-19 ICUs
|
1378 |
+
1,400
|
1379 |
+
Prevented COVID-19 Hospitalizations
|
1380 |
+
Prevented COVID-19 Cases 16,570
|
1381 |
+
| 36
|
1382 |
+
100
|
1383 |
+
100
|
1384 |
+
200
|
1385 |
+
300
|
1386 |
+
RISKS
|
1387 |
+
400
|
1388 |
+
Excess Myo/Pericarditis Deaths
|
1389 |
+
Excess Myo/Pericarditis Hospitalization
|
1390 |
+
Excess Myo/Pericarditis Cases
|
1391 |
+
500
|
1392 |
+
Excess Myo/Pericarditis Deaths
|
1393 |
+
Excess Myo/Pericarditis Hospitalization
|
1394 |
+
Excess Myo/Pericarditis Cases
|
1395 |
+
Prevented COVID-19 Deaths
|
1396 |
+
Prevented COVID-19 ICUs
|
1397 |
+
Prevented COVID-19 Hospitalizations
|
1398 |
+
4,105
|
1399 |
+
327,222
|
1400 |
+
Prevented COVID.19 Cases
|
1401 |
+
Prevented COVID-19 Deaths
|
1402 |
+
Prevented COVID-19 ICUs
|
1403 |
+
4,757
|
1404 |
+
Prevented COVID-19 Hospitalizations
|
1405 |
+
333,171
|
1406 |
+
Prevented COVID.19 Cases
|
1407 |
+
333
|
1408 |
+
300
|
1409 |
+
400
|
1410 |
+
300
|
1411 |
+
200
|
1412 |
+
500
|
1413 |
+
200
|
1414 |
+
400
|
1415 |
+
18-24 yo
|
1416 |
+
41 1
|
1417 |
+
Excess Myo/Pericarditis Deaths
|
1418 |
+
Excess Myo/Pericarditis Hospitalization
|
1419 |
+
Excess Myo/Pericarditis Cases
|
1420 |
+
100
|
1421 |
+
200
|
1422 |
+
300
|
1423 |
+
400
|
1424 |
+
500
|
1425 |
+
25-29 Yo
|
1426 |
+
Excess Myo/Pericarditis Deaths
|
1427 |
+
Excess Myo/Pericarditis Hospitalizatior
|
1428 |
+
Excess Myo/Pericarditis Cases
|
1429 |
+
200
|
1430 |
+
100
|
1431 |
+
0
|
1432 |
+
100
|
1433 |
+
200
|
1434 |
+
300
|
1435 |
+
400
|
1436 |
+
500
|
1437 |
+
Figure S3: Results of Scenario 4 for the female population
|
1438 |
+
|
1439 |
+
Page 32 - Hong Yang - 125742/0
|
1440 |
+
BENEFITS
|
1441 |
+
Prevented COVID.19 Deaths
|
1442 |
+
Prevented COVID-19 ICUs
|
1443 |
+
Prevented COVID-19 Hospitalizations
|
1444 |
+
320
|
1445 |
+
25,046
|
1446 |
+
Prevented COVID.19 Cases
|
1447 |
+
400
|
1448 |
+
300
|
1449 |
+
12-15 yo
|
1450 |
+
RISKS
|
1451 |
+
Prevented COVID-19 Deaths
|
1452 |
+
Prevented COVID-19 ICUs
|
1453 |
+
Prevented COVID-19 Hospitalizations
|
1454 |
+
38 956
|
1455 |
+
Prevented COVID-19 Cases
|
1456 |
+
Prevented COVID-19 Deaths
|
1457 |
+
Prevented COVID-19 ICUs
|
1458 |
+
1.323
|
1459 |
+
Prevented COVID-19 Hospitalizations
|
1460 |
+
55,228
|
1461 |
+
Prevented counseencase
|
1462 |
+
Prevented COVID-19 Deaths
|
1463 |
+
Prevented COVID-19 ICUs
|
1464 |
+
1,531
|
1465 |
+
Prevented COVID-19 Hospitalizations
|
1466 |
+
Prevented COVID.19 Case
|
1467 |
+
88
|
1468 |
+
200
|
1469 |
+
100
|
1470 |
+
16-17 yo
|
1471 |
+
118
|
1472 |
+
200
|
1473 |
+
18-24 yo
|
1474 |
+
12 1
|
1475 |
+
o
|
1476 |
+
168
|
1477 |
+
300
|
1478 |
+
200
|
1479 |
+
100
|
1480 |
+
25-29 yo
|
1481 |
+
181
|
1482 |
+
| 106
|
1483 |
+
| 106
|
1484 |
+
100
|
1485 |
+
• 116
|
1486 |
+
• 116
|
1487 |
+
94
|
1488 |
+
| 94
|
1489 |
+
100
|
1490 |
+
200
|
1491 |
+
1 26
|
1492 |
+
300
|
1493 |
+
300
|
1494 |
+
400
|
1495 |
+
300
|
1496 |
+
200
|
1497 |
+
100
|
1498 |
+
400
|
1499 |
+
400
|
1500 |
+
400
|
1501 |
+
Excess Myo/Pericarditis Deaths
|
1502 |
+
Excess Myo/Pericarditis Hospitalization
|
1503 |
+
Excess Myo/Pericarditis Cases
|
1504 |
+
500
|
1505 |
+
Excess Myo/Pericarditis Deaths
|
1506 |
+
Excess My/Pericarditis Hospitalization
|
1507 |
+
Excess Myo/Pericarditis Cases
|
1508 |
+
Excess Myo/Pericarditis Deaths
|
1509 |
+
Excess Myo/Pericarditis Hospitalization
|
1510 |
+
Excess Myo/Pericarditis Cases
|
1511 |
+
500
|
1512 |
+
Excess Myo/Pericarditis Deaths
|
1513 |
+
Excess Myo/Pericarditis Hospitalization
|
1514 |
+
Excess Myo/Pericarditis Cases
|
1515 |
+
100
|
1516 |
+
2∞ 300
|
1517 |
+
400
|
1518 |
+
500
|
1519 |
+
Figure S4: Results of Scenario 5 for combined male and female populations
|
1520 |
+
|
1521 |
+
Page 33 - Hong Yang - 125742/0
|
1522 |
+
BENEFITS
|
1523 |
+
Prevented COVID-19 Deaths
|
1524 |
+
Prevented COVID-19 ICUs
|
1525 |
+
Prevented COVID-19 Hospitalizations
|
1526 |
+
Prevented COVID-19 Cases
|
1527 |
+
Prevented COVID-19 Deaths
|
1528 |
+
Prevented COVID-19 ICUs
|
1529 |
+
Prevented COVID.19 Hospitalizations
|
1530 |
+
35.00
|
1531 |
+
Prevented COVID-19 Cases
|
1532 |
+
Prevented COVID-19 Deaths
|
1533 |
+
Prevented COVID-19 ICUs
|
1534 |
+
Prevented COVID-19 Hospitalizations
|
1535 |
+
Prevented COVID.19 Case
|
1536 |
+
Prevented COVID-19 Deaths
|
1537 |
+
Prevented COVID-19 ICUs
|
1538 |
+
400
|
1539 |
+
Prevented COVID.19 Hosnitalizations
|
1540 |
+
Prevented COVID-19 Cases 50,637
|
1541 |
+
400
|
1542 |
+
245
|
1543 |
+
300
|
1544 |
+
300
|
1545 |
+
200
|
1546 |
+
200
|
1547 |
+
155
|
1548 |
+
200
|
1549 |
+
174
|
1550 |
+
300
|
1551 |
+
200
|
1552 |
+
100
|
1553 |
+
100
|
1554 |
+
100
|
1555 |
+
12-15 yo
|
1556 |
+
16-17 yo
|
1557 |
+
18-24 yo
|
1558 |
+
25-29 vo
|
1559 |
+
12
|
1560 |
+
100
|
1561 |
+
179
|
1562 |
+
179
|
1563 |
+
100
|
1564 |
+
200
|
1565 |
+
300
|
1566 |
+
196
|
1567 |
+
100
|
1568 |
+
200
|
1569 |
+
300
|
1570 |
+
| 131
|
1571 |
+
| 131
|
1572 |
+
200
|
1573 |
+
300
|
1574 |
+
RISKS
|
1575 |
+
400
|
1576 |
+
400
|
1577 |
+
Excess Myo/Pericarditis Deaths
|
1578 |
+
Excess Myo/Pericarditis Hospitalizations
|
1579 |
+
Excess Myo/Pericarditis Cases
|
1580 |
+
500
|
1581 |
+
Excess Myo/Pericarditis Deaths
|
1582 |
+
Excess Myo/Pericarditis Hospitalizations
|
1583 |
+
Excess Myo/Pericarditis Cases
|
1584 |
+
500
|
1585 |
+
Excess Myo/Pericarditis Deaths
|
1586 |
+
Excess Myo/Pericarditis Hospitalizations
|
1587 |
+
Excess Myo/Pericarditis Cases
|
1588 |
+
500
|
1589 |
+
Excess Myo/Pericarditis Deaths
|
1590 |
+
Excess Myo/Pericarditis Hospitalizations
|
1591 |
+
Excess Myo/Pericarditis Cases
|
1592 |
+
100 200
|
1593 |
+
400
|
1594 |
+
500
|
1595 |
+
Figure S5: Results of Scenario 5 for the male population
|
1596 |
+
|
1597 |
+
Page 34 - Hong Yang - 125742/0
|
1598 |
+
BENEFITS
|
1599 |
+
Prevented COVID.19 Deaths
|
1600 |
+
Prevented COVID-19 ICUs
|
1601 |
+
Prevented COVID-19 Hospitalizations
|
1602 |
+
27,032
|
1603 |
+
Prevented COVID-19 Cases
|
1604 |
+
Prevented COVID-19 Deaths
|
1605 |
+
Prevented COVID-19 ICUs
|
1606 |
+
702
|
1607 |
+
Prevented COVID-19 Hospitalizations
|
1608 |
+
Prevented COVID-19 Cases
|
1609 |
+
Prevented COVID-19 Deaths
|
1610 |
+
Prevented COVID-19 ICUs
|
1611 |
+
Prevented COVID-19 Hospitalizations
|
1612 |
+
2,058
|
1613 |
+
Prevented counselecase
|
1614 |
+
65,624
|
1615 |
+
400
|
1616 |
+
Prevented COVID-19 Deaths
|
1617 |
+
Prevented COVID-19 ICUs
|
1618 |
+
2,385
|
1619 |
+
Prevented COVID-19 Hospitalizations
|
1620 |
+
Prevented ounselecas
|
1621 |
+
es 66,817
|
1622 |
+
400
|
1623 |
+
300
|
1624 |
+
300
|
1625 |
+
12-15 yo
|
1626 |
+
95
|
1627 |
+
200
|
1628 |
+
100
|
1629 |
+
100
|
1630 |
+
16-17 yo
|
1631 |
+
137
|
1632 |
+
36
|
1633 |
+
100
|
1634 |
+
18-24 yo
|
1635 |
+
21 B
|
1636 |
+
167
|
1637 |
+
200
|
1638 |
+
100
|
1639 |
+
200
|
1640 |
+
200
|
1641 |
+
200
|
1642 |
+
25-29 yo
|
1643 |
+
141
|
1644 |
+
300
|
1645 |
+
200
|
1646 |
+
100
|
1647 |
+
100
|
1648 |
+
200
|
1649 |
+
300
|
1650 |
+
300
|
1651 |
+
300
|
1652 |
+
RISKS
|
1653 |
+
400
|
1654 |
+
400
|
1655 |
+
400
|
1656 |
+
Excess Myo/Pericarditis Deaths
|
1657 |
+
Excess Myo/Pericarditis Hospitalization
|
1658 |
+
Excess Myo/Pericarditis Cases
|
1659 |
+
500
|
1660 |
+
Excess Myo/Pericarditis Deaths
|
1661 |
+
Excess Myo/Pericarditis Hospitalization
|
1662 |
+
Excess Myo/Pericarditis Cases
|
1663 |
+
500
|
1664 |
+
Excess Myo/Pericarditis Deaths
|
1665 |
+
Excess Myo/Pericarditis Hospitalization
|
1666 |
+
Excess Myo/Pericarditis Cases
|
1667 |
+
500
|
1668 |
+
Excess Myo/Pericarditis Deaths
|
1669 |
+
Excess Myo/Pericarditis Hospitalization
|
1670 |
+
Excess Myo/Pericarditis Cases
|
1671 |
+
400
|
1672 |
+
500
|
1673 |
+
Figure S6: Results of Scenario 5 for the female population
|
1674 |
+
|
1675 |
+
Page 35 - Hong Yang - 125742/0
|
1676 |
+
BENEFITS
|
1677 |
+
Prevented COVID-19 Deaths
|
1678 |
+
Prevented COVID-19 ICUs
|
1679 |
+
Prevented COVID-19 Hospitalizations
|
1680 |
+
9,714
|
1681 |
+
Prevented COVID-19 Cases
|
1682 |
+
300
|
1683 |
+
142
|
1684 |
+
200
|
1685 |
+
200
|
1686 |
+
12-15 yo
|
1687 |
+
39 П
|
1688 |
+
100
|
1689 |
+
16-17 yo
|
1690 |
+
52
|
1691 |
+
RISKS
|
1692 |
+
400
|
1693 |
+
Excess Myo/Pericarditis Deaths
|
1694 |
+
Excess Myo/Pericarditis Hospitalization
|
1695 |
+
Excess Myo/Pericarditis Cases
|
1696 |
+
Prevented COVID-19 Deaths
|
1697 |
+
Prevented COVID-19 ICUs
|
1698 |
+
Prevented COVID-19 Hospitalizations
|
1699 |
+
15,108,
|
1700 |
+
Prevented COVID-19 Cases
|
1701 |
+
214
|
1702 |
+
| 106
|
1703 |
+
| 106
|
1704 |
+
100
|
1705 |
+
200
|
1706 |
+
• 116
|
1707 |
+
• 116
|
1708 |
+
300
|
1709 |
+
Excess Myo/Pericarditis Deaths
|
1710 |
+
Excess Myo/Pericarditis Hospitalization
|
1711 |
+
Excess Myo/Pericarditis Cases
|
1712 |
+
300
|
1713 |
+
Prevented COVID-19 Deaths
|
1714 |
+
Prevented COVID-19 ICUs
|
1715 |
+
587
|
1716 |
+
Prevented COVID-19 Hospitalizations
|
1717 |
+
Prevented COVID-19 Cases
|
1718 |
+
21,419
|
1719 |
+
74 I
|
1720 |
+
100
|
1721 |
+
18-24 yo
|
1722 |
+
о
|
1723 |
+
25-29 yo
|
1724 |
+
94
|
1725 |
+
|94
|
1726 |
+
100
|
1727 |
+
Excess Myo/Pericarditis Deaths
|
1728 |
+
Excess Myo/Pericarditis Hospitalization
|
1729 |
+
Excess Myo/Pericarditis Cases
|
1730 |
+
400
|
1731 |
+
300
|
1732 |
+
200
|
1733 |
+
200
|
1734 |
+
300
|
1735 |
+
400
|
1736 |
+
500
|
1737 |
+
Prevented COVID-19 Deaths
|
1738 |
+
Excess Myo/Pericarditis Deaths
|
1739 |
+
Prevented COVID-19 ICUs
|
1740 |
+
679
|
1741 |
+
Prevented COVID-19 Hospitalizations
|
1742 |
+
22,581
|
1743 |
+
Prevented COVID.19 Cases
|
1744 |
+
26
|
1745 |
+
Excess Myo/Pericarditis Hospitalization
|
1746 |
+
Excess Myo/Pericarditis Cases
|
1747 |
+
400
|
1748 |
+
300
|
1749 |
+
200
|
1750 |
+
100
|
1751 |
+
100
|
1752 |
+
200 300
|
1753 |
+
400
|
1754 |
+
500
|
1755 |
+
Figure S7: Results of Scenario 6 for combined male and female populations
|
1756 |
+
|
1757 |
+
Page 36 - Hong Yang - 125742/0
|
1758 |
+
BENEFITS
|
1759 |
+
Prevented COVID-19 Deaths
|
1760 |
+
Prevented COVID.19 ICUs
|
1761 |
+
Prevented COVID-19 Hospitalizations
|
1762 |
+
Prevented COVID-19 Cases
|
1763 |
+
400
|
1764 |
+
Prevented COVID-19 Deaths
|
1765 |
+
Prevented COVID-19 ICUs
|
1766 |
+
Prevented COVID-19 Hospitalizations
|
1767 |
+
13,577
|
1768 |
+
Prevented COVID-19 Cases
|
1769 |
+
400
|
1770 |
+
300
|
1771 |
+
300
|
1772 |
+
200
|
1773 |
+
200
|
1774 |
+
109
|
1775 |
+
157 1
|
1776 |
+
12-15 yo
|
1777 |
+
35 E
|
1778 |
+
100
|
1779 |
+
16-17 yo
|
1780 |
+
100
|
1781 |
+
179
|
1782 |
+
200
|
1783 |
+
300
|
1784 |
+
RISKS
|
1785 |
+
400
|
1786 |
+
500
|
1787 |
+
Excess Myo/Pericarditis Deaths
|
1788 |
+
Excess Myo/Pericarditis Hospitalizations
|
1789 |
+
Excess Myo/Pericarditis Cases
|
1790 |
+
196
|
1791 |
+
Excess Myo/Pericarditis Deaths
|
1792 |
+
Excess Myo/Pericarditis Hospitalizations
|
1793 |
+
Excess Mo Pericarditis Cases
|
1794 |
+
18-24 yo
|
1795 |
+
Prevented COVID-19 Deaths
|
1796 |
+
Prevented COVID-19 ICUs
|
1797 |
+
Prevented COVID-19 Hospitalizations
|
1798 |
+
Prevented COVID-19 Cases 18,031,
|
1799 |
+
200
|
1800 |
+
200
|
1801 |
+
131
|
1802 |
+
| 131
|
1803 |
+
200
|
1804 |
+
300
|
1805 |
+
400
|
1806 |
+
300
|
1807 |
+
400
|
1808 |
+
500
|
1809 |
+
500
|
1810 |
+
Excess Myo/Pericarditis Deaths
|
1811 |
+
Excess Myo/Pericarditis Hospitalizations
|
1812 |
+
Excess Myo/Pericarditis Cases
|
1813 |
+
25-29 yo
|
1814 |
+
Prevented COVID-19 Deaths
|
1815 |
+
Prevented COVID-19 ICUs
|
1816 |
+
Prevented COVID.19 Hosnitalizations
|
1817 |
+
1300
|
1818 |
+
19.638
|
1819 |
+
Prevented COVID-19 Cases
|
1820 |
+
400
|
1821 |
+
300
|
1822 |
+
200
|
1823 |
+
100
|
1824 |
+
100 200
|
1825 |
+
Figure S8: Results of Scenario 6 for the male population
|
1826 |
+
Excess Myo/Pericarditis Deaths
|
1827 |
+
Excess Myo/Pericarditis Hospitalizations
|
1828 |
+
Excess Myo/Pericarditis Cases
|
1829 |
+
|
1830 |
+
Page 37 - Hong Yang - 125742/0
|
1831 |
+
BENEFITS
|
1832 |
+
Prevented COVID-19 Deaths
|
1833 |
+
Prevented COVID-19 ICUs
|
1834 |
+
Prevented COVID-19 Hospitalizations
|
1835 |
+
10,484,
|
1836 |
+
Prevented COVID-19 Cases
|
1837 |
+
12-15 yo
|
1838 |
+
300
|
1839 |
+
177
|
1840 |
+
200
|
1841 |
+
1 32
|
1842 |
+
100
|
1843 |
+
RISKS
|
1844 |
+
400
|
1845 |
+
Excess Myo/Pericarditis Deaths
|
1846 |
+
Excess Myo/Pericarditis Hospitalization
|
1847 |
+
Excess Myo/Pericarditis Cases
|
1848 |
+
Prevented COVID-19 Deaths
|
1849 |
+
Prevented COVID-19 ICUs
|
1850 |
+
Prevented COVID-19 Hospitalizations
|
1851 |
+
16,844
|
1852 |
+
Prevented COVID-19 Cases
|
1853 |
+
311
|
1854 |
+
200
|
1855 |
+
Prevented COVID-19 Deaths
|
1856 |
+
Prevented COVID-19 ICUs
|
1857 |
+
912
|
1858 |
+
Prevented COVID-19 Hospitalizations
|
1859 |
+
Prevented COVID-19 Cases 25,451
|
1860 |
+
100
|
1861 |
+
16-17 yo
|
1862 |
+
61
|
1863 |
+
18-24 yo
|
1864 |
+
9 I
|
1865 |
+
o
|
1866 |
+
74 I
|
1867 |
+
100
|
1868 |
+
200
|
1869 |
+
300
|
1870 |
+
1 36
|
1871 |
+
1 36
|
1872 |
+
100
|
1873 |
+
Excess My/Pericarditis Deaths
|
1874 |
+
Excess Myo/Pericarditis Hospitalization
|
1875 |
+
Excess Myo/Pericarditis Cases
|
1876 |
+
300
|
1877 |
+
Excess Myo/Pericarditis Deaths
|
1878 |
+
Excess Myo/Pericarditis Hospitalization
|
1879 |
+
Excess Myo/Pericarditis Cases
|
1880 |
+
400
|
1881 |
+
300
|
1882 |
+
200
|
1883 |
+
100 200
|
1884 |
+
300
|
1885 |
+
400
|
1886 |
+
500
|
1887 |
+
25-29 yo
|
1888 |
+
Prevented COVID-19 Deaths
|
1889 |
+
Excess Myo/Pericarditis Deaths
|
1890 |
+
Prevented COVID-19 ICUs
|
1891 |
+
1,057
|
1892 |
+
Prevented COVID-19 Hospitalizations
|
1893 |
+
25,913
|
1894 |
+
Prevented COVID.19 Cases
|
1895 |
+
Excess Myo/Pericarditis Hospitalizatior
|
1896 |
+
Excess Myo/Pericarditis Cases
|
1897 |
+
400
|
1898 |
+
300
|
1899 |
+
200
|
1900 |
+
100
|
1901 |
+
100
|
1902 |
+
200
|
1903 |
+
300
|
1904 |
+
400
|
1905 |
+
500
|
1906 |
+
Figure $9: Results of Scenario 6 for the female population
|
1907 |
+
|
1908 |
+
Page 38 - Hong Yang - 125742/0
|
1909 |
+
BENEFITS
|
1910 |
+
Prevented COVID-19 Deaths
|
1911 |
+
Prevented COVID-19 ICUS s68
|
1912 |
+
Prevented COVID-19 Hospitalization‹
|
1913 |
+
97,136
|
1914 |
+
Prevented COVID-19 Cases
|
1915 |
+
12-15 yo
|
1916 |
+
RISKS
|
1917 |
+
Excess Myo/Pericarditis Deaths
|
1918 |
+
Excess Myo/Pericarditis Hospitalizations
|
1919 |
+
excess ivorrencarcus cases
|
1920 |
+
Prevented COVID-19 Death:
|
1921 |
+
Prevented COVID-19 CUs
|
1922 |
+
Prevented COVID-19 Hospitalizations
|
1923 |
+
151,080
|
1924 |
+
Provented COVID.19 Cases
|
1925 |
+
Prevented COVID-19 Deaths
|
1926 |
+
Provented COVID.19 ICI
|
1927 |
+
Prevented COVID-19 Hospitalizations 3,346
|
1928 |
+
214,18
|
1929 |
+
Prevented COVID-19 Cases
|
1930 |
+
400
|
1931 |
+
Prevented COVID.19 Deaths
|
1932 |
+
Prevented cOVID-19ICUS
|
1933 |
+
Prevented COVID-19 Hospitalizations
|
1934 |
+
Prevented COVID-19 Cases
|
1935 |
+
225,807,
|
1936 |
+
400
|
1937 |
+
300
|
1938 |
+
300
|
1939 |
+
200
|
1940 |
+
200
|
1941 |
+
200
|
1942 |
+
300
|
1943 |
+
200
|
1944 |
+
16-17 yo
|
1945 |
+
18-24 yo
|
1946 |
+
100
|
1947 |
+
25-29 yo
|
1948 |
+
106
|
1949 |
+
200
|
1950 |
+
300
|
1951 |
+
| 116
|
1952 |
+
116
|
1953 |
+
100
|
1954 |
+
200
|
1955 |
+
94
|
1956 |
+
100
|
1957 |
+
200
|
1958 |
+
1 26
|
1959 |
+
300
|
1960 |
+
300
|
1961 |
+
100
|
1962 |
+
100
|
1963 |
+
_ 200 300
|
1964 |
+
400
|
1965 |
+
400
|
1966 |
+
sOn
|
1967 |
+
Excess Myo/Pericarditis Deaths
|
1968 |
+
Excess Myo/Pericarditis Hospitalizations
|
1969 |
+
Excess Myo/Pericarditis Cases
|
1970 |
+
500
|
1971 |
+
Excess Mo/Pericarditis Deaths
|
1972 |
+
Excess My/Pericarditis Hospitalizations
|
1973 |
+
Excess Myo/Pericarditis Cases
|
1974 |
+
500
|
1975 |
+
Excess Myo/Pericarditis Deaths
|
1976 |
+
Excess My/Pericarditis Hospitalizations
|
1977 |
+
Excess Myo/Pericarditis Cases
|
1978 |
+
400
|
1979 |
+
500
|
1980 |
+
Figure S10: Results of Scenario 7 for combined male and female populations
|
1981 |
+
|
1982 |
+
Page 39 - Hong Yang - 125742/0
|
1983 |
+
BENEFITS
|
1984 |
+
Prevented COVID-19 Deaths
|
1985 |
+
Prevented COVID-19 ICUs
|
1986 |
+
Prevented COVID-19 Hospitalizations
|
1987 |
+
435
|
1988 |
+
Prevented COVID-19 Cases
|
1989 |
+
12-15 yo
|
1990 |
+
RISKS
|
1991 |
+
Excess Mvo Pericarditis Death:
|
1992 |
+
Excess Myo/Pericarditis Hospitalizations
|
1993 |
+
Excess Myo/Pericarditis Cases
|
1994 |
+
16-17 yo
|
1995 |
+
Prevented COVID-19 Deaths
|
1996 |
+
Prevented COVID.19 ICUs
|
1997 |
+
Prevented COVID-19 Hospitalizations
|
1998 |
+
Prevented COVID-19 Cases
|
1999 |
+
506
|
2000 |
+
138
|
2001 |
+
166
|
2002 |
+
200
|
2003 |
+
Excess Myo/Pericarditis Deaths
|
2004 |
+
Excess Myo/Pericarditis Hospitalizations
|
2005 |
+
Excess Myo/Pericarditis Cases
|
2006 |
+
Droventer COVID 1o Desthe
|
2007 |
+
Provented COVID.19 ICIe
|
2008 |
+
Prevented COVID-19 Hospitalizations
|
2009 |
+
Prevented COVID-19 Case
|
2010 |
+
Prevented COVID-19 Deaths
|
2011 |
+
Prevented COVID-19 ICUs
|
2012 |
+
Prevented COVID-19 Hospitalizations
|
2013 |
+
Drovented COvID 1O caeor
|
2014 |
+
300
|
2015 |
+
2774
|
2016 |
+
200
|
2017 |
+
309
|
2018 |
+
196
|
2019 |
+
100
|
2020 |
+
100
|
2021 |
+
200
|
2022 |
+
18-24 vo
|
2023 |
+
100
|
2024 |
+
25-29 Yo
|
2025 |
+
30
|
2026 |
+
131
|
2027 |
+
131
|
2028 |
+
200
|
2029 |
+
400
|
2030 |
+
500
|
2031 |
+
400
|
2032 |
+
200
|
2033 |
+
100
|
2034 |
+
Excess Mo/Pericarditis Death:
|
2035 |
+
Excess Myo/Pericarditis Hospitalizations
|
2036 |
+
Excess Myo/Pericarditis Cases
|
2037 |
+
Excess Myo/Pericarditis Deaths
|
2038 |
+
Excess Myo/Pericarditis Hospitalizations
|
2039 |
+
Excess Myo/Pericarditis Cases
|
2040 |
+
300
|
2041 |
+
400
|
2042 |
+
500
|
2043 |
+
Figure S11: Results of Scenario 7 for the male population
|
2044 |
+
|
2045 |
+
Page 40 - Hong Yang - 125742/0
|
2046 |
+
BENEFITS
|
2047 |
+
Prevented COVID-19 Deaths
|
2048 |
+
Prevented COVID-19 ICUs
|
2049 |
+
Prevented COVID.19 Hoenitalizations
|
2050 |
+
104.837
|
2051 |
+
Prevented COVID-19 Cases
|
2052 |
+
12-15 vo
|
2053 |
+
300
|
2054 |
+
169
|
2055 |
+
200
|
2056 |
+
31
|
2057 |
+
100
|
2058 |
+
200
|
2059 |
+
300
|
2060 |
+
16-17 yo
|
2061 |
+
Prevented COVID-19 Deaths
|
2062 |
+
Prevented COVID-19 ICUs
|
2063 |
+
1.245
|
2064 |
+
Prevented COVID.19 Heenitalizations
|
2065 |
+
Prevented COVID-19 Cases
|
2066 |
+
400
|
2067 |
+
Prevented COVID-19 Deaths
|
2068 |
+
Prevented COVID-19 ICUs
|
2069 |
+
3,649
|
2070 |
+
Prevented COVID-19 Hospitalizations
|
2071 |
+
Prevented COVID.19 Cases
|
2072 |
+
300
|
2073 |
+
296
|
2074 |
+
300
|
2075 |
+
200
|
2076 |
+
100
|
2077 |
+
200
|
2078 |
+
300
|
2079 |
+
18-24 yo
|
2080 |
+
о
|
2081 |
+
RISKS
|
2082 |
+
400
|
2083 |
+
400
|
2084 |
+
Excess Myo/Pericarditis Deaths
|
2085 |
+
Excess Myo/Pericarditis Hospitalizations
|
2086 |
+
Excess Myo/Pericarditis Cases
|
2087 |
+
sOC
|
2088 |
+
Excess Myo/Pericarditis Deaths
|
2089 |
+
Excess Myo/Pericarditis Hospitalizations
|
2090 |
+
Excess Myo/Pericarditis Cases
|
2091 |
+
500
|
2092 |
+
Excess Myo/Pericarditis Deaths
|
2093 |
+
Excess My/Pericarditis Hospitalizations
|
2094 |
+
Excess Myo/Pericarditis Cases
|
2095 |
+
400
|
2096 |
+
200
|
2097 |
+
100
|
2098 |
+
200
|
2099 |
+
300
|
2100 |
+
400
|
2101 |
+
25-29 yo
|
2102 |
+
Prevented COVID.19 Deaths
|
2103 |
+
Prevented COVID-19 ICUs
|
2104 |
+
Prevented COVID.19 Hospitalizations
|
2105 |
+
Prevented COVID-19 Cases 259,13.
|
2106 |
+
Excess Myo/Pericarditis Deaths
|
2107 |
+
Excess Myo/Pericarditis Hospitalizations
|
2108 |
+
Excess Myo/Pericarditis Cases
|
2109 |
+
200
|
2110 |
+
100
|
2111 |
+
100
|
2112 |
+
400
|
2113 |
+
500
|
2114 |
+
Figure S12: Results of Scenario 7 for the female population
|
2115 |
+
|
docs/Bioresearch Monitoring Discipline Review Memo, August 13, 2021 - COMIRNATY.txt
ADDED
@@ -0,0 +1,97 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FDA U.S. FOOD & DRUG
|
2 |
+
ADMINISTRATION
|
3 |
+
DATE:
|
4 |
+
August 13, 2021
|
5 |
+
FROM:
|
6 |
+
Haecin Chun, MS, Bioresearch Monitoring Branch (BMB)
|
7 |
+
Division of Inspections and Surveillance (DIS
|
8 |
+
Office of Compliance and Biologics Quality (OCBQ)
|
9 |
+
THROUGH: Dennis Cato, Chief BMB THROUGH: Carrie Mampilly, MPH, Director DIS THROUGH: Mary A. Malarkey, Director OCBQ
|
10 |
+
TO:
|
11 |
+
Ramachandra Naik, PhD, Chair Susan Wollersheim, MD, Clinical Reviewer
|
12 |
+
CAPT Ann Schwartz, MD, Clinical Reviewer
|
13 |
+
CAPT Michael Smith, PhD, RPM Laura Gottschalk, PhD, RPM
|
14 |
+
SUBJECT: Bioresearch Monitoring (BIMO) Discipline Review Memo
|
15 |
+
SPONSOR: BioNTech Manufacturing GmbH
|
16 |
+
PRODUCT: COVID-19 Vaccine, mRNA (COMIRNATY) BLA: ST 125742/0
|
17 |
+
FINAL SUMMARY STATEMENT
|
18 |
+
BIMO inspection assignments were issued for a total of nine (9) clinical study sites that participated in the conduct of Study Protocol C4591001. Three (3) of these inspection assignments focused on clinical study sites that enrolled the pediatric population and six (6) of the study sites enrolled the adult population. The inspections did not reveal findings that impact the Biologics License Application (BLA).
|
19 |
+
BACKGROUND
|
20 |
+
On February 4, 2020, the Secretary of the Department of Health and Human Services (HHS) determined that there is a public health emergency (PHE) involving to a novel coronavirus named SARS-CoV-2 that causes Coronavirus Disease 2019 (COVID-19). On March 27, 2020, the Secretary of HHS issued a Notice of Emergency Use Authorization (EUA)
|
21 |
+
Declaration pursuant to Section 564 of the Federal Food, Drug, and Cosmetic Act (the FD&C
|
22 |
+
Act or the Act).
|
23 |
+
www.fda.gov
|
24 |
+
|
25 |
+
BLA ST 125742/0 BioNTech/Pfizer COVID-19 Vaccine, mRNA (COMIRNATY)
|
26 |
+
Page 2 of 4
|
27 |
+
In response to the PHE, BIMO reviewers proactively performed a review of the sponsor's investigational new drug application (IND 19736) and issued the necessary BIMO inspections to review the study conduct of Protocol C4591001, "A Phase 1/2/3 Study to Evaluate the Safety, Tolerability, Immunogenicity, and Efficacy of SARS-COV-2 RNA Vaccine Candidates Against COVID-19 in Healthy Individuals."
|
28 |
+
Protocol C4591001 was a multi-center study conducted at a total of 153 clinical sites: 131 study sites in the United States and 22 sites outside of the United States. Due to the COVID-19 pandemic travel restrictions, only the domestic sites were considered for an on-site BIMO inspection. Initially, six (6) study sites were inspected, before FDA issued the original Emergency Use Authorization for individuals 16 years of age and older. Subsequently, three
|
29 |
+
(3) additional sites were inspected before FDA authorized use of the vaccine in those 12 and older. All of the study sites were selected based on subiect enrollment, previous inspectional history, and other information submitted in IND 19736.
|
30 |
+
The inspections were conducted in accordance with FDA's Compliance Program 7348.811, Inspection Program for Clinical Investigators, focusing primarily on the study conduct, human subject protection and compliance with related FDA regulations. The data integrity and verification portion of the BIMO inspections were limited because the study was ongoing, and the data required for verification and comparison were not vet available to the IND. The table below summarizes the domestic study site information and the outcome of each BIMO inspection:
|
31 |
+
Site ID
|
32 |
+
1007
|
33 |
+
1009
|
34 |
+
1044
|
35 |
+
1056
|
36 |
+
1109
|
37 |
+
1118
|
38 |
+
1125
|
39 |
+
1133
|
40 |
+
1149
|
41 |
+
Site Location
|
42 |
+
Cincinnati Children's Hospital Medical Center
|
43 |
+
Cincinnati Center for Clinical Research
|
44 |
+
Cincinnati, OH
|
45 |
+
J. Lewis Research Inc./ Foothill Family Clinic
|
46 |
+
South, Salt Lake City, UT
|
47 |
+
Virginia Research Center, LLC.
|
48 |
+
Midlothian, VA
|
49 |
+
Indago Research and Health Center, Inc.
|
50 |
+
Hialeah, FL
|
51 |
+
Deland Clinical Research Unit
|
52 |
+
DeLand, FL
|
53 |
+
Meridian Clinical Research, LLC.
|
54 |
+
Binghamton, NY
|
55 |
+
Meridian Clinical Research, LLC
|
56 |
+
Norfolk, NE
|
57 |
+
Research Centers of America
|
58 |
+
Hollywood, FL
|
59 |
+
Collaborative Neuroscience Research, LLC at two locations: Long Beach & Garden
|
60 |
+
Grove, CA
|
61 |
+
Form FDA
|
62 |
+
483 Issued
|
63 |
+
No
|
64 |
+
No
|
65 |
+
No
|
66 |
+
No
|
67 |
+
No
|
68 |
+
No
|
69 |
+
No
|
70 |
+
No
|
71 |
+
Final
|
72 |
+
Classification
|
73 |
+
No Action Indicated
|
74 |
+
(NAI)
|
75 |
+
NAI
|
76 |
+
NAI
|
77 |
+
NAI
|
78 |
+
NAI
|
79 |
+
NAI
|
80 |
+
NAI
|
81 |
+
NAI
|
82 |
+
No
|
83 |
+
NAI
|
84 |
+
|
85 |
+
BLA ST 125742/0 BioNTech/Pfizer COVID-19 Vaccine, mRNA (COMIRNATY)
|
86 |
+
Page 3 of 4
|
87 |
+
SIGNIFICANT INSPECTIONAL FINDINGS
|
88 |
+
No significant inspectional findings were noted.
|
89 |
+
SPONSOR/MONITORING ISSUES
|
90 |
+
No significant sponsor or monitoring issues were noted at the sites that were inspected.
|
91 |
+
FINANCIAL DISCLOSURE
|
92 |
+
The Clinical Investigator Compliance Program directs the FDA investigator to ask the clinical investigator if and when he/she disclosed information about his/her financial interests to the sponsor and/or interests of any sub-investigators, spouses) and dependent children, and if and when the information was updated. The information submitted to the BLA was verified for each of the inspected clinical sites.
|
93 |
+
ADMINISTRATIVE FOLLOW-UP
|
94 |
+
Should you have any questions or comments about the contents of this memo or any aspect of Bioresearch Monitoring, please contact me at 240-402-8038.
|
95 |
+
Haecin Chun
|
96 |
+
Consumer Safety Officer
|
97 |
+
|
docs/CBER CMC BLA Review Memo - COMIRNATY.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
docs/CBER Sentinel Program Sufficiency Memo - COMIRNATY.txt
ADDED
@@ -0,0 +1,219 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
CBER Sentinel Program Sufficiency Memo: BNT162b2 (COVID- 19 Vaccine)/STN 125742
|
2 |
+
FDA U.S. FOOD & DRUG
|
3 |
+
ADMINISTRATION
|
4 |
+
Department of Health and Human Services
|
5 |
+
Food and Drug Administration
|
6 |
+
Center for Biologics Evaluation and Research
|
7 |
+
CBER SENTINEL PROGRAM SUFFICIENCY MEMORANDUM
|
8 |
+
From:
|
9 |
+
Through:
|
10 |
+
Subiect:
|
11 |
+
Product:
|
12 |
+
Sponsor:
|
13 |
+
STN:
|
14 |
+
Proposed
|
15 |
+
Indication:
|
16 |
+
Joyce Obidi
|
17 |
+
Health Scientist, CBER Surveillance Program
|
18 |
+
Office of Biostatistics and Epidemiology (OBE)
|
19 |
+
Hui-Lee Wong
|
20 |
+
Associate Director, CBER Surveillance Program, OBE
|
21 |
+
CBER Sentinel Program Sufficiency Assessment
|
22 |
+
COMIRNATY; BNT162b2 (Pfizer-BioNTech COVID-19 Vaccine)
|
23 |
+
Pfizer
|
24 |
+
125742/0
|
25 |
+
Active immunization to prevent COVID-19 disease caused by SARS-
|
26 |
+
CoV-2 in individuals >16 years of age.
|
27 |
+
Approval Type:
|
28 |
+
A Priority
|
29 |
+
" Standard review
|
30 |
+
Submission Date: May 18, 2021
|
31 |
+
Action Due Date:
|
32 |
+
January 16, 2022
|
33 |
+
Last Updated on January 29, 2019
|
34 |
+
1
|
35 |
+
|
36 |
+
CBER Sentinel Program Sufficiency Memo: BNT16262 (COVID-19 Vaccine/STN 125742
|
37 |
+
1.
|
38 |
+
2.
|
39 |
+
Objectives/Scope:
|
40 |
+
This memo reviews the capability and sufficiency of the CBER active post-market risk identification and analysis system referred to as the CBER Sentinel Program to evaluate the serious risk for myocarditis and pericarditis following receipt of BNT1622, a COVID-19 Vaccine indicated for active immunization to prevent COVID-19 disease caused by SARS-CoV-2 in individuals >16 years of age in lieu of a safety post-market requirement (PMR) study under FDAAA'. The CBER Sentinel Program covers activities conducted through the contract with the Harvard Pilgrim Health Care Institute, the current and future contracts through the Biologics Effectiveness and Safety (BEST)
|
41 |
+
Initiative, and the interagency agreement with the Centers for Medicare and Medicaid (CMS). Please see the STN 125742/0 OBE/Division of Epidemiology (DE) review of the Pharmacovigilance Plan (PVP) for background on the serious risks of myocarditis and pericarditis, and subclinical myocarditis. Post-authorization safety data identified serious risks for myocarditis and pericarditis after COMIRNATY, with increased risk in males under 30 years of age, particularly following the second dose, and onset of symptoms within 7 days following vaccination. At the end of May 2021 CDC issued clinical considerations regarding myocarditis and pericarditis after receipt of mRNA COVID-19 vaccines among adolescents and young adults (https://www.cdc.gov/vaccines/covid-19/clinical-considerations/myocarditis.html). The topic was presented and discussed at the FDA Vaccines and Related Biological Products Advisory Committee (VRBPAC) meeting on June 10, 2021 and the Advisory Committee for Immunization Practices (ACIP) meeting on June 23, 2021. The Emergency Use Authorization (EUA) Fact Sheet was revised on June 25, 2021 to add a Warning for myocarditis and pericarditis. A postmarketing observational safety study (ies) is needed to assess myocarditis and pericarditis following administration of COMIRNATY (BNT16262) to:
|
42 |
+
a. Quantify the magnitude of risk by age, sex, and dose
|
43 |
+
b. Follow up cases for recovery status and long-term sequelae
|
44 |
+
c. Characterize subclinical cases of myocarditis
|
45 |
+
CBER Sentinel Program Sufficiency Assessment:
|
46 |
+
Determination of the sufficiency of the CBER Sentinel Program to further characterize the serious risk of myocarditis and pericarditis with BNT16262 was based on the following factors:
|
47 |
+
' Under section 901 of the Food and Drug Administration Amendments Act (FDAAA), "The Secretary may not require the responsible person to conduct a study under this paragraph, unless the Secretary makes a determination that the reports under subsection (k)(1) and the active postmarket risk identification and analvsis system as available under subsection (k)(3) will not be sufficient to meet the purposes set forth in subparagraph (B)."NOTE: The active post-market risk identification and analysis system under subsection (k)(3) refers to the Sentinel program.
|
48 |
+
2 ISBT 128 is a global standard for the safe identification, accurate labeling, and efficient information transfer of medical products of human origin (including blood, cells, tissues, milk, and organ products) across disparate national and international health care systems. https://www.iccbba.org/isbt-128-basics
|
49 |
+
Last Updated on January 29, 2019
|
50 |
+
2
|
51 |
+
|
52 |
+
CBER Sentinel Program Sufficiency Memo: BNT162b2 (COVID- 19 Vaccine)/STN 125742
|
53 |
+
2.1
|
54 |
+
2.1 Identification of exposure to BNT1622
|
55 |
+
2.2 Identification of the appropriate study population: Patients > 16 years of age
|
56 |
+
2.3 Characterization of occurrence of myocarditis and pericarditis, and subclinical myocarditis, with BNT16262
|
57 |
+
2.4 Identification of exposure to comparator product (when applicable)
|
58 |
+
Assessment for identification of exposure to BNT162b2
|
59 |
+
2.1.1. Is the CBER Sentinel Program able to identify the product (exposure) of interest?
|
60 |
+
Please answer each question i - xi, including sub-questions.
|
61 |
+
Is this the first or the only FDA-approved product for the indication?
|
62 |
+
Can the exposure be identified using a billing or reimbursement coding system? If yes, check all that apply: & CPT & HCPCS &
|
63 |
+
& NDC DICD • Other: [Coding system]
|
64 |
+
iii.
|
65 |
+
Is the ISBT 128 coding system? needed for the product identification?
|
66 |
+
Can the reimbursement code of the product identify the brand
|
67 |
+
iv.
|
68 |
+
name?
|
69 |
+
Is a history of uptake for previously approved products for the
|
70 |
+
V. same indication needed? If ves, list all products:
|
71 |
+
Is medical chart review needed to identify or validate the
|
72 |
+
vi.
|
73 |
+
identification of this product?
|
74 |
+
vii.
|
75 |
+
Are claims data sources needed for exposure identification?
|
76 |
+
Are electronic health record (HR) data sources needed for
|
77 |
+
viii.
|
78 |
+
exposure identification?
|
79 |
+
Are any other health record type data sources needed for
|
80 |
+
ix.
|
81 |
+
exposure identification? If yes, all health record types needed:
|
82 |
+
[e.g., Registries, any other health records]
|
83 |
+
X.
|
84 |
+
Is product lot number needed for identification of this product? O Is there a care setting of interest required for identification of this product? If yes, check all that apply:
|
85 |
+
Yes No
|
86 |
+
xi.
|
87 |
+
• Inpatient I Outpatient I Emergency Room I Other:
|
88 |
+
Hospitalization
|
89 |
+
2.1.2. Summary for product exposure identification
|
90 |
+
[
|
91 |
+
区
|
92 |
+
区
|
93 |
+
区
|
94 |
+
Last Updated on January 29, 2019
|
95 |
+
3
|
96 |
+
|
97 |
+
CBER Sentinel Program Sufficiency Memo: BNT16262 (COVID-19 Vaccine/STN 125742
|
98 |
+
2.2.
|
99 |
+
& Available data sources in the CBER Sentinel Program are sufficient to identify the exposure of the product BNT162b2 due to reasons identified in 2.1.1.i. Billing codes for BNT16262 allows for clear ascertainment of exposure to the product.
|
100 |
+
• Available data sources in the CBER Sentinel Program are NOT sufficient to identify the exposure of the product [name] due to reasons identified in [list all bullets from
|
101 |
+
2.1.1.i. 2.1.1.xi. that support insufficiency].
|
102 |
+
Assessment for identification of the appropriate study population: Patients ≥ 16 years of age
|
103 |
+
2.2.1. Is the CBER Sentinel Program able to identify the study population of interest?
|
104 |
+
Please provide an answer for each question i - vi, including sub-
|
105 |
+
Yes No
|
106 |
+
questions.
|
107 |
+
Does age need to be identified? If yes, list the inclusion and exclusion criteria.. Check all that apply for the level of granularity in I Days O Months Years
|
108 |
+
Does sex need to be identified? If yes, list the inclusion [List ii. the sex to be included] and exclusion criteria [List the sex to
|
109 |
+
be excluded].
|
110 |
+
Does race need to be identified? If yes, list the inclusion [List iii. race to be included] and exclusion criteria [List race to be
|
111 |
+
excluded]
|
112 |
+
Can the study population be identified in the data sources iv. required for the exposure and outcome identification?
|
113 |
+
Was this population previously identified within the CBER
|
114 |
+
V. Sentinel Program activities? vi.
|
115 |
+
Is there a requirement for linking mothers to their newborns in
|
116 |
+
the data sources?
|
117 |
+
2.2.2. Summary for identification of study population
|
118 |
+
区
|
119 |
+
& Available data sources in the CBER Sentinel Program are sufficient to identify the study population of interest, patients > 16 years of age, due to reasons identified in
|
120 |
+
2.2.1. - 2.2.1.vi. This study population of interest has been identified in the data sources required of exposure (BNT162b2) and outcome (myocarditis/pericarditis).
|
121 |
+
• Available data sources in the CBER Sentinel Program are NOT sufficient to identify the study population of interest due to reasons identified in list all bullets fron
|
122 |
+
2.2.1.i. -2.2.1.vi. that support insufficiency]
|
123 |
+
Last Updated on January 29, 2019
|
124 |
+
4
|
125 |
+
|
126 |
+
CBER Sentinel Program Sufficiency Memo: BNT16262 (COVID-19 Vaccine/STN 125742
|
127 |
+
2.3
|
128 |
+
Assessment for characterization of occurrence of myocarditis and pericarditis, and subclinical mvocarditis
|
129 |
+
2.3.1 Is the CBER Sentinel Program able to identify the outcome(s) of interest?
|
130 |
+
Please provide an answer for each question i - xi, including sub-
|
131 |
+
Yes No
|
132 |
+
questions.
|
133 |
+
Can the outcome of interest be identified using a billing or
|
134 |
+
i. reimbursement coding system? If yes, check all that apply: dICD X DCPT L Other: Medical Record Review
|
135 |
+
Are there surrogate data elements or biomarkers that can assist to identify the outcome of interest? If yes, check all that apply:
|
136 |
+
ii.
|
137 |
+
E Laboratory Test Results L Prescription drug I Order oflab o test L Order of other diagnostic modalities L Other: [Data
|
138 |
+
element/Biomarker]
|
139 |
+
Are there specific care settings in which this outcome is
|
140 |
+
iii.
|
141 |
+
identified? If yes, check all that apply: Inpatient I Outpatient A Emergency Room L Other: Hospitalization
|
142 |
+
Was this outcome previously identified within the CBER Sentinel Program activities? If yes, in what population was it used? It was
|
143 |
+
iv.
|
144 |
+
used in a similar population of Medicare beneficiaries 65y and older.
|
145 |
+
Is there a validated and acceptable algorithm available in the
|
146 |
+
V. literature to identify the outcome of interest? If yes, list the PP [PPV and describe the population in which it was validated:
|
147 |
+
Is a minimum follow-up time needed to identify the outcome of
|
148 |
+
vi.
|
149 |
+
interest? Ifyes, what is the required follow-up period? 3-6 months
|
150 |
+
Is medical chart review required to identify or validate the
|
151 |
+
vii.
|
152 |
+
identification of the outcome?
|
153 |
+
Is the prevalence of the outcome known? If yes, list background
|
154 |
+
viii. ix.
|
155 |
+
rates. 0.95-2/16 per 100,000 PY in Gubernot 2021
|
156 |
+
Are claims data sources needed for outcome characterization?
|
157 |
+
Are electronic health record (EH) data sources needed for
|
158 |
+
X. outcome characterization?
|
159 |
+
Are any other health record type data sources needed for outcome
|
160 |
+
xi.
|
161 |
+
characterization? If yes, all health record types needed: Registries
|
162 |
+
Г
|
163 |
+
Г
|
164 |
+
2.3.2 Summary of outcome characterization
|
165 |
+
Last Updated on January 29, 2019
|
166 |
+
5
|
167 |
+
|
168 |
+
CBER Sentinel Program Sufficiency Memo: BNT16262 (COVID-19 Vaccine/STN 125742
|
169 |
+
& Available data sources in the CBER Sentinel Program are NOT sufficient to identify the outcomes of myocarditis and pericarditis due to reasons identified in 2.3.1.vi. -2.3.1.viii.
|
170 |
+
Based on the prevalence of background rates estimated in the CBER Sentinel data sources and the number of observed myocarditis/pericarditis events in the CBER Sentinel Program ongoing near-real time surveillance, the CBER Sentinel data sources are currently not sufficiently powered to assess the magnitude of risk for the 12-30 years old that has been reported in VAERS in an epidemiology study (e.g., self-controlled analyses). CBER Sentinel will continue to monitor these safety outcomes. In order to follow up cases for recovery status and long-term sequelae, a minimum follow up time of 3-6 months is required. CBER Sentinel data sources do not have sufficient longitudinal data on patients to conduct this type of analysis. Additionally, a study of subclinical myocarditis using CBER Sentinel data sources is not feasible because of the absence of a definition of subclinical myocarditis and unknown background incidence of troponin abnormalities.
|
171 |
+
2.4. Assessment for identification of exposure to comparator product (when applicable):
|
172 |
+
NOT APPLICABLE
|
173 |
+
2.4.1. Is the CBER Sentinel Program able to identify the required comparator product?
|
174 |
+
Respond to the questions below, if applicable.
|
175 |
+
Please provide an answer for each question i - xi, including sub-
|
176 |
+
Yes No
|
177 |
+
questions
|
178 |
+
iv.
|
179 |
+
V.
|
180 |
+
vi.
|
181 |
+
vii.
|
182 |
+
viii.
|
183 |
+
Is a comparator product needed for the assessment? If no, skip to section III for Recommendation. If yes, list all products:
|
184 |
+
Can the comparator product be identified using a billing reimbursement code? If yes, check all that apply: DCPT DHCPCS ONDC DICD DOther: [Billing reimbursement code]
|
185 |
+
Can the comparator product be exclusively identified using the billing reimbursement codes?
|
186 |
+
Is the ISBT 128 coding system? needed for the comparator product identification?
|
187 |
+
Can the reimbursement code of the comparator product identify the brand name?
|
188 |
+
Is medical chart review needed to identify or validate the identification of this comparator product?
|
189 |
+
Are claims data sources needed for exposure identification of the comparator product?
|
190 |
+
Are electronic health record (EHR) data sources needed for exposure identification of the comparator product?
|
191 |
+
[
|
192 |
+
Г
|
193 |
+
Last Updated on January 29, 2019
|
194 |
+
6
|
195 |
+
|
196 |
+
CBER Sentinel Program Sufficiency Memo: BNT162b2 (COVID- 19 Vaccine)/STN 125742
|
197 |
+
Please provide an answer for each question i - xi, including sub-questions
|
198 |
+
ix.
|
199 |
+
X.
|
200 |
+
xi.
|
201 |
+
Are any other health record type data sources needed for exposure identification of the comparator product? If yes, list all health record types needed: [e.g., Registries, any other health records]
|
202 |
+
Is product lot number needed for identification of this comparator product?
|
203 |
+
Is there a care setting of interest for identification of this comparator product? If yes, check all that apply: D Inpatient I Outpatient L Emergency Room L Other:
|
204 |
+
Hospitalization
|
205 |
+
Yes No
|
206 |
+
L
|
207 |
+
[
|
208 |
+
[
|
209 |
+
[
|
210 |
+
2.4.2. Summary for comparator exposure identification
|
211 |
+
• Available data sources in the CBER Sentinel Program are sufficient to identify the comparator product due to reasons identified in list all bullets from 2.4.1.i._-2.4.1.xi. that support sufficiency].
|
212 |
+
" Available data sources in the CBER Sentinel Program are NOT sufficient to identify
|
213 |
+
the comparator product due to reasons identified in [list all bullets from
|
214 |
+
2.4.1.i. 2.4. 1.xi. that support insufficiency].
|
215 |
+
3. Recommendation:
|
216 |
+
• The CBER Sentinel Program is sufficient to assess the serious risk of [describe] associated with [product] at this time. [Summarize all bullets 2. 1. -2.4. that support sufficiency]
|
217 |
+
The CBER Sentinel Program is NOT sufficient to assess the serious risks of myocarditis and pericarditis, and subclinical myocarditis associated with COMIRNATY (BNT16262) in lieu of PMR safety studies under FDAAA. At the time of BLA approval, the data sources in the CBER Sentinel Program are not sufficient to identify the outcomes due to lack of sufficient power to assess the magnitude of risk in patients 12-30 years of age. In addition, CBER Sentinel Program is not sufficient to follow up cases for recovery status and long-term sequelae, or for identification and characterization of subclinical myocarditis cases.
|
218 |
+
Last Updated on January 29, 2019
|
219 |
+
|
docs/CMC Review Memo, August 21, 2021 - COMIRNATY.txt
ADDED
@@ -0,0 +1,1285 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FDA U.S. FOOD & DRUG
|
2 |
+
ADMINISTRATION
|
3 |
+
CMC REVIEW MEMORANDUM
|
4 |
+
Date:
|
5 |
+
AUGUST 21, 2021
|
6 |
+
To:
|
7 |
+
The Biologics License Application (BLA) File ST 125742
|
8 |
+
From:
|
9 |
+
Xiao Wang, OVRR/DVP, CMC Product Reviewer
|
10 |
+
Through: Anissa Cheung, OVRR/DVP
|
11 |
+
Keith Peden, Lab Chief, OVRR/DVP
|
12 |
+
Robin Levis, Deputy Director, OVRR/DVP
|
13 |
+
Jerry Weir, Director, OVRR/DVP
|
14 |
+
СС:
|
15 |
+
Ramachandra Naik, Chair, OVRR/DVRPA
|
16 |
+
Capt. Michael Smith, RPM, OVRR/DVRPA
|
17 |
+
Laura Gottschalk, RPM, OVRR/DVRPA
|
18 |
+
Applicant: BioNTech Manufacturing GmbH (in partnership with Pfizer Inc.)
|
19 |
+
Subiect:
|
20 |
+
CMC Review of Original BLA STN 125742.0;
|
21 |
+
Product:
|
22 |
+
Pfizer-BioNTech COVID-19 Vaccine; Human Coronavirus RNA Vaccine for the Prevention of Coronavirus Disease 2019 (COVID-19)
|
23 |
+
|
24 |
+
FDA U.S. FOOD & DRUG
|
25 |
+
ADMINISTRATION
|
26 |
+
The following abbreviations are used throughout the memorandum:
|
27 |
+
AMTE
|
28 |
+
ATM
|
29 |
+
BLA
|
30 |
+
BNT (b) (4)
|
31 |
+
CMC
|
32 |
+
COA
|
33 |
+
СРР
|
34 |
+
CQA
|
35 |
+
СТМ
|
36 |
+
dLIA
|
37 |
+
DS
|
38 |
+
DP
|
39 |
+
EUA (b) (4)
|
40 |
+
FC
|
41 |
+
GMP
|
42 |
+
IM
|
43 |
+
IPT-C
|
44 |
+
IPT-M
|
45 |
+
IR (b) (4)
|
46 |
+
(b) (4)
|
47 |
+
(b) (4)
|
48 |
+
LNP
|
49 |
+
LPQ
|
50 |
+
MCB
|
51 |
+
modRNA
|
52 |
+
NHP
|
53 |
+
PAI
|
54 |
+
PPQ
|
55 |
+
RBD
|
56 |
+
RH
|
57 |
+
RPH (b) (4)
|
58 |
+
(b) (4)
|
59 |
+
WCB
|
60 |
+
Analytical Method Transfer Exercise
|
61 |
+
Animal Trial Material
|
62 |
+
Biologics License Application
|
63 |
+
BioNTech Manufacturing GmbH
|
64 |
+
Chemistry, Manufacturing, and Control Certificate of Analysis Critical Process Parameter Critical Quality Attribute Clinical Trial Material (b) (4)
|
65 |
+
Direct Luminex Assay
|
66 |
+
Drug Substance
|
67 |
+
Drug Product
|
68 |
+
Emergency Use Authorization
|
69 |
+
Final Container
|
70 |
+
Good Manufacturing Practice
|
71 |
+
Intramuscular
|
72 |
+
In-process Tests for Control In-process Tests for Monitoring
|
73 |
+
Information Request
|
74 |
+
Lipid Nanoparticle
|
75 |
+
Laboratory Process Qualification
|
76 |
+
Master Cell Bank
|
77 |
+
Nucleoside-modified Messenger RNA
|
78 |
+
Nonhuman Primate
|
79 |
+
Pre-approval Inspection
|
80 |
+
Process Performance Qualification
|
81 |
+
Receptor Binding Domain
|
82 |
+
Relative Humidity
|
83 |
+
Relative Process History
|
84 |
+
Working Cell Bank
|
85 |
+
|
86 |
+
Table of Contents
|
87 |
+
1. Product Name/Proprietary Name/Product Type..
|
88 |
+
1
|
89 |
+
2. Submissions reviewed......
|
90 |
+
3. Executive Summary and Recommendation
|
91 |
+
2
|
92 |
+
4. BNT162b2 Drug Substance...........
|
93 |
+
4.1 General Description ...................
|
94 |
+
4.2 Manufacturers.
|
95 |
+
4.3 Control of Materials...
|
96 |
+
4.4 Description of Drug Substance Manufacturing Process and Process Controls... 11
|
97 |
+
4.5 Process Validation for Drug Substance Manufacturing..
|
98 |
+
4.6 DS Manufacturing Process Development ....
|
99 |
+
4.7 Impurity Profile of the Drug Substance.
|
100 |
+
4.8 Adventitious Agents Safety Evaluation
|
101 |
+
4.9 Characterization Studies on Drug Substance
|
102 |
+
4.10 Control of Drug Substance.......
|
103 |
+
4.11 Analytical Procedures for Drug Substance.
|
104 |
+
4.12 Validation of Analytical Procedures....
|
105 |
+
4.13 Reference Standards
|
106 |
+
4.14 Summary of Batch Analysis ......
|
107 |
+
4.15 Container-Closure System.......
|
108 |
+
4.16 Stability of Drug Substance......
|
109 |
+
5. BNT162b2 Drug Product....
|
110 |
+
5.1 General Description and Composition.
|
111 |
+
5.2 Manufacturers.
|
112 |
+
5.3 Control of Excipients .......
|
113 |
+
5.4 Description of Drug Product Manufacturing Process and Process Controls .......59
|
114 |
+
5.5 Process Validation .....
|
115 |
+
5.6 DP Manufacturing Process Development
|
116 |
+
5.7 Impurity Profile of the Drug Product.
|
117 |
+
5.8 Characterization Studies on Drug Product
|
118 |
+
5.9 Control of Drug Product
|
119 |
+
5.10 Analytical Procedures for Drug Product
|
120 |
+
..5
|
121 |
+
..... 5
|
122 |
+
.....5
|
123 |
+
....6
|
124 |
+
......... 15
|
125 |
+
...... 23
|
126 |
+
....26
|
127 |
+
....28
|
128 |
+
........ 28
|
129 |
+
....30
|
130 |
+
.....33
|
131 |
+
...... 35
|
132 |
+
...42
|
133 |
+
....43
|
134 |
+
.....43
|
135 |
+
....44
|
136 |
+
...49
|
137 |
+
.............. 49
|
138 |
+
............. 50
|
139 |
+
.............. 51
|
140 |
+
...... 65
|
141 |
+
............... 80
|
142 |
+
.....83
|
143 |
+
....84
|
144 |
+
...84
|
145 |
+
...90
|
146 |
+
|
147 |
+
5.11 Validation of Analytical Procedures.
|
148 |
+
....... 93
|
149 |
+
5.12 Reference Standards
|
150 |
+
........ 100
|
151 |
+
5.13 Summary of Batch Analysis ......
|
152 |
+
......... 101
|
153 |
+
5.14 Container-Closure System of the Final Container..
|
154 |
+
......... 101
|
155 |
+
5.15 Stability of Drug Product ..
|
156 |
+
...... 102
|
157 |
+
6. Other CMC-related Information Not Covered in Module 3
|
158 |
+
............ 108
|
159 |
+
7. Follow-up on Ongoing Issues Identified at the Time of EUA Request.................... 109
|
160 |
+
8. Pre-Approval Inspection
|
161 |
+
...112
|
162 |
+
9. Nonclinical Studies
|
163 |
+
....112
|
164 |
+
9.1 Nonclinical Pharmacology Studies.....
|
165 |
+
......... 112
|
166 |
+
9.2 Nonclinical Pharmacokinetics (PK) Evaluation.
|
167 |
+
.....115
|
168 |
+
10. Clinical Assays ....
|
169 |
+
........... 116
|
170 |
+
10.1 Diagnostic Assays Used to Support Clinical Efficacy Endpoints
|
171 |
+
….... 116
|
172 |
+
10.2 Immunogenicity Assays Used for Exploratory Immunogenicity Endpoints...
|
173 |
+
.... 118
|
174 |
+
iv
|
175 |
+
|
176 |
+
1. Product Name/Proprietary Name/Product Type
|
177 |
+
Product: Pfizer-BioNTech COVID-19 Vaccine
|
178 |
+
Proprietary name: COMIRNATY
|
179 |
+
Nonproprietary name: COVID-19 Vaccine, mRNA
|
180 |
+
Product Type: Human Coronavirus mRNA vaccine expressing SARS-CoV-2 spike glycoprotein (BioNTech code number BNT162b2, Pfizer code number PF-07302048); the mRNA (variant RBP020.2) is formulated with lipids ALC-0315, ALC-0159, DSPC, and cholesterol to form lipid nanoparticles (LNPs).
|
181 |
+
2. Submissions reviewed
|
182 |
+
Date Received
|
183 |
+
Submission
|
184 |
+
May 6, 2021
|
185 |
+
STN 125742/0
|
186 |
+
Contents/Comments
|
187 |
+
BLA Roll 1 submission including nonclinical pharmacology and pharmacokinetics studies and clinical assays
|
188 |
+
May 18, 2021
|
189 |
+
ST 125742/0.1
|
190 |
+
BLA Roll 2 submission encompassing all quality-related information in Module 3
|
191 |
+
July 9, 2021
|
192 |
+
ST 125742/0.10 Lot-release protocol template for the drug product
|
193 |
+
including the assay performed and acceptance criteria
|
194 |
+
July 15, 2021
|
195 |
+
ST 125742/0.11 Request for an exception to the 21 CFR 610.15(a) for
|
196 |
+
the vaccine as a preservative-free presentation
|
197 |
+
July 23, 2021
|
198 |
+
ST 125742/0.16 Response to DVP/DBSQC IR regarding the validation of RNA (b) (4) testing by (b) (4)
|
199 |
+
July 28, 2021
|
200 |
+
ST 125742/0.19 Response to DVP IR regarding multiple CMC-related
|
201 |
+
issues (DS and DP manufacturing process and testing, and clinical assays) and the categorical exclusion for an environment analvsis
|
202 |
+
August 2, 2021 ST 125742/0.27 CMC-related information described in the draft package insert
|
203 |
+
August 5, 2021 ST 125742/0.31 Response to DVP/Statistical IR regarding the validation studies for the (b) (4)
|
204 |
+
direct Luminex assay (dLIA)
|
205 |
+
for laG antibod quantification in human sera
|
206 |
+
August 6, 2021 ST 125742/0.33 Response to DVP IR regarding manufacturing process validation issues
|
207 |
+
August 6, 2021 ST 125742/0.34 Response to DVP/Statistical IR regarding the validation
|
208 |
+
report (VAL 100147509) for (b) (4)
|
209 |
+
of the
|
210 |
+
vaccine DP by (b) (4)
|
211 |
+
August 9, 2021 STN 125742/0.35 Response to DBSQC/DVP IR regarding validation of
|
212 |
+
the assav methods and lot release
|
213 |
+
August 9, 2021 ST 125742/0.36 Response to DMPQ IR regarding the saline diluent
|
214 |
+
August 10, 2021 ST 125742/0.39 Response to DVP IR regarding a (b) (4)
|
215 |
+
step executed during the (b) (4) process at Pfizer Puurs
|
216 |
+
August 13, 2021 ST 125742/0.47 Response to DMPQ IR regarding the saline diluent
|
217 |
+
|
218 |
+
Date Received
|
219 |
+
Submission
|
220 |
+
Contents/Comments
|
221 |
+
August 17, 2021 ST 125742/0.55 Stability data to support a shelf-life extension of the
|
222 |
+
undiluted DP up to 9 months when stored at the intended long-term storage condition
|
223 |
+
August 19, 2021 STN 125742/0.61 Response to DVP IR regarding the final commercial
|
224 |
+
shelf life of the BNT162b2 DP and date of manufacture
|
225 |
+
August 19, 2021 STN 125742/0.62 Response to DVP IR regarding the final (b) (4)
|
226 |
+
3. Executive Summary and Recommendation
|
227 |
+
The BNT162b2 COVID-19 vaccine, developed under a collaborative agreement between Pfizer and BioNTech (BNT), is a nucleoside-modified messenger RNA (modRNA)-based vaccine candidate indicated for active immunization for the prevention of coronavirus disease 2019 (COVID-19). The single-stranded mRNA encodes the SARS-CoV-2 full-length spike (S) glycoprotein, which is codon-optimized and modified to express the P2 mutant, a pre-fusion S protein (P2 S; version 9). The modRNA is stabilized by formulation with lipids consisting of DSPC, cholesterol, ALC-0315, and ALC-0159 to generate lipid nanoparticles (LNPs). Other ingredients in the BNT162b2 vaccine include potassium chloride, monobasic potassium phosphate, sodium chloride, dibasic sodium phosphate dihydrate, and sucrose.
|
228 |
+
The final vaccine product is a white to off-white, sterile, preservative-free, multi-dose frozen suspension to be diluted with 0.9% sodium chloride injection, US, for intramuscular (IM) injection. The vaccine is filled in a 2 mL clear glass vial with a rubber stopper (not made of natural rubber latex) as a multi-dose concentrate (after dilution each vial contains 6 doses of 0.3 mL) and is administered as a series of two IM immunizations with each dose containing 30 g of modRNA. The second dose is administered 21 days after the first dose. The undiluted vaccine vials should be stored frozen between -90°C to -60°C and they may be stored at -25°C to -15°C for up to two weeks. To facilitate storage and administration of the BNT162b2 vaccine at the point of use, the thawed vials can be stored between 2°C to 8°C for up to 1 month (31 days) prior to dilution; the diluted vaccine must be stored between 2°C to 25°C and used within 6 hours from the time of dilution. The vaccine is indicated for use in individuals 16 years of age or older.
|
229 |
+
The manufacturing process for the BNT162b2 drug substance (DS) consists of two major steps: (b) (4)
|
230 |
+
. Two manufacturing
|
231 |
+
facilities (Pfizer ACMF and Pfizer Suite ®) located in Andover, MA are involved in the commercial production of the BNT162b2 DS. The DS manufacturing process was validated at both facilities by process-performance qualification (PPQ) studies ( and PPQ lots manufactured at Pfizer ACMF and at Pfizer Suite , respectively). Consistency of the DS manufacturing process was demonstrated by maintaining process parameters within defined ranges and obtaining satisfactory in-process and release testing results.
|
232 |
+
Additionally, data obtained from the analytical comparability assessment for the ACMF
|
233 |
+
2
|
234 |
+
|
235 |
+
and Suite # DS batches further support the DS manufacturing process for the consistent production of the BNT162b2 DS with acceptable quality.
|
236 |
+
The manufacturing process for the BNT1622 drug product (DP) involves (b) (4) the modRNA DS with lipid excipients during LP formulation followed by fill and finish. The two facilities proposed for the manufacture of the BNT1622 DP are Pfizer Puurs (located in Puurs, Belgium) and Pfizer Kalamazoo (located in Kalamazoo, Michigan, USA), both of which have been authorized for the manufacture of the BNT1622 D under the Emergency Use Authorization (EUA 27034). Validation of the DP manufacturing process took place in two Phases. The Phase I network PPQ study, which involved multiple authorized DP manufacturing facilities under the EUA, was executed to demonstrate that the manufacturing process consistently produces DP lots of acceptable quality across multiple supply nodes. The Phase II process validation occurred at the proposed commercial facilities with (b) (4) batches at (b) (4) and (5) (4) batches at (b) (4) batch sizes being manufactured at Pfizer Puurs and (b) (4) batches at (b) (4) and (b) (4) batches at (5) (4) batch sizes being manufactured at Pfizer Kalamazoo. Both Phase I and Phase Il process-validation studies were executed successfully according to pre-established protocols, thereby demonstrating that the D manufacturing process is consistent and well-controlled. Additionally, a (5) (4) batch size for the manufacture of BNT162b2 DP was validated at the Pfizer Purs site. Analytical comparison of the process-validation batches to clinical and emergency supply lot data further demonstrated comparable product quality from clinical through commercial supply of the BNT162b2 DP. Overall, the process validation data support the capability of the commercial manufacturing process to produce a consistent DP with acceptable quality at the proposed commercial manufacturing facilities.
|
237 |
+
Stability studies have been generated for both the DS and DP lots to support the licensure of the BNT1622 vaccine. All available stability data generated to date support the initial commercial shelf life of (b) (4) for the BNT1622 DS when stored at the intended storage condition of (b) (4) For DP shelf-life determination, up to ( months of stability data are available for one clinical batch at the intended storage condition of -70 ‡ 10°C and up to 9 months of stability data are available for (b) 4) emergency supply DP lots when stored at the intended storage condition of -90 to - 60°C. As comparable product quality has been demonstrated from clinical through commercial supply of the BNT162b2 DP, the stability data from both the clinical trial materials (CTMs) and the emergency supply lots are considered supportive of the proposed shelf life of 9 months for the commercial BNT1622 DP. The final commercial shelf life of the BNT162b2 DP is intended to be (** months when stored at the intended storage condition of -90 to -60°C; stability studies are ongoing. The available stability data from the emergency supply/PPQ DP lots will be submitted post licensure at intervals (9, (b) (4)
|
238 |
+
months) as data become available to support future shelf-life
|
239 |
+
extensions.
|
240 |
+
The analvtical procedures developed and used for the release and stability monitoring of BNT162b2 DS and DP include tests to ensure their identity, purity, quality, and
|
241 |
+
3
|
242 |
+
|
243 |
+
potency. The assay methods are appropriately established and performed routinely according to the established standard operating procedures (SOPs). Validation of each assay method was performed at all the proposed testing sites (either through validation/co-validation or by analytical method transfer exercise) and the results have demonstrated that the assay methods are accurate, specific, robust, and precise over the specified range, indicating that they are suitable for the intended use.
|
244 |
+
Two notable issues were identified during the previous EUA 27034 review and were resolved. The first issue involves the occurrence of (b) (4)
|
245 |
+
in
|
246 |
+
DP lots produced for emergency use, and the second issue involves the occasional observation of visible intrinsic particles detected during visual inspection of filled DP vials. Investigation of the (b) (4)
|
247 |
+
identified that the b) (4)
|
248 |
+
are
|
249 |
+
only associated with the b) (4)
|
250 |
+
batches that were manufactured with a (b) (4)
|
251 |
+
operation at (b) (4) (a supplier of the (b) (4)
|
252 |
+
). Since the
|
253 |
+
implementation of a (b) (4)
|
254 |
+
process at (b) (4), the resulting DP lots
|
255 |
+
have been consistently demonstrating b) (4)
|
256 |
+
Regarding the
|
257 |
+
intrinsic particles, the frequency of occurrence is low and DP vials containing intrinsic particles can be detected and discarded through 100% automated/manual visual inspection. The intrinsic particles consist of (b) (4) components used for (b) (4) (b) (4) (i.e., they are not foreign particles) and the available data suggest that they have minimal potential to impact product safety and quality.
|
258 |
+
Two clinical diagnostic assays (Cepheid Xpert Xpress RT-PCR assay for the detection of SARS-CoV-2 in clinical specimens and Roche Elecsys Anti-SARS-CoV-2 assay for the evaluation of serostatus to SARS-CoV-2) were used to assess clinical endpoints.
|
259 |
+
Both assays have received FDA authorization under EUA. Validation of both assays has been performed at Pfizer's testing facility (Pfizer Vaccine Research and Development;
|
260 |
+
Pearl River, NY), and the results support the suitability of both assays for their intended use in clinical studies.
|
261 |
+
Final Recommendation:
|
262 |
+
I recommend approval of this BLA.
|
263 |
+
4
|
264 |
+
|
265 |
+
4. BNT162b2 Drug Substance
|
266 |
+
4.1 General Description
|
267 |
+
The BNT162b2 drug substance (DS) is a single-stranded, 5'-capped mRNA encoding the full-length SARS-CoV-2 spike glycoprotein (S1S2 protein) derived from the Wuhan-Hu-1 isolate (GenBank MN908947.3 and GenBank QHD43416.1). The antigen-coding
|
268 |
+
RNA sequence is codon-optimized and contains two proline mutations (b) (4)
|
269 |
+
), which ensure expression of an antigenically optimal trimerized pre-fusion confirmation (P2 S). The RNA also contains common structural elements, including 5'-cap, 5'-UTR, 3'-UTR, and poly(A) tail, all of which are designed for mediating high RNA stability and translation efficiency. (b) (4) is replaced with the b) (4)
|
270 |
+
during the RNA transcription. This nucleoside substitution has
|
271 |
+
been demonstrated to enhance translation of in vitro transcribed mRNA while reducing its reactogenicity.
|
272 |
+
The final BNT162b2 DS is a clear to b) (4) and is formulated at a target concentration of (b) (4)
|
273 |
+
in DS (b) (4)
|
274 |
+
4.2 Manufacturers
|
275 |
+
Facilities and manufacturing sites involved in the commercial DS manufacturing and testing are presented in Table 1.
|
276 |
+
Table 1. Sites and Responsibilities for Manufacture and Testing of BNT162b2 DS
|
277 |
+
Site
|
278 |
+
FEI/DUNS Numbers
|
279 |
+
(Pfizer, Andover, ACMF) (Pfizer,
|
280 |
+
FEI: 1222181
|
281 |
+
Andover Building (b) (4)
|
282 |
+
DUNS: 174350868
|
283 |
+
and Building & ) Wyeth BioPharma
|
284 |
+
Division of Wyeth Pharmaceuticals,
|
285 |
+
Responsibility
|
286 |
+
ACMF/Suite ® : Manufacture of drug substance
|
287 |
+
Bldg. (b) (4): Release and
|
288 |
+
Stability Testing
|
289 |
+
LICa
|
290 |
+
1 Burtt Road
|
291 |
+
Andover, MA 01810
|
292 |
+
United States
|
293 |
+
Pfizer Inc
|
294 |
+
875 Chesterfield Parkway West
|
295 |
+
FEI: 1940118
|
296 |
+
DUNS: 004954111
|
297 |
+
Release and Stability
|
298 |
+
Testing
|
299 |
+
Chesterfield, MO 63017
|
300 |
+
United States
|
301 |
+
a. The legal entity name was changed at the acquisition by Pfizer in 2009; since then, the Wyeth Pharmaceuticals manufacturing site in Andover, Massachusetts belongs to Pfizer's production sites and is embedded in Pfizer's GMP svstem.
|
302 |
+
Reviewer's Comments:
|
303 |
+
Two manufacturing nodes were employed for DS manufacture under the initial EUA
|
304 |
+
27034 request: (1) Pfizer, Andover, ACMF and (2) BioNTech, Mainz, and (b) (4)
|
305 |
+
Germany. Pfizer, Andover, Suite was introduced as an
|
306 |
+
additional DS manufacturing site under the EUA 27034. Both Andover ACMF and Suite manufacturing facilities are included in the BLA submission. The
|
307 |
+
5
|
308 |
+
|
309 |
+
BNT/b) (4)
|
310 |
+
commercial DS.
|
311 |
+
manufacturing node is not intended for the manufacture of
|
312 |
+
4.3 Control of Materials
|
313 |
+
Control of Non-Compendial Starting Materials and Raw Materials
|
314 |
+
Raw materials used in the DS manufacturing process are purchased from approved suppliers and are tested and released upon receipt in accordance with the applicant's internal quality control program.
|
315 |
+
The current acceptance criteria for non-compendial starting materials and raw materials used during the manufacture of the BNT162b2 DS are presented in Table 2 below. Note that starting materials are defined as a reagent or material used during the manufacture of the BNT162b2 vaccine product that is intended to be part of the final product, such as (b) (4)
|
316 |
+
(b) (4)
|
317 |
+
6
|
318 |
+
|
319 |
+
21 pages have been determined to be not releasable: (b)(4)
|
320 |
+
|
321 |
+
4.8 Adventitious Agents Safety Evaluation
|
322 |
+
The adventitious agent control program includes the engineering systems of the facility and vessels, the control of raw materials, various filtration steps to control microbial burden in buffers and the process stream, and in-process and environmental testing to monitor the level of adventitious agents in and around the process stream.
|
323 |
+
All raw materials used in the production of DS are evaluated as part of a comprehensive program to identify and manage transmissible spongiform encephalopathy (TSE) / bovine spongiform encephalopathy (BSE) risks. The only raw material of direct animal origin was identified to be b) (4)
|
324 |
+
Based on the comprehensive adventitious-agent control
|
325 |
+
program, all raw materials were found to be compliant with the EMA Note for Guidance (EMA/410/01 rev.3) and associated with minimal risk for TSE/BSE.
|
326 |
+
Other materials of animal origin may be used in the production of polymer for filters, manifolds, containers, and/or filter components. These equipment components may contain traces of animal tallow derivatives. The tallow is processed under rigorous conditions and is considered compliant with the TSE note for guidance (EMA/410/01).
|
327 |
+
4.9 Characterization Studies on Drug Substance (b) (4)
|
328 |
+
(b) (4)
|
329 |
+
28
|
330 |
+
|
331 |
+
20 pages have been determined to be not releasable: (b)(4)
|
332 |
+
|
333 |
+
5. BNT162b2 Drug Product
|
334 |
+
5.1 General Description and Composition
|
335 |
+
The BNT162b2 DP is a sterile dispersion of RNA-containing lipid nanoparticles (LNPs) in aqueous cryoprotectant buffer. It is filled into multi-dose vials containing 0.45 mL of the DP at (b) (4) . After dilution with 1.8 mL of sterile 0.9% sodium chloride solution, each vial contains a total of six 0.3 mL doses, with each dose containing 30 g of RNA.
|
336 |
+
The composition of DP, including the BNT162b2 DS, lipid excipients, buffer, and cryoprotectant, are listed in Table 22 below. The concentration and amount of each component per DP container, and the corresponding amount per dose are also listed.
|
337 |
+
Table 22. Composition of BNT162b2 Drug Product, Multi-dose Vial Name of Ingredients Reference to
|
338 |
+
Function
|
339 |
+
Concentration Amount Amount
|
340 |
+
Standard
|
341 |
+
(mg/mL)
|
342 |
+
per vial per dose
|
343 |
+
BNT162b2 DS
|
344 |
+
In-house
|
345 |
+
Active ingredient
|
346 |
+
0.5
|
347 |
+
225 Mg
|
348 |
+
30 ug
|
349 |
+
specification
|
350 |
+
ALC-0315
|
351 |
+
In-house
|
352 |
+
Functional lipid
|
353 |
+
7.17
|
354 |
+
3.23 mg 0.43 mg
|
355 |
+
specification
|
356 |
+
ALC-0159
|
357 |
+
In-house
|
358 |
+
Functional lipid
|
359 |
+
0.89
|
360 |
+
0.4 mg
|
361 |
+
0.05 mg
|
362 |
+
specification
|
363 |
+
DSPC
|
364 |
+
In-house
|
365 |
+
Structural livid
|
366 |
+
1 56
|
367 |
+
0.7 mg 0.09 mg
|
368 |
+
specification
|
369 |
+
Cholesterol
|
370 |
+
Ph. Eur. and /or
|
371 |
+
Structural lipid
|
372 |
+
3.1
|
373 |
+
1.4 mg
|
374 |
+
0.2 mg
|
375 |
+
USP-NE
|
376 |
+
Sucrose
|
377 |
+
USP-NF, Ph. Eur.
|
378 |
+
Cryoprotectant
|
379 |
+
103
|
380 |
+
46 mg
|
381 |
+
6 mg
|
382 |
+
Sodium chloride
|
383 |
+
USP-NF, Ph. Eur. Buffer component
|
384 |
+
6
|
385 |
+
2.7 mg 0.36 mg°
|
386 |
+
Potassium chloride
|
387 |
+
USP-NF, Ph. Eur.a Buffer component
|
388 |
+
0.15
|
389 |
+
0.07 mg 0.01 mg
|
390 |
+
Dibasic sodium
|
391 |
+
USP-NF, Ph. Eur. Buffer component
|
392 |
+
1.08
|
393 |
+
0.49 mg 0.07 mg
|
394 |
+
phosphate. dihvdrate
|
395 |
+
Monobasic potassium USP-NF, Ph. Eur.a Buffer component
|
396 |
+
0 15
|
397 |
+
0.07 mg 0.01 mg
|
398 |
+
phosphate
|
399 |
+
Water for iniection
|
400 |
+
USP-NF, Ph. Eur. Solvent/vehicle
|
401 |
+
g.s b
|
402 |
+
9.s b
|
403 |
+
q.s.b
|
404 |
+
a. Supplier Certificate of Analysis confirms compliance to both USP-NF and Ph. Eur.; however, incoming testing may be performed only in accordance with a site's local compendia.
|
405 |
+
b. q.s. = quantum satis (as much as may suffice)
|
406 |
+
c. The diluent (0.9% sodium chloride Injection) contributes an additional 2.16 mg per dose
|
407 |
+
The four lipids used to encase the modRNA include:
|
408 |
+
• ALC-0315: ((4-hydroxybutyl)azanediyl)bis(hexane-6,1-diyl)bis(2-hexyldecanoate)
|
409 |
+
• ALC-0159: 2-[(polyethylene glycol)-2000]-N,N-ditetradeclacetamide
|
410 |
+
• DSPC: 1,2-distearoyl-sn-glycero-3-phosphocholine
|
411 |
+
• Cholesterol
|
412 |
+
Diluent vials of sterile 0.9% Sodium Chloride Injection, US are provided but shipped separately by the applicant. The provided diluent is supplied as either a 10 mL or a 2 mL single-use vial. Alternate brand of sterile 0.9% sodium Chloride Injection, US may be used as the diluent and also for single use. The diluent vials should be discarded after 1.8 mL is withdrawn.
|
413 |
+
49
|
414 |
+
|
415 |
+
5.2 Manufacturers
|
416 |
+
Facilities and manufacturing sites involved in the commercial BNT162b2 D manufacturing and testing are presented in Table 23 below.
|
417 |
+
Table 23. Sites and Responsibilities for BNT162b2 Drug Product Manufacture
|
418 |
+
Site
|
419 |
+
FEI/DUNS Numbers
|
420 |
+
Responsibility
|
421 |
+
Pharmacia & Upjohn Company LLCC FEI: 1810189
|
422 |
+
LNP production/bulk DP formulation
|
423 |
+
7000 Portage Road
|
424 |
+
DUNS: 618054084
|
425 |
+
Fill and finish
|
426 |
+
Kalamazoo, MI 49001
|
427 |
+
Primary packaging
|
428 |
+
United States
|
429 |
+
Secondary packaging
|
430 |
+
Release and stability testing
|
431 |
+
Pfizer Manufacturing Belgium NV
|
432 |
+
FEI: 1000654629
|
433 |
+
LNP production/bulk DP formulation
|
434 |
+
Riksweg 12
|
435 |
+
DUNS: 370156507
|
436 |
+
Fill and finish
|
437 |
+
Puurs, 2870
|
438 |
+
Primary packaging
|
439 |
+
Belgium
|
440 |
+
Secondary packaging
|
441 |
+
Release and stability testing
|
442 |
+
Wyeth BioPharma Division of Wyeth FEI: 1222181
|
443 |
+
Release and stability testing
|
444 |
+
Pharmaceuticals LLCa
|
445 |
+
DUNS: 17430868
|
446 |
+
1 Burtt road
|
447 |
+
Andover, MA 01810
|
448 |
+
United States
|
449 |
+
Pfizer Inc.
|
450 |
+
FEI: 1940118
|
451 |
+
Release and stability testing
|
452 |
+
875 Chesterfield Parkway West
|
453 |
+
DUNS: 004954111
|
454 |
+
Chesterfield, MO 63017
|
455 |
+
United States
|
456 |
+
Pfizer Ireland Pharmaceuticals
|
457 |
+
FEl: 3004145594
|
458 |
+
Release and stability testing
|
459 |
+
Grange Castle
|
460 |
+
DUNS: 985586408
|
461 |
+
Grange Castle Business Park
|
462 |
+
Clondalkin, Dublin 22
|
463 |
+
Ireland
|
464 |
+
FEI: (b) (4)
|
465 |
+
DUNS:(b) (4)
|
466 |
+
Release testing (Sterility)
|
467 |
+
(b) (4)
|
468 |
+
FEI: (b) (4)
|
469 |
+
DUNS: (b) (4)
|
470 |
+
Release testing (Sterility)
|
471 |
+
a. The legal entity name change from Wyeth BioPharma Division of Wyeth Pharmaceuticals was changed at the acquisition by Pfizer in 2009, since then the Wyeth Pharmaceuticals manufacturing site in Andover, Massachusetts belongs to Pfizer's production sites and is embedded in Pfizer's GMP svstem. Pfizer will be utilized throughout the CTD
|
472 |
+
b. (b) (4) is a wholly owned subsidiary of Pfizer Inc.
|
473 |
+
c. Pharmacia & Upjohn Company LLC is a wholly owned subsidiary of Pfizer Inc.
|
474 |
+
Reviewer's Comments:
|
475 |
+
Four manufacturing nodes were employed for BNT162b2 DP manufacture at the time of the initial EUA request: (1) Pfizer Puurs, (2) Pfizer Kalamazoo, (3) (b) (4) for LNP formation/bulk DP formulation followed by fill and finish at Pfizer Puurs, and (4) (b) (4)
|
476 |
+
for LNP formation/bulk DP formulation followed by fill and finish
|
477 |
+
50
|
478 |
+
|
479 |
+
at Pfizer Puurs. Additional DP manufacturing sites were introduced for emergency supply production under EUA 27034, including Pfizer (b) (4) for DP fill and finish and (b) (4) for LNP formation and bulk DP formulation.
|
480 |
+
For commercial BNT162b2 D production, the Pfizer Puurs and Pfizer Kalamazoo manufacturing facilities are included in the BLA submission. The Pfizer (b) (4) site for the fill and finish will be added as a supplement after BLA approval.
|
481 |
+
Facilities and manufacturing sites for the production and testing/release of 0.9% sodium chloride, US diluent and their specified functions are listed in Table 24 below.
|
482 |
+
Table 24. Sites and Responsibilities for 0.9% Sodium Chloride, US Manufacture
|
483 |
+
Site
|
484 |
+
FEI/DUNS
|
485 |
+
Responsibility
|
486 |
+
Numbers
|
487 |
+
Fresenius-Kabi USA, LLC (b) (4)
|
488 |
+
FEI# (b) (4)
|
489 |
+
DUNS# (b) (4)
|
490 |
+
Hospira, Inc (b) (4)
|
491 |
+
FEI# (b) (4)
|
492 |
+
DUNS# (b) (4)
|
493 |
+
Manufacture, testing and release (of 2 mL size diluent vials)
|
494 |
+
Manufacture, testing and release (of 10 mL size diluent vials)
|
495 |
+
Hospira is a wholly owned subsidiary of Pfizer Inc.
|
496 |
+
Reviewer's Comments:
|
497 |
+
The saline diluent will be supplied as either a 10 mL single-use vial manufactured by Hospira, Inc. (NDC 0409488810) or a 2 mL single-use vial manufactured by Fresenium Kabi USA, LLC (NDC 6332318602). In amendment 47 submission (submitted on August 13, 2021), the applicant listed an additional manufacturing facility, Pfizer (b) (4)
|
498 |
+
, for the production of the saline diluent. However, due to the
|
499 |
+
Warning Letter (reference WL(b) (4)
|
500 |
+
issued on (b) (4)
|
501 |
+
) and Official Action
|
502 |
+
Indicated status, the agency will not approve the facility as the saline diluent supplier as part of this BLA. The applicant acknowledged the request and removed Pfizer (b) (4)
|
503 |
+
from the Diluent Manufacturers table in a follow-up
|
504 |
+
submission (amendment 56 submitted on August 17, 2021).
|
505 |
+
5.3 Control of Excipients
|
506 |
+
The compendial excipients used in the manufacture of BNT162b2 DP and their quality standards are provided in Table 25 below.
|
507 |
+
Table 25. Specifications for Compendial Excipients
|
508 |
+
Excipient
|
509 |
+
Cholesterol
|
510 |
+
Sucrose
|
511 |
+
Sodium chloride
|
512 |
+
Potassium chloride
|
513 |
+
Dibasic sodium phosphate, dihydrate
|
514 |
+
Reference to Standard
|
515 |
+
USP-NF and/or Ph. Eur.
|
516 |
+
USP-NF and Ph. Eur.
|
517 |
+
USP-NF and Ph. Eur.
|
518 |
+
USP-NF and/or Ph. Eur.
|
519 |
+
USP-NF and Ph. Eur.
|
520 |
+
51
|
521 |
+
|
522 |
+
Excipient
|
523 |
+
Reference to Standard
|
524 |
+
Monobasic potassium phosphate
|
525 |
+
USP-NF and/or Ph. Eur.
|
526 |
+
Water for Iniection
|
527 |
+
USP-NF and Ph. Eur.
|
528 |
+
a. Specification also includes test for microbial contamination per USP<61> (Ph. Eur. 2.6.12)
|
529 |
+
Among the four lipid components used in the BNT162b2 LNP production, cholesterol is a compendial excipient, and the other three lipids, ALC-0159, ALC-0315, and DSPC, are non-compendial excipients. The supplier's release specifications for all four lipids include testing for (b) (4)
|
530 |
+
To ensure the quality of the lipids and
|
531 |
+
the resulting BNT162b2 DP, in-house control tests are performed for all four lipid excipients including (b) (4)
|
532 |
+
prior to
|
533 |
+
release of the LNP DP. For cholesterol, an additional in-house test for (b) (4)
|
534 |
+
is also performed.
|
535 |
+
Table 26 below summarizes the source of the lipid excipients used for clinical study, emergency supply, and commercial BNT162b2 DP.
|
536 |
+
Table 26. List of Lipid Manufacturers with Phase of Use
|
537 |
+
Lipid
|
538 |
+
Clinical Trial
|
539 |
+
Emergency Supply
|
540 |
+
Commercial Supply
|
541 |
+
Material
|
542 |
+
ALC-0315
|
543 |
+
ALC-0159
|
544 |
+
(b) (4)
|
545 |
+
Pfizer Groton,
|
546 |
+
(b) (4). Pfizer Kalamazoo.
|
547 |
+
Pfizer Groton
|
548 |
+
DSPC
|
549 |
+
Cholesterol
|
550 |
+
(b) (4)
|
551 |
+
(b) (4)
|
552 |
+
Manufacturers' full names: (b) (4)
|
553 |
+
Pfizer, Groton, CT USA (Pfizer Groton); (b) (4)
|
554 |
+
Pharmacia & Upjohn Company LLC, Kalamazoo, MI USA (Pfizer Kalamazoo); (b) (4)
|
555 |
+
(b) (4)
|
556 |
+
Pfizer
|
557 |
+
Kalamazoo (b) (4)
|
558 |
+
(b) (4)
|
559 |
+
(b) (4)
|
560 |
+
(b) (4)
|
561 |
+
52
|
562 |
+
|
563 |
+
6 pages have been determined to be not releasable: (b)(4)
|
564 |
+
|
565 |
+
5.4 Description of Drug Product Manufacturing Process and Process Controls
|
566 |
+
Flow diagrams for the DP manufacturing process and process controls are illustrated in Appendices C and D for LNP production/bulk DP formulation and fill/finish operations, respectively. For emergency supply/commercial DP manufacture, a scale-out approach was used to increase capacity of the LNP-(b) (4 process with up to b) (4) used
|
567 |
+
(b) (4) . The process scale approximates b) (4)
|
568 |
+
RNA per (b) (4), such that ®
|
569 |
+
can be used to process as much as b) (4)
|
570 |
+
RNA corresponding
|
571 |
+
to a bulk DP batch (b) (4) of approximately (b) (4). The current batch size ranges at the two commercial DP manufacturing sites are set to be b) (4) at Pfizer Kalamazoo and
|
572 |
+
(b) (4) at Pfizer Puurs.
|
573 |
+
The manufacturing process for the BNT162b2 DP includes the following major steps:
|
574 |
+
(b) (4)
|
575 |
+
59
|
576 |
+
|
577 |
+
(b) (4)
|
578 |
+
Steps (b) (4)
|
579 |
+
- Fill and Finish
|
580 |
+
For DP filling, (b) (4)
|
581 |
+
sterile
|
582 |
+
bulk DP is aseptically filled into glass vials. At the end of filling, each vial is stoppered, capped, and crimped. During filling, an in-process (b) (4) is performed at routine intervals for (b) (4)
|
583 |
+
..All non-conforming vials are rejected.
|
584 |
+
Filled vials are 100% inspected for defects either through automated visual inspection or manual visual inspection. Vials passing inspection are statistically sampled for meeting Acceptance Quality Limit (AQL) testing.
|
585 |
+
The labeling and packaging of the vaccine vials for commercial distribution is performed on a fully automated or semi-automated packaging line. After labeling, the vials are placed into trayboxes, and the boxes are manually closed and labeled.
|
586 |
+
Packaged BNT162b2 vials are frozen and stored in a freezer at -90°C to -60°C.
|
587 |
+
Critical-Process Parameters and In-Process Controls
|
588 |
+
To ensure DP manufacturing process consistency and the quality of the BNT162b2 DP, relevant process parameters and IPT-Cs with acceptable ranges/acceptance criteria have been established (Table 31). The critical process parameters (CPPs) were conservatively identified using Cause and Effect (C&E) Risk Assessment based on product and process understanding, scientific rationale, and manufacturing experience and available data. IPT-Cs are used during the manufacturing process to control a quality attribute/critical quality attribute within a specified range. In addition, IPT-Ms are
|
589 |
+
60
|
590 |
+
|
591 |
+
implemented throughout the process to ensure a continuous state of control and to enable forward processing.
|
592 |
+
Table 31. Process Controls for the Manufacture of BNT162b2 D
|
593 |
+
Unit Operation
|
594 |
+
Process Control/parameter
|
595 |
+
Acceptance Range/ Category
|
596 |
+
Acceptance Criteria
|
597 |
+
Kalamazoo
|
598 |
+
Puurs
|
599 |
+
(b) (4)
|
600 |
+
61
|
601 |
+
|
602 |
+
One page has been determined to be not releasable: (b)(4)
|
603 |
+
|
604 |
+
Reviewer's Comment:
|
605 |
+
Following further review of the (b) (4) parameters evaluated during process validation at Pfizer Puurs, the following two process parameters were tightened as submitted in BLA125742/0 amendment 19 on July 28, 2021:
|
606 |
+
b) (4)
|
607 |
+
The control limits applied for (b) (4)
|
608 |
+
capping were reviewed by the facility reviewer.
|
609 |
+
testing and the process controls for
|
610 |
+
Hold Times During DP Manufacturing Process
|
611 |
+
The hold times of the DP in-process materials during (b) (4)
|
612 |
+
are provided in Tables 32 and 33,
|
613 |
+
respectively.
|
614 |
+
(b) (4)
|
615 |
+
63
|
616 |
+
|
617 |
+
(b) (4)
|
618 |
+
Reviewer's Comment:
|
619 |
+
Hold time for (b) (4) step was tightened from (b) (4)
|
620 |
+
with up to (4)
|
621 |
+
of this time allowed at up to (b) (4)
|
622 |
+
with up to (b) (4)
|
623 |
+
of this time allowed up to (b) (4). This change was made to ensure that the revised (0) (4)
|
624 |
+
-acceptance criterion for DP can be met. The process hold time change
|
625 |
+
has been validated via cumulative hold-time PPQ execution.
|
626 |
+
Hold Time Out of Freezing for the BNT162b2 DP
|
627 |
+
The Table 34 below summarizes the allowable times out of intended storage condition of -90 to -60°C during manufacture, packaging and transport.
|
628 |
+
Table 34. Time Out of Storage Condition for BNT1622 Drug Product
|
629 |
+
(b) (4)
|
630 |
+
64
|
631 |
+
|
632 |
+
(b) (4)
|
633 |
+
Hold Time for the Diluted BNT162b2 Vaccine Prior to Administration
|
634 |
+
The BNT162b2 final vaccine product is a concentrated suspension prepared in a multidose vial free of preservatives. Following dilution with saline, the in-use hold period and storage condition for the vaccine product is set to be up to 6 hours at 2°C to 25°C.
|
635 |
+
To support this hold condition, an in-vial dilution hold-time study was conducted in which the physicochemical stability of the BNT1622 DP, held in glass vials and diluted with saline as intended, was evaluated at 2-8°C, 25°C, and b) * C. The results indicate that the diluted vaccine can be stored at ambient temperature (25°C) for ™ hours and can be exposed to elevated ambient temperature (b) (4)) for (™ hours with no impact on product quality. In addition, a microbial challenge with selected model diluents and surrogate DP solutions as well as a BNT162b2-specific microbial challenge were conducted to evaluate the potential for microbial growth in a matrix representative of saline-diluted vaccine. In both studies, (b) (4)
|
636 |
+
microorganisms listed in (b) (4) and growth of
|
637 |
+
the microorganisms was monitored. The results demonstrate that at (b) (4) , which is
|
638 |
+
(b) (4) the proposed in-use time, no increase in growth was observed for any of the organisms with the spiked test samples stored at 20-25°C.
|
639 |
+
Reviewer's Comments:
|
640 |
+
The result was close to the acceptance criterion of (o) (4)
|
641 |
+
at the " - hour time point ((b) (4)
|
642 |
+
increase from To for ®
|
643 |
+
). Overall,
|
644 |
+
the results support the proposed in-use period of 6 hours at ambient temperature after dilution with saline.
|
645 |
+
5.5 Process Validation
|
646 |
+
A global approach to development has been undertaken across multiple manufacturing facilities in order to maximize BNT162b2 vaccine production and availability. The process-validation approach for all DP supply nodes included within the emergency/commercial supply network is composed of two phases. The Phase I validation covers the overall DP manufacturing network by performing minimally one (1) process validation (P) run of each manufacturing supply node. The Phase II validation covers the full validation of each of the supply nodes with separate protocols at each site. Note that for the BLA submission, only Pfizer Puurs and Pfizer Kalamazoo are the proposed DP manufacturing sites for licensure.
|
647 |
+
Phase I Network PPQ Validation
|
648 |
+
65
|
649 |
+
|
650 |
+
13 pages have been determined to be not releasable: (b)(4)
|
651 |
+
|
652 |
+
Hold Time for Packing, Shipping and Point of Use (b) (4)
|
653 |
+
DP Shipping Conditions of -90 to -15°C with an Allowance for a Maximum Cumulative
|
654 |
+
Time of (b) (4) at (b) (4)
|
655 |
+
The shipping condition of -90 to -15°C with an allowance for a maximum cumulative time of (b) (4) at (b) (4)
|
656 |
+
is supported by the following:
|
657 |
+
79
|
658 |
+
|
659 |
+
5.6 DP Manufacturing Process Development
|
660 |
+
Introduction of a Scaled-up Process for the Production of LPs (b) (4)
|
661 |
+
80
|
662 |
+
|
663 |
+
2 pages have been determined to be not releasable: (b)(4)
|
664 |
+
|
665 |
+
(b) (4)
|
666 |
+
5.7 Impurity Profile of the Drug Product
|
667 |
+
Possible process-related impurities include b) (4)
|
668 |
+
, introduced from
|
669 |
+
the DP manufacturing process, and (b) (4)
|
670 |
+
, which are part of the (b) (4)
|
671 |
+
may be present in the final vaccine container. All these impurities are present in low amounts and are further reduced during the DP manufacturing process by b) (4)
|
672 |
+
Part of the process validation included evaluation of consistent removal of process-related impurities throughout the manufacturing process. Results from the BNT162b2
|
673 |
+
DP process validation lots have demonstrated robust and consistent removal of (b) (4)
|
674 |
+
for all PPQ lots made at Pfizer Purs and Pfizer Kalamazoo,
|
675 |
+
which is well below the safety concern limit of (b) (4)
|
676 |
+
.For (b) (4)
|
677 |
+
, a comprehensive safety risk assessment has
|
678 |
+
been performed to compare the theoretical worst case concentration of impurities that could be introduced into the final DP assuming no impurity clearance during the manufacturing process. The evaluation results as shown in Table 42 below demonstrate that none of the impurities pose a safety concern. Additionally, removal of (b) (4) was further demonstrated during process validation (quantification limit of (b) (4) in all PPQ
|
679 |
+
BNT162b2 DP lots, which is equivalent to (b) (4)
|
680 |
+
).
|
681 |
+
(b) (4)
|
682 |
+
Overall, based on the demonstration of consistent removal and the safety-based risk assessment, all the process-related impurities from the DP manufacturing process do not necessitate testing as part of BNT162b2 DP release.
|
683 |
+
83
|
684 |
+
|
685 |
+
5.8 Characterization Studies on Drug Product
|
686 |
+
The DP characterization assays were developed to further describe and demonstrate the structure and physicochemical properties of the DP. The enhanced analytical characterization assays employed for the BNT162b2 DP and the testing results are briefly described as follows:
|
687 |
+
b) (4)
|
688 |
+
5.9 Control of Drug Product
|
689 |
+
Specifications
|
690 |
+
The specifications for BNT1622 DP at release and throughput shelf life are shown in
|
691 |
+
Table 43 below.
|
692 |
+
Table 43. BNT162b2 Drug Product Specifications
|
693 |
+
84
|
694 |
+
|
695 |
+
Quality Attribute
|
696 |
+
Appearance
|
697 |
+
Appearance (Visible
|
698 |
+
Particulates)
|
699 |
+
(b) (4)
|
700 |
+
Analytical Procedure
|
701 |
+
Appearance (Visual)
|
702 |
+
Appearance (Particles)
|
703 |
+
(b) (4)
|
704 |
+
Acceptance Criteria
|
705 |
+
White to off-white suspension
|
706 |
+
May contain white to off-white opaque, amorphous particles
|
707 |
+
(b) (4)
|
708 |
+
b) (4)
|
709 |
+
(b) (4)
|
710 |
+
LNP (b) (4)
|
711 |
+
LNP (b) (4)
|
712 |
+
RNA (b) (4)
|
713 |
+
RNA Content
|
714 |
+
ALC-0315 Content
|
715 |
+
ALC-0159 Content
|
716 |
+
DSPC Content
|
717 |
+
Cholesterol Content
|
718 |
+
Vial Content (Volume)
|
719 |
+
Lipid Identities
|
720 |
+
Identity of Encoded RNA
|
721 |
+
Sequence
|
722 |
+
[(b) (4)
|
723 |
+
RNA (b) (4)
|
724 |
+
Bacterial Endotoxin
|
725 |
+
Endotoxin (b) (4)
|
726 |
+
(b) (4)
|
727 |
+
| (b) (4)
|
728 |
+
Sterility
|
729 |
+
Sterility®
|
730 |
+
No growth detected
|
731 |
+
(b) (4)
|
732 |
+
Container-Closure Integrity (b) (4)
|
733 |
+
Pass
|
734 |
+
a. All assays performed on stability unless otherwise noted
|
735 |
+
b. In accordance with b) (4)
|
736 |
+
, with minor difference in instrument calibration
|
737 |
+
c. Assay not performed on stability
|
738 |
+
d. Acceptance criteria values reflect (b) (4) correction
|
739 |
+
e. (b) (4) sterility test, which is performed in accordance with the (b) (4) with the exception of (b) (4)
|
740 |
+
method, may also be used
|
741 |
+
f.
|
742 |
+
Tested at release and on stability for stability batches only
|
743 |
+
The acceptance criteria used for stability during shelf life will be predominantly the same as the acceptance criteria used for lot release, with the exception of the LP (b) (4) and RNA (b) (4) attributes, for both of which a separate stability acceptance criterion has been established to enable alternative storage at -20°C and 2-8°C at the point of administration.
|
744 |
+
85
|
745 |
+
|
746 |
+
Reviewer's Comment:
|
747 |
+
• The proposed commercial acceptance criteria for the following attributes at release and during stability have been tightened for the commercial BNT1622 D compared with the DP product under the EUA. The changes were made based on the capability of the manufacturing process, historical release data for the emergency supply/commercial lots, as well as considerations of the assay variability.
|
748 |
+
(b) (4)
|
749 |
+
Justification of Specifications
|
750 |
+
The acceptance criteria in the DP specification reflect the current understanding of criticality of quality attributes, their impact on product performance, and the quality of the product used in clinical trials to ensure consistent manufacture of DP. The lots used in the establishment of the commercial specification include nonclinical toxicology lot (° ), clinical lots manufactured from process 1 DS (5) (4)), and commercial-scale emergency supply DP lots manufactured from process 2 DS (* 4
|
751 |
+
* lots manufactured
|
752 |
+
between August 2020 and January 2021, including
|
753 |
+
(W PPQ lots with ® manufactured at
|
754 |
+
the Pfizer. Kalamazoo facility and ® manufactured at the Pfizer, Purs site). Statistical analysis was applied to the release data for the ( commercial-scale DP lots. The
|
755 |
+
86
|
756 |
+
|
757 |
+
mean, standard deviation and mean ‡ k*SD (k is the factor) for the release data set were calculated for each quality attribute, if applicable. Based on the statistical analysis results, the acceptance criteria were further adjusted and justified. For those attributes not subjected to statistical analysis, acceptance criteria were determined based on understanding of formulation robustness, compendial requirements, clinical experience and/or literature references.
|
758 |
+
Table 44. Justification of Specifications for BNT1622 Drug Product
|
759 |
+
(b) (4)
|
760 |
+
87
|
761 |
+
|
762 |
+
2 pages have been determined to be not releasable: (b)(4)
|
763 |
+
|
764 |
+
(b) (4)
|
765 |
+
(b) (4)
|
766 |
+
(b) (4)
|
767 |
+
5.10 Analytical Procedures for Drug Product
|
768 |
+
The testing sites that are involved in assay performance and validation activities are listed in Table 46 below.
|
769 |
+
Table 46. BNT162b2 Commercial DP Testing Sites
|
770 |
+
Analvtical Procedure
|
771 |
+
Testing Site
|
772 |
+
Appearance (Visual)
|
773 |
+
ARD, PGS-Puurs, PGS-KZO
|
774 |
+
Release, Stability Release, Stability
|
775 |
+
Appearance (Particles)
|
776 |
+
(b) (4)
|
777 |
+
Ґ(b) (4)
|
778 |
+
Ґ(b) (4)
|
779 |
+
(b) (4)
|
780 |
+
(b) (4)
|
781 |
+
Container Content (b) (4)
|
782 |
+
(b) (4)
|
783 |
+
(0 (4)
|
784 |
+
Endotoxin (b) (4)
|
785 |
+
Sterility
|
786 |
+
(b) (4) Sterility
|
787 |
+
ARD. PGS-GC. PGS-KZO ARD, PGS-Puurs, PGS-KZO ARD, PGS-Purs, PGS-KZO ARD, PGS-Puurs, PGS-KZO ARD, PGS-Puurs, PGS-KZO ARD, PGS-Puurs, PGS-KZO ARD, PGS-Puurs, PGS-KZO ARD, PGS-AND, PGS-GC ARD, PGS-AND, PGS-GC ARD, PGS-Puurs, PGS-KZO
|
788 |
+
PGS-Puurs, PGS-KZO
|
789 |
+
PGS-Puurs, PGS-KZO
|
790 |
+
PGS-Purs, PGS-KZO
|
791 |
+
90
|
792 |
+
Release. Stability Release, Stabilit Release Release, Stability Release. Stability Release, Stability Release Release Release, Stability Release, Stability Release, Stability Release. Stabilit Release. Stability
|
793 |
+
|
794 |
+
• Pfizer Analytical Research and Development (ARD) Laboratories at Chesterfield, MO (ARD-STL) and at Andover, MA (ARD-AND)
|
795 |
+
• Pfizer Global Supply, Andover, MA (PGS-AND)
|
796 |
+
• Pfizer Global Supply, Grange Castle, Ireland (PGS-GC)
|
797 |
+
• Pfizer Global Supply, Kalamazoo, MI (PGS-KZO)
|
798 |
+
• Pfizer Global Supply, Purs, Belgium (PGS-Puurs)
|
799 |
+
Appropriate analytical procedures were established to monitor and assess the BNT162b2 DP as detailed below.
|
800 |
+
(b) (4)
|
801 |
+
91
|
802 |
+
|
803 |
+
One page has been determined to be not releasable: (b)(4)
|
804 |
+
|
805 |
+
(b) (4)
|
806 |
+
5.11 Validation of Analytical Procedures
|
807 |
+
Compendial procedures were qualified for use in accordance with the applicable pharmacopeias, excluding endotoxin and sterility. Endotoxin, in alignment with (b) (4)
|
808 |
+
, and sterility in alignment with (b) (4)
|
809 |
+
, were validated in the course of release testing of the b) (4) CTM batches. The validation of bacterial endotoxins and sterility tests are reviewed by DBSQC reviewers.
|
810 |
+
All the analytical procedures used for the BNT162b2 DP have been validated. The assay may be originally validated or co-validated in selected testing sites. Upon transfer to additional testing location, reproducibility is evaluated in the validation or transfer.
|
811 |
+
A summary of the parameters evaluated for each analytical assay, the acceptance criteria and the results are described in the following tables.
|
812 |
+
(b) (4)
|
813 |
+
(b) (4)
|
814 |
+
93
|
815 |
+
|
816 |
+
7 pages have been determined to be not releasable: (b)(4)
|
817 |
+
|
818 |
+
5.13 Summary of Batch Analysis
|
819 |
+
The BNT162b2 DP lots included in the section were used for nonclinical toxicology, clinical trials, process performance qualification (PPQ), emergency supply, and stability.
|
820 |
+
The batch analysis data are presented for the DP lots manufactured across multiple manufacturing sites, including from sites that are not being licensed under the BLA submission. All batches met the specification at the time of release. Overall, the results demonstrate the capabilities of the manufacturing process for consistent production of quality DP.
|
821 |
+
The PPQ batch range data at Pfizer Purs and at Pfizer Kalamazoo are shown in the Table 38.
|
822 |
+
5.14 Container-Closure System of the Final Container
|
823 |
+
The primary container-closure system for the BNT162b2 vaccine consists of the vial components listed in Table 47.
|
824 |
+
Table 47. List of Components in Container Closure System
|
825 |
+
Component
|
826 |
+
Description
|
827 |
+
Vial
|
828 |
+
2 mL Type I borosilicate glass vial, 13 mm finish
|
829 |
+
Vial Stopper
|
830 |
+
13 mm vial stopper composed of gray (b) (4)
|
831 |
+
elastomer
|
832 |
+
(bromobutyl rubber) coated with (b) (4)
|
833 |
+
a
|
834 |
+
Vial Seal
|
835 |
+
13 mm aluminum vial seal with tamper-evident polypropylene flip off cap
|
836 |
+
a. b) (4) lubricant complies with (b) (4)
|
837 |
+
requirements for b) (4)
|
838 |
+
requirements for (b) (4)
|
839 |
+
. requirements for (b) (4)
|
840 |
+
Used as a Lubricant, (b) (4)
|
841 |
+
Extractables for the DP Container-Closure System
|
842 |
+
Controlled extraction studies were performed on the product contact bromobutyl rubber stopper material ((b) (4)
|
843 |
+
) using model solvents, including (b) (4)
|
844 |
+
• In one extraction study,
|
845 |
+
stoppers were extracted (b) (4)
|
846 |
+
. In a second extraction study, stoppers were
|
847 |
+
(b) (4)
|
848 |
+
. For both extraction studies, volatile,
|
849 |
+
semi-volatile, non volatile and elemental extractables were analyzed.
|
850 |
+
A Safety-Concern Threshold (SCT) was initially defined as (b) (4)
|
851 |
+
total daily intake
|
852 |
+
(TDI) for each compound, a level at which unidentified or identified leachable compound presents negligible safety concern to patients. The putative hazard of each potential leachable compound was further assessed and the SCT adjusted accordingly based on the presence or absence of a mutagenic concern. Potential leachable compounds without a mutagenic concern are assigned a SCT of (b) (4) TDI. Based on the results from the extraction studies, the following compounds and elements were selected and monitored as potential leachables: (b) (4)
|
853 |
+
101
|
854 |
+
|
855 |
+
Leachables for the DP Container-Closure System
|
856 |
+
Leachable studies are in progress to support the BNT162b2 commercial container closure system with representative DP lots b) (4)
|
857 |
+
Vials stored at -90°C to -60°C are being tested using methods
|
858 |
+
validated for the potential leachables (identified in the extractables studies as well as unexpected compounds) at the initial timepoint, 6 months, (b) (4)
|
859 |
+
. Currently available leachables information, including detection limits for validated methods and initial time point results from (' DP lots, demonstrated that all leachable compounds are below the SCT of (b) (4)
|
860 |
+
TDI. Among the tested potential
|
861 |
+
leachables, only (b) (4)
|
862 |
+
were detected at (b) (4)
|
863 |
+
, respectively. In addition, no unidentified leachable
|
864 |
+
compounds have been detected. Based on a comprehensive review of available safety data, the presence of elements at or below the method quantitation limits in BNT162b2 DP pose negligible risk to patients. The rest of the leachable data will be reviewed in the next GMP inspection.
|
865 |
+
5.15 Stability of Drug Product
|
866 |
+
At Pfizer Kalamazoo, the date of manufacture for the final drug product is defined as the date of the final sterile filtration operation. At Pfizer Puurs, however, the date of manufacture is defined as the date of (b) (4)
|
867 |
+
.In either case, the date
|
868 |
+
of manufacture is no later than the date of final sterile filtration.
|
869 |
+
The proposed initial commercial shelf life of the BNT162b2 DP is 9 months when stored at the intended storage condition of -90°C to -60°C. The initial shelf life is determined based on up to 9 months of currently available stability data on (4) emergency supply lots, and up to (4) months of stability data on clinical and non-clinical lots. The stability data generated to date on the emergency supply and PPQ lots also support an additional storage condition at -20 ‡ 5°C for up to 2 weeks, as well as short-term storage at 5 ‡ 3°C for up to one month (within the ®
|
870 |
+
"month shelf life).
|
871 |
+
The final commercial shelf life of the BNT162b2 DP is intended to be ™* months when stored at the intended storage condition of -90°C to -60°C. The applicant commits to submitting stability data to support extension of the DP shelf life beyond the 9-month period at intervals (b) (4)
|
872 |
+
months) when supporting data are available.
|
873 |
+
Materials used for the DP stability studies include emergency supply and PPQ lots manufactured by Pfizer Puurs ((b) (4)), Pfizer Kalamazoo ((b) (4)), (b) (4) (with fill/finish at Pfizer Purs, (b) (4)), and (b) (4) (with fill/finish at Pfizer Puurs, (b) (4)), and (b) (4) clinical and b) (4) non-clinical DP manufactured by b) (4)
|
874 |
+
The stability protocols for emergency supply/PPQ lots are described in Table 48 for the long-term -90°C to -60°C and the accelerated -20 ‡ 5°C and 5 ‡ 3°C conditions.
|
875 |
+
Table 48. Stability Protocol for BNT162b2 Drug Product
|
876 |
+
102
|
877 |
+
|
878 |
+
Analytical Procedure
|
879 |
+
Appearance (Visible)
|
880 |
+
-90 to -60°C
|
881 |
+
(long-term)a
|
882 |
+
0, 1W°, 2W, 1M, 2M, 3M, 6M, 9M, () (4)
|
883 |
+
Appearance Visible Particulates)
|
884 |
+
0, 1Wd, 2W, 1M, 2M, 3M, 6M, 9M, (b) (4)
|
885 |
+
(b) (4)
|
886 |
+
0, 1Wd, 2W, 1M, 2M, 3M, 6M, 9M, (b) (4)
|
887 |
+
[(b) (4)
|
888 |
+
0, 1Wd, 2W, 1M, 2M, 3M, 6M, 9M, (b) (4)
|
889 |
+
'(b) (4)
|
890 |
+
0, 1W°, 2W, 1M, 2M, 3M, 6M, 9M, (b) (4)
|
891 |
+
[(b) (4)
|
892 |
+
0, 1Wd, 2W, 1M, 2M, 3M, 6M, 9M, (b) (4)
|
893 |
+
[(Ь) (4)
|
894 |
+
[(b) (4)
|
895 |
+
(ALC-0315 Content)
|
896 |
+
(b) (4)
|
897 |
+
(ALC-0159 Content)
|
898 |
+
0, 1Wd, 2W, 1M, 2M, 3M, 6M, 9M, (b) (4)
|
899 |
+
0, 1Wd, 2W, 1M, 2M, 3M, 6M, 9M, (b) (4)
|
900 |
+
0, 1Wd, 2W, 1M, 2M, 3M, 6M, 9M, (b) (4)
|
901 |
+
(b) (4)
|
902 |
+
(DSPC Content)
|
903 |
+
0, 1Wd, 2W, 1M, 2M, 3M, 6M, 9M, (b) (4)
|
904 |
+
†(b) (4)
|
905 |
+
(Cholesterol Content) 0, 1Wd, 2W, 1M, 2M,
|
906 |
+
3M, 6M, 9M, (b) (4)
|
907 |
+
[(6) (4)
|
908 |
+
0, 1Wd, 2W, 1M, 2M, 3M, 6M, 9M, (b) (4)
|
909 |
+
[(b) (4)
|
910 |
+
(RNA (b) (4) )
|
911 |
+
0, 1Wd, 2W, 1M, 2M, 3M, 6M, 9M, (b) (4)
|
912 |
+
†(b) (4)
|
913 |
+
Container Closure Integrity Test
|
914 |
+
Endotoxin
|
915 |
+
Sterility
|
916 |
+
0, 3M°, 6M, (b) (4)
|
917 |
+
0, (b) (4)
|
918 |
+
O. (b) (4)
|
919 |
+
0, (b) (4)
|
920 |
+
Test Intervals
|
921 |
+
-20 ‡ 5°C
|
922 |
+
5 ‡ 3°C
|
923 |
+
(Accelerated) (Accelerated)9
|
924 |
+
0, 1W, 2W, 0, 1W, 2W, (b) (4)
|
925 |
+
1M, (b) (4)
|
926 |
+
0, 1V, 2W,
|
927 |
+
(b) (4)
|
928 |
+
0, 1W, 2W,
|
929 |
+
(b) (4)
|
930 |
+
0, 1W, 2W.
|
931 |
+
(b) (4)
|
932 |
+
0, 1W, 2W
|
933 |
+
(b) (4)
|
934 |
+
0.1W.2W.
|
935 |
+
16) 4
|
936 |
+
0. 1W,2W,
|
937 |
+
(b) (4)
|
938 |
+
0, 1W, 2W
|
939 |
+
(b) (4)
|
940 |
+
0, 1W, 2W, (b) (4)
|
941 |
+
0, 1W, 2W
|
942 |
+
(b) (4)
|
943 |
+
O, 1W, 2W, (b) (4)
|
944 |
+
[0, 1W. 2W, (b) (4)
|
945 |
+
0, 1W, 2W
|
946 |
+
(b) (4)
|
947 |
+
0, (0) (4)
|
948 |
+
Not Tested
|
949 |
+
Not Tested
|
950 |
+
Not Tested
|
951 |
+
0, 1W, 2W,
|
952 |
+
1M, (b) (4)
|
953 |
+
0, 1W, 2W
|
954 |
+
1M,(b) (4)
|
955 |
+
0, 1W, 2W
|
956 |
+
1M, (b) (4)
|
957 |
+
0, 1W, 2W, 1M, (b) (4)
|
958 |
+
0, 1W, 2W, 1M, (b) (4)
|
959 |
+
0, 1W, 2W,
|
960 |
+
1M, (b) (4)
|
961 |
+
0, 1W, 2W, 1M. (b) (4)
|
962 |
+
0, 1W, 2V,
|
963 |
+
1M, (b) (4)
|
964 |
+
| 0, 1W, 2W, 1M,(b) (4)
|
965 |
+
0, 1W. 2W
|
966 |
+
1M, (b) (4)
|
967 |
+
0, 1W, 2W, 1M, (b) (4)
|
968 |
+
0, 1W, 2W,
|
969 |
+
1M, (b) (4)
|
970 |
+
O, (0) (4)
|
971 |
+
Not Tested
|
972 |
+
Not Tested
|
973 |
+
Not Tested
|
974 |
+
103
|
975 |
+
|
976 |
+
a. Testing not performed at the 1W, 2W, or 2M time point for lots (b) (4)
|
977 |
+
; Testing not performed at the 2M point for lots (b) (4)
|
978 |
+
Testing not performed at the 1W or 2W time point for lot (b) (4)
|
979 |
+
b. Being performed at 3M and 6M time points for lots (b) (4)
|
980 |
+
c. Being performed at 3M time point for lots (b) (4)
|
981 |
+
d. 1W testing performed on lots (b) (4)
|
982 |
+
e. 1W testing performed on lot (b) (4) only; Testing not performed at the 1W, 2W, or () 4 time point for lots (b) (4)
|
983 |
+
; Testing
|
984 |
+
not performed at the 1W or 2W time point for lots b) (4)
|
985 |
+
. Testing not performed on lots (b) (4)
|
986 |
+
g. 1W testing performed on lots (b) (4)
|
987 |
+
testing performed on lots (b) (4)
|
988 |
+
testing not performed on lots (b) (4)
|
989 |
+
; 1M, (b) (4) (b) (4)
|
990 |
+
F1M and ()(4) testing
|
991 |
+
performed on lots (b) (4)
|
992 |
+
ends at (b) (4) time point
|
993 |
+
h. Testing not performed on lots (b) (4)
|
994 |
+
W = Week. M = Month
|
995 |
+
For emergency supply/PPQ lots, the updated stability results include the following:
|
996 |
+
• Lots (b) (4)
|
997 |
+
: up to 9 months of stability data at the intended storage
|
998 |
+
condition of -60 to -90°C, up to (b) (4) of data at the accelerated condition of -20 ‡ 5°C, and up to months of data at the accelerated condition of 5 ‡ 3°C. For Lot
|
999 |
+
(b) (4), up to (b) (4) of data are available at the stress conditions of (b) (4) and (b) (4)
|
1000 |
+
• Lots (b) (4)
|
1001 |
+
: up to b) (4) of
|
1002 |
+
stability data at the intended storage condition and the accelerated conditions of -20
|
1003 |
+
‡ 5°C, up to b) (4) of data at the accelerated condition of 5 ‡ 3°C, as well as up to b) (4) of data at the stress condition (b) (4)
|
1004 |
+
• Lots (b) (4)
|
1005 |
+
up to (b) (4) of stability data at
|
1006 |
+
all three tested storage conditions (-60 to -90°C, -20 ‡ 5°C and 5 ‡ 3°C)
|
1007 |
+
• Lots b) (4)
|
1008 |
+
up to b) (4) of stability data at all three
|
1009 |
+
tested storage conditions (-60 to -90°C, -20 ‡ 5°C and 5 ‡ 3°C), For lots (b) (4), up to (b) (4) of stability data are available at the stress conditions of (b) (4)
|
1010 |
+
• Lots (b) (4)
|
1011 |
+
up to (b) (4) of stability data at all three
|
1012 |
+
tested storage conditions (-60 to -90°C, -20 # 5°C and 5 ‡ 3°C).
|
1013 |
+
For clinical and non-clinical DP lots, the updated stability results include the following:
|
1014 |
+
• Lots EE3818, ED3938, BCV40720-C, BCV40720-A, BCV40620-E, and BCV40620-
|
1015 |
+
A: up to 6 months of stability data at -70 ‡ 10°C and up to (b) (4) of stability data at 5 + 3°C
|
1016 |
+
• Lot BCV40420-A: up to ** months of stability data at -70 + 10°C and up to (b) (4) of stability data at 5 ‡ 3°C
|
1017 |
+
• Non-clinical lot (b) (4)
|
1018 |
+
up to b) (4) of stability data at -70 ‡ 10°C and
|
1019 |
+
5 ‡ 3°C.
|
1020 |
+
Summary of Stability Data
|
1021 |
+
Long-term storage stability
|
1022 |
+
104
|
1023 |
+
|
1024 |
+
For emergency supply and PPQ lots stored at -90°C to -60°C and for clinical and non-clinical lots stored at -70 # 10°C, all results, generated to date, met the acceptance criteria at the time of testing. Stability data from (b) (4)
|
1025 |
+
up to 4
|
1026 |
+
months of data available) and (b) (4) emergency lots ((b) (4)
|
1027 |
+
, up to 9
|
1028 |
+
months of data available) support the proposed shelf-life of 9 months at the intended storage conditions of -90°C to -60°C. Additionally, trending on critical stability-indicating quality attributes (LNP (6) (4) , LNP (b) (4)
|
1029 |
+
, RNA content, RNA (b) (4)
|
1030 |
+
, lipid
|
1031 |
+
content, RNA (b) (4)
|
1032 |
+
) has been analyzed for stability lots and the data show
|
1033 |
+
that there are no significant trends that would impact the shelf life of the DP through the
|
1034 |
+
9-month time point when stored at the long-term condition of -90°C to -60°C.
|
1035 |
+
Accelerated (b) (4) stability (b) (4)
|
1036 |
+
Accelerated (b) (4)
|
1037 |
+
(b) (4)
|
1038 |
+
stability
|
1039 |
+
Accelerated - 20 ‡ 5°C stability
|
1040 |
+
All (b) (4) PPQ and eight emergency supply lots have been placed on formal stability at the accelerated -20 ‡ 5°C storage condition. All data generated to date were within the stated specifications through at least the (b) (4) time point. Out of the specification results were were observed for LNP (b) (4) from multiple PPQ/emergency supply lots beginning from the b) (4) time point.
|
1041 |
+
Reviewer's Comments:
|
1042 |
+
Even though all stability data generated through the b) (4) time point for DP lots stored at -20 ‡ 5°C are within the specifications, trending for LP (b) (4) is observed.
|
1043 |
+
The available (b) (4) stability data showed that, except for b) (4)
|
1044 |
+
, all
|
1045 |
+
other lots (n = (4) demonstrated an (b) (4) in LP (b) (4) by (b) (4)
|
1046 |
+
At the
|
1047 |
+
time points, the trending is more evident, with the LP (b) (4) ranging
|
1048 |
+
from (b) (4)
|
1049 |
+
, which represents an average(b) (4)
|
1050 |
+
when
|
1051 |
+
compared with the LNP (b) (4) at release that ranges from (b) (4)
|
1052 |
+
105
|
1053 |
+
|
1054 |
+
Accelerated 5 ‡ 3°C stability
|
1055 |
+
For emergency supply and PPQ lots, all data generated to date are within the specifications through at least the 1-month time point, with the exception of (b) (4)
|
1056 |
+
both of which did not meet the specification of RNA b) (4) (2-week time point
|
1057 |
+
for (b) (4) and 1-month time point for (b) (4)). Both lots (b) (4)
|
1058 |
+
were
|
1059 |
+
manufactured using a (b) (4) lot of ALC-0315 made from the original lipid manufacturing process. The (b) (4) process was later updated by b) (4)
|
1060 |
+
, and since the change, the resulting BNT1622 DP all met the specification of RNA (b) (4) when stored at 5 ‡ 3°C at all timepoints tested to date, which are 1 month for some lots and months for other lots.
|
1061 |
+
For clinical DP lots, out-of-specification results were observed for RNA (b) (4) beginning from the -month time point, and for LNP (b) (4) and LNP (b) (4) beginning from the -month time point. It is not unexpected to see trends under the accelerated storage condition and the results have no impact to the overall stability study.
|
1062 |
+
Thermal Stress (b) (4) stability (b) (4)
|
1063 |
+
Reviewer's Comments:
|
1064 |
+
As all the emergency supply BNT162b2 DP lots included in the stability protocol were made using the commercial process, their stability data are being used to support the commercial use DP expiry of 9 months when stored at the intended storage condition of -90 to -60°C. Additionally, the stability data generated to date support the DP shelf life of up to two weeks at -20 ‡ 5°C and up to 1 month (31 days) at 5 ‡ 3°C.
|
1065 |
+
Additional Stability Studies for the BNT1622 D (b) (4)
|
1066 |
+
stability
|
1067 |
+
106
|
1068 |
+
|
1069 |
+
(b) (4)
|
1070 |
+
studies have been initiated for the emergency supply and PPQ lots to
|
1071 |
+
provide support to the in-use period for the DP. The design of the thermal cycling studies includes the following:
|
1072 |
+
(b) (4)
|
1073 |
+
Photostability (b) (4)
|
1074 |
+
was subjected to the (b) (4) photostability condition ((b) (4)).
|
1075 |
+
DP vials were exposed to a light source providing an overall illumination of not less than (b) (4)
|
1076 |
+
Post Approval Stability Protocol and Commitment
|
1077 |
+
Upon completion of the stability protocol, post-approval, a minimum of (b) (4) of BNT162b2 DP manufactured will be enrolled in the commercial stability program at the long-term storage condition of -90°C to -60°C each year. The post-approval commercial stability protocol for the BNT162b2 DP is described below in Table 49.
|
1078 |
+
Table 49. Post-Approval Commercial Stability Protocol for DP Stored at -90 to -60°C
|
1079 |
+
Analytical Procedure/Quality Attribute
|
1080 |
+
Test Intervals (Months)a
|
1081 |
+
Appearance (Visible)
|
1082 |
+
1, 6, (b) (4)
|
1083 |
+
Appearance (Visible Particulates)
|
1084 |
+
1, 6, (b) (4)
|
1085 |
+
(b) (4)
|
1086 |
+
1, 6, (b) (4)
|
1087 |
+
107
|
1088 |
+
|
1089 |
+
Analytical Procedure/Quality Attribute
|
1090 |
+
(b) (4)
|
1091 |
+
Test Intervals (Months)@
|
1092 |
+
1, 6, (b) (4
|
1093 |
+
[LNP (b) (4)
|
1094 |
+
LNP (b) (4)
|
1095 |
+
[RNA (b) (4)
|
1096 |
+
RNA Content
|
1097 |
+
ALC-0315 Content
|
1098 |
+
ALC-0159 Content
|
1099 |
+
DSPC Content
|
1100 |
+
Cholesterol Content (b) (4)
|
1101 |
+
RNA (b) (4)
|
1102 |
+
1, 6
|
1103 |
+
1, 6,
|
1104 |
+
1, 6,
|
1105 |
+
1, 6,
|
1106 |
+
1,6,
|
1107 |
+
1, 6,
|
1108 |
+
1, 6,
|
1109 |
+
1, 6,
|
1110 |
+
1, 6,
|
1111 |
+
1, 6.
|
1112 |
+
Container Closure Integrity Test
|
1113 |
+
Sterility
|
1114 |
+
Endotoxin
|
1115 |
+
Annually through end of shelf life
|
1116 |
+
0, End of shelf life
|
1117 |
+
O, End of shelf life
|
1118 |
+
a. Additional test intervals may be included for the purpose of extending expiry.
|
1119 |
+
6. Other CMC-related Information Not Covered in Module 3
|
1120 |
+
Environmental Assessment or Claim of Categorical Exclusion
|
1121 |
+
The applicant states that the pharmacologically active moiety or DS in COMIRNATY is messenger RNA (mRNA), which is recognized as naturally occurring. Therapeutic use of the vaccine product will not significantly alter the concentration or distribution of mRNA, its metabolites, or degradation products in the environment.
|
1122 |
+
The vaccine contains four pharmacologically inactive lipid excipients. The phospholipid (DSPC) and the sterol lipid (cholesterol) are both recognized as naturally occurring membrane lipids, therefore, the use of the vaccine product will not alter significantly the concentration or distribution of these lipids, their metabolites, or degradation products in the environment. The other two novel lipids ALC-0315 and ALC-0159 are not recognized as naturally occurring. However, the presence of both ALC-0315 and CLA-0159 lipids is not expected to have an impact on the environment based on the conservatively estimated concentrations of each lipid at the point of entry into the aquatic environment (expected introduction concentration of (b) (4) for ALC-0315 and (b) (4) for ALC-0159).
|
1123 |
+
Exception to the 21 CFR 610.15(a) Requirement for a Preservative
|
1124 |
+
Under 21 CFR 610. 15(a), a vaccine product in multiple-dose containers should contain a preservative. On July 15, 2021, the applicant submitted to ST 125742/0 in amendment 11, a request for exception to the 21 CFR 610.15(a) requirement. The justification for the unpreserved multi-dose presentation of the BNT162b2 vaccine product includes the following:
|
1125 |
+
• (b) (4)
|
1126 |
+
, the multi-dose preservative-free vial
|
1127 |
+
presentation remain an important tool to enable sufficient global supply to deal with the COVID-19 emergency.
|
1128 |
+
108
|
1129 |
+
|
1130 |
+
• The BNT162b2 vaccine product is frozen at -90 to -60°C for storage and distribution with provisions for short-term storage for up to two weeks at -20 ‡ 5°C and up to 1 month at 2 - 8°C until administration. On the day of administration, sterile saline diluent is added into the thawed vial to provide 6 doses of the vaccine. Any unused vaccine must be discarded 6 hours after dilution.
|
1131 |
+
• The risks of this multi-dose preservative-free approach have been assessed by taking into consideration of formulation factors, including (b) (4)
|
1132 |
+
, DP storage temperature, and solution properties, which may impact the
|
1133 |
+
ability of the finished DP to support or inhibit microbial growth. Dilution and administration risks have also been evaluated from prior extensive experience with other products and data from platform formulations and commonly used b) (4) studies. The microbial challenge assessment using the panel of microbes described in (b (4) support the in-use period of 6 hours to ensure adequate time to prepare and administer 6 doses of the vaccine.
|
1134 |
+
• Successful distribution of more than b) (4)
|
1135 |
+
doses of vaccine in this multi-
|
1136 |
+
dose, non-preserved presentation under the US EUA 27034 and other global authorizations.
|
1137 |
+
Reviewer's Comments:
|
1138 |
+
The request for an exception to the 21 CFR 610.15(a) for the BNT162b2 vaccine as a multi-dose preservative-free presentation is considered acceptable.
|
1139 |
+
UNII code designations
|
1140 |
+
The UNIl code designations were reviewed and they appear to be acceptable.
|
1141 |
+
7. Follow-up on Ongoing Issues Identified at the Time of EUA Request
|
1142 |
+
RNA (b) (4) of BNT16262 Drug Product - (b) (4)
|
1143 |
+
(b) (4)
|
1144 |
+
109
|
1145 |
+
|
1146 |
+
One page has been determined to be not releasable: (b)(4)
|
1147 |
+
|
1148 |
+
(b) (4)
|
1149 |
+
Intrinsic Particles During Visual Inspection
|
1150 |
+
At the time of the EUA request, the sponsor reported that during the visual inspection step of the DP manufacturing process, white-colored particles have been observed to a varying degree across many lots spanning multiple manufacturing sites, including (b) (4)
|
1151 |
+
and two fill/finish sites and across different (b) (4) sources (vendors
|
1152 |
+
and batches). Upon investigation by (b) (4)
|
1153 |
+
, the
|
1154 |
+
visible particles were identified to be composed of (b) (4)
|
1155 |
+
, and thus intrinsic to the product. Based on these observations, the specification for appearance (visible particulates) was updated from "essentially free from visible particulates" for clinical lots to "may contain white to off-white opaque, amorphous particles" for emergency supply/commercial lots.
|
1156 |
+
Vials containing particles will be rejected and discarded during the 100% automated or manual inspection and Acceptable Quality Limit (AQL) sampling procedure for the inspected vials are further conducted to assess the robustness of the inspection method. The percentage of vials rejected due to particles during visual inspection has been low, ranging from (b) (4)
|
1157 |
+
. Additionally, visible particles are rarely observed
|
1158 |
+
in vials during routine release or stability testing, indicating a low propensity for particle formation post-inspection. Further evaluation of samples from DP lot b) (4) with and without visible particles demonstrated that product quality (RNA content and b) (4)
|
1159 |
+
) was not impacted by the presence of visible particles.
|
1160 |
+
Although visible particles may occasionally be observed in undiluted vials, following dilution with sterile 0.9% sodium chloride and mixing, the dosing solutions are expected to be free from visible particles. Any vials with visible particles observed after dilution should not be administered and should be discarded.
|
1161 |
+
Reviewer's Comments:
|
1162 |
+
The impact of visible intrinsic particles appears to be minimal due to the following reasons: (1) the particles are intrinsic to the product (i.e., they are not foreign particles); (2) the frequency of occurrence is low; (3) the rare vials with intrinsic
|
1163 |
+
111
|
1164 |
+
|
1165 |
+
particles can be identified during 100% visual inspection and discarded; (4) the vials with intrinsic particles are not associated with changes in RNA content or b) (4)
|
1166 |
+
; (5) the intrinsic particles are dispersible upon dilution with saline; and
|
1167 |
+
(%) given that the particulates are composed of the (b) (4), the toxicity of which has been characterized in non-clinical repeat-dose toxicity studies, and their presence as visible particulates would not be associated with any unique chemical toxicological concern. In addition, as a precautionary measure, the instruction for the preparation of vaccine directs the healthcare provider to withhold administration if visible particles are observed after dilution with saline.
|
1168 |
+
8. Pre-Approval Inspection
|
1169 |
+
The pre-approval inspection (PAI) for the Pfizer Puurs facility was conducted from June 24, 2021 through July 2, 2021. No 483 items were issued. The facility is considered capable of consistently manufacturing the BNT1622 DP with acceptable quality.
|
1170 |
+
The PAI for the Pfizer Kalamazoo facility was waived. In May 2021, ORA/OBO performed a Level I surveillance inspection with focus on the production of the BNT162b2 DP. A form 483 was issued; the observations were deemed Voluntary Action Indicated (VAI) based on the adequacy of the firm's responses.
|
1171 |
+
The PAl for the Pfizer Andover site was performed from July 19, 2021 through July 23,
|
1172 |
+
2021. A form 483 with thirteen (13) observations was issued. On August 2, 2021, the applicant submitted the response to ST 126742/0.25 to address all the 483 issues identified during the Pfizer Andover PAI. The inspection was classified as VAI based on the adequacy of the firm's response to the Form 483.
|
1173 |
+
During the PAI at Pfizer Andover, a recurring issue of b) (4) out-of-specification (OOS) in DS batches was noticed. An expedited investigation effort was made by the firm focusing on evaluating raw materials, operation parameters, and stability data. The investigation was still ongoing and no definite root cause was yet identified during the inspection. (b) (5), (b) (7)(E)
|
1174 |
+
9. Nonclinical Studies
|
1175 |
+
This review focuses on selected studies relevant to nonclinical pharmacology and pharmacokinetics. Nonclinical toxicity studies and results were reviewed by the toxicology reviewer.
|
1176 |
+
9.1 Nonclinical Pharmacology Studies
|
1177 |
+
Two variants of BNT162b2, "variant 8" and "variant 9" (V8 and V9, respectively) were tested in nonclinical studies. The V8 and V9 variants differ only in their codon optimization sequences but have the same amino acid sequence. Immunogenicity of BNT162b2 (V9) was evaluated in mice, rats, and nonhuman primates. Immunogenicity
|
1178 |
+
112
|
1179 |
+
|
1180 |
+
of BNT162b2 (V8) was evaluated in rats. However, only BNT162b2 (V9) has been evaluated in the clinic and therefore is the subject of this marketing application.
|
1181 |
+
Immunological assays used in nonclinical pharmacology studies include the following:
|
1182 |
+
• S1 and receptor-binding domain(RBD)-binding IgG ELISA in mouse and rat studies
|
1183 |
+
• SARS-CoV-2 pseudovirus-based neutralization assay (pVNT) in mouse and rat
|
1184 |
+
studies
|
1185 |
+
• Direct Luminex-based immunoassay (dLIA) for S1-binding IgG in nonhuman primate (NHP) studies
|
1186 |
+
• Authentic SARS-CoV-2 neutralization assay in HP studies
|
1187 |
+
• Interferon y (IFNy)-specific ELISpot in mouse and NHP studies
|
1188 |
+
• Intracellular cytokine staining flow cytometry in mouse and NHP studies
|
1189 |
+
Immunogenicity in Mice (Study Report: R-20-0085)
|
1190 |
+
Four groups of eight female BALB/c mice (at least 6 weeks of age) were immunized once on day 0 with 0.2, 1, and 5 g of BNT162b2 or with buffer (control group), by IM injection. Blood was collected on days 7, 14, 21, and 28 after immunization, and antibody immune responses were analyzed by ELISA and pVNT. On day 28, spleens were collected for splenocyte isolation and analysis of T-cell responses using IN ELISpot assays. In addition, Luminex assays and intracellular cytokine staining (ICS) were performed to assess cytokine responses.
|
1191 |
+
The results demonstrated that BNT162b2 was highly immunogenic in mice with strong antigen-binding IgG and high-titer neutralizing antibody responses together with a Th1-phenotype CD4+ response as well as an IN+, IL-2+, CD8+ T-cell response after a single immunization. Total IgG ELISA showed that the vaccine induced a strong, dose-dependent IgG response that recognizes both S1 and RBD. First detection of IgG antibodies was possible 7 days after immunization for all animals throughout the groups with an increase of total antibody amount until day 28. All mice developed functional neutralizing antibodies starting at 14 days after immunization, and the titer increased until the final study day. In addition, by profiling the IgG subtypes, a balanced IgG2a/IgG1 response was detected for the two higher doses (1 and 5 Ng), while the low dose induced a response with higher IgG1 than IgG2 levels (0.2 g). Stimulation of fresh splenocytes with an S protein-specific overlapping peptide pool demonstrated robust CD4+ and CD8+ T-cell IN responses, and a Th1-dominant profile was demonstrated in quantification of cytokines (IL-2 and IFNy) in the corresponding culture supernatants.
|
1192 |
+
Immunogenicity in Rats (Study Reports: 38166 and 20GR142)
|
1193 |
+
Male and female Wistar Han rats received three weekly IM doses of 100 ug of BNT162b2 (V8) in study 38166 or 30 g of BNT162b2 (V9) in study 20GR142. For both studies, serum samples were collected on day 17, two days after the 3rd administration, and on day 38, the end of the study. For study 38166, the sera were analyzed by ELISA for IgG that bound S1 and RBD as well as for SARS-CoV-2-S pseudovirus neutralizing
|
1194 |
+
113
|
1195 |
+
|
1196 |
+
antibodies. For study 20G142, sera were only analyzed for SARS-CoV-2 neutralization activities. After immunization with BNT162b2 (V8), animals developed high titers of antigen-specific antibodies as well as neutralization titers. BNT162b2 (V9) also elicited SARS-CoV-2 neutralizing antibody responses in both male and female rats at the end of the dosing and recovery phases of the study. SARS-CoV-2 neutralizing-antibody responses were not observed in animals prior to vaccine administration or in saline-administered control animals.
|
1197 |
+
Immunogenicity and SARS-CoV-2 Challenge in Nonhuman Primates (Study Report:
|
1198 |
+
VR-VTR-10671)
|
1199 |
+
BNT162b2 was assessed for immunogenicity and for protection against an infectious SARS-CoV-2 challenge in rhesus macaques. Groups of 2-4-year-old male rhesus macaques were immunized IM with 30 or 100 ug of BNT162b2 or saline control on days O and 21. In the study, a panel of 38 SARS-CoV-2 human convalescent sera (HCS) was included as a currently assessable benchmark to evaluate the quality of the humoral immune response to the vaccine. S1-binding IgG and SARS-CoV-2 neutralizing antibodies (determined by NT50 titers) were readily detectable as early as 14 days after a single immunization, and levels substantially increased further following the second immunization. On day 28, seven days after dose 2, at the 30-ug dose level, the neutralizing geometric mean titer (GMT) reached 8-fold the GMT of the 38 member panel of HCS; at the 100 g dose level, the neutralizing GMT was 18-fold the HCS GMT. The HCS were drawn from SARS-CoV-2 infected individuals 18 to 83 years of age, at least 14 days after PCR-confirmed diagnosis and at a time when individuals were asymptomatic. A decline of both S1-binding IgG levels and neutralizing titers was observed at the latest measured time point (day 56) but remained above the neutralizing GMT and the S1-binding geometric mean concentration (GMC) of the HCS.
|
1200 |
+
As seen following mouse immunization, strong S-specific Th1-dominant INF* but minimal IL-4 T-cell responses were detected in all immunized rhesus macaques after the the second 30 or 100 g dose of the BNT162b2. By intracellular cytokine staining analysis, there was a dose-dependent increase in S-specific CD4* T-cell response with a strong Th1-bias evidenced by a high frequency of INFy*, IL-2*, or TNF-at cells.
|
1201 |
+
Notably, CD8* T-cell responses were also detectable in BNT-162b2-immunized animals.
|
1202 |
+
Groups of 2-4 year old male rhesus macaques that had received two IM immunizations with 100 Ng BNT162b2 V9 (n=6) or saline (Control; n=3) 21 days apart were challenged 55 days after the second immunization with 1.05×10 plaque-forming units of SARS-CoV-2 (strain USA-WA1/2020), which were split equally between the intranasal (IN) and intratracheal (IT) routes. The presence of SARS-CoV-2 RNA was then measured by RT-QPCR in bronchoalveolar lavage fluid, nasal swabs, and oropharyngeal (OP) swabs.
|
1203 |
+
Viral RNA was detected in BAL fluid in all three control-immunized animals (2 on Day 3 and 1 on Day 6); however, no viral RNA was detected in BNT162b2-immunized and SARS-CoV-2-challenged animals. For nasal and OP swabs, viral RNA can be detected in most of the control-immunized animals at all tested time points (Days 1, 3, and 6),
|
1204 |
+
114
|
1205 |
+
|
1206 |
+
whereas it was only detected in BNT162b2-immunized macaques on Day 1 after challenge and became undetected on Day 3 and onward. None of the challenged animals showed clinical signs of significant illness, indicating that the 2-4-year-old male rhesus challenge model is primarily an infection model for SARS-CoV-2 and not a COVID-19 disease model. No radiographic evidence of vaccine-elicited enhanced disease was observed.
|
1207 |
+
9.2 Nonclinical Pharmacokinetics (PK) Evaluation
|
1208 |
+
Assessment included evaluating the PK and metabolism of two novel lipid excipients
|
1209 |
+
(ALC-0315 and ALC-0159) in the LNP and potential biodistribution of BNT162b2.
|
1210 |
+
The biodistribution of BNT162b2 was evaluated using (b) (4) expression as a surrogate reporter in b) (4) mice. (b) (4) expressing modRNA was formulated like BNT162b2 with the identical lipid composition to generate LNPs. Mice were injected intramuscularly with a total dose of 2 g/animal of LNP, and (b) (4) expression was measured in vivo following (b) (4) application at 6 h, 24 h, 48 h, 72 h, 6 d, and 9 d after injection. (b) (4) expression was identified at the injection site at 6 hours after injection and was not detected after 9 days. Expression in the liver was also present to a lesser extent at 6 hours after injection and was not detected by 48 hours after injection. A tissue distribution study was also performed in (b) (4)
|
1211 |
+
Rats using (8) (4)
|
1212 |
+
LNPs, which similarly comprised of a proprietary mixture of BNT162b2 lipid components and b) (4) -encoding mRNA. The test item also contains trace amounts of radiolabeled (b) (4) , a non-exchangeable, non-metabolizable lipid marker in order to monitor the disposition of the LP. The tested animals (21 male and 21 female) each received a single intramuscular dose of (b) (4)
|
1213 |
+
at a target mRNA total dose of
|
1214 |
+
50 Mg/animal. Whole blood and tissue samples were collected at 0.25, 1, 2, 4, 8, 24 and
|
1215 |
+
48 hours post-dose (three animals/sex/timepoint). The study results showed that following intramuscular injection, the concentration of (b) (4)
|
1216 |
+
was greatest in
|
1217 |
+
the injection site at all time points. Outside the injection site, levels of radioactivity peaked in the plasma by 1-4 hours post-dose and distributed mainly into liver, adrenal glands, spleen and ovaries over 48 hours. Total recovery of radioactivity outside of the injection site was greatest in the liver, with much lower total recovery in spleen and very little recovery in adrenals glands and ovaries. The mean concentrations and tissue distribution pattern were broadly similar between the sexes.
|
1218 |
+
An b) (4)
|
1219 |
+
rat PK study, using the (b) (4) -encoding modRNA formulated in
|
1220 |
+
an identical lipid composition as BNT1622, was performed to evaluate pharmacokinetics of both ALC-0315 and ALC-0159 lipids. In this study, plasma samples were collected up to 336 hours following a single ® administration to male b) (4)
|
1221 |
+
Rats at a dose of 1 mg/kg. The results demonstrated that ALC-0315 and ALC-0159 distribute from the plasma to the liver. Plasma concentrations of ALC-0315 and ALC-0159 decreased rapidly, with initial t12 of 1.62 and 1.72 h, respectively. ALC-0315 and ALC-0159 were then cleared from plasma, resulting in terminal elimination t12 of 139 and 72.7 h, respectively. The estimated percent of dose distributed to the liver was ~ 60% for ALC-0315 and ~20% for ALC-0159. While there was no detectable excretion of
|
1222 |
+
115
|
1223 |
+
|
1224 |
+
either lipid in the urine, the percent of lipids excreted unchanged in feces was ~1% for ALC-0315 and ~50% for ALC-0159.
|
1225 |
+
The in vitro metabolism of ALC-0315 and ALC-0159 was evaluated in blood, liver microsomes, S9 fractions, and hepatocytes from mice, rats, monkeys, and humans. The in vivo metabolism was examined in rat plasma, urine, feces, and liver samples from the PK study. Metabolism of ALC-0315 and ALC-0159 appears to occur slowly in vitro and in vivo. ALC-0315 and ALC-0159 are metabolized by hydrolytic metabolism of the ester and amide functionalities, respectively, and this hydrolytic metabolism is observed across the species evaluated.
|
1226 |
+
Reviewer's Comments
|
1227 |
+
Based on current hypotheses regarding the etiology of vaccine-associated enhanced disease, the provided data are reassuring due to: (1) the robust induction of functional (i.e., neutralizing) antibodies in mice, rats and rhesus macaques; (2) the Th1-bias in T-cell responses; and (3) the lack of disease in vaccinated rhesus macaques challenged with SARS-CoV-2. The nonclinical ADME studies indicate that the LNP mainly localizes to the site of injection and, to a lesser extent, distributes to the liver. Approximately 50% of ALC-0159 is excreted unchanged in feces, while metabolism appears to play a role in the elimination of ALC-0315.
|
1228 |
+
10. Clinical Assays
|
1229 |
+
10.1 Diagnostic Assays Used to Support Clinical Efficacy Endpoints
|
1230 |
+
Two diagnostic assays (Cepheid Xpert Xpress RT-PCR assay for the detection of SARS-CoV-2 in clinical specimens and Roche Elecsys Anti-SARS-CoV-2 assay for the evaluation of serostatus to SARS-CoV-2) are described below.
|
1231 |
+
Cepheid Xpert Xpress RT-PCR Assay
|
1232 |
+
The Cepheid Xpert Xpress SARS-CoV-2 assay, which has received FDA authorization under an EUA, is a rapid, automated in vitro diagnostic test for the qualitative detection of the nucleocapsid (N) and envelope (E) gene sequences from nasopharyngeal, nasal, or mid-turbinate swab and/or nasal wash/ aspirate specimens collected from patients suspected of having COVID-19 disease. The Cepheid Xpert assay was used to assess viral infection before vaccination and to confirm COVID-19 disease cases during study follow-up. Detection of RNA sequences for the N and E genes are carried out by realtime (b) (4) RT-PCR following a single-step sample processing protocol.
|
1233 |
+
Report VR-MVR-10080 describes the method validation for the Cepheid Xpert Xpress
|
1234 |
+
PC Assay conducted at Pfizer Pearl River. The validation results are summarized below
|
1235 |
+
Detection limits: Based on simulated samples (generated by spiking with the commercially available AccuPlex SARS-CoV-2 reference material or a live SARS-CoV-2 reporter virus), the detection limits was established to be (b) (4)
|
1236 |
+
and (b) (4)
|
1237 |
+
116
|
1238 |
+
|
1239 |
+
Accuracy: The assay's clinical accuracy was evaluated using simulated samples, patient samples as well as pre-COVID-19 samples.
|
1240 |
+
(b) (4)
|
1241 |
+
Taken together, the validation results for the Cepheid Xpert press SARS-CoV-2 assay support its intended use to test samples from Pfizer's clinical efficacy trial of the SARS-CoV-2 vaccine candidate and other epidemiological studies.
|
1242 |
+
Roche Elecsys Anti-SARS-CoV-2 Assay
|
1243 |
+
The Roche Elecsys Anti-SARS-CoV-2 assay, which has received FDA authorization under an EUA, is a rapid, automated in vitro diagnostic test for detecting the presence of antibodies to nucleocapsid (N) protein of SARS-CoV-2 (antigen not present in the BNT162b2 vaccine candidate) in serum or plasma samples. This is a qualitative assay marketed as an aid in identifying individuals with an adaptive immune response to SARS-CoV-2, which would indicate a recent or prior infection. The Elecsys Anti-SARS-CoV-2 assay will be used to assess serostatus before vaccination. Detection of N protein antibodies to SARS-CoV-2 is carried out by a two-step immunoassay method in which biotin- and ruthenium-conjugates of N protein are incubated with human serum or plasma. Streptavidin-coated paramagnetic beads are then added to isolate N protein/antibody complexes and chemiluminescent emissions are measured by a photomultiplier. Results are presented in qualitative "Positive" or "Negative" based on N-specific antibody levels above or below a predetermined cutoff index (COl) value.
|
1244 |
+
The specificity of the assay was evaluated using (b) (4)
|
1245 |
+
117
|
1246 |
+
|
1247 |
+
(b) (4)
|
1248 |
+
The sensitivity of the Elecsys Anti-SARS-CoV-2 assay was evaluated (5) (4)
|
1249 |
+
Reviewer's Comments:
|
1250 |
+
The submitted data are supportive of both the Cepheid Xpert Xpress assay and the Roche Elecsys Anti-SARS-CoV-2 assay being suitable for their intended use in Phase 2/3 clinical studies to evaluate the efficacy of the BNT162b2 vaccine performed at Pfizer's testing facility (Pfizer Vaccine Research and Development;
|
1251 |
+
Pearl River, NY). It is important to note that the validation studies relied on available information generated by the assay kit manufacturers (Cepheid and Roche) in support of assay EU as well as academic studies assessing assay performance published in peer-reviewed publications; the validation results generated by the applicant were in general agreement with information from these external sources.
|
1252 |
+
10.2 Immunogenicity Assays Used for Exploratory Immunogenicity Endpoints Two immunogenicity assays, SARS-CoV-2 mNeonGreen virus microneutralization assay and b) (4) direct Luminex assay (dLIA) for IgG quantification, are used for evaluating the immune responses from clinical trial samples.
|
1253 |
+
SARS-CoV-2 mNeonGreen Virus Microneutralization Assay (SARS-CoV-2 mG NT)
|
1254 |
+
The SARS-CoV-2 mNG NT is a biofunctional assay that measures neutralizing antibodies against SARS-CoV-2. The SARS-CoV-2 mG virus is derived from the USA WA1/2020 strain that had been engineered to contain an mNeonGreen (mNG) reporter gene in open reading frame 7 of the viral genome. The recombinant virus is rescued by reverse genetics and upon productive infection of cells, green fluorescence is produced. This reporter virus generates similar plaque morphologies and indistinguishable growth curves from wild-type virus.
|
1255 |
+
b) (4)
|
1256 |
+
118
|
1257 |
+
|
1258 |
+
(b) (4)
|
1259 |
+
Report VR-MVR-10083 describes the method validation for the SARS-CoV-2 mG NT assay conducted at Pfizer Hackensack. The validation results are summarized below:
|
1260 |
+
(b) (4)
|
1261 |
+
Reviewer's Comments
|
1262 |
+
Assay specificity was assessed in the evaluation of the limit of detection. This validation study at Pfizer Hackensack involved assessing (b) (4)
|
1263 |
+
119
|
1264 |
+
|
1265 |
+
(b) (4)
|
1266 |
+
Direct Luminex Assay (dLIA)
|
1267 |
+
The (b) (4)
|
1268 |
+
S1 IgG dLIA measures IgG antibody levels to the subunit 1 (S1) of the
|
1269 |
+
SARS-CoV-2 spike protein in human serum samples. (b) (4)
|
1270 |
+
Report VR-MQR-10211 summarizes qualification results for the (b) (4) S1 IgG dLIA. The qualification results are also summarized below:
|
1271 |
+
b) (4)
|
1272 |
+
120
|
1273 |
+
|
1274 |
+
(b) (4)
|
1275 |
+
Reviewer's Comments
|
1276 |
+
The qualification study reports for the S1 IgG dLIA and RBD IgG dLIA were submitted to the original BLA. Upon request for the validation reports for both assays, the applicant submitted to STN125742/0 amendment 19, the dLIA validation report (VR-MVR-10077) for quantification of IgG antibodies to SARS-CoV-2 full-length S protein.
|
1277 |
+
Additional IR was issued on August 2, 2021 to obtain clarification on which immunogenicity assay was used in the clinical studies. The applicant provided the response to amendment 31 on August 5, 2021, stating that the S1 IgG dLIA was used for immunogenicity assessments in Phase I (C4591001 sentinel cohort) and Phase 2 (C4591001 Phase 2 immunogenicity cohort) studies. The validated full-length S-binding IgG dLIA will be used for the lot consistency study and is not part of the original BLA filing.
|
1278 |
+
The qualification study report for the S1 IgG dLIA assay is considered acceptable for this BLA submission with the reasons as follows: 1) the vaccine efficacy is determined by the clinical endpoints and the dLIA assay was used for the exploratory immunogenicity endpoint; and 2) appropriate assay parameters were evaluated during the qualification study, including precision, (b) (4) linearity, lower limit of detection/quantification, range, reference standard bias, and assay run performance.
|
1279 |
+
121
|
1280 |
+
|
1281 |
+
The qualification results for the S1 IgG dLIA assay support its intended use for the quantification of anti-S1 IgG antibodies in human sera.
|
1282 |
+
122
|
1283 |
+
|
1284 |
+
5 pages have been determined to be not releasable: (b)(4)
|
1285 |
+
|
docs/Clinical Review Memo, August 23, 2021 - COMIRNATY.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
docs/December 16, 2021 Approval Letter - Comirnaty.txt
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FDA U.S. FOOD & DRUG
|
2 |
+
ADMINISTRATION
|
3 |
+
Our ST: BL 125742/36
|
4 |
+
SUPPLEMENT APPROVAL
|
5 |
+
BioNTech Manufacturing GmbH
|
6 |
+
Attention: Amit Patel
|
7 |
+
Pfizer Inc.
|
8 |
+
235 East 42nd Street
|
9 |
+
New York, NY 10017
|
10 |
+
December 16, 2021
|
11 |
+
Dear Mr. Patel:
|
12 |
+
We have approved your request submitted and received on November 18, 2021, to supplement your Biologics License Application (BLA) under section 351(a) of the Public Health Service Act for COVID-19 Vaccine, mRNA (COMIRNATY), to include a new 30 microgram dose formulation (Tris/Sucrose) of COMIRNATY manufactured at the Pfizer Manufacturing Belgium NV, Puurs, Belgium (Pfizer, Puurs) facility.
|
13 |
+
LABELING
|
14 |
+
We hereby approve the draft content of labeling including the Package Inserts submitted under amendment 10, dated December 13, 2021, and the draft carton and container labels submitted under amendment 6, dated December 9, 2021.
|
15 |
+
CONTENT OF LABELING
|
16 |
+
As soon as possible, but no later than 14 days from the date of this letter, please submit the final content of labeling (21 CFR 601.14) in Structured Product Labeling (SPL) format via the FDA automated drug registration and listing system, (ELIST) as described at http://www.fda.gov/ForIndustry/DataStandards/StructuredProductLabeling/ default.htm. Content of labeling must be identical to the Package Inserts submitted on December 13, 2021. Information on submitting SPL files using eLIST may be found in the guidance for industry SPL Standard for Content of Labeling Technical Qs and As at http://www.fda.gov/downloads/Drugs/GuidanceComplianceRegulatoryInformation/Guida nces/UCM072392.pdf.
|
17 |
+
The SPL will be accessible via publicly available labeling repositories.
|
18 |
+
CARTON AND CONTAINER LABELS
|
19 |
+
Please electronically submit final printed carton and container labels identical to the carton and container labels submitted on December 9, 2021, according to the guidance for industry Providing Regulatory Submissions in Electronic Format - Certain Human Pharmaceutical Product Applications and Related Submissions Using the eCTD Specifications at https://www.fda.gov/regulatory-information/search-fda-guidance-documents/providing-regulatory-submissions-electronic-format-certain-human-pharmaceutical-product-applications.
|
20 |
+
U.S. Food & Drug Administration
|
21 |
+
10903 New Hampshire Avenue
|
22 |
+
Silver Spring, MD 20993
|
23 |
+
www.fda.gov
|
24 |
+
|
25 |
+
Page 2 - STN BL 125742/36 - Amit Patel
|
26 |
+
All final labeling should be submitted as Product Correspondence to this BLA, ST BL 125742, at the time of use and include implementation information on Form FDA 356h.
|
27 |
+
ADVERTISING AND PROMOTIONAL LABELING
|
28 |
+
You may submit two draft copies of the proposed introductory advertising and promotional labeling with Form FDA 2253 to the Advertising and Promotional Labeling
|
29 |
+
Branch at the following address:
|
30 |
+
Food and Drug Administration
|
31 |
+
Center for Biologics Evaluation and Research
|
32 |
+
Document Control Center
|
33 |
+
10903 New Hampshire Ave.
|
34 |
+
WO71-G112
|
35 |
+
Silver Spring, MD 20993-0002
|
36 |
+
You must submit copies of your final advertising and promotional labeling at the time of initial dissemination or publication, accompanied by Form FDA 2253 (21 CFR 601.12(f)(4)).
|
37 |
+
All promotional claims must be consistent with and not contrary to approved labeling.
|
38 |
+
You should not make a comparative promotional claim or claim of superiority over other products unless vou have substantial evidence or substantial clinical experience to support such claims (21 CFR 202.1(e)(6)).
|
39 |
+
Please submit an amendment to all pending supplemental applications for this BLA that include revised labeling incorporating a revised content of labeling that includes this change.
|
40 |
+
We will include information contained in the above-referenced supplement in your BLA
|
41 |
+
file.
|
42 |
+
Sincerely,
|
43 |
+
Jerry P. Weir, Ph.D.
|
44 |
+
Director
|
45 |
+
Division of Viral Products
|
46 |
+
Office of Vaccines
|
47 |
+
Research and Review
|
48 |
+
Center for Biologics
|
49 |
+
Evaluation and Research
|
50 |
+
|
docs/Employee-Officer List Memo, August 22, 2021 - COMIRNATY.txt
ADDED
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FDA U.S. FOOD & DRUG
|
2 |
+
ADMINISTRATION
|
3 |
+
EMPLOYEE/OFFICER LIST MEMO
|
4 |
+
To:
|
5 |
+
Date:
|
6 |
+
BLA:
|
7 |
+
Sponsor:
|
8 |
+
Product:
|
9 |
+
The File
|
10 |
+
August 22, 2021
|
11 |
+
STN 125742/0
|
12 |
+
BioNTech Manufacturing GmbH
|
13 |
+
COVID-19 Vaccine, mRNA (COMIRNATY)
|
14 |
+
From:
|
15 |
+
Laura Gottschalk, PhD (RPM)
|
16 |
+
Through:
|
17 |
+
Ramachandra Naik, PhD (Chair)
|
18 |
+
The following officers or employees of FDA participated in the decision to approve this application and consented to be identified on this list.
|
19 |
+
• Maria Allende, MD
|
20 |
+
• Esmeralda Alvarado, PhD
|
21 |
+
• Dennis Cato
|
22 |
+
• Anil Choudhary, PhD
|
23 |
+
• Maryna Eichelberger, PhD
|
24 |
+
• CAPT Oluchi Elekwachi, PharmD, MPH
|
25 |
+
• CDR Debra M. Emerson, RPh, MS
|
26 |
+
• CDR Donald Ertel, MS
|
27 |
+
• Doran Fink, MD, PhD
|
28 |
+
• Laura Fontan, PhD Richard Forshee, PhD
|
29 |
+
• Patrick Funk, PhD Karla Garcia, MS
|
30 |
+
• Alifiya H. Ghadiali, PhD
|
31 |
+
• Laura Gottschalk, PhD
|
32 |
+
• Cheryl Hulme
|
33 |
+
• Dana Jones
|
34 |
+
• CDR James Kenney, DSc
|
35 |
+
• Shiowjen Lee, PhD
|
36 |
+
• Robin Levis, PhD
|
37 |
+
• Nicole Li, MS
|
38 |
+
• Tsai-Lien Lin, PhD
|
39 |
+
• Yun Lu, PhD
|
40 |
+
• Christian D. Lynch
|
41 |
+
• Carrie Mampilly, MPH
|
42 |
+
• Ramachandra Naik, PhD
|
43 |
+
• Narayan Nair, MD
|
44 |
+
• Timothy Nelle, PhD
|
45 |
+
• Tao Pan, PhD
|
46 |
+
• Keith Peden, PhD
|
47 |
+
• Kirk Prutzman, PhD
|
48 |
+
• Joseph Quander, III
|
49 |
+
• Robert Sausville
|
50 |
+
• CDR David Schwab, MSIS
|
51 |
+
• CAPT Ann T. Schwartz, MD
|
52 |
+
• John Scott, PhD
|
53 |
+
• Muhammad Shahabuddin, PhD
|
54 |
+
• CAPT Michael Smith, PhE
|
55 |
+
• Daphne Stewart
|
56 |
+
• Lisa L. Stockbridge, PhD
|
57 |
+
• Xinyu Tang, PhD
|
58 |
+
• Hsiaoling Wang, PhD
|
59 |
+
• Jerry P. Weir, PhD Susan Wollersheim, MD
|
60 |
+
• Zhongren Wu, PhD Ye Yang, PhD Emnet Yitbarek, PhD
|
61 |
+
• Iryna Zubkova, PhD
|
62 |
+
1
|
63 |
+
|
docs/July-8-2022-Approval-Letter-COMIRNATY.txt
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FDA U.S. FOOD & DRUG
|
2 |
+
ADMINISTRATION
|
3 |
+
Our ST: BL 125742/45
|
4 |
+
SUPPLEMENT APPROVAL
|
5 |
+
PMR FULFILLED
|
6 |
+
July 8, 2022
|
7 |
+
BioNTech Manufacturing GmbH
|
8 |
+
Attention: Gosia Mineo, M.S.
|
9 |
+
Pfizer, Inc.
|
10 |
+
1 Pfizer Way 190/004/4405
|
11 |
+
Pearl River, NY 10965
|
12 |
+
Dear Ms. Mineo:
|
13 |
+
We have approved your request received on December 16, 2021, to supplement your Biologics License Application (BLA) submitted under section 351(a) of the Public Health Service Act for COVID-19 Vaccine, mRNA (COMIRNATY), manufactured at the Pfizer Manufacturing Belgium NV, Purs, Belgium (Pfizer, Puurs), Pharmacia & Upjohn Company LLC, Kalamazoo, Michigan (Pfizer, Kalamazoo) and Hospira, Inc., McPherson, Kansas (Pfizer, McPherson) facilities, to include use in adolescents 12 through 15 years of age for active immunization to prevent coronavirus disease 2019 (COVID-19) caused by severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2).
|
14 |
+
The review of this supplement was associated with the following National Clinical Trial number: 04368728.
|
15 |
+
LABELING
|
16 |
+
We hereby approve the draft content of Package Insert labeling, submitted under amendment 13, dated July 1, 2022.
|
17 |
+
CONTENT OF LABELING
|
18 |
+
As soon as possible, but no later than 14 days from the date of this letter, please submit the final content of labeling (21 CFR 601.14) in Structured Product Labeling (SPL) format via the FDA automated drug registration and listing system (eLIST), as described at http://www.fda.gov/ForIndustry/DataStandards/StructuredProductLabeling/ default.htm. Content of labeling must be identical to the Package Insert submitted on July 1, 2022. Information on submitting SPL files using eLIST may be found in the guidance for industry SPL Standard for Content of Labeling Technical Qs and As at http://www.fda.gov/downloads/Drugs/GuidanceComplianceRegulatoryInformation/Guida nces/UCM072392.pdf.
|
19 |
+
The SPL will be accessible via publicly available labeling repositories.
|
20 |
+
U.S. Food & Drug Administration
|
21 |
+
10903 New Hampshire Avenue
|
22 |
+
Silver Spring, MD 20993
|
23 |
+
www.fda.gov
|
24 |
+
|
25 |
+
Page 2 - STN BL 125742/45 - Gosia Mineo, M.S.
|
26 |
+
All final labeling should be submitted as Product Correspondence to this BLA, ST 125742, at the time of use and include implementation information on Form FDA 356h.
|
27 |
+
ADVERTISING AND PROMOTIONAL LABELING
|
28 |
+
You may submit two draft copies of the proposed introductory advertising and promotional labeling with Form FDA 2253 to the Advertising and Promotional Labeling
|
29 |
+
Branch at the following address:
|
30 |
+
Food and Drug Administration
|
31 |
+
Center for Biologics Evaluation and Research
|
32 |
+
Document Control Center
|
33 |
+
10903 New Hampshire Ave.
|
34 |
+
WO71-G112
|
35 |
+
Silver Spring, MD 20993-0002
|
36 |
+
You must submit copies of your final advertising and promotional labeling at the time of initial dissemination or publication, accompanied by Form FDA 2253 (21 CFR 601.12(f)(4)).
|
37 |
+
All promotional claims must be consistent with and not contrary to approved labeling.
|
38 |
+
You should not make a comparative promotional claim or claim of superiorit over other products unless you have substantial evidence or substantial clinical experience to support such claims (21 CFR 202.1(e)(6)).
|
39 |
+
Please submit an amendment to all pending supplemental applications for this BLA that include revised labeling incorporating a revised content of labeling that includes these changes.
|
40 |
+
FULFILLED POSTMARKETING REQUIREMENT
|
41 |
+
This submission fulfills your postmarketing requirement #1 identified in the August 23, 2021, approval letter for BLA ST 125742/0 for COVID-19 Vaccine, mRNA.
|
42 |
+
The requirement addressed in this submission is as follows:
|
43 |
+
1. Deferred pediatric Study C4591001 to evaluate the safety and effectiveness of
|
44 |
+
COMIRNATY in children 12 years through 15 years of age.
|
45 |
+
Final Protocol Submission: October 7, 2020
|
46 |
+
Study Completion: May 31, 2023
|
47 |
+
Final Report Submission: October 31, 2023
|
48 |
+
|
49 |
+
Page 3 - STN BL 125742/45 - Gosia Mineo, M.S.
|
50 |
+
PEDIATRIC REQUIREMENTS
|
51 |
+
Under the Pediatric Research Equity Act (PREA) (21 U.S.C. 355c), all applications for new active ingredients, new indications, new dosage forms, new dosing regimens, or new routes of administration are required to contain an assessment of the safety and effectiveness of the product for the claimed indication in pediatric patients unless this requirement is waived, deferred, or inapplicable.
|
52 |
+
We note that you have fulfilled the pediatric study requirement for ages 12 through 15 vears for this application.
|
53 |
+
We will include information contained in the above-referenced supplement in your BLA file.
|
54 |
+
Sincerely,
|
55 |
+
Doran Fink, M.D., Ph.D.
|
56 |
+
Acting Deputy Director
|
57 |
+
Office of Vaccines Research and Review
|
58 |
+
Center for Biologics Evaluation and Research
|
59 |
+
|
docs/July-8-2022-Clinical-Review-Memo-COMIRNATY.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
docs/November 8, 2021 Summary Basis for Regulatory Action - Comirnaty.txt
ADDED
@@ -0,0 +1,1008 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Date:
|
2 |
+
From:
|
3 |
+
Summary Basis for Regulatory Action
|
4 |
+
11/8/2021
|
5 |
+
Ramachandra Naik, PhD, Review Committee Chair,
|
6 |
+
DVRPA/OVRR
|
7 |
+
BLA STN:
|
8 |
+
Applicant:
|
9 |
+
125742/0
|
10 |
+
BioNTech Manufacturing GmbH (in partnership with
|
11 |
+
Pfizer, Inc.)
|
12 |
+
Submission Receipt
|
13 |
+
Date:
|
14 |
+
May 18, 2021
|
15 |
+
PDUFA Action Due Date: January 16, 2022
|
16 |
+
Proper Name:
|
17 |
+
COVID-19 Vaccine, mRNA
|
18 |
+
Proprietary Name:
|
19 |
+
COMIRNATY
|
20 |
+
Active immunization to prevent coronavirus disease
|
21 |
+
2019 (COVID-19) caused by severe acute respiratory
|
22 |
+
Indication:
|
23 |
+
syndrome coronavirus 2 (SARS-CoV-2) in individuals 16 years of age and older
|
24 |
+
Recommended Action: The Review Committee recommends approval of this product.
|
25 |
+
Director, Office of Vaccines Research and Review
|
26 |
+
Director, Office of Compliance and Biologics Quality
|
27 |
+
|
28 |
+
Discipline Reviews
|
29 |
+
CMC
|
30 |
+
• CMC Product (OVRR)
|
31 |
+
• Facilities Review (OCBQ/DMPQ)
|
32 |
+
• Facilities Inspection (OCBQ/DMPQ and
|
33 |
+
OVRR/DVP)
|
34 |
+
• Lot Release, QC, Test Methods, Product
|
35 |
+
Quality (OCBQ/DBSQC)
|
36 |
+
Clinical
|
37 |
+
• Clinical (OVRR)
|
38 |
+
• Postmarketing Safety, Epidemiological
|
39 |
+
Review (OBE/DE)
|
40 |
+
• Real World Evidence
|
41 |
+
• Benefit-Risk Assessment
|
42 |
+
• BIMO
|
43 |
+
Statistical
|
44 |
+
• Clinical Data (OBE/DB)
|
45 |
+
• Nonclinical Data
|
46 |
+
Nonclinical/Pharmacology/Toxicology
|
47 |
+
• Toxicology (OVRR)
|
48 |
+
• Developmental Toxicology (OVRR)
|
49 |
+
Labeling
|
50 |
+
• Promotional (OCBQ/APLB)
|
51 |
+
• Carton and Container Labels
|
52 |
+
• Labeling Review
|
53 |
+
• Consults (CDISC, Datasets)
|
54 |
+
• Documentation Review
|
55 |
+
Advisory Committee Summary
|
56 |
+
Reviewer / Consultant - Office/Division
|
57 |
+
Xiao Wang, PhD, OVRR/DVP
|
58 |
+
Anissa Cheung, MSc, OVRR/DVP
|
59 |
+
Kathleen Jones, PhD, OCBQ/DMPQ
|
60 |
+
Laura Fontan, PhD, OCBQ/DMPQ
|
61 |
+
Gregory Price, PhD, OCBQ/DMPQ
|
62 |
+
CDR Donald Ertel, MS, OCBQ/DMPQ
|
63 |
+
Nicole Li, MS, OCBQ/DMPQ
|
64 |
+
Christian Lynch, OCBQ/DMPQ
|
65 |
+
Alifiya Ghadiali, OCBQ/DMPQ
|
66 |
+
Zhongren Wu, PhD, OCBQ/DMPQ
|
67 |
+
Ekaterina Allen, PhD, OCBQ/DMPQ
|
68 |
+
Hsiaoling Wang, PhD, OCBQ/DBSQC
|
69 |
+
Emnet Yitbarek, PhD, OCBQ/DBSQC
|
70 |
+
Karla Garcia, MS, OCBQ/DBSQC
|
71 |
+
Anil Choudhary, PhD, MBA, OCBQ/DBSQC
|
72 |
+
Esmeralda Alvarado Facundo, PhD, OCBQ/DBSQC
|
73 |
+
Marie Anderson, PhD, OCBQ/DBSQC
|
74 |
+
Cheryl Hulme, OCBQ/DMPQ
|
75 |
+
Susan Wollersheim, MD, OVRR/DVRPA
|
76 |
+
CAPT Ann T. Schwartz, MD, OVRR/DVRPA
|
77 |
+
Lucia Lee, MD, OVRR/DVRPA
|
78 |
+
Deborah Thompson, MD, MSPH, OBE/DE
|
79 |
+
Yun Lu, PhD, OBE
|
80 |
+
Hong Yang, PhD, OBE
|
81 |
+
Osman Yogurtcu, PhD, OBE
|
82 |
+
Patrick Funk, PhD, OBE
|
83 |
+
Haecin Chun, MT (ASCP) SSB, MS, OCBQ/DIS
|
84 |
+
Lei Huang, PhD, OBE/DB
|
85 |
+
Ye Yang, PhD, OBE/DB
|
86 |
+
Xinyu Tang, PhD, OBE/DB
|
87 |
+
Nabil Al-Humadi, PhD, OVRR/DVRPA
|
88 |
+
CAPT Oluchi Elekwachi, PharmD, MPH,
|
89 |
+
OCBQ/APLB
|
90 |
+
Daphne Stewart, OVRR/DVRPA
|
91 |
+
Laura Gottschalk, PhD, OVRR/DVRPA
|
92 |
+
Brenda Baldwin, PhD, OVRR/DVRPA
|
93 |
+
CAPT Michael Smith, PhD, OVRR/DVRPA
|
94 |
+
No Advisory Committee meeting held
|
95 |
+
2
|
96 |
+
|
97 |
+
Table of Contents
|
98 |
+
1. Introduction......
|
99 |
+
2. Background .....
|
100 |
+
3. Chemistry, Manufacturing and Controls (CMC) a.
|
101 |
+
Product Quality.
|
102 |
+
b.
|
103 |
+
Testing Specifications......
|
104 |
+
......3
|
105 |
+
....4
|
106 |
+
.....6
|
107 |
+
...6
|
108 |
+
.. 10
|
109 |
+
C. CBER Lot Release.
|
110 |
+
11
|
111 |
+
d.
|
112 |
+
Facilities Review / Inspection
|
113 |
+
1 1
|
114 |
+
e.
|
115 |
+
Container/Closure System.
|
116 |
+
f. Environmental Assessment.
|
117 |
+
4. Nonclinical Pharmacology/Toxicology
|
118 |
+
5. Clinical Pharmacology .....
|
119 |
+
6. Clinical/Statistical..
|
120 |
+
a.
|
121 |
+
Clinical Program
|
122 |
+
b.
|
123 |
+
Bioresearch Monitoring (BIMO) - Clinical/Statistical/Pharmacovigilance ... 22
|
124 |
+
7. Safety and Pharmacovigilance ......
|
125 |
+
8. Labeling.....
|
126 |
+
9. Advisory Committee Meetings ......
|
127 |
+
10. Other Relevant Regulatory Issues.
|
128 |
+
11. Recommendations and Benefit/Risk Assessment
|
129 |
+
а.
|
130 |
+
b.
|
131 |
+
C.
|
132 |
+
Recommended Regulatory Action.......
|
133 |
+
Benefit/Risk Assessment..............
|
134 |
+
Recommendation for Postmarketing Activities
|
135 |
+
14
|
136 |
+
14
|
137 |
+
..14
|
138 |
+
....... 15
|
139 |
+
.......15
|
140 |
+
..... 15
|
141 |
+
......22
|
142 |
+
.....25
|
143 |
+
.....26
|
144 |
+
....27
|
145 |
+
..27
|
146 |
+
..... 27
|
147 |
+
............ 28
|
148 |
+
. 28
|
149 |
+
1. Introduction
|
150 |
+
BioNTech Manufacturing GmbH (in partnership with Pfizer Inc.) submitted a Biologics License Application (BLA) ST BL 125742 for licensure of COVID-19 Vaccine, mRNA.
|
151 |
+
The proprietary name of the vaccine is COMIRNATY. COMIRNATY is a vaccine indicated for active immunization to prevent coronavirus disease 2019 (COVID-19) caused by severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2) in individuals 16 years of age and older. The vaccine is administered intramuscularly (IM) as a series of two 30 g doses (0.3 mL each) 3 weeks apart.
|
152 |
+
COMIRNATY (also referred to as BNT162b2 in this document) contains a nucleoside-modified messenger RNA (mRNA) encoding the viral spike glycoprotein (S) of SARS-CoV-2 that is formulated in lipids including ((4-hydroxybutyl)azanediyl)bishexane-6,1-diyl)bis(2-hexyldecanoate), 2-(polyethylene glycol 2000)-N,N-ditetradecylacetamide, 1,2-distearoyl-sn-glycero-3-phosphocholine, and cholesterol.
|
153 |
+
3
|
154 |
+
|
155 |
+
COMIRNATY is supplied as a concentrated multi-dose liquid formulation (0.45 mL
|
156 |
+
volume) stored frozen at -90°C to -60°C in a 2 mL Type 1 glass vial. A sterile diluent, 0.9% Sodium Chloride Injection, US, is supplied separately in 2 mL glass vials manufactured by Fresenius Kabi LLC and in 10 mL vials manufactured by Hospira, Inc.
|
157 |
+
The diluent is stored at 20°C to 25°C and will be shipped in parallel with shipments of
|
158 |
+
COMIRNATY, with arrivals synchronized so that the diluent is delivered before the vaccine is delivered. Healthcare providers may also use other sources of sterile 0.9% Sodium Chloride Injection, US as a diluent for COMIRNATY, if necessary.
|
159 |
+
The COMIRNATY Multiple Dose Vial is thawed in a refrigerator (2°C to 8°C) for 2 to 3 hours or at room temperature (up to 25°C) for 30 minutes. The vial must be warmed to room temperature for dilution. Once at room temperature, the COMIRNATY Multiple Dose Vial is diluted with 1.8 mL of the diluent. After dilution, each vial of COMIRNATY contain six doses of 0.3 mL of vaccine. Each 0.3 mL dose of COMIRNATY contains 30 ug of mRNA encoding the spike glycoprotein of SARS-CoV-2 and the following ingredients: lipids (0.43 mg ((4-hydroxybutyl)azanediyl)bis(hexane-6,1-diyl)bis (2-hexyldecanoate), 0.05 mg 2-(polyethylene glycol 2000)-N, N-ditetradecylacetamide, 0.09 mg 1,2-distearoyl-sn-glycero-3-phosphocholine, and 0.2 mg cholesterol), 0.01 mg potassium chloride, 0.01 mg monobasic potassium phosphate, 2.52 mg sodium chloride, 0.07 mg dibasic sodium phosphate dihydrate, and 6 mg sucrose. After dilution, the vials are stored at 2°C to 25°C and must be used within 6 hours from the time of dilution.
|
160 |
+
COMIRNATY is preservative-free.
|
161 |
+
The expiry dating period for COMIRNATY Multiple Dose Vial is 9 months from the date of manufacture when stored at -90°C to -60°C. The date of manufacture shall be no later than the date of final sterile filtration of the formulated drug product (at Pharmacia & Upjohn Company LLC in Kalamazoo, Michigan, the date of manufacture is defined as the date of sterile filtration for the final drug product; at Pfizer-Manufacturing Belgium NV in Purs, Belgium, it is defined as the date of the b) (4)
|
162 |
+
2. Background
|
163 |
+
SARS-CoV-2 is a novel, zoonotic coronavirus that emerged in late 2019 and was identified in patients with pneumonia of unknown cause. The virus was named SARS-
|
164 |
+
Cov-2 because of its similaritv to the coronavirus responsible for severe acute respiratory syndrome (SARS-CoV, a lineage B betacoronavirus). SARS-CoV-2 is an enveloped, positive-sense, single-stranded RNA virus sharing more than 70% of its sequence with SARS-CoV, and ~50% with the coronavirus responsible for Middle Eastern respiratory syndrome (MERS-CoV). SARS-CoV-2 is the causative agent of COVID-19, an infectious disease with respiratory and systemic manifestations. Disease symptoms vary, with many persons presenting with asymptomatic or mild disease and some progressing to severe respiratory tract disease including pneumonia and acute respiratory distress syndrome (ARDS), leading to multiorgan failure and death.
|
165 |
+
The SARS-CoV-2 pandemic continues to present a challenge to global health and, as of August 2021, has caused approximately 208 million cases of COVID-19, including 4.3 million deaths worldwide. In the United States (U.S.), more than 37 million cases have
|
166 |
+
4
|
167 |
+
|
168 |
+
been reported to the Centers for Disease Control and Prevention (CDC), of which 90% have occurred in individuals 16 years of age or older. While the pandemic has caused morbidity and mortality on an individual level, the continuing spread of SARS-CoV-2 and emerging variants has caused significant challenges and disruptions in worldwide healthcare systems, economies, and many aspects of human activity (travel, employment, education).
|
169 |
+
In the U.S., there are no licensed vaccines or anti-viral drugs for the prevention of
|
170 |
+
COVID-19. In December 2020, the FDA issued emergency use authorizations (EUs) for two mRNA vaccines which encode the SARS-CoV-2 spike glycoprotein: Pfizer-BioNTech
|
171 |
+
COVID-19 Vaccine (manufactured by Pfizer, Inc. in partnership with BioNTech manufacturing GmbH) for use in individuals 16 years of age and older, and Moderna COVID-19 Vaccine (manufactured by ModernaTX, Inc.) for use in individuals 18 years of age and older. In February 2021, the FDA issued an EUA for a replication-incompetent adenovirus tvpe 26 (Ad26)-vectored vaccine encoding a stabilized variant of the SARS-CoV-2 spike glycoprotein, manufactured by Jansen Biotech, Inc. (Jansen COVID-19
|
172 |
+
Vaccine) for use in individuals 18 years of age and older. In May 2021, the FDA expanded the emergency use authorization for the Pfizer-BioNTech COVID-19 Vaccine to include adolescents 12 through 15 years of age. On October 22, 2020, FDA approved remdesivir for use in adult and pediatric patients 12 years of age and older and weighing at least 40 kilograms (about 88 pounds) for the treatment of COVID-19 requiring hospitalization. Several other therapies are currently available under emergency use.
|
173 |
+
Table 1. Regulatory History
|
174 |
+
Regulatory Events / Milestones
|
175 |
+
1. Pre-IND meeting (Written Responses)
|
176 |
+
2. IND submission
|
177 |
+
3. Fast Track designation granted
|
178 |
+
4. Submission of EUA request for individuals ≥16 years of age
|
179 |
+
5. Issuance of EUA for individuals ≥16 years
|
180 |
+
6. Submission of EUA request for individuals 12-15 years of age
|
181 |
+
7. Issuance of EUA for individuals 12-15 years of age
|
182 |
+
8. Pre-BLA meeting (Written Responses)
|
183 |
+
9. BLA ST 125742/0 received
|
184 |
+
10 BLA filed
|
185 |
+
11. Mid-Cycle communication
|
186 |
+
12. Late-Cycle meeting
|
187 |
+
13. Action Due Date
|
188 |
+
Date
|
189 |
+
April 6, 2020 (Part 1)
|
190 |
+
April 10, 2020 (Part 2)
|
191 |
+
April 22, 2020
|
192 |
+
July 7, 2020
|
193 |
+
November 20, 2020
|
194 |
+
December 11, 2020
|
195 |
+
April 9, 2021
|
196 |
+
May 10, 2021
|
197 |
+
Clinical: March 9, 2021
|
198 |
+
CMC: March 31, 2021
|
199 |
+
May 18, 2021
|
200 |
+
July 15, 2021
|
201 |
+
The Applicant canceled
|
202 |
+
The Applicant canceled
|
203 |
+
January 16, 2022
|
204 |
+
5
|
205 |
+
|
206 |
+
3. Chemistry, Manufacturing and Controls (CMC)
|
207 |
+
a. Product Quality
|
208 |
+
COMIRNATY Manufacturing Overview
|
209 |
+
COMIRNATY contains a nucleoside-modified messenger RNA (mRNA) encoding the viral spike glycoprotein (S) of SARS-CoV-2 that is formulated in lipids including (4-hydroxybutyl)azanediyl)bis(hexane-6,1-diyl)bis(2-hexyldecanoate),2-(polyethylene glycol 2000)-N,N-ditetradecylacetamide, 1,2-distearoyl-sn-glycero-3-phosphocholine, and cholesterol. COMIRNATY is supplied as a frozen suspension to be diluted with a diluent, 0.9% Sodium Chloride Injection, US, that is supplied separately or can be acquired elsewhere, if necessary. Manufacture of the mRNA drug substance will take place in Andover, MA, USA. The final formulated drug product will be manufactured, filled, finished, labeled and packaged in Purs, Belgium or in Kalamazoo, MI, USA. The 0.9% Sodium Chloride Injection, US diluent will be manufactured by Fresenius-Kabi
|
210 |
+
USA, LLC ((b) (4)
|
211 |
+
) and Hospira, Inc. ((b) (4)
|
212 |
+
).
|
213 |
+
The mRNA in COMIRNATY is a single-stranded, 5'-capped mRNA encoding the full-length SARS-CoV-2 spike glycoprotein derived from the Wuhan-Hu-1 isolate (GenBank MN908947.3 and GenBank QHD43416.1). The antigen-coding RNA sequence is codon-optimized and contains two proline mutations (b) (4)
|
214 |
+
87P), which ensures an
|
215 |
+
antigenically optimal trimerized pre-fusion confirmation (S-2P). The RNA also contains common structural elements, including 5'-cap, 5'-UTR, 3'-UTR, and poly(A) tail, all of which are designed for mediating high RNA stability and translation efficiency. During
|
216 |
+
RNA transcription, (b) (4) is replaced with the (b) (4)
|
217 |
+
.This
|
218 |
+
nucleoside substitution has been demonstrated to enhance translation of in vitro transcribed mRNA while reducing its reactogenicity.
|
219 |
+
Drug Substance (DS)
|
220 |
+
The manufacture of mRNA DS is divided into (b) (4) major manufacturing process stages:
|
221 |
+
(b) (4)
|
222 |
+
6
|
223 |
+
|
224 |
+
Drug Product (DP)
|
225 |
+
The manufacturing process of the DP is divided into the following critical steps:
|
226 |
+
• Preparation of the DS: (b) (4)
|
227 |
+
• Formation of LNP: In this step, (b) (4)
|
228 |
+
• Formulation of the bulk DP: The bulk DP is formulated by b) (4)
|
229 |
+
• Filling: The bulk DP is sterile filtered and aseptically filled into 2 mL Type I borosilicate glass vials manufactured by b) (4)
|
230 |
+
• Labeling and storage: The filled vials are visually inspected, labeled, and frozen at
|
231 |
+
-90°C to -60°C.
|
232 |
+
Composition
|
233 |
+
The composition of the formulation of COMIRNATY and the function of the ingredients are provided in Table 2.
|
234 |
+
Table 2. Composition of COMIRNATY Multiple Dose Vial
|
235 |
+
Ingredients
|
236 |
+
Amount per vial Function
|
237 |
+
SARS-CoV-2 spike glycoprotein mRNA
|
238 |
+
(UNII: 5085ZFP6SJ)
|
239 |
+
ALC-0315 [4-hydroxybutyl)azanediyl)bis (hexane-6, 1-diyl)bis(2-hexyldecanoate)
|
240 |
+
(UNIl: AVX8DX713V)
|
241 |
+
ALC-0159 [2-(polyethylene glycol 2000)-N,N-ditetradecylacetamide]
|
242 |
+
(UNIl: PJH39UMU6H)
|
243 |
+
DSPC [1,2-distearoyl-sn-glycero-3-phosphocholine]
|
244 |
+
(UNIt: 0431P12MOK)
|
245 |
+
Cholesterol
|
246 |
+
(UNII: 97C5T2UQ7J)
|
247 |
+
Potassium chloride
|
248 |
+
(UNIl: 660YQ98110)
|
249 |
+
Monobasic potassium phosphate
|
250 |
+
(UNI: 4J9FJOHL51)
|
251 |
+
Sodium Chloride
|
252 |
+
225 ug
|
253 |
+
Active Ingredient
|
254 |
+
3.23 mg
|
255 |
+
Lipid component
|
256 |
+
0.4 mg
|
257 |
+
Lipid component
|
258 |
+
0.7 mg
|
259 |
+
Lipid component
|
260 |
+
1.4 mg
|
261 |
+
Lipid component
|
262 |
+
0.07 mg
|
263 |
+
Excipient
|
264 |
+
0.07 mg
|
265 |
+
2.7 mg
|
266 |
+
Excipient
|
267 |
+
Excipient
|
268 |
+
|
269 |
+
Ingredients
|
270 |
+
Amount per vial Function
|
271 |
+
(UNIl: 451W471Q8X)
|
272 |
+
Dibasic sodium phosphate dihydrate
|
273 |
+
(UNII: GR686LBA74)
|
274 |
+
Sucrose
|
275 |
+
(UNII: C151H8M554)
|
276 |
+
Water for Injection
|
277 |
+
(UNII: 059QFOKOOR)
|
278 |
+
UNII: Unique Ingredient Identifier
|
279 |
+
q.s. = quantum satis (as much as may suffice)
|
280 |
+
0.49 mg
|
281 |
+
46.0 mg
|
282 |
+
q.S.
|
283 |
+
Excipient
|
284 |
+
Excipient
|
285 |
+
Excipient
|
286 |
+
Stability of COMIRNATY in Multiple Dose Vial
|
287 |
+
For the long-term storage condition study, parameters monitored are Appearance,
|
288 |
+
(o) (4) by
|
289 |
+
(b) (4)
|
290 |
+
, LNP (b) (4)
|
291 |
+
, RNA content
|
292 |
+
and (b) (4)
|
293 |
+
Assay, Lipid (ALC-0315, ALC-0159, DSPC, and
|
294 |
+
Cholesterol) Content by (b) (4)
|
295 |
+
, Endotoxin content by b) (4)
|
296 |
+
, Container closure integrity test by (b) (4)
|
297 |
+
,and Sterility.
|
298 |
+
The stability data provided in the submission support a dating period of 9 months from the date of manufacture when stored at -90°C to -60°C for the COMIRNATY DP filled in 2 mL Tve I borosilicate glass vials. Stabilit data on emergency use and process performance qualification lots also support storage at -20°C ‡ 5°C for up to 2 weeks as well as short term storage at 5°C + 3°C for up to one month (within the 9-month expiry dating period.
|
299 |
+
The Diluent for COMIRNATY
|
300 |
+
The contents of the vaccine vial are diluted with sterile 0.9% Sodium Chloride Injection, USP. Vials of sterile 0.9% Sodium Chloride Injection, US are provided but shipped separately. The provided diluent or another sterile 0.9% Sodium Chloride Injection, USP should be used as the diluent.
|
301 |
+
The provided 0.9% Sodium Chloride Injection, USP diluent will be supplied either as cartons of 10 mL single-use vials manufactured by Hospira, Inc (NDC 0409-4888-10), or 2 mL single-use vials manufactured by Fresenius Kabi USA, LLC (NDC 63323-186-02).
|
302 |
+
The composition of the saline diluent and the function of the ingredients are provided in
|
303 |
+
Table 3.
|
304 |
+
Table 3. Composition of the Diluent
|
305 |
+
Ingredients
|
306 |
+
SODIUM CHLORIDE
|
307 |
+
(UNIl: 451W471Q8X)
|
308 |
+
Quantity
|
309 |
+
(per 0.3 mL dose)
|
310 |
+
2.16 mg
|
311 |
+
Water for Injection
|
312 |
+
0.3 ml
|
313 |
+
(UNIt: 059QFOKOOR)
|
314 |
+
UNII: Unique Ingredient Identifier
|
315 |
+
Function
|
316 |
+
Excipient
|
317 |
+
Excipient
|
318 |
+
8
|
319 |
+
|
320 |
+
COMIRNATY
|
321 |
+
Product Composition
|
322 |
+
COMIRNATY Multiple Dose Vial is supplied as a frozen suspension that is diluted at the time of use with 1.8 mL of saline diluent. A single dose of COMIRNATY contains 30 ug mRNA in a volume of 0.3 mL, and it does not contain preservative. [See section 10.b regarding exception to the 21 CFR 610.15(a) requirement for a preservative.]
|
323 |
+
Stability of COMIRNATY
|
324 |
+
The Applicant conducted in-use stability studies to support the maximum temperature and time period that COMIRNATY can retain its physicochemical properties. Based on the data generated, COMIRNATY retains its quality attributes for up to 6 hours when stored between 2°C to 25°C (35°F to 77°F).
|
325 |
+
The carton labels and the Package Insert (PI) state that after dilution, vials should be stored between 2°C to 25°C (35°F to 77°F) and used within 6 hours from the time of dilution. During storage, exposure to room light should be minimized, and direct exposure to sunlight and ultraviolet light should be avoided. Any vaccine remaining in vials must be discarded after 6 hours and cannot be refrozen.
|
326 |
+
Assavs used in clinical studies
|
327 |
+
Diagnostic Assays Used to Support Clinical Efficacy Endpoints
|
328 |
+
Two clinical diagnostic assays (Cepheid Xpert Xpress RT-PCR assay for the detection of SARS-CoV-2 in clinical specimens and Roche Elecsys Anti-SARS-CoV-2 assay for the evaluation of serostatus to SARS-CoV-2) were used to assess clinical endpoints. Both assavs have received FDA authorization under EUA.
|
329 |
+
The Cepheid Xpert Xpress RT-PCR assay is a rapid, automated in vitro diagnostic test for the qualitative detection of the N and E gene sequences from nasopharyngeal, nasal, or mid-turbinate swab and/or nasal wash/aspirate specimens collected from patients suspected of having COVID-19. This assay is used to assess viral infection of the participants before vaccination and to confirm COVID-19 cases during study follow-up.
|
330 |
+
The Roche Elecsys Anti-SARS-CoV-2 assay is a rapid, automated in vitro diagnostic test for detecting the presence of antibodies to nucleocapsid (N) protein of SARS-CoV-2 (antigen not present in COMIRNATY) in serum or plasma samples. This is a qualitative assay marketed as an aid in identifving individuals with an adaptive immune response to SARS-CoV-2, which would indicate a recent or prior infection. This assay is used to assess serostatus of the participants before vaccination.
|
331 |
+
Data were submitted to support the suitability of both the Cepheid Xpert Xpress assay and the Roche Elecss Anti-SARS-CoV-2 assay for their intended uses in Phase 2/3 clinical studies when performed at Pfizer's testing facility (Pfizer Vaccine Research and Development; Pearl River, NY).
|
332 |
+
Immunogenicity Assays Used for Exploratory Immunogenicity Endpoints
|
333 |
+
Two immunogenicity assays (SARS-CoV-2 mNeonGreen (mNG) virus microneutralization assay and (b) (4)
|
334 |
+
direct Luminex assay (dLIA) for IgG
|
335 |
+
9
|
336 |
+
|
337 |
+
quantification) were used for evaluating the immune responses from clinical trial samples.
|
338 |
+
The SARS-CoV-2 mNG microneutralization assay measures neutralizing antibodies (50% inhibition tiers) against SARS-CoV-2 using Vero cell monolayers in a 96-well plate format. The SARS-CoV-2 mNG virus is derived from the USA WA1/2020 strain that had been rescued by reverse genetics and engineered to express a fluorescent reporter gene (mNeonGreen) upon productive infection of cells. The validation protocol (that includes evaluation of dilutional linearity, precision, limits of quantification, and limit of detection) and the results of the validation study, executed at Pfizer Hackensack Meridian Health Center (Nutley, New Jersey), were submitted to support the suitability of the assay for testing of clinical trial immunogenicity samples.
|
339 |
+
The (b) (4) S1 IgG dLIA measures IgG antibody levels to the subunit 1 (S1) of the SARS-CoV-2 spike protein in human serum samples. Qualification data provided in the submission support the b) (4) dLIA for quantification of human IgG antibodies that bind to the S1 protein of SARS-CoV-2 and confirm that the assay is suitable for its intended use.
|
340 |
+
b. Testing Specifications
|
341 |
+
Specifications and Methods
|
342 |
+
The tests and specifications applied for routine release of COMIRNATY are shown in
|
343 |
+
Table 4.
|
344 |
+
Table 4. Control of COMIRNATY: Tests and Specifications
|
345 |
+
Quality Attribute
|
346 |
+
Analytical Procedure
|
347 |
+
Appearance
|
348 |
+
Appearance (Visual)
|
349 |
+
Appearance
|
350 |
+
(Visible
|
351 |
+
Particulates)
|
352 |
+
Appearance (Particles)
|
353 |
+
(b) (4)
|
354 |
+
(b) (4)
|
355 |
+
(b) (4)
|
356 |
+
(b) (4)
|
357 |
+
(b) (4)
|
358 |
+
(b) (4)
|
359 |
+
INP (b) (4)
|
360 |
+
(b) (4)
|
361 |
+
| LNP (b) (4)
|
362 |
+
(b) (4)
|
363 |
+
RNA b) (4)
|
364 |
+
(b) (4)
|
365 |
+
RNA content
|
366 |
+
(b) (4)
|
367 |
+
assay
|
368 |
+
assay
|
369 |
+
ALC-0315 content (b) (4)
|
370 |
+
ALC-0159 content (b) (4)
|
371 |
+
DSPC content
|
372 |
+
(b) (4)
|
373 |
+
Cholesterol content (b) (4)
|
374 |
+
Vial content (volume) Container content
|
375 |
+
Lipid identities
|
376 |
+
(b) (4)
|
377 |
+
Acceptance Criteria
|
378 |
+
White to off-white suspension
|
379 |
+
May contain white to off-white opaque, amorphous particles
|
380 |
+
(b) (4)
|
381 |
+
(b) (4)
|
382 |
+
(b) (4)
|
383 |
+
(b) (4)
|
384 |
+
(b) (4)
|
385 |
+
(b) (4)
|
386 |
+
(b) (4)
|
387 |
+
(b) (4)
|
388 |
+
(b) (4)
|
389 |
+
(b) (4)
|
390 |
+
(b) (4)
|
391 |
+
Not less than (b) (4)
|
392 |
+
(b) (4)
|
393 |
+
(ALC-0315, ALC-
|
394 |
+
0159, Cholesterol, DSPC)
|
395 |
+
10
|
396 |
+
|
397 |
+
Quality Attribute
|
398 |
+
Identitv of encoded RNA (b) (4)
|
399 |
+
(b) (4)
|
400 |
+
(b) (4)
|
401 |
+
RNA (b) (4)
|
402 |
+
(b) (4)
|
403 |
+
Endotoxin ((b) (4))
|
404 |
+
Bacterial Endotoxin (b) (4)
|
405 |
+
Sterility
|
406 |
+
Sterility ((b) (4)
|
407 |
+
Container
|
408 |
+
(b) (4)
|
409 |
+
Closure Integrity
|
410 |
+
Abbreviations: LNP = Lipid nanoparticles; (b) (4)
|
411 |
+
Analytical Procedure
|
412 |
+
Acceptance Criteria
|
413 |
+
Identitv confirmed
|
414 |
+
(b) (4)
|
415 |
+
(b) (4)
|
416 |
+
(b) (4)
|
417 |
+
No Growth Detected
|
418 |
+
Pass
|
419 |
+
The analytical methods and their validations and/or qualifications for the COMIRNATY DS and DP were found to be adequate for their intended use.
|
420 |
+
C. CBER Lot Release
|
421 |
+
The lot release protocol template was submitted to CBER for review and found to be acceptable after revisions. A lot release testing plan was developed by CBER and will be used for routine lot release.
|
422 |
+
d. Facilities Review / Inspection
|
423 |
+
Facility information and data provided in the BLA were reviewed by CBER and found to be sufficient and acceptable. The facilities involved in the manufacture of COMIRNATY are listed in Table 5 below. The activities performed and inspectional histories are also noted in Table 5 and are further described in the paragraphs that follow.
|
424 |
+
11
|
425 |
+
|
426 |
+
Table 5. Facilities involved in the manufacture of COMIRNATY
|
427 |
+
FEI
|
428 |
+
Name/address
|
429 |
+
Number
|
430 |
+
DUNS number
|
431 |
+
Inspection/ waiver
|
432 |
+
Pfizer Inc.
|
433 |
+
875 Chesterfield Parkway
|
434 |
+
West
|
435 |
+
Chesterfield, MO 63017 (b) (4)
|
436 |
+
Manufacture
|
437 |
+
Drug Substance
|
438 |
+
Release and stability testing
|
439 |
+
Drug Product
|
440 |
+
Release and stability testing
|
441 |
+
Wyeth BioPharma Division of Wyeth Pharmaceuticals
|
442 |
+
LLC
|
443 |
+
1 Burtt Road
|
444 |
+
Andover, MA 01810
|
445 |
+
Drug Substance
|
446 |
+
Manufacture, release and stability testing
|
447 |
+
Drug Product
|
448 |
+
Release and stability testing
|
449 |
+
Pharmacia & Upjohn
|
450 |
+
Company LLC
|
451 |
+
7000 Portage Road
|
452 |
+
Kalamazoo, MI 49001
|
453 |
+
Drug Product
|
454 |
+
LNP production, bulk drug product formulation, fill and finish, primary packaging, secondary packaging, release and stability testing
|
455 |
+
Pfizer Manufacturing
|
456 |
+
Belgium NV
|
457 |
+
Rijksweg 12
|
458 |
+
Puurs, 2870
|
459 |
+
Belgium
|
460 |
+
Drug Product
|
461 |
+
LNP production, bulk drug product formulation, fill and finish, primary packaging, secondary packaging, release and stability testing
|
462 |
+
1940118
|
463 |
+
1222181
|
464 |
+
1810189
|
465 |
+
1000654629
|
466 |
+
004954111
|
467 |
+
174350868
|
468 |
+
618054084
|
469 |
+
370156507
|
470 |
+
Waiver
|
471 |
+
Pre-License
|
472 |
+
Inspection
|
473 |
+
Waiver
|
474 |
+
Pre-license inspection
|
475 |
+
Results/ Justification
|
476 |
+
ORA
|
477 |
+
Surveillance
|
478 |
+
August 19-20, 2019
|
479 |
+
NAI
|
480 |
+
CBER
|
481 |
+
Pre-license inspection
|
482 |
+
July 19-23, 2021
|
483 |
+
VAI
|
484 |
+
ORA/OBPO
|
485 |
+
Surveillance
|
486 |
+
May 11-20, 2021
|
487 |
+
VAI
|
488 |
+
CBER
|
489 |
+
Pre-license inspection
|
490 |
+
June 24-July 2, 2021
|
491 |
+
NAI
|
492 |
+
12
|
493 |
+
|
494 |
+
Name/address
|
495 |
+
Pfizer Ireland
|
496 |
+
Pharmaceuticals
|
497 |
+
Grange Castle Business
|
498 |
+
Park
|
499 |
+
Clondalkin, Dublin 22 reland
|
500 |
+
Drug Product
|
501 |
+
Release and stability testing
|
502 |
+
(b) (4)
|
503 |
+
FEI
|
504 |
+
Number
|
505 |
+
DUNS number
|
506 |
+
Inspection/ waiver
|
507 |
+
Results/ Justification
|
508 |
+
3004145594
|
509 |
+
985586408
|
510 |
+
Waiver
|
511 |
+
ORA Surveillance
|
512 |
+
November 4-12, 2019
|
513 |
+
VAI
|
514 |
+
(b) (4)
|
515 |
+
(b) (4)
|
516 |
+
Waiver
|
517 |
+
CDER
|
518 |
+
Pre-approval inspection
|
519 |
+
(b) (4)
|
520 |
+
Drug Product
|
521 |
+
Release testing (sterility (b) (4)
|
522 |
+
VAI
|
523 |
+
(b) (4)
|
524 |
+
(b) (4)
|
525 |
+
Waiver
|
526 |
+
ORA
|
527 |
+
Surveillance (b) (4)
|
528 |
+
Drug Product
|
529 |
+
Release testing (sterility)
|
530 |
+
VAI
|
531 |
+
ORA conducted a surveillance inspection of Pfizer Inc., Chesterfield, MO, from August
|
532 |
+
19 - 20, 2019. No Form FDA 483 was issued, and the inspection was classified as No Action Indicated (NAI).
|
533 |
+
CBER conducted a pre-license inspection (PLI) of Wyeth BioPharma Division of Wyeth Pharmaceuticals LLC from July 19 - 23, 2021. All inspectional issues were resolved, and the inspection was classified as Voluntary Action Indicated (VAI).
|
534 |
+
ORA conducted a surveillance inspection of Pharmacia & Upjohn Company LLC from May 11 - 20, 2021. All inspectional issues were resolved, and the inspection was classified as VAI.
|
535 |
+
CBER conducted a PLI of Pfizer Manufacturing Belgium NV from June 24 - July 2, 2021.
|
536 |
+
No Form FDA 483 was issued, and the inspection was classified as NAI.
|
537 |
+
ORA conducted a surveillance inspection of Pfizer Ireland Pharmaceuticals from
|
538 |
+
November 4 - 12, 2019. All inspectional issues were resolved, and the inspection was classified as VAI.
|
539 |
+
CDER conducted a pre-approval inspection of (b) (4)
|
540 |
+
from b) (4)
|
541 |
+
All inspectional issues were resolved, and the inspection was classified as VAI.
|
542 |
+
ORA conducted a surveillance inspection of (b) (4)
|
543 |
+
from b) (4)
|
544 |
+
. All inspectional issues were resolved, and the inspection was classified as VAl.
|
545 |
+
13
|
546 |
+
|
547 |
+
e. Container/Closure System
|
548 |
+
The COMIRNATY drug product is filled and stored at -90°C to -60°C in a 2 mL glass vial sealed with a bromobutyl rubber stopper and an aluminum seal with flip-off plastic cap.
|
549 |
+
The glass vials are supplied by (b) (4)
|
550 |
+
The stopper and caps are supplied by (b) (4)
|
551 |
+
, respectively.
|
552 |
+
Pfizer performed container closure integrity testing (CCIT) on the filled 2 mL glass vials using a b) (4)
|
553 |
+
test method. All acceptance criteria were met.
|
554 |
+
f. Environmental Assessment
|
555 |
+
The BLA included a request for categorical exclusion from an Environmental Assessment under 21 CF 25.31. The FDA concluded that this request is justified, and no extraordinary circumstances exist that would require an environmental assessment.
|
556 |
+
4. Nonclinical Pharmacology/Toxicology
|
557 |
+
Nonclinical Toxicology
|
558 |
+
For the nonclinical safety evaluation, COMIRNATY was evaluated in two repeat dose toxicity studies in Wistar Han rats and a Combined Fertility and Developmental Study (Including Teratogenicity and Postnatal Investigations) in Wistar Han rats.
|
559 |
+
The repeat dose toxicitv evaluations were conducted on COMIRNATY and a similar vaccine termed BNT162b2 (V8). COMIRNATY and BNT162b2 (V8) have identical amino acid sequences of the encoded antigens but COMIRNATY includes the presence of optimized codons to improve antigen expression. The IM route of exposure was selected as it is the route of clinical administration. Generation of an immune response to COMIRNATY was confirmed in rats in both repeat-dose toxicity studies. In both repeat-dose toxicity studies, administration of COMIRNATY by IM injection to male and female rats once every week for a total of 3 doses was tolerated without evidence of systemic toxicity. Edema and erythema at the injection sites, transient elevation in body temperature, elevations in white blood cells and acute phase reactants and decreased albumin:globulin ratios were observed. Iniection site reactions were common in all vaccine-administered animals and were greater after boost immunizations.
|
560 |
+
For the Combined Fertility and Developmental Study, COMIRNATY was administered to female rats twice before the start of mating and twice during gestation at the human clinical dose (30 ug RNA/dosing day). There were some effects (change in body weight and food consumption and effects localized to the iniection site observed in rats in these studies following administration of COMIRNATY that were not considered adverse and a relationship to COMIRNATY was not established. There were no effects on mating performance, fertility, or any ovarian or uterine parameters nor on embryo fetal or postnatal survival, growth, or development in the offspring. An immune response was observed in female rats following administration of each vaccine candidate and these responses were also detectable in the offspring (fetuses and pups).
|
561 |
+
14
|
562 |
+
|
563 |
+
Nonclinical Pharmacology and Pharmacokinetics
|
564 |
+
COMIRNATY was evaluated in nonclinical pharmacology studies using animal models of mice, rats and nonhuman primates (NHP). The data from these studies indicate: (1) strong antigen-binding IgG and high titer neutralizing antibodies in mice, rat and rhesus macaques; (2) Th1-biased CD4+ T-cell response and IFNy+, CD8+ T-cell response to BNT162b2 in both mouse and NHP studies; and (3) protection of rhesus macaques from an infectious SARS-Cov-2 challenge, with reduced detection of viral RNA in the BNT162b2-immunized animals as compared with the control-immunized macaques.
|
565 |
+
Nonclinical pharmacokinetics (PK) evaluation included (1) biodistribution of COMIRNATY using (b) (4)
|
566 |
+
expressing RNA as a surrogate reporter in (b) (4) mice and in rats, and
|
567 |
+
(2) the biodistribution and metabolism of the two novel lipids (ALC-0315 and ALC-0159) contained in COMIRNATY in in vitro studies and in a PK study in rats following administration of (b) (4) expressing RNA encapsulated in LPs made with radiolabeled lipid markers. The study results indicate that following IM injection, the RNA encapsulated in LP mainly localizes to the site of injection and, to a lesser extent, distributes to the liver. The metabolism of ALC-0315 and ALC-0159 was evaluated in vitro using blood, liver microsomes, S9 fractions, and hepatocytes from mice, rats, monkeys and humans and in vivo by examining the plasma, urine, feces, and liver samples from the PK study in rats. Approximately 50% of ALC-0159 is excreted unchanged in feces, while metabolism appears to play a role in the elimination of ALC-0315.
|
568 |
+
5. Clinical Pharmacology
|
569 |
+
Pharmacodynamic data, comprised of humoral immune responses to COMIRNATY, were obtained in the clinical studies. The data demonstrated that COMIRNATY induces a humoral immune response against the SARS-CoV-2 spike protein. The exact immunologic mechanism that confers protection against SARS-CoV-2 is unknown.
|
570 |
+
6. Clinical/Statistical
|
571 |
+
a. Clinical Program
|
572 |
+
Overview
|
573 |
+
The Applicant included data from two clinical studies in the BLA. The clinical studies which will be discussed in this BRA are shown in Table 6.
|
574 |
+
Table 6. Overview of Clinical Studies
|
575 |
+
Study ID
|
576 |
+
C4591001
|
577 |
+
NCT ID
|
578 |
+
04368728
|
579 |
+
Phase
|
580 |
+
1/2/3
|
581 |
+
Countries
|
582 |
+
Argentina, Brazil, Germany, South Africa, Turkey, U.S.
|
583 |
+
Phase 1: 30 participants
|
584 |
+
Enrollment
|
585 |
+
Age
|
586 |
+
Phase 2/3: 43.847 participants
|
587 |
+
16 - 85 YOA
|
588 |
+
Evaluate VE for prevention of
|
589 |
+
Purpose
|
590 |
+
COVID-19 (pivotal clinical endpoint study)
|
591 |
+
BNT162-01
|
592 |
+
04380701
|
593 |
+
1/2
|
594 |
+
Germany
|
595 |
+
24
|
596 |
+
18 - 85 YOA
|
597 |
+
Evaluate safety and immunogenicity
|
598 |
+
15
|
599 |
+
|
600 |
+
Study ID
|
601 |
+
Control
|
602 |
+
C4591001
|
603 |
+
Saline Placebo
|
604 |
+
Phase 2/3: 2 groups, randomized
|
605 |
+
Groups
|
606 |
+
1:1 to receive COMIRNATY or
|
607 |
+
Placebo IM
|
608 |
+
Schedule
|
609 |
+
DO, D21
|
610 |
+
Total follow-up
|
611 |
+
6 Months (follow-up ongoing)
|
612 |
+
YOA: years of age; VE: vaccine efficacy; IM: intramuscular; D: day
|
613 |
+
BNT162-01
|
614 |
+
None
|
615 |
+
1 group, randomized received
|
616 |
+
COMIRNATY IM
|
617 |
+
DO. D21
|
618 |
+
6 Months (follow-up ongoing)
|
619 |
+
Study C4591001
|
620 |
+
Study C4591001 is an ongoing, randomized, placebo-controlled, observer-blind Phase 1/2/3 study being conducted in the U.S., Argentina, Brazil, Germany, South Africa and Turkey. Initially the study was designed as a Phase 1/2 study in healthy adults in the U.S. for vaccine candidate and dosage selection, as well as evaluation of immunogenicity and preliminary efficacy. The protocol was expanded to include a Phase 2/3 portion of the study to evaluate clinical disease efficacy endpoint in individuals 12 years of age and older in the U.S. and additional sites outside of the U.S.
|
621 |
+
The Phase 1 portion of the study was designed to identify a preferred vaccine candidate, vaccine dose, and administration schedule for further development based on the vaccine's safety, tolerability, and immunogenicity. To this end, two age groups were evaluated in separate cohorts, younger adults 18 through 55 years of age (N=45) and older adults 65 through 85 years of age (N=45). The study population included healthy men and women and excluded participants at high risk of SARS-CoV-2 infection or with serological evidence of prior or current SARS-CoV-2 infection. Two different vaccine candidates were evaluated, and younger participants received increasing dose levels (10, 20 and 30 mg) with progression to higher dose levels in a stepwise manner.
|
622 |
+
Evaluation of increasing doses in the older age group (65 through 85 years) was based on recommendations from an internal review committee that reviewed safety and immunogenicity data derived from adults 18 through 55 years of age. For each vaccine candidate and dose, participants were randomized 4:1, such that 12 participants received the vaccine candidate and 3 participants received placebo. Review of the safety and immunogenicity from the Phase 1 portion of Study C4591001, in combination with data from Study BNT162-01, supported the final vaccine candidate, dose and dosing regimen (BNT162b2 administered at 30 Mg, given 3 weeks apart) to proceed to the Phase 2/3 portion of Study C4591001.
|
623 |
+
In Phase 2/3, participants were enrolled with stratification by age (younger adults: 18 through 55 years of age; older adults: over 55 years of age) with the goal for the older age strata to consist of 40% of the entire study population. Adolescents were added to the protocol, based on review of safety data in younger adults enrolled in the ongoing study; thus, the age strata were revised as follows: 16 through 55 years of age, and 56 years of age and older. The study population for Phase 2/3 includes participants at higher risk for acquiring COVID-19 and at higher risk of severe COVID-19, such as participants working in the healthcare field, participants with autoimmune disease, and participants with chronic but stable medical conditions such as hypertension, asthma, diabetes, and infection with HIV, hepatitis B or hepatitis C. Participants were randomized
|
624 |
+
1:1 to receive 2 doses of either COMIRNATY or placebo, 3 weeks apart. The Phase 2
|
625 |
+
portion of the study evaluated reactogenicity and immunogenicity of the vaccine in 360
|
626 |
+
16
|
627 |
+
|
628 |
+
participants in the early stage of Phase 2/3, and these participants also contribute to the overall efficacy and safety data in the Phase 3 portion.
|
629 |
+
The ongoing Phase 3 portion of the study is evaluating the safety and efficacy of
|
630 |
+
COMIRNATY for the prevention of COVID-19 occurring at least 7 days after the second dose of vaccine. Efficacy is being assessed throughout a participant's blinded follow-up in the study through surveillance for potential cases of COVID-19. If, at any time, a participant develops acute respiratory illness, an illness visit occurs. Assessments for illness visits include a nasal (mid-turbinate) swab, which is tested at a central laboratory using a reverse transcription-polymerase chain reaction (RT-PCR) test (i.e., Cepheid;
|
631 |
+
FDA- authorized under EUA), or other sufficiently validated nucleic acid amplification-based test (NAAT), to detect SARS-CoV-2. The central laboratory NAAT result is used for the case definition, unless it was not possible to test the sample at the central laboratory. In that case, the following NAAT results are acceptable: Cepheid Xpert Xpress SARS-CoV-2, Roche cobas SARS-CoV-2 real-time RT-PCR test (EUA200009/A001), and Abbott Molecular/RealTime SARS-CoV-2 assay (EUA200023/A001).
|
632 |
+
The study design included a planned interim analysis of the first primary efficacy endpoint (the efficacy of BNT162b2 against confirmed COVID-19 occurring from 7 days after Dose 2 in participants without evidence of SARS-CoV-2 infection before vaccination) at pre-specified numbers of COVID-19 cases (at least 62, 92, and 120 cases). All primary and secondary efficacy endpoints were analyzed in the final efficacy analysis after at least 164 COVID-19 cases were accrued. Participants are expected to participate for a maximum of approximately 26 months.
|
633 |
+
Per protocol, since December 14, 2020, following issuance of the emergency use authorization for the Pfizer-BioNTech COVID-19 Vaccine, study participants 16 years of age and older have been progressively unblinded to their treatment assignment (when eligible per local recommendations) and offered BNT162b2 vaccination if they were randomized to placebo.
|
634 |
+
The study was unblinded in stages as all ongoing participants were either individually unblinded (when eligible per local recommendations) or the subject had concluded their
|
635 |
+
6-month post-Dose 2 study visit. Participants 16 years of age and older who participated in the Phase 2/3 study were given the opportunity to receive COMIRNATY no later than the 6-month timepoint after the second study vaccination. Participants who originally received placebo but received COMIRNATY were moved to a new visit schedule to receive both doses of COMIRNATY, 3 weeks apart.
|
636 |
+
The primary safety and efficacy endpoints were:
|
637 |
+
1. Primary safety endpoint (descriptive): Solicited local adverse reactions (injection site pain, redness, swelling), solicited systemic adverse events (AE) (fever, fatigue, headache, chills, vomiting, diarrhea, new or worsened muscle pain, and new or worsened joint pain), unsolicited AEs, serious adverse events (SAEs).
|
638 |
+
17
|
639 |
+
|
640 |
+
2. First primary efficacy endpoint: COVID-19 incidence per 1000 person-years of follow-up based on laboratory-confirmed NAAT in participants with no serological or virological evidence (up to 7 days after Dose 2) of past SARS-CoV-2 infection.
|
641 |
+
3. Second primary efficacy endpoint: COVID-19 incidence per 1000 person-years of follow-up based on laboratory-confirmed NAAT in participants with and without serological or virological evidence (up to 7 days after Dose 2) of past SARS-CoV-2 infection.
|
642 |
+
The pertinent secondary endpoint was:
|
643 |
+
1. Severe COVID-19 incidence per 1000 person-years of follow-up.
|
644 |
+
Study C4591001 results
|
645 |
+
The population in the protocol-specified, event-driven final primary efficacy analysis included all participants 12 years of age and older who had been enrolled from July 27, 2020 and followed for the development of COVID-19 through November 14, 2020. For participants without evidence of SARS-CoV-2 infection prior to 7 days after Dose 2, VE against confirmed COVID-19 occurring at least 7 days after Dose 2 was 95.0% (95% credible interval: 90.0, 97.9), which met the pre-specified success criterion. The case split was 8 COVID-19 cases in the BNT162b2 group compared to 162 COVID-19 cases in the placebo group. This protocol-specified, event-driven final primary efficacy analysis was the basis for issuance of the emergency use authorization for the Pfizer-BioNTech COVID-19 Vaccine on December 11, 2020.
|
646 |
+
Therefore, the primary study objective of VE against COVID-19 was met as the point estimate was above 50% and the lower bound of the 95% Cl of the point estimate of VE was above 30%.
|
647 |
+
The population for the updated vaccine efficacy analvsis per protocol included participants 16 years of age and older who had been enrolled from July 27, 2020, and followed for the development of COVID-19 during blinded placebo-controlled follow-up through March 13, 2021, representing up to ~6 months of follow-up after Dose 2. Overall, 60.8% of participants in the COMIRNATY group and 58.7% of participants in the placebo group had ≥4 months of follow-up time after Dose 2 in the blinded placebo-controlled follow-up period. The overall VE against COVID-19 in participants without evidence of prior SARS-CoV-2 infection was 91.1% (95% CI: 88.8 to 93.1). The overall VE against COVID-19 in participants with or without evidence of prior SARS-CoV-2 infection was 90.9% (95% CI: 88.5 to 92.8).
|
648 |
+
Subgroup analvses of vaccine efficacy (although limited by small numbers of cases in some subgroups) did not suggest meaningful differences in efficacy across genders, ethnic groups, geographies, or for participants with obesity or medical comorbidities associated with high risk of severe COVID-19.
|
649 |
+
The updated vaccine efficacy information is presented in Tables 7a and 7b.
|
650 |
+
18
|
651 |
+
|
652 |
+
Table 7a: First COVID-19 occurrence from 7 days after Dose 2 in participants without evidence of prior SARS-CoV-2 infection - Evaluable Efficacy (7 Days)
|
653 |
+
Population During the Placebo-Controlled Follow-up Period *
|
654 |
+
COMIRNATY
|
655 |
+
Placebo
|
656 |
+
Na=19,993
|
657 |
+
Na=20,118
|
658 |
+
Cases
|
659 |
+
Cases
|
660 |
+
n1b
|
661 |
+
nib
|
662 |
+
Surveillance Time
|
663 |
+
Surveillance Time
|
664 |
+
Vaccine Efficacy %
|
665 |
+
Subgroup
|
666 |
+
(n2d)
|
667 |
+
(n2d)
|
668 |
+
(95% CIe)
|
669 |
+
77
|
670 |
+
833
|
671 |
+
91.1
|
672 |
+
All participants
|
673 |
+
6.092 (19,711)
|
674 |
+
5.857 (19,741)
|
675 |
+
(88.8, 93.1)
|
676 |
+
70
|
677 |
+
709
|
678 |
+
90.5
|
679 |
+
16 through 64 years
|
680 |
+
4.859 (15,519)
|
681 |
+
4.654 (15,515)
|
682 |
+
(87.9, 92.7)
|
683 |
+
7
|
684 |
+
124
|
685 |
+
94.5
|
686 |
+
65 years and older
|
687 |
+
1.233 (4192)
|
688 |
+
1.202 (4226)
|
689 |
+
(88.3, 97.8)
|
690 |
+
* Participants who had no evidence of past SARS-CoV-2 infection (i.e., N-binding antibody [serum] negative at Visit 1 and SARS-CoV-2 not detected by NAAT [nasal swab] at Visits 1 and 2), and had negative NAAT (nasal swab) at any unscheduled visit prior to 7 days after Dose 2 were included in the analysis a.
|
691 |
+
N = Number of participants in the specified group.
|
692 |
+
b. n1 = Number of participants meeting the endpoint definition.
|
693 |
+
C.
|
694 |
+
Total surveillance time in 1000 person-years for the given endpoint across all participants within each group at risk for the endpoint. Time period for COVID-19 case accrual is from 7 days after Dose 2 to the end of the surveillance period.
|
695 |
+
d. e.
|
696 |
+
n2 = Number of participants at risk for the endpoint.
|
697 |
+
Two-sided confidence interval (CI) for vaccine efficacy is derived based on the Clopper and Pearson method adiusted to the surveillance time.
|
698 |
+
Table 7b: First COVID-19 occurrence from 7 days after Dose 2 in participants with or without* evidence of prior SARS-CoV-2 infection - Evaluable Efficacy (7 Days)
|
699 |
+
Population During the Placebo-Controlled Follow-up Period *
|
700 |
+
Placebo
|
701 |
+
COMIRNATY
|
702 |
+
Na=21.210
|
703 |
+
Na=21,047
|
704 |
+
Cases
|
705 |
+
Cases
|
706 |
+
n1b
|
707 |
+
Vaccine Efficacy
|
708 |
+
nib
|
709 |
+
Surveillance Time
|
710 |
+
%
|
711 |
+
Subgroup
|
712 |
+
Surveillance Time (n2d)
|
713 |
+
(n2d)
|
714 |
+
(95% CI°
|
715 |
+
81
|
716 |
+
854
|
717 |
+
90.9
|
718 |
+
All participants
|
719 |
+
6.340 (20.533)
|
720 |
+
6.110 (20,595)
|
721 |
+
(88.5. 92.8)
|
722 |
+
74
|
723 |
+
726
|
724 |
+
90.2
|
725 |
+
16 through 64 years
|
726 |
+
5.073 (16,218)
|
727 |
+
4.879 (16,269)
|
728 |
+
(87.5, 92.4)
|
729 |
+
7
|
730 |
+
128
|
731 |
+
94.7
|
732 |
+
65 vears and older
|
733 |
+
1.267 (4315)
|
734 |
+
1.232 (4326)
|
735 |
+
(88.7. 97.9)
|
736 |
+
Note: Confirmed cases were determined by Reverse Transcription-Polymerase Chain Reaction (RT-PCR) and at least 1 symptom consistent with COVID-19 (symptoms included: fever; new or increased cough; new or increased shortness of breath; chills; new or increased muscle pain; new loss of taste or smell; sore throat; diarrhea; vomiting).
|
737 |
+
* Participants who had no evidence of past SARS-CoV-2 infection (i.e., N-binding antibody [serum] negative at Visit 1 and SARS-CoV-2 not detected by NAAT [nasal swab at Visits 1 and 2), and had negative NAAT (nasal swab) at any unscheduled visit prior to 7 days after Dose 2 were included in the analysis.
|
738 |
+
a.
|
739 |
+
N = Number of participants in the specified group.
|
740 |
+
n1 = Number of participants meeting the endpoint definition.
|
741 |
+
C.
|
742 |
+
Total surveillance time in 1000 person-years for the given endpoint across all participants within each group at risk for the endpoint. Time period for COVID-19 case accrual is from 7 days after Dose 2 to the end of the surveillance period.
|
743 |
+
d.
|
744 |
+
е.
|
745 |
+
n2 = Number of participants at risk for the endpoint.
|
746 |
+
Two-sided confidence interval (CI) for vaccine efficacy is derived based on the Clopper and Pearson method adjusted to the surveillance time.
|
747 |
+
19
|
748 |
+
|
749 |
+
Efficacy Against Severe COVID-19
|
750 |
+
Vaccine efficacy against severe COVID-19 for participants with or without prior SARS-
|
751 |
+
CoV-2 infection is shown in Tables 8a and 8b. The VE against severe COVID-19 in participants with or without evidence of prior SARS-CoV-2 infection was 95.3% (95% CI:
|
752 |
+
71.0 to 99.9) using the protocol definition of severe COVID-19 and 100.0% (95% CI: 87.6 to 100.0) based on the CDC definition of severe COVID-19.
|
753 |
+
Table 8a: Vaccine Efficacy - First Severe COVID-19 Occurrence in Participants 16
|
754 |
+
Years of Age and Older With or Without* Prior SARS-CoV-2 Infection Based on
|
755 |
+
Protocol Definition From 7 Days After Dose 2 - Evaluable Efficacy (7 Days)
|
756 |
+
Population During the Placebo-Controlled Follow-up
|
757 |
+
COMIRNATY
|
758 |
+
Placebo
|
759 |
+
Cases
|
760 |
+
Cases
|
761 |
+
n1a
|
762 |
+
n1a
|
763 |
+
Surveillance Time
|
764 |
+
Surveillance Time
|
765 |
+
(n29)
|
766 |
+
(n29)
|
767 |
+
7 days after Dose 26
|
768 |
+
21
|
769 |
+
6.353 (20.540)
|
770 |
+
6.237 (20,629)
|
771 |
+
Vaccine Efficacy
|
772 |
+
%
|
773 |
+
(95% CId)
|
774 |
+
95.3
|
775 |
+
(70.9, 99.9)
|
776 |
+
Table 8b: Vaccine Efficacy - First Severe COVID-19 Occurrence in Participants 16
|
777 |
+
Years of Age and Older With or Without* Prior SARS-CoV-2 Infection Based on Centers for Disease Control and Prevention (CDC) Definition From 7 Days After Dose 2 - Evaluable Efficacy (7 Days) Population During the Placebo-Controlled
|
778 |
+
Follow-up
|
779 |
+
COMIRNATY
|
780 |
+
Cases n1a
|
781 |
+
Surveillance Timeb (n26)
|
782 |
+
Placebo
|
783 |
+
Cases n1a
|
784 |
+
Vaccine Efficacy
|
785 |
+
Surveillance Timeb
|
786 |
+
%
|
787 |
+
(n26)
|
788 |
+
(95% CId)
|
789 |
+
7 davs after Dose 2d
|
790 |
+
31
|
791 |
+
100
|
792 |
+
6.345 (20,513)
|
793 |
+
6.225 (20,593)
|
794 |
+
(87.6, 100.0)
|
795 |
+
Note: Confirmed cases were determined by Reverse Transcription-Polymerase Chain Reaction (RT-PCR and at least 1 symptom consistent with COVID-19 (symptoms included: fever; new or increased cough; new or increased shortness of breath; chills; new or increased muscle pain; new loss of taste or smell; sore throat; diarrhea; vomiting).
|
796 |
+
Participants who had no evidence of past SARS-CoV-2 infection (i.e., N-binding antibody [serum] negative at Visit 1 and SARS-CoV-2 not detected by NAAT (nasal swab] at Visits 1 and 2), and had negative NAAT (nasal swab) at any unscheduled visit prior to 7 days after Dose 2 were included in the analysis.
|
797 |
+
† Severe illness from COVID-19 is defined in the protocol as confirmed COVID-19 and presence of at least 1 of the following:
|
798 |
+
• Clinical signs at rest indicative of severe systemic illness (respiratory rate ≥30 breaths per minute, heart rate ≥125 beats per minute, saturation of oxygen <93% on room air at sea level, or ratio of arterial oxygen partial pressure to fractional inspired oxygen <300 mm Hg);
|
799 |
+
• Respiratory failure defined as needing highflow oxygen, noninvasive ventilation, mechanical ventilation or extracorporeal membrane oxygenation (ECMO)];
|
800 |
+
•
|
801 |
+
•
|
802 |
+
•
|
803 |
+
•
|
804 |
+
Evidence of shock (systolic blood pressure <90 mm Hg, diastolic blood pressure <60 mm Hg, or requiring vasopressors);
|
805 |
+
Significant acute renal, hepatic, or neurologic dysfunction;
|
806 |
+
Admission to an Intensive Care Unit:
|
807 |
+
Death.
|
808 |
+
‡Severe illness from COVID-19 as defined by CDC is confirmed COVID-19 and presence of at least 1 of the following:
|
809 |
+
Hospitalization;
|
810 |
+
Admission to the Intensive Care Unit:
|
811 |
+
Intubation or mechanical ventilation;
|
812 |
+
Death.
|
813 |
+
a. n1 = Number of participants meeting the endpoint definition.
|
814 |
+
Total surveillance time in 1000 person-years for the given endpoint across all participants within each group at risk for the endpoint. Time period for COVID-19 case accrual is from 7 days after Dose 2 to the end of the surveillance period
|
815 |
+
C. n2 = Number of participants at risk for the endpoint.
|
816 |
+
20
|
817 |
+
|
818 |
+
d.
|
819 |
+
Two-side confidence interval (CI) for vaccine efficacy is derived based on the Clopper and Pearson method adjusted to the surveillance time
|
820 |
+
Study BNT162-01
|
821 |
+
Study BNT162-01 is an ongoing Phase 1/2, open-label, dose-finding study to evaluate the safety and immunogenicity of several candidate vaccines, including BNT162b2 (1, 3, 10, 20, and 30 Mg), conducted in Germany in healthy and immunocompromised adults.
|
822 |
+
Only safety and immunogenicity data in individuals 16 years of age and older, the population for the intended use and who received the final vaccine formulation (30 g BNT162b2) are used to support this application. The 30 g dosage of BNT162b2 was administered to 12 adults 18 to 55 years of age and 12 adults 56 to 85 years of age.
|
823 |
+
The primary objective was to evaluate the safety of the BNT162 candidate vaccines.
|
824 |
+
Secondary and exploratory objectives were to describe humoral and cellular immune responses following vaccination, measured at baseline and various time points after vaccination, specifically 7 days post Dose 2. Adverse event monitoring was the same as the safety monitoring in study C4591001.
|
825 |
+
The study started April 23, 2020. The BLA contains safety data (reactogenicity and AE analyses) up to 1 month after Dose 2 (data cutoff date: October 23, 2020), neutralizing antibody data up to ~2 months after Dose 2 (data cutoff date: October 23, 2020), and T-cell data up to ~6 months after Dose 2 (data cutoff date: March 2, 2021).
|
826 |
+
Study BNT162-01 Results
|
827 |
+
Disposition of 30 ug BNT162b2 group:
|
828 |
+
- Safety: Of a total of 24 participants, 12 participants 18 to 55 years of age and 12 participants 56 to 85 years of age completed the visit at 1- month post-Dose 2.
|
829 |
+
- Immunogenicity: Of the 12 participants, serum neutralizing antibody and T-cell responses were available for 10 and 12 participants, respectively.
|
830 |
+
Safety: The safety profiles for adult participants 18-55 and 56-85 years of age receiving
|
831 |
+
30 Mg BNT162b2 in this study were similar to age-matched participants in study
|
832 |
+
C4591001.
|
833 |
+
Immunogenicity: Dose-dependent increases were noted 42 days after Dose 2, compared to SARS-CoV-2 neutralizing GMT at baseline (pre-Dose 1), and most pronounced at the 30 ug dose level. The Th1 polarization of the T-helper response was indicated by IN and IL-2 production, and only minimal IL-4 production upon antigen-specific (SARS-CoV-2 S protein peptide pools) re-stimulation.
|
834 |
+
Review of the safety and immunogenicity from Phase 1 part of Study C4591001, in combination with data from Study BNT162-01, supported selection of the final vaccine candidate and dose level (BNT162b2 at 30 g, given as two doses 3 weeks apart) to proceed into Phase 2/3 part of Study C4591001.
|
835 |
+
Lot Consistency
|
836 |
+
Consistency of process performance qualification (PPQ) batches manufactured at both Pfizer Purs and Pfizer Kalamazoo was demonstrated by verifing process parameters and in-process testing results as well as DP release testing. Data obtained from the analvtical comparability assessments on the PPQ batches manufactured at both sites
|
837 |
+
21
|
838 |
+
|
839 |
+
provide evidence of reproducible and consistent manufacture of COMIRNATY D of acceptable product quality across all supply nodes.
|
840 |
+
b. Bioresearch Monitoring (BIMO) - Clinical/Statistical/Pharmacovigilance
|
841 |
+
BIMO inspection assignments were issued for a total of nine (9) clinical study sites that participated in the conduct of study Protocol C4591001. Three (3) of these inspection assignments focused on clinical study sites that enrolled the pediatric population and six
|
842 |
+
(6) of the study sites enrolled the adult population. The inspections did not reveal findings that impact the BLA.
|
843 |
+
c. Pediatrics
|
844 |
+
The Applicant's Pediatric Plan was presented to the FDA Pediatric Review Committee (PeRC) on August 3, 2021. The committee agreed with the Applicant's request for a deferral for studies in participants 0 to <16 years of age because the biological product is ready for approval for use in individuals 16 years of age and older before pediatric studies in participants 0 to <16 years of age are completed (Section 505B(a)(3)(A)(i) of PREA).
|
845 |
+
The PREA-required studies specified in the approval letter and agreed upon with the Applicant are as follows:
|
846 |
+
1. Study C4591001 to evaluate the safety and effectiveness of COMIRNATY in children 12 years through 15 years of age
|
847 |
+
2. Study C4591007 to evaluate the safety and effectiveness of COMIRNATY in children 6 months to <12 ears of age
|
848 |
+
3. Study C4591023 to evaluate the safety and effectiveness of COMIRNATY in infants <6 months of age
|
849 |
+
7. Safety and Pharmacovigilance
|
850 |
+
The most commonly reported (≥10%) solicited adverse reactions in COMIRNATY recipients 16 through 55 years of age following any dose were pain at the injection site (88.6%), fatigue (70.1%), headache (64.9%), muscle pain (45.5%), chills (41.5%), joint pain (27.5%), fever (17.8%), and injection site swelling (10.6%). The most commonly reported (≥10%) solicited adverse reactions in COMIRNATY recipients 56 years of age and older following any dose were pain at the injection site (78.2%), fatigue (56.9%), headache, (45.9%), muscle pain (32.5%), chills (24.8%), joint pain (21.5%), injection site swelling (11.8%), fever (11.5%), and injection site redness (10.4%).
|
851 |
+
Among participants 16 through 55 years of age who had received at least 1 dose of
|
852 |
+
COMIRNATY (N=12,995) or placebo (N=13,026), serious adverse events from Dose 1 up to the participant unblinding date in ongoing follow-up were reported by 103 (0.8%)
|
853 |
+
COMIRNATY recipients and 117 (0.9%) placebo recipients. In a similar analysis in participants 56 years of age and older (COMIRNATY=8,931, placebo=8,895), serious adverse events were reported by 165 (1.8%) COMIRNATY recipients and 151 (1.7%) placebo recipients who received at least 1 dose of COMIRNATY or placebo, respectively. In these analyses, 58.2% of study participants had at least 4 months of
|
854 |
+
22
|
855 |
+
|
856 |
+
follow-up after Dose 2. There were no notable patterns between treatment groups for specific categories of serious adverse events (including neurologic, neuro-inflammatory, and thrombotic events) that would suggest a causal relationship to COMIRNATY.
|
857 |
+
From Dose 1 through the March 13, 2021 data cutoff date, there were a total of 38 deaths, 21 in the COMIRNATY group and 17 in the placebo group. None of the deaths were considered related to vaccination.
|
858 |
+
Since the issuance of the EUA (December 11, 2020), post-authorization safety data has been reported from individuals 16 years of age and older following any dose of
|
859 |
+
COMIRNATY. Because these reactions are reported from a population of uncertain size, it is not always possible to reliably estimate their frequency or establish a causal relationship to vaccine exposure. Below are presented adverse reactions categorized as important identified risks in the pharmacovigilance plan that have occurred during the conduct of the clinical trial and have been reported following the issuance of the EUA.
|
860 |
+
Myocarditis/Pericarditis
|
861 |
+
During the time from Dose 1 to unblinding in Study C4591001, one report of pericarditis was identified in the COMIRNATY group, occurring in a male participant 255 years of age, with no medical history, 28 days after Dose 2; the event was assessed by the investigator as not related to the study intervention and was ongoing at the time of the data cutoff. One report of myocarditis was identified in a male participant <55 years of age in the placebo group, occurring 5 days after his second placebo dose.
|
862 |
+
Post-EUA safety surveillance reports received by FDA and CDC identified serious risks for myocarditis and pericarditis following administration of COMIRNATY. Reporting rates for medical chart-confirmed myocarditis/pericarditis in VAERS have been higher among males under 40 years of age than among females and older males and have been highest in males 12-17 years of age (65 cases per million doses administered as per CDC communication on August 20, 2021), particularly following the second dose, and onset of symptoms within 7 das following vaccination. Although some cases of vaccine-associated myocarditis/pericarditis required intensive care support, available data from short-term follow up suggest that most individuals have had resolution of symptoms with conservative management. Information is not yet available about potential long-term sequelae and outcomes in affected individuals. A mechanism of action by which the vaccine could cause myocarditis and pericarditis has not been established.
|
863 |
+
These safety findings of increased risk for myocarditis/pericarditis led to warning in section 5.2 Warning and Precautions of the PI.
|
864 |
+
Myocarditis and pericarditis are considered important identified risks in the pharmacovigilance plan included in the BLA. Of note, the Applicant will be required to conduct postmarketing requirement (PMR) safety studies under Section 505(o) of the Federal Food, Drug, and Cosmetic Act (FDCA) to assess the known serious risks of mvocarditis and pericarditis as well as an unexpected serious risk for subclinical myocarditis (see Section 11c Recommendation for Postmarketing Activities, for study details).
|
865 |
+
23
|
866 |
+
|
867 |
+
Moreover, since vaccine-associated myocarditis/pericarditis is the most clinically significant identified risk, FDA undertook a quantitative benefit-risk assessment to model the excess risk of myocarditis/pericarditis vs. the expected benefits of preventing COVID-19 and associated hospitalizations, ICU admissions, and deaths. For estimation of risk, the model took a conservative approach by relying on non-chart-confirmed cases from a US healthcare claims database (OPTUM) that could provide a control group and greater confidence in denominators for vaccine exposures. Thus, the estimates of excess risk in this model are higher than the rates estimated from reports to VAERS (an uncontrolled passive surveillance system), with an estimated excess risk approaching 200 cases per million vaccinated males 16-17 years of age (the age/sex-stratified group with the highest risk). For estimation of benefit, the model output was highly dependent on the assumed COVID-19 incidence, as well as assumptions about vaccine efficacy and duration of protection. The assessment therefore considered a range of scenarios including but not limited to a "most likely" scenario associated with recent Delta variant surge and diminished vaccine effectiveness (70% overall, 80% against COVID-19 hospitalization) compared to that observed in the clinical trial. The "worst-case" scenario with low COVID-19 incidence reflecting the July 2021 nadir and the same somewhat diminished vaccine effectiveness as in the "most likely" scenario.
|
868 |
+
For males and females 18 years of age and older and for females 16-17 years of age, even before accounting for morbidity prevented from non-hospitalized COVID-19, the model predicts that the benefits of prevented COVID-19 hospitalizations, ICU admissions and deaths would clearly outweigh the predicted excess risk of vaccine-associated myocarditis/pericarditis under all conditions examined. For males 16-17 years of age, the model predicts that the benefits of prevented COVID-19 hospitalizations, ICU admissions and deaths would clearly outweigh the predicted excess risk of vaccine-associated myocarditis/pericarditis under the "most likely" scenario, but that predicted excess cases of vaccine-associated myocarditis/pericarditis would exceed COVID-19 hospitalizations and deaths under the "worst case" scenario. However, this predicted numerical imbalance does not account for the greater severity and length of hospitalization, on average, for COVID-19 compared with vaccine-associated myocarditis/pericarditis.
|
869 |
+
Additionally, the "worst case" scenario model predicts prevention of >13,000 cases of non-hospitalized COVID-19 per million vaccinated males 16-17 years of age, which would include prevention of clinically significant morbidity and/or long-term sequelae associated with some of these cases. Finally, the model does not account for indirect societal/public health benefits of vaccination. Considering these additional factors, FDA concluded that even under the "worst case" scenario the benefits of vaccination sufficiently outweigh risks to support approval of the vaccine in males 16-17 years of age.
|
870 |
+
Mitigation of the observed risks and associated uncertainties will be accomplished through labeling (including warning statements) and through continued safety surveillance and postmarketing studies to further assess and understand these risks, including an immunogenicity and safety study of lower dose levels of COMIRNATY in individuals 12 through <30 years of age. The Applicant will be required to conduct postmarketing requirement (PMR) safety studies under Section 505(o) of the Federal Food, Drug, and Cosmetic Act (FDCA) to assess the known serious risks of myocarditis and pericarditis and an unexpected serious risk for subclinical myocarditis (see section 11c for study details).
|
871 |
+
24
|
872 |
+
|
873 |
+
Anaphylaxis
|
874 |
+
The risk of anaphylaxis was recognized early in the post-authorization time period and it is included as an important identified risk in the PVP. The estimated crude reporting rate for anaphylaxis is 6.0 cases per million doses. Therefore, the incidence of anaphylaxis after receipt of COMIRNATY is comparable with those reported after receipt of other vaccines.
|
875 |
+
There were no reports of anaphylaxis associated with COMIRNATY in clinical study participants through the cutoff date of March 13, 2021.
|
876 |
+
A contraindication for individuals with known history of a severe allergic reaction (e.g., anaphylaxis) to any component of COMIRNATY is included in section 4 of the PI.
|
877 |
+
Additionally, a warning statement is included in section 5.1 of the PI instructing that
|
878 |
+
"appropriate medical treatment used to manage immediate allergic reactions must be immediately available in the event an acute anaphylactic reaction occurs following administration of COMIRNATY"
|
879 |
+
Pharmacovigilance Plan (PVP)
|
880 |
+
The Applicant's proposed pharmacovigilance plan (version 1.1) includes the following important risks and missing information:
|
881 |
+
• Important identified risks: Anaphylaxis; Myocarditis and Pericarditis
|
882 |
+
• Important potential risk: Vaccine-Associated Enhanced Disease (VAED), including
|
883 |
+
Vaccine-Associated Enhanced Respiratory Disease (VAERD)
|
884 |
+
• Missing information: Use in pregnancy and lactation; Vaccine effectiveness; Use in pediatric individuals <12 years of age
|
885 |
+
In addition to routine pharmacovigilance, the Applicant will conduct the postmarketing studies listed in Section 11c Recommendation for Postmarketing Activities.
|
886 |
+
Adverse event reporting under 21 CFR 600.80 and the postmarketing studies in Section 11c are adequate to monitor the postmarketing safety for COMIRNATY.
|
887 |
+
8. Labeling
|
888 |
+
The proprietary name, COMIRNATY, was reviewed by CBER's Advertising and
|
889 |
+
Promotional Labeling Branch (APLB) on July 2, 2021, and found to be acceptable. CBER communicated this decision to the Applicant on July 6, 2021. The ALB found the PI and package/container labels to be acceptable from a promotional and comprehension perspective. The Review Committee negotiated revisions to the PI, including modifying the proposed proper name from "COVID-19 mRNA vaccine (nucleoside-modified)" to
|
890 |
+
"COVID-19 Vaccine, mRNA" and including a warning for an increased risk of myocarditis and pericarditis following administration of COMIRNATY. All labeling issues regarding the PI and the carton and container labels were acceptably resolved after exchange of information and discussions with the Applicant.
|
891 |
+
25
|
892 |
+
|
893 |
+
9. Advisory Committee Meetings
|
894 |
+
Vaccines and Related Biological Products Committee (VRBPAC) meetings were convened on October 22, 2020 to discuss, in general, development for EUA and licensure of vaccines to prevent COVID-19 and on December 10, 2020, to discuss BioNTech Manufacturing GmbH/Pfizer's EU request for the Pfizer-BioNTech COVID-19 Vaccine.
|
895 |
+
On October 22, 2020, the VRBPAC was presented with the following items for
|
896 |
+
discussion (no vote):
|
897 |
+
1. Please discuss FDA's approach to safety and effectiveness data as outlined in the respective guidance documents.
|
898 |
+
2. Please discuss considerations for continuation of blinded Phase 3 clinical trials if an EUA has been issued for an investigational COVID-19 vaccine.
|
899 |
+
3. Please discuss studies following licensure and/or issuance of an EUA for COVID-19 vaccines to
|
900 |
+
a. Further evaluate safety, effectiveness and immune markers of protection
|
901 |
+
b. Evaluate the safety and effectiveness in specific populations
|
902 |
+
In general, the VRBPAC endorsed FDA's approach and recommendations on the safety and effectiveness data necessary to support a BLA and EUA for COVID-19 vaccines as outlined in the respective guidance documents. VRBPAC members recommended for the median follow-up of 2 month to be the minimum follow-up period and suggested longer follow-up periods to evaluate, both safety and efficacy, if feasible. The VRBPAC endorsed the importance of additional studies to further evaluate safety and effectiveness of the vaccine after EUA issuance and/or licensure and underscored the need to evaluate the safety and effectiveness of COVID-19 vaccines in specific populations.
|
903 |
+
On December 10, 2020, VRBPAC discussed Pfizer- BioNTech Manufacturing GmbH's EUA request for their vaccine to prevent COVID-19 in individuals 16 years of age and older. The committee discussed the safety and efficacy data derived from the clinical disease endpoint efficacy study C4591001
|
904 |
+
The VRPBAC voted on one question:
|
905 |
+
1. Based on the totality of scientific evidence available, do the benefits of the Pfizer-BioNTech COVID-19 Vaccine outweigh its risks for use in individuals 16 years of age and older?
|
906 |
+
The results of the vote were as follows:
|
907 |
+
Yes = 17
|
908 |
+
No = 4
|
909 |
+
Abstain = 1
|
910 |
+
The VRBPAC was presented with the following items for discussion (no vote):
|
911 |
+
1. Pfizer has proposed a plan for continuation of blinded, placebo-controlled follow-up in ongoing trials if the vaccine were made available under EUA. Please discuss
|
912 |
+
26
|
913 |
+
|
914 |
+
Pfizer's plan, including how loss of blinded, placebo-controlled follow-up in ongoing trials should be addressed.
|
915 |
+
2. Please discuss any gaps in plans described today and in the briefing documents for further evaluation of vaccine safety and effectiveness in populations wh receive the Pfizer-BioNTech COVID-19 Vaccine under an EUA.
|
916 |
+
The committee discussed potential implications of loss of blinded, placebo-controlled follow-up in ongoing trials including how this may impact availability of safety data to support a BLA. The VRBPAC commented on the need to further assess vaccine effect on asymptomatic infection and viral shedding, and further evaluation of safety and effectiveness in subpopulations such as HIV-infected individuals, individuals with prior exposure to SARS-CoV-2.
|
917 |
+
FDA did not refer this application to the VRBPAC because our review of the information submitted to this BLA did not raise concerns or controversial issues that would have benefited from an advisory committee discussion.
|
918 |
+
10. Other Relevant Regulatory Issues
|
919 |
+
a. Identification of BLA Lots
|
920 |
+
Upon CBER's request inquiring about what BLA-compliant EUA-labeled lots may be available for use upon licensure of COMIRNATY, the Applicant submitted information listing which lots they considered to be manufactured according to the BLA. To address the issue of these lots not bearing the vial label associated with BLA approval, CBER worked with the Applicant to develop a Dear HCP letter to be included with lots considered by CBER to be BLA-compliant. This letter explained that some lots labeled for EUA use were also considered BLA-compliant and refers HCP to a website for additional information. CBER requested and the Applicant agreed that only EUA-labeled lots that had also undergone CBER lot release according to the BLA would be considered BLA-compliant and listed at the website included in the Dear HCP letter.
|
921 |
+
b. Exception to the 21 CFR 610.15(a) Requirement for a Preservative Under 21 CFR 610.15(a), a vaccine product in multiple-dose containers must (absent certain exceptions) contain a preservative. The Applicant submitted a request for exception to this requirement and provided a justification for the multi-dose presentation of COMIRNATY not containing a preservative. CBER considered the Applicant's request for an exception to the 21 CFR 610.15(a) for COMIRNATY as a multiple dose preservative-free presentation acceptable.
|
922 |
+
11. Recommendations and Benefit/Risk Assessment
|
923 |
+
a. Recommended Regulatory Action
|
924 |
+
Based on the review of the clinical, pre-clinical, and product-related data submitted in the original BLA, the Review Committee recommends approval of COMIRNATY for the labeled indication and usage.
|
925 |
+
27
|
926 |
+
|
927 |
+
b. Benefit/Risk Assessment
|
928 |
+
Considering the data submitted to support the safety and effectiveness of
|
929 |
+
COMIRNATY that have been presented and discussed in this document, as well as the seriousness of COVID-19, the Review Committee is in agreement that the risk/benefit balance for COMIRNATY is favorable and supports approval for use in individuals 16 years of age and older.
|
930 |
+
c. Recommendation for Postmarketing Activities BioNTech Manufacturing GmbH has committed to conduct the following postmarketing activities, which will be included in the approval letter.
|
931 |
+
POSTMARKETING REQUIREMENTS UNDER SECTION 505(0)
|
932 |
+
1. Study C4591009, entitled "A Non-Interventional Post-Approval Safety Study of the Pfizer-BioNTech COVID-19 mRNA Vaccine in the United States," to evaluate the occurrence of myocarditis and pericarditis following administration of COMIRNATY
|
933 |
+
Final Protocol Submission: August 31, 2021
|
934 |
+
Monitoring Report Submission: October 31, 2022
|
935 |
+
Interim Report Submission: October 31, 2023
|
936 |
+
Study Completion: June 30, 2025
|
937 |
+
Final Report Submission: October 31, 2025
|
938 |
+
2. Study C4591021, entitled "Post Conditional Approval Active Surveillance Study
|
939 |
+
Among Individuals in Europe Receiving the Pfizer-BioNTech Coronavirus Disease
|
940 |
+
2019 (COVID-19) Vaccine," to evaluate the occurrence of myocarditis and pericarditis following administration of COMIRNATY
|
941 |
+
Final Protocol Submission: August 11, 2021
|
942 |
+
Progress Report Submission: September 30, 2021
|
943 |
+
Interim Report 1 Submission: March 31, 2022
|
944 |
+
Interim Report 2 Submission: September 30, 2022
|
945 |
+
Interim Report 3 Submission: March 31, 2023
|
946 |
+
Interim Report 4 Submission: September 30, 2023
|
947 |
+
Interim Report 5 Submission: March 31, 2024
|
948 |
+
Study Completion: March 31, 2024
|
949 |
+
Final Report Submission: September 30, 2024
|
950 |
+
3. Study C4591021 substudy to describe the natural history of myocarditis and pericarditis following administration of COMIRNATY
|
951 |
+
Final Protocol Submission: January 31, 2022
|
952 |
+
Study Completion: March 31, 2024
|
953 |
+
Final Report Submission: September 30, 2024
|
954 |
+
4. Study C4591036, a prospective cohort study with at least 5 years of follow-up for potential long-term sequelae of myocarditis after vaccination (in collaboration with Pediatric Heart Network)
|
955 |
+
28
|
956 |
+
|
957 |
+
Final Protocol Submission: November 30, 2021
|
958 |
+
Study Completion: December 31, 2026
|
959 |
+
Final Report Submission: May 31, 2027
|
960 |
+
5. Study C4591007 substudy to prospectively assess the incidence of subclinical myocarditis following administration of the second dose of COMIRNATY in a subset of participants 5 through 15 years of age
|
961 |
+
Final Protocol Submission: September 30, 2021
|
962 |
+
Study Completion: November 30, 2023
|
963 |
+
Final Report Submission: May 31, 2024
|
964 |
+
6. Study C4591031 substudy to prospectively assess the incidence of subclinical myocarditis following administration of a third dose of COMIRNATY in a subset of participants 16 to 30 years of age
|
965 |
+
Final Protocol Submission: November 30, 2021
|
966 |
+
Study Completion: June 30, 2022
|
967 |
+
Final Report Submission: December 31, 2022
|
968 |
+
POSTMARKETING COMMITMENTS SUBJECT TO REPORTING REQUIREMENTS
|
969 |
+
UNDER SECTION 506B
|
970 |
+
7. Study C4591022, entitled "Pfizer-BioNTech COVID-19 Vaccine Exposure during
|
971 |
+
Pregnancy: A Non-Interventional Post-Approval Safety Study of Pregnancy and Infant Outcomes in the Organization of Teratology Information Specialists (OTIS)/MotherToBaby Pregnancy Registry"
|
972 |
+
Final Protocol Submission: July 1, 2021
|
973 |
+
Study Completion: June 1, 2025
|
974 |
+
Final Report Submission: December 1, 2025
|
975 |
+
8. Study C4591007 substudy to evaluate the immunogenicity and safety of lower dose levels of COMIRNATY in individuals 12 through <30 years of age
|
976 |
+
Final Protocol Submission: September 30, 2021
|
977 |
+
Study Completion: November 30, 2023
|
978 |
+
Final Report Submission: May 31, 2024
|
979 |
+
9. Study C4591012, entitled "Post-emergency Use Authorization Active Safety
|
980 |
+
Surveillance Study Among Individuals in the Veteran's Affairs Health System Receiving Pfizer-BioNTech Coronavirus Disease 2019 (COVID-19) Vaccine"
|
981 |
+
Final Protocol Submission: January 29, 2021
|
982 |
+
Study Completion: June 30, 2023
|
983 |
+
Final Report Submission: December 31, 2023
|
984 |
+
10. Study C4591014, entitled "Pfizer-BioNTech COVID-19 BNT1622 Vaccine
|
985 |
+
Effectiveness Study - Kaiser Permanente Southern California"
|
986 |
+
29
|
987 |
+
|
988 |
+
Final Protocol Submission: March 22, 2021
|
989 |
+
Study Completion: December 31, 2022
|
990 |
+
Final Report Submission: June 30, 2023
|
991 |
+
PEDIATRIC REQUIREMENTS
|
992 |
+
11. Deferred pediatric study C4591001 to evaluate the safety and effectiveness of
|
993 |
+
COMIRNATY in children 12 years through 15 years of age
|
994 |
+
Final Protocol Submission: October 7, 2020
|
995 |
+
Study Completion: May 31, 2023
|
996 |
+
Final Report Submission: October 31, 2023
|
997 |
+
12. Deferred pediatric study C4591007 to evaluate the safety and effectiveness of
|
998 |
+
COMIRNATY in children 6 months to <12 years of age
|
999 |
+
Final Protocol Submission: February 8, 2021
|
1000 |
+
Study Completion: November 30, 2023
|
1001 |
+
Final Report Submission: May 31, 2024
|
1002 |
+
13. Deferred pediatric study C4591023 to evaluate the safety and effectiveness of
|
1003 |
+
COMIRNATY in infants <6 months of age
|
1004 |
+
Final Protocol Submission: January 31, 2022
|
1005 |
+
Study Completion: July 31, 2024
|
1006 |
+
Final Report Submission: October 31, 2024
|
1007 |
+
30
|
1008 |
+
|
docs/Package Insert – COMIRNATY (gray cap).txt
ADDED
@@ -0,0 +1,1549 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Individuals using assistive technology may not be able to fully access the information contained in this file. For assistance, please call 800-835-4709 or 240-402-8010, extension 1. CBER
|
2 |
+
Consumer Affairs Branch or send an e-mail to: ocod@fda.hhs.gov and include 508 Accommodation and the title of the document in the subject line of your e-mail.
|
3 |
+
|
4 |
+
HIGHLIGHTS OF PRESCRIBING INFORMATION
|
5 |
+
These highlights do not include all the information needed to use
|
6 |
+
COMIRNATY safely and effectively. See full prescribing information for COMIRNATY.
|
7 |
+
COMIRNATY® (COVID-19 Vaccine, mRNA) suspension for injection, for intramuscular use
|
8 |
+
Initial U.S. Approval: 2021
|
9 |
+
-RECENT MAJOR CHANGES
|
10 |
+
Indications and Usage (1)
|
11 |
+
Dosage and Administration (2)
|
12 |
+
Dosage and Administration, Preparation for Administration (2.1)
|
13 |
+
Dosage and Administration, Administration Information (2.2)
|
14 |
+
7/2022
|
15 |
+
8/2022
|
16 |
+
8/2022
|
17 |
+
8/2022
|
18 |
+
• INDICATIONS AND USAGE
|
19 |
+
COMIRNATY is a vaccine indicated for active immunization to prevent coronavirus disease 2019 (COVID-19) caused by severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2) in individuals 12 years of age and older. (1)
|
20 |
+
•
|
21 |
+
-DOSAGE AND ADMINISTRATION
|
22 |
+
COMIRNATY supplied in single dose vials or multiple dose vials with gray caps and labels with gray borders MUST NOT be diluted prior to use. (2.1)
|
23 |
+
For intramuscular injection only. (2.2)
|
24 |
+
COMIRNATY is administered intramuscularly as a series of 2 doses
|
25 |
+
(0.3 mL each) 3 weeks apart. (2.3)
|
26 |
+
• DOSAGE FORMS AND STRENGTHS.
|
27 |
+
Suspension for injection. A single dose is 0.3 mL. (3)
|
28 |
+
- CONTRAINDICATIONS -.-
|
29 |
+
Known history of a severe allergic reaction (e.g., anaphylaxis) to any component of COMIRNATY. (4)
|
30 |
+
FULL PRESCRIBING INFORMATION: CONTENTS*
|
31 |
+
INDICATIONS AND USAGE
|
32 |
+
2
|
33 |
+
DOSAGE AND ADMINISTRATION
|
34 |
+
2.1
|
35 |
+
Preparation for Administration
|
36 |
+
2.2
|
37 |
+
Administration Information
|
38 |
+
2.3
|
39 |
+
Vaccination Schedule
|
40 |
+
3
|
41 |
+
DOSAGE FORMS AND STRENGTHS
|
42 |
+
CONTRAINDICATIONS
|
43 |
+
5
|
44 |
+
WARNINGS AND PRECAUTIONS
|
45 |
+
5.1
|
46 |
+
Management of Acute Allergic Reactions
|
47 |
+
5.2
|
48 |
+
Mvocarditis and Pericarditis
|
49 |
+
5.3
|
50 |
+
Syncope
|
51 |
+
5.4
|
52 |
+
Altered Immunocompetence
|
53 |
+
5.5
|
54 |
+
Limitation of Effectiveness
|
55 |
+
6
|
56 |
+
ADVERSE REACTIONS
|
57 |
+
6.1
|
58 |
+
Clinical Trials Experience
|
59 |
+
6.2
|
60 |
+
Postmarketing Experience
|
61 |
+
USE IN SPECIFIC POPULATIONS
|
62 |
+
8.1
|
63 |
+
Pregnancy
|
64 |
+
- WARNINGS AND PRECAUTIONS
|
65 |
+
Postmarketing data demonstrate increased risks of myocarditis and pericarditis, particularly within 7 days following the second dose. (5.2)
|
66 |
+
Syncope (fainting) may occur in association with administration of injectable vaccines, including COMIRNATY. Procedures should be in place to avoid injury from fainting. (5.4)
|
67 |
+
- ADVERSE REACTIONS
|
68 |
+
In clinical studies of participants 16 through 55 years of age, the most commonly reported adverse reactions (≥10%) were pain at the injection site (88.6%), fatigue (70.1%), headache (64.9%), muscle pain (45.5%), chills (41.5%), joint pain (27.5%), fever (17.8%), and injection site swelling (10.6%). (6.1)
|
69 |
+
In clinical studies of participants 56 years of age and older, the most commonly reported adverse reactions (≥10%) were pain at the injection site (78.2%), fatigue (56.9%), headache, (45.9%), muscle pain (32.5%). chills (24.8%), joint pain (21.5%), injection site swelling (11.8%), fever (11.5%), and injection site redness (10.4%). (6.1)
|
70 |
+
In clinical studies of adolescents 12 through 15 years of age, the most commonly reported adverse reactions (≥8%) were pain at the injection site (90.5%), fatigue (77.5%), headache (75.5%), chills (49.2%), muscle pain (42.2%). fever (24.3%), joint pain (20.2%), injection site swelling (9.2%), and injection site redness (8.6%). (6. 1)
|
71 |
+
To report SUSPECTED ADVERSE REACTIONS, contact Pfizer Inc. at
|
72 |
+
1-800-438-1985 or VAERS at 1-800-822-7967 or http://vaers.hhs.gov.
|
73 |
+
See 17 for PATIENT COUNSELING INFORMATION.
|
74 |
+
Revised: 4/2023
|
75 |
+
8.2
|
76 |
+
Lactation
|
77 |
+
8.4
|
78 |
+
Pediatric Use
|
79 |
+
8.5
|
80 |
+
Geriatric Use
|
81 |
+
11 DESCRIPTION
|
82 |
+
12
|
83 |
+
CLINICAL PHARMACOLOGY
|
84 |
+
12.1 Mechanism of Action
|
85 |
+
13 NONCLINICAL TOXICOLOGY
|
86 |
+
13.1
|
87 |
+
Carcinogenesis, Mutagenesis, Impairment of Fertility
|
88 |
+
14 CLINICAL STUDIES
|
89 |
+
14.1 Efficacy in Participants 16 Years of Age and Older
|
90 |
+
14.2 Efficacy in Adolescents 12 Through 15 Years of Age
|
91 |
+
14.3
|
92 |
+
Immunogenicity in Adolescents 12 Through 15 Years of Age
|
93 |
+
16 HOW SUPPLIED/STORAGE AND HANDLING
|
94 |
+
17 PATIENT COUNSELING INFORMATION
|
95 |
+
* Sections or subsections omitted from the full prescribing information are not listed
|
96 |
+
|
97 |
+
FULL PRESCRIBING INFORMATION
|
98 |
+
1 INDICATIONS AND USAGE
|
99 |
+
COMIRNATY is a vaccine indicated for active immunization to prevent coronavirus disease 2019 (COVID-19)
|
100 |
+
caused by severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2) in individuals 12 years of age and older.
|
101 |
+
2 DOSAGE AND ADMINISTRATION
|
102 |
+
For intramuscular injection only.
|
103 |
+
The storage, preparation, and administration information in this Prescribing Information apply to COMIRNATY supplied in:
|
104 |
+
• single dose vials with gray caps and labels with gray borders, and
|
105 |
+
• multiple dose vials with gray caps and labels with gray borders.
|
106 |
+
COMIRNATY supplied in vials with gray caps and labels with gray borders MUST NOT be diluted prior to use.
|
107 |
+
2.1 Preparation for Administration
|
108 |
+
• COMIRNATY vials with gray caps and labels with gray borders contain a frozen suspension without preservative. Each vial must be thawed prior to administration. DO NOT DILUTE prior to use.
|
109 |
+
• Vials may be thawed in the refrigerator 2°C to 8°C (35°F to 46°F)1 or at room temperature [up to 25°C (77°F)].
|
110 |
+
• Refer to thawing and preparation instructions in the panels below.
|
111 |
+
Preparation Instructions
|
112 |
+
COMIRNATY Vial with Gray Cap and Label with Gray Border -
|
113 |
+
Vial Verification
|
114 |
+
Gray cap
|
115 |
+
DO NOT DILUTE
|
116 |
+
• Verify that the vial of COMIRNATY has a gray cap and a label with a gray border.
|
117 |
+
Gray cap and label with gray border.
|
118 |
+
2
|
119 |
+
|
120 |
+
Preparation Instructions
|
121 |
+
Thawing Prior to Use
|
122 |
+
Store in the refrigerator for up to 10 weeks prior to use.
|
123 |
+
• Thaw vial(s) of COMIRNATY before use either by:
|
124 |
+
• Allowing vial(s) to thaw in the refrigerator [2°C tc
|
125 |
+
8°C (35°F to 46°F)].
|
126 |
+
A carton of 10 single dose vials may take up to 2 hours to thaw.
|
127 |
+
A carton of 10 multiple dose vials may take up to 6 hours to thaw.
|
128 |
+
Allowing vials) to sit at room temperature [up to
|
129 |
+
25°C (77°F)] for 30 minutes.
|
130 |
+
• Thawed vials can be stored in the refrigerator [2°C to
|
131 |
+
8°C (35°F to 46°F)] for up to 10 weeks prior to use.
|
132 |
+
• Thawed vials may be stored at room temperature [up to
|
133 |
+
25°C (77°F)1 for up to 12 hours prior to use.
|
134 |
+
• Before use, mix by inverting vaccine vial gently 10 times.
|
135 |
+
• Do not shake.
|
136 |
+
• Prior to mixing, the thawed vaccine may contain white to off-white opaque amorphous particles.
|
137 |
+
• After mixing, the vaccine should appear as a white to off-white suspension with no visible particles.
|
138 |
+
• Do not use if liquid is discolored or if particles are observed after mixing.
|
139 |
+
Gently × 10
|
140 |
+
Preparation of Individual 0.3 mL Doses
|
141 |
+
10.2
|
142 |
+
0.3
|
143 |
+
E0.4
|
144 |
+
Withdraw 0.3 mL dose of vaccine.
|
145 |
+
Single Dose Vial
|
146 |
+
• Withdraw a single 0.3 mL dose of COMIRNATY vaccine.
|
147 |
+
• Administer immediately.
|
148 |
+
• Discard vial and any excess volume.
|
149 |
+
Multiple Dose Vial
|
150 |
+
• Multiple dose vials contain 6 doses of 0.3 mL each.
|
151 |
+
• Withdraw 0.3 mL of COMIRNATY preferentially using low dead-volume syringes and/or needles. If standard syringes and needles are used, there may not be sufficient volume to extract 6 doses from a single vial.
|
152 |
+
• Administer immediately.
|
153 |
+
• If the amount of vaccine remaining in a multiple dose vial cannot provide a full dose of 0.3 mL, discard the vial and any excess volume.
|
154 |
+
3
|
155 |
+
|
156 |
+
Preparation Instructions
|
157 |
+
Multiple Dose Vial - Record Date and Time of First Puncture
|
158 |
+
DO NOT DILUT
|
159 |
+
Record the date and time of first vial puncture on the
|
160 |
+
COMIRNATY multiple dose vial label.
|
161 |
+
• Store between 2°C to 25°C (35°F to 77°F).
|
162 |
+
• Discard any unused vaccine 12 hours after first puncture.
|
163 |
+
Record the date and time of first puncture.
|
164 |
+
Use within 12 hours after first puncture.
|
165 |
+
2.2
|
166 |
+
Administration Information
|
167 |
+
Parenteral drug products should be inspected visually for particulate matter and discoloration prior to administration, whenever solution and container permit. The vaccine will be a white to off-white suspension.
|
168 |
+
Do not administer if vaccine is discolored or contains particulate matter.
|
169 |
+
After withdrawing a single 0.3 mL dose of COMIRNATY, administer immediately.
|
170 |
+
2.3
|
171 |
+
Vaccination Schedule
|
172 |
+
COMIRNATY is administered intramuscularly as a series of 2 doses (0.3 mL each) 3 weeks apart.
|
173 |
+
There are no data available on the interchangeability of COMIRNATY with COVID-19 vaccines from other manufacturers to complete the vaccination series. Individuals who have received 1 dose of COMIRNATY should receive a second dose of COMIRNATY to complete the vaccination series.
|
174 |
+
3 DOSAGE FORMS AND STRENGTHS
|
175 |
+
COMIRNATY is a suspension for injection. Each dose of COMIRNATY supplied in vials with gray caps and labels with gray borders is 0.3 mL.
|
176 |
+
4 CONTRAINDICATIONS
|
177 |
+
Do not administer COMIRNATY to individuals with known history of a severe allergic reaction (e.g., anaphylaxis) to any component of COMIRNATY [see Description (11)].
|
178 |
+
4
|
179 |
+
|
180 |
+
5 WARNINGS AND PRECAUTIONS
|
181 |
+
5.1
|
182 |
+
Management of Acute Allergic Reactions
|
183 |
+
Appropriate medical treatment used to manage immediate allergic reactions must be immediately available in the event an acute anaphylactic reaction occurs following administration of COMIRNATY.
|
184 |
+
5.2
|
185 |
+
Myocarditis and Pericarditis
|
186 |
+
Postmarketing data demonstrate increased risks of myocarditis and pericarditis, particularly within 7 days following the second dose. The observed risk is higher among males under 40 years of age than among females and older males. The observed risk is highest in males 12 through 17 years of age. Although some cases required intensive care support, available data from short-term follow-up suggest that most individuals have had resolution of symptoms with conservative management. Information is not yet available about potential long-term sequelae. The CDC has published considerations related to myocarditis and pericarditis after vaccination, including for vaccination of individuals with a history of myocarditis or pericarditis (https://www.cdc.gov/vaccines/covid-19/clinical-considerations/myocarditis.html).
|
187 |
+
5.3
|
188 |
+
Syncope
|
189 |
+
Syncope (fainting) may occur in association with administration of injectable vaccines, including
|
190 |
+
COMIRNATY. Procedures should be in place to avoid injury from fainting.
|
191 |
+
5.4
|
192 |
+
Altered Immunocompetence
|
193 |
+
Immunocompromised persons, including individuals receiving immunosuppressant therapy, may have a diminished immune response to COMIRNATY.
|
194 |
+
5.5
|
195 |
+
Limitation of Effectiveness
|
196 |
+
COMIRNATY may not protect all vaccine recipients.
|
197 |
+
6 ADVERSE REACTIONS
|
198 |
+
In clinical studies, the most commonly reported (≥10%) adverse reactions in participants 16 through 55 years of age following any dose were pain at the injection site (88.6%), fatigue (70. 1%), headache (64.9%), muscle pain (45.5%), chills (41.5%), joint pain (27.5%), fever (17.8%), and injection site swelling (10.6%).
|
199 |
+
In clinical studies, the most commonly reported (≥10%) adverse reactions in participants 56 years of age and older following any dose were pain at the injection site (78.2%), fatigue (56.9%), headache, (45.9%), muscle pain (32.5%), chills (24.8%), joint pain (21.5%), injection site swelling (11.8%), fever (11.5%), and injection site redness (10.4%).
|
200 |
+
In a clinical study, the most commonly reported (≥8%) adverse reactions in adolescents 12 through 15 years of age following any dose were pain at the injection site (90.5%), fatigue (77.5%), headache (75.5%), chills (49.2%), muscle pain (42.2%), fever (24.3%), joint pain (20.2%), injection site swelling (9.2%), and injection site redness (8.6%).
|
201 |
+
|
202 |
+
6.1 Clinical Trials Experience
|
203 |
+
Because clinical trials are conducted under widely varying conditions, adverse reaction rates observed in the clinical trials of a vaccine cannot be directly compared to rates in the clinical trials of another vaccine and may not reflect the rates observed in practice.
|
204 |
+
The safety of COMIRNATY was evaluated in participants 12 years of age and older in 2 clinical studies conducted in Germany (Study 1), United States, Argentina, Brazil, Turkey, South Africa, and Germany (Study 2). Study BNT162-01 (Study 1) was a Phase 1/2, 2-part, dose-escalation trial that enrolled 60 participants, 18 through 55 years of age and 36 participants, 56 through 85 years of age. Study C4591001 (Study 2) is a Phase 1/2/3 multicenter, multinational, randomized, saline placebo-controlled, double-blinded (Phase 2/3), dose-finding, vaccine candidate-selection and efficacy study that has enrolled approximately 46,000 participants 12 years of age or older. Of these, approximately 44,047 participants (22,026 COMIRNATY; 22,021 placebo) in Phase 2/3 are 16 years of age or older (including 378 and 376 participants 16 through 17 years of age in the COMIRNATY and placebo groups, respectively) and
|
205 |
+
2,260 adolescents are 12 through 15 years of age (1,131 and 1,129 in the COMIRNATY and placebo groups, respectively). Upon issuance of the Emergency Use Authorization for COMIRNATY, participants were unblinded to offer placebo participants COMIRNATY. Participants were unblinded in a phased manner over a period of months to offer placebo participants COMIRNATY. Study 2 also included 200 participants with confirmed stable human immunodeficiency virus (HIV) infection; HIV-positive participants are included in safety population disposition but are summarized separately in safety analyses. Confirmed stable HIV infection was defined as documented viral load <50 copies/mL and CD4 count >200 cells/mm? within 6 months before enrollment, and on stable antiretroviral therapy for at least 6 months.
|
206 |
+
In Study 2, all participants 12 through 15 years of age, and 16 years and older in the reactogenicity subset were monitored for solicited local and systemic reactions and use of antipyretic medication after each vaccination in an electronic diary. Participants are being monitored for unsolicited adverse events, including serious adverse events, throughout the study [from Dose 1 through 1 month (all unsolicited adverse events) or 6 months (serious adverse events) after the last vaccination]. Tables 1 through 6 present the frequency and severity of solicited local and systemic reactions, respectively, within 7 days following each dose of COMIRNATY and placebo.
|
207 |
+
Participants 16 Years of Age and Older
|
208 |
+
At the time of the analysis of the ongoing Study 2 with a data cutoff of March 13, 2021, there were 25,651 (58.2%) participants (13,031 COMIRNATY and 12,620 placebo) 16 years of age and older followed for
|
209 |
+
>4 months after the second dose.
|
210 |
+
Demographic characteristics in Study 2 were generally similar with regard to age, gender, race, and ethnicity among participants who received COMIRNATY and those who received placebo. Overall, among the total participants who received either COMIRNATY or placebo, 50.9% were male, 49.1% were female, 79.3% were 16 through 64 years of age, 20.7% were 65 years of age and older, 82.0% were White, 9.6% were Black or African American, 25.9% were Hispanic/Latino, 4.3% were Asian, and 1.0% were American Indian or Alaska Native.
|
211 |
+
Local and Svstemic Adverse Reactions Solicited in the Stud 2
|
212 |
+
In participants 16 through 55 years of age after receiving Dose 2, the mean duration of pain at the injection site was 2.5 days (range 1 to 70 days), for redness 2.2 days (range 1 to 9 days), and for swelling 2.1 days (range 1 to 8 days) for participants in the COMIRNATY group. In participants 56 years of age and older after receiving
|
213 |
+
6
|
214 |
+
|
215 |
+
Dose 2, the mean duration of pain at the injection site was 2.4 days (range 1 to 36 days), for redness 3.0 days (range 1 to 34 days), and for swelling 2.6 days (range 1 to 34 days) for participants in the COMIRNATY group.
|
216 |
+
Table 1: Study 2 - Frequency and Percentages of Participants with Solicited Local Reactions, by
|
217 |
+
Maximum Severity, Within 7 Days After Each Dose - Participants 16 Through 55 Years of Age - Reactogenicity Subset of the Safety Population*
|
218 |
+
COMIRNATY
|
219 |
+
Placebo
|
220 |
+
Dose 1
|
221 |
+
Dose 1
|
222 |
+
Na=2899
|
223 |
+
Na=2908
|
224 |
+
nb (%)
|
225 |
+
nb (%)
|
226 |
+
COMIRNATY
|
227 |
+
Dose 2
|
228 |
+
Na=2682 nb (%)
|
229 |
+
Placebo
|
230 |
+
Dose 2
|
231 |
+
Na=2684 nb (%)
|
232 |
+
Redness°
|
233 |
+
Any (>2.0 cm)
|
234 |
+
Mild
|
235 |
+
Moderate
|
236 |
+
Severe
|
237 |
+
156 (5.4)
|
238 |
+
113 (3.9)
|
239 |
+
36 (1.2)
|
240 |
+
7 (0.2)
|
241 |
+
28 (1.0)
|
242 |
+
19 (0.7)
|
243 |
+
6 (0.2)
|
244 |
+
3 (0.1)
|
245 |
+
151 (5.6)
|
246 |
+
90 (3.4)
|
247 |
+
50 (1.9)
|
248 |
+
11 (0.4)
|
249 |
+
18 (0.7)
|
250 |
+
12 (0.4)
|
251 |
+
6 (0.2)
|
252 |
+
O
|
253 |
+
Swelling
|
254 |
+
Any (>2.0 cm)
|
255 |
+
Mild
|
256 |
+
Moderate
|
257 |
+
Severe
|
258 |
+
184(6.3)
|
259 |
+
124(4.3)
|
260 |
+
54 (1.9)
|
261 |
+
6 (0.2)
|
262 |
+
16 (0.6)
|
263 |
+
6 (0.2)
|
264 |
+
8 (0.3)
|
265 |
+
2 (0.1)
|
266 |
+
183 (6.8)
|
267 |
+
110 (4.1)
|
268 |
+
66 (2.5)
|
269 |
+
7 (0.3)
|
270 |
+
5 (0.2)
|
271 |
+
3 (0.1)
|
272 |
+
2 (0.1)
|
273 |
+
0
|
274 |
+
Pain at the injection site
|
275 |
+
Any
|
276 |
+
2426 (83.7)
|
277 |
+
414 (14.2)
|
278 |
+
2101 (78.3)
|
279 |
+
Mild
|
280 |
+
1464 (50.5)
|
281 |
+
391 (13.4)
|
282 |
+
1274 (47.5)
|
283 |
+
Moderate
|
284 |
+
923 (31.8)
|
285 |
+
20 (0.7)
|
286 |
+
788 (29.4)
|
287 |
+
312 (11.6)
|
288 |
+
284 (10.6)
|
289 |
+
28 (1.0)
|
290 |
+
Severe
|
291 |
+
39 (1.3)
|
292 |
+
3 (0.1)
|
293 |
+
39 (1.5)
|
294 |
+
Notes: Reactions were collected in the electronic diary (e-diary) from Day 1 to Day 7 after vaccination
|
295 |
+
No Grade 4 solicited local reactions were reported in participants 16 through 55 years of age.
|
296 |
+
* Randomized participants in the safety analysis population who received at least 1 dose of the study intervention. Participants with chronic, stable HIV infection were excluded.
|
297 |
+
a. N = Number of participants reporting at least 1 yes or no response for the specified reaction after the specified dose. The N for each
|
298 |
+
reaction was the same, therefore, this information was included in the column header.
|
299 |
+
b. n = Number of participants with the specified reaction.
|
300 |
+
c. Mild: >2.0 to 25.0 cm; Moderate: >5.0 to 210.0 cm; Severe: >10.0 cm.
|
301 |
+
d. Mild: does not interfere with activity; Moderate: interferes with activity; Severe: prevents daily activity.
|
302 |
+
Table 2: Study 2 - Frequency and Percentages of Participants with Solicited Systemic Reactions, by
|
303 |
+
Maximum Severity, Within 7 Days After Each Dose - Participants 16 Through 55 Years of Age - Reactogenicity Subset of the Safety Population*
|
304 |
+
COMIRNATY
|
305 |
+
Placebo
|
306 |
+
Dose 1
|
307 |
+
Dose 1
|
308 |
+
Na=2899
|
309 |
+
Na=2908
|
310 |
+
nb (%)
|
311 |
+
nb (%)
|
312 |
+
COMIRNATY
|
313 |
+
Dose 2
|
314 |
+
Na=2682 nb (%)
|
315 |
+
Placebo
|
316 |
+
Dose 2
|
317 |
+
Na=2684 nb (%)
|
318 |
+
Fever
|
319 |
+
>38.0°C
|
320 |
+
≥38.0°C to 38.4°C
|
321 |
+
>38.4°C to 38.9°C
|
322 |
+
>38.9°C to 40.0°C
|
323 |
+
>40.0°C
|
324 |
+
Fatigue
|
325 |
+
Any
|
326 |
+
119 (4.1)
|
327 |
+
86 (3.0)
|
328 |
+
25 (0.9)
|
329 |
+
8 (0.3)
|
330 |
+
25 (0.9)
|
331 |
+
16 (0.6)
|
332 |
+
5 (0.2)
|
333 |
+
4 (0.1)
|
334 |
+
440 (16.4)
|
335 |
+
254 (9.5)
|
336 |
+
146 (5.4)
|
337 |
+
39 (1.5)
|
338 |
+
1 (0.0)
|
339 |
+
11 (0.4)
|
340 |
+
5 (0.2)
|
341 |
+
4 (0.1)
|
342 |
+
2 (0.1)
|
343 |
+
O
|
344 |
+
1431 (49.4)
|
345 |
+
960 (33.0)
|
346 |
+
1649 (61.5)
|
347 |
+
614 (22.9)
|
348 |
+
|
349 |
+
COMIRNATY
|
350 |
+
Placebo
|
351 |
+
COMIRNATY
|
352 |
+
Placebo
|
353 |
+
Dose 1
|
354 |
+
Dose 1
|
355 |
+
Dose 2
|
356 |
+
Dose 2
|
357 |
+
Na=2899
|
358 |
+
Na=2908
|
359 |
+
N°=2682
|
360 |
+
N°=2684
|
361 |
+
nb (%)
|
362 |
+
nb (%)
|
363 |
+
nb (%)
|
364 |
+
nb (%)
|
365 |
+
Mild
|
366 |
+
760 (26.2)
|
367 |
+
570 (19.6)
|
368 |
+
558 (20.8)
|
369 |
+
317 (11.8)
|
370 |
+
Moderate
|
371 |
+
630 (21.7)
|
372 |
+
372 (12.8)
|
373 |
+
949 (35.4)
|
374 |
+
283 (10.5)
|
375 |
+
Severe
|
376 |
+
41 (1.4)
|
377 |
+
18 (0.6)
|
378 |
+
142 (5.3)
|
379 |
+
14 (0.5)
|
380 |
+
Headache
|
381 |
+
Any
|
382 |
+
1262 (43.5)
|
383 |
+
975 (33.5)
|
384 |
+
1448 (54.0)
|
385 |
+
652 (24.3)
|
386 |
+
Mild
|
387 |
+
785 (27.1)
|
388 |
+
633 (21.8)
|
389 |
+
699 (26.1)
|
390 |
+
404 (15.1)
|
391 |
+
Moderate
|
392 |
+
444 (15.3)
|
393 |
+
318 (10.9)
|
394 |
+
658 (24.5)
|
395 |
+
230 (8.6)
|
396 |
+
Severe
|
397 |
+
33(1.1)
|
398 |
+
24 (0.8)
|
399 |
+
91 (3.4)
|
400 |
+
18 (0.7)
|
401 |
+
Chills°
|
402 |
+
Any
|
403 |
+
479 (16.5)
|
404 |
+
199 (6.8)
|
405 |
+
1015 (37.8)
|
406 |
+
114 (4 2)
|
407 |
+
Mild
|
408 |
+
338 (11.7)
|
409 |
+
148 (5.1)
|
410 |
+
477 (17.8)
|
411 |
+
89 (3.3)
|
412 |
+
Moderate
|
413 |
+
126 (4.3)
|
414 |
+
49 (1.7)
|
415 |
+
469 (17.5)
|
416 |
+
23 (0.9)
|
417 |
+
Severe
|
418 |
+
15 (0.5)
|
419 |
+
2 (0.1)
|
420 |
+
69 (2.6)
|
421 |
+
2 (0.1)
|
422 |
+
Vomitingd
|
423 |
+
Any
|
424 |
+
34 (1.2)
|
425 |
+
36 (1.2)
|
426 |
+
58 (2.2)
|
427 |
+
30 (1.1)
|
428 |
+
Mild
|
429 |
+
29 (1.0)
|
430 |
+
30 (1.0)
|
431 |
+
42 (1.6)
|
432 |
+
20 (0.7)
|
433 |
+
Moderate
|
434 |
+
5 (0.2)
|
435 |
+
5 (0.2)
|
436 |
+
12 (0.4)
|
437 |
+
10 (0.4)
|
438 |
+
Severe
|
439 |
+
1 (0.0)
|
440 |
+
4 (0.1)
|
441 |
+
Diarrhea®
|
442 |
+
Any
|
443 |
+
309 (10.7)
|
444 |
+
323 (11.1)
|
445 |
+
269 (10.0)
|
446 |
+
205 (7.6)
|
447 |
+
Mild
|
448 |
+
251 (8.7)
|
449 |
+
264 (9.1)
|
450 |
+
219 (8.2)
|
451 |
+
169 (6.3)
|
452 |
+
Moderate
|
453 |
+
55 (1.9)
|
454 |
+
58 (2.0)
|
455 |
+
44 (1.6)
|
456 |
+
35 (1.3)
|
457 |
+
Severe
|
458 |
+
3 (0.1)
|
459 |
+
1 (0.0)
|
460 |
+
6 (0.2)
|
461 |
+
1 (0.0)
|
462 |
+
New or worsened muscle pain°
|
463 |
+
Any
|
464 |
+
664 (22.9)
|
465 |
+
329 (11.3)
|
466 |
+
1055 (39.3)
|
467 |
+
237 (8.8)
|
468 |
+
Mild
|
469 |
+
353 (12.2)
|
470 |
+
231 (7.9)
|
471 |
+
441 (16.4)
|
472 |
+
150 (5.6)
|
473 |
+
Moderate
|
474 |
+
296 (10.2)
|
475 |
+
96 (3.3)
|
476 |
+
552 (20.6)
|
477 |
+
84 (3.1)
|
478 |
+
Severe
|
479 |
+
15 (0.5)
|
480 |
+
2 (0.1)
|
481 |
+
62 (2.3)
|
482 |
+
3 (0.1)
|
483 |
+
New or worsened joint pain"
|
484 |
+
Any
|
485 |
+
342 (11.8)
|
486 |
+
168 (5.8)
|
487 |
+
638 (23.8)
|
488 |
+
147 (5.5)
|
489 |
+
Mild
|
490 |
+
200 (6.9)
|
491 |
+
112 (3.9)
|
492 |
+
291 (10.9)
|
493 |
+
82 (3.1)
|
494 |
+
Moderate
|
495 |
+
137 (4.7)
|
496 |
+
55 (1.9)
|
497 |
+
320 (11.9)
|
498 |
+
61 (2.3)
|
499 |
+
Severe
|
500 |
+
5 (0.2)
|
501 |
+
1 (0.0)
|
502 |
+
27 (1.0)
|
503 |
+
4 (0.1)
|
504 |
+
Use of antipyretic or pain medication
|
505 |
+
805 (27.8)
|
506 |
+
398 (13.7)
|
507 |
+
1213 (45.2)
|
508 |
+
320 (11.9)
|
509 |
+
Notes: Reactions and use of antipyretic or pain medication were collected in the electronic diary (e-diary) from Day 1 to Day 7 after each dose.
|
510 |
+
No Grade 4 solicited systemic reactions were reported in participants 16 through 55 years of age.
|
511 |
+
* Randomized participants in the safety analysis population who received at least 1 dose of the study intervention. Participants with chronic, stable HIV infection were excluded.
|
512 |
+
a. N= Number of participants reporting at least 1 yes or no response for the specified reaction after the specified dose. The N for each reaction or use of antipyretic or pain medication was the same, therefore, this information was included in the column header.
|
513 |
+
b. n = Number of participants with the specified reaction.
|
514 |
+
c. Mild: does not interfere with activity; Moderate: some interference with activity; Severe: prevents daily activity.
|
515 |
+
d. Mild: 1 to 2 times in 24 hours; Moderate: >2 times in 24 hours; Severe: requires intravenous hydration.
|
516 |
+
e. Mild: 2 to 3 loose stools in 24 hours; Moderate: 4 to 5 loose stools in 24 hours; Severe: 6 or more loose stools in 24 hours.
|
517 |
+
f. Severity was not collected for use of antipyretic or pain medication.
|
518 |
+
8
|
519 |
+
|
520 |
+
Table 3: Study 2 - Frequency and Percentages of Participants with Solicited Local Reactions, by
|
521 |
+
Maximum Severity, Within 7 Days After Each Dose - Participants 56 Years of Age and Older - Reactogenicity Subset of the Safety Population*
|
522 |
+
COMIRNATY
|
523 |
+
Placebo
|
524 |
+
Dose 1
|
525 |
+
Dose 1
|
526 |
+
Na=2008
|
527 |
+
Na=1989
|
528 |
+
nb (%)
|
529 |
+
n° (%)
|
530 |
+
COMIRNATY
|
531 |
+
Placebo
|
532 |
+
Dose 2
|
533 |
+
Dose 2
|
534 |
+
Na=1860
|
535 |
+
Na=1833
|
536 |
+
n° (%)
|
537 |
+
nb (%)
|
538 |
+
Redness°
|
539 |
+
Any (>2.0 cm)
|
540 |
+
Mild
|
541 |
+
Moderate
|
542 |
+
Severe
|
543 |
+
106 (5.3)
|
544 |
+
71 (3.5)
|
545 |
+
30 (1.5)
|
546 |
+
5 (0.2)
|
547 |
+
20 (1.0)
|
548 |
+
13 (0.7)
|
549 |
+
5 (0.3)
|
550 |
+
2 (0.1)
|
551 |
+
133 (7.2)
|
552 |
+
65 (3.5)
|
553 |
+
58 (3.1)
|
554 |
+
10 (0.5)
|
555 |
+
14 (0.8)
|
556 |
+
10 (0.5)
|
557 |
+
3 (0.2)
|
558 |
+
1 (0.1)
|
559 |
+
Swelling
|
560 |
+
Any (>2.0 cm)
|
561 |
+
Mild
|
562 |
+
Moderate
|
563 |
+
Severe
|
564 |
+
141 (7.0)
|
565 |
+
87 (4.3)
|
566 |
+
52 (2.6)
|
567 |
+
2 (0.1)
|
568 |
+
23 (1.2)
|
569 |
+
11 (0.6)
|
570 |
+
12 (0.6)
|
571 |
+
0
|
572 |
+
145 (7.8)
|
573 |
+
80 (4.3)
|
574 |
+
61 (3.3)
|
575 |
+
4 (0.2)
|
576 |
+
13 (0.7)
|
577 |
+
5 (0.3)
|
578 |
+
7 (0.4)
|
579 |
+
1 (0.1)
|
580 |
+
Pain at the injection sited
|
581 |
+
Any (>2.0 cm)
|
582 |
+
1408 (70.1)
|
583 |
+
185 (9.3)
|
584 |
+
1230 (66.1)
|
585 |
+
Mild
|
586 |
+
1108 (55.2)
|
587 |
+
177 (8.9)
|
588 |
+
873 (46.9)
|
589 |
+
Moderate
|
590 |
+
296 (14.7)
|
591 |
+
8 (0.4)
|
592 |
+
347 (18.7)
|
593 |
+
Severe
|
594 |
+
4 (0.2)
|
595 |
+
0
|
596 |
+
10 (0.5)
|
597 |
+
143 (7.8)
|
598 |
+
138 (7.5)
|
599 |
+
5 (0.3)
|
600 |
+
0
|
601 |
+
Notes: Reactions were collected in the electronic diary (e-diary) from Day 1 to Day 7 after vaccination.
|
602 |
+
No Grade 4 solicited local reactions were reported in participants 56 years of age and older.
|
603 |
+
* Randomized participants in the safety analysis population who received at least 1 dose of the study intervention. Participants with chronic, stable HIV infection were excluded.
|
604 |
+
a. N= Number of participants reporting at least 1 yes or no response for the specified reaction after the specified dose. The N for each reaction was the same, therefore, the information was included in the column header.
|
605 |
+
b. n = Number of participants with the specified reaction.
|
606 |
+
c. Mild: >2.0 to 35.0 cm; Moderate: >5.0 to <10.0 cm; Severe: >10.0 cm.
|
607 |
+
d. Mild: does not interfere with activity; Moderate: interferes with activity; Severe: prevents daily activity.
|
608 |
+
Table 4: Study 2 - Frequency and Percentages of Participants with Solicited Systemic Reactions, by
|
609 |
+
Maximum Severity, Within 7 Days After Each Dose - Participants 56 Years of Age and Older - Reactogenicity Subset of the Safety Population*
|
610 |
+
COMIRNATY
|
611 |
+
Placebo
|
612 |
+
Dose 1
|
613 |
+
Dose 1
|
614 |
+
Na=2008
|
615 |
+
Na=1989
|
616 |
+
nb (%)
|
617 |
+
nb (%)
|
618 |
+
COMIRNATY
|
619 |
+
Dose 2
|
620 |
+
Na=1860 nb (%)
|
621 |
+
Placebo
|
622 |
+
Dose 2
|
623 |
+
Na=1833 n" (%)
|
624 |
+
Fever
|
625 |
+
>38.0°C
|
626 |
+
≥38.0°C to 38.4°C
|
627 |
+
>38.4°C to 38.9°C
|
628 |
+
>38.9°C to 40.0°C
|
629 |
+
>40.0°C
|
630 |
+
26 (1.3)
|
631 |
+
23 (1.1)
|
632 |
+
2 (0.1)
|
633 |
+
1 (0.0)
|
634 |
+
O
|
635 |
+
8 (0.4)
|
636 |
+
3 (0.2)
|
637 |
+
3 (0.2)
|
638 |
+
2 (0.1)
|
639 |
+
O
|
640 |
+
219 (11.8)
|
641 |
+
158 (8.5)
|
642 |
+
54 (2.9)
|
643 |
+
7 (0.4)
|
644 |
+
O
|
645 |
+
4 (0.2)
|
646 |
+
2 (0.1)
|
647 |
+
1 (0.1)
|
648 |
+
1 (0.1)
|
649 |
+
0
|
650 |
+
9
|
651 |
+
|
652 |
+
COMIRNATY
|
653 |
+
Dose 1
|
654 |
+
Na=2008 n° (%)
|
655 |
+
Placebo
|
656 |
+
Dose 1
|
657 |
+
Na=1989 nb (%)
|
658 |
+
COMIRNATY
|
659 |
+
Dose 2
|
660 |
+
N°=1860 nb (%)
|
661 |
+
Placebo
|
662 |
+
Dose 2
|
663 |
+
Na=1833 nb (%)
|
664 |
+
Fatigue
|
665 |
+
Any
|
666 |
+
677 (33.7)
|
667 |
+
447 (22.5)
|
668 |
+
949 (51.0)
|
669 |
+
306 (16.7)
|
670 |
+
Mild
|
671 |
+
415 (20.7)
|
672 |
+
281 (14.1)
|
673 |
+
391 (21.0)
|
674 |
+
183 (10.0)
|
675 |
+
Moderate
|
676 |
+
259 (12.9)
|
677 |
+
163 (8.2)
|
678 |
+
497 (26.7)
|
679 |
+
121 (6.6)
|
680 |
+
Severe
|
681 |
+
3 (0.1)
|
682 |
+
3 (0.2)
|
683 |
+
60 (3.2)
|
684 |
+
2 (0.1)
|
685 |
+
Grade 4
|
686 |
+
0
|
687 |
+
0
|
688 |
+
1 (0.1)
|
689 |
+
0
|
690 |
+
Headache
|
691 |
+
Any
|
692 |
+
503 (25.0)
|
693 |
+
363 (18.3)
|
694 |
+
733 (39.4)
|
695 |
+
259 (14.1)
|
696 |
+
Mild
|
697 |
+
381 (19.0)
|
698 |
+
267 (13.4)
|
699 |
+
464 (24.9)
|
700 |
+
189 (10.3)
|
701 |
+
Moderate
|
702 |
+
120 (6.0)
|
703 |
+
93 (4.7)
|
704 |
+
256 (13.8)
|
705 |
+
65 (3.5)
|
706 |
+
Severe
|
707 |
+
2 (0.1)
|
708 |
+
3 (0.2)
|
709 |
+
13 (0.7)
|
710 |
+
5 (0.3)
|
711 |
+
Chills°
|
712 |
+
Any
|
713 |
+
130 (6.5)
|
714 |
+
69 (3.5)
|
715 |
+
435 (23.4)
|
716 |
+
57 (3.1)
|
717 |
+
Mild
|
718 |
+
102 (5.1)
|
719 |
+
49 (2.5)
|
720 |
+
229 (12.3)
|
721 |
+
45 (2.5)
|
722 |
+
Moderate
|
723 |
+
28 (1.4)
|
724 |
+
19 (1.0)
|
725 |
+
185 (9.9)
|
726 |
+
12 (0.7)
|
727 |
+
Severe
|
728 |
+
0
|
729 |
+
1 (0.1)
|
730 |
+
21 (1.1)
|
731 |
+
0
|
732 |
+
Vomitingd
|
733 |
+
Anv
|
734 |
+
10 (0.5)
|
735 |
+
9 (0.5)
|
736 |
+
13 (0.7)
|
737 |
+
5 (0.3)
|
738 |
+
Mild
|
739 |
+
9 (0.4)
|
740 |
+
9 (0.5)
|
741 |
+
10 (0.5)
|
742 |
+
5 (0.3)
|
743 |
+
Moderate
|
744 |
+
1 (0.0)
|
745 |
+
O
|
746 |
+
1 (0.1)
|
747 |
+
0
|
748 |
+
Severe
|
749 |
+
0
|
750 |
+
2 (0.1)
|
751 |
+
0
|
752 |
+
Diarrhea®
|
753 |
+
Any
|
754 |
+
168 (8.4)
|
755 |
+
130 (6.5)
|
756 |
+
152 (8.2)
|
757 |
+
102 (5.6)
|
758 |
+
Mild
|
759 |
+
137 (6.8)
|
760 |
+
109 (5.5)
|
761 |
+
125 (6.7)
|
762 |
+
76 (4.1)
|
763 |
+
Moderate
|
764 |
+
27 (1.3)
|
765 |
+
20 (1.0)
|
766 |
+
25 (1.3)
|
767 |
+
22(1.2)
|
768 |
+
Severe
|
769 |
+
4 (0.2)
|
770 |
+
1 (0.1)
|
771 |
+
2 (0.1)
|
772 |
+
4(0.2)
|
773 |
+
New or worsened muscle pain°
|
774 |
+
Any
|
775 |
+
274 (13.6)
|
776 |
+
165 (8.3)
|
777 |
+
537 (28.9)
|
778 |
+
99 (5.4)
|
779 |
+
Mild
|
780 |
+
183 (9.1)
|
781 |
+
111 (5.6)
|
782 |
+
229 (12.3)
|
783 |
+
65 (3.5)
|
784 |
+
Moderate
|
785 |
+
90 (4.5)
|
786 |
+
51 (2.6)
|
787 |
+
288 (15.5)
|
788 |
+
33 (1.8)
|
789 |
+
Severe
|
790 |
+
1 (0.0)
|
791 |
+
3 (0.2)
|
792 |
+
20 (1.1)
|
793 |
+
1 (0.1)
|
794 |
+
New or worsened joint pain
|
795 |
+
Any
|
796 |
+
175 (8.7)
|
797 |
+
124 (6.2)
|
798 |
+
353 (19.0)
|
799 |
+
72 (3.9)
|
800 |
+
Mild
|
801 |
+
119 (5.9)
|
802 |
+
78 (3.9)
|
803 |
+
183 (9.8)
|
804 |
+
44 (2.4)
|
805 |
+
Moderate
|
806 |
+
53 (2.6)
|
807 |
+
45 (2.3)
|
808 |
+
161 (8.7)
|
809 |
+
27 (1.5)
|
810 |
+
Severe
|
811 |
+
3 (0.1)
|
812 |
+
1 (0.1)
|
813 |
+
9 (0.5)
|
814 |
+
1 (0.1)
|
815 |
+
Use of antipyretic or pain medicationf
|
816 |
+
382 (19.0)
|
817 |
+
224 (11.3)
|
818 |
+
688 (37.0)
|
819 |
+
170 (9.3)
|
820 |
+
Notes: Reactions and use of antipyretic or pain medication were collected in the electronic diary (e-diary) from Day 1 to Day 7 after each dose.
|
821 |
+
The only Grade 4 solicited systemic reaction reported in participants 56 years of age and older was fatigue.
|
822 |
+
* Randomized participants in the safety analysis population who received at least 1 dose of the study intervention. Participants with chronic, stable HIV infection were excluded.
|
823 |
+
a. N= Number of participants reporting at least 1 yes or no response for the specified reaction after the specified dose. N for each reaction or use of antipyretic or pain medication was the same, therefore was included in the column header.
|
824 |
+
b. n = Number of participants with the specified reaction.
|
825 |
+
10
|
826 |
+
|
827 |
+
c. Mild: does not interfere with activity; Moderate: some interference with activity; Severe: prevents daily activity; Grade 4 reactions were defined in the clinical study protocol as emergency room visit or hospitalization for severe fatigue, severe headache, severe chills, severe muscle pain, or severe joint pain.
|
828 |
+
d. Mild: 1 to 2 times in 24 hours; Moderate: >2 times in 24 hours; Severe: requires intravenous hydration; Grade 4 emergency visit or hospitalization for severe vomiting.
|
829 |
+
e. Mild: 2 to 3 loose stools in 24 hours; Moderate: 4 to 5 loose stools in 24 hours; Severe: 6 or more loose stools in 24 hours; Grade 4: emergency room or hospitalization for severe diarrhea.
|
830 |
+
f. Severity was not collected for use of antipyretic or pain medication.
|
831 |
+
In participants with chronic, stable HIV infection the frequencies of solicited local and systemic adverse reactions were similar to or lower than those observed for all participants 16 years of age and older.
|
832 |
+
Unsolicited Adverse Events
|
833 |
+
Overall, 11,253 (51.1%) participants in the COMIRNATY group and 11,316 (51.4%) participants in the placebo group had follow-up time between ≥4 months to <6 months after Dose 2 in the blinded placebo-controlled follow-up period with an additional 1,778 (8.1%) and 1,304 (5.9%) with >6 months of blinded follow-up time in the COMIRNATY and placebo groups, respectively.
|
834 |
+
A total of 12,006 (54.5%) participants originally randomized to COMIRNATY had >6 months total (blinded and unblinded follow-up after Dose 2.
|
835 |
+
In an analysis of all unsolicited adverse events reported following any dose, through 1 month after Dose 2, in participants 16 years of age and older (N=43,847; 21,926 COMIRNATY group vs. 21,921 placebo group), those assessed as adverse reactions not already captured by solicited local and systemic reactions were nausea (274 vs. 87), malaise (130 vs. 22), lymphadenopathy (83 vs. 7), asthenia (76 vs. 25), decreased appetite (39 vs. 9), hyperhidrosis (31 vs. 9), lethargy (25 vs. 6), and night sweats (17 vs. 3).
|
836 |
+
In analvses of all unsolicited adverse events in Study 2 from Dose 1 up to the participant unblinding date, 58.2% of study participants had at least 4 months of follow-up after Dose 2. Among participants 16 through
|
837 |
+
55 years of age who received at least 1 dose of study vaccine, 12,995 of whom received COMIRNATY and
|
838 |
+
13,026 of whom received placebo, unsolicited adverse events were reported by 4,396 (33.8%) participants in the COMIRNATY group and 2,136 (16.4%) participants in the placebo group. In a similar analysis in participants 56 years of age and older that included 8,931 COMIRNATY recipients and 8,895 placebo recipients, unsolicited adverse events were reported by 2,551 (28.6%) participants in the COMIRNATY group and 1,432 (16.1%) participants in the placebo group. Among participants with confirmed stable HIV infection that included 100 COMIRNATY recipients and 100 placebo recipients, unsolicited adverse events were reported by 29 (29%) participants in the COMIRNATY group and 15 (15%) participants in the placebo group. The higher frequency of reported unsolicited adverse events among COMIRNATY recipients compared to placebo recipients was primarily attributed to events that are consistent with adverse reactions solicited among participants in the reactogenicity subset (Table 3 and Table 4).
|
839 |
+
Throughout the placebo-controlled safety follow-up period, Bell's palsy (facial paralysis) was reported by 4 participants in the COMIRNATY group and 2 participants in the placebo group. Onset of facial paralysis was Day 37 after Dose 1 (participant did not receive Dose 2) and Days 3, 9, and 48 after Dose 2. In the placebo group the onset of facial paralysis was Day 32 and Day 102. Currently available information is insufficient to determine a causal relationship with the vaccine. In the analysis of blinded, placebo-controlled follow-up, there were no other notable patterns or numerical imbalances between treatment groups for specific categories of non-serious adverse events (including other neurologic or neuro-inflammatory, and thrombotic events) that would suggest a causal relationship to COMIRNATY. In the analysis of unblinded follow-up, there were no
|
840 |
+
11
|
841 |
+
|
842 |
+
notable patterns of specific categories of non-serious adverse events that would suggest a causal relationship to COMIRNATY.
|
843 |
+
Serious Adverse Events
|
844 |
+
In Study 2, among participants 16 through 55 years of age who had received at least 1 dose of vaccine or
|
845 |
+
placebo (COMIRNATY =12,995; placebo = 13,026), serious adverse events from Dose 1 up to the participant
|
846 |
+
unblinding date in ongoing follow-up were reported by 103 (0.8%) COMIRNATY recipients and 117 (0.9%)
|
847 |
+
placebo recipients. In a similar analysis, in participants 56 years of age and older (COMIRNATY = 8,931;
|
848 |
+
placebo = 8,895), serious adverse events were reported by 165 (1.8%) COMIRNATY recipients and 151 (1.7%)
|
849 |
+
placebo recipients who received at least 1 dose of COMIRNATY or placebo, respectively. In these analyses, 58.2% of study participants had at least 4 months of follow-up after Dose 2. Among participants with confirmed stable HIV infection serious adverse events from Dose 1 up to the participant unblinding date in ongoing follow-up were reported by 2 (2%) COMIRNATY recipients and 2 (2%) placebo recipients.
|
850 |
+
In the analysis of blinded, placebo-controlled follow-up, there were no notable patterns between treatment groups for specific categories of serious adverse events (including neurologic, neuro-inflammatory, and thrombotic events) that would suggest a causal relationship to COMIRNATY. In the analysis of unblinded follow-up, there were no notable patterns of specific categories of serious adverse events that would suggest a causal relationship to COMIRNATY.
|
851 |
+
Adolescents 12 Through 15 Years of Age
|
852 |
+
In Study 2, 2,260 adolescents (1,131 COMIRNATY; 1,129 placebo) were 12 through 15 years of age. At the time of the analysis of the ongoing Study 2 with a data cutoff of September 2, 2021, there were 1,559 (69.0%) adolescents (786 COMIRNATY and 773 placebo) 12 through 15 years of age followed for >4 months after the second dose. The safety evaluation in Study 2 is ongoing.
|
853 |
+
Demographic characteristics in Study 2 were generally similar with regard to age, gender, race, and ethnicity among adolescents who received COMIRNATY and those who received placebo. Overall, among the adolescents who received COMIRNATY, 50.1% were male and 49.9% were female, 85.8% were White, 4.6% were Black or African American, 11.7% were Hispanic/Latino, 6.4% were Asian, and 0.4% were American Indian/Alaska Native.
|
854 |
+
Local and Systemic Adverse Reactions Solicited in Study 2
|
855 |
+
In adolescents 12 through 15 years of age after receiving Dose 2, the mean duration of pain at the injection site was 2.5 days (range 1 to 11 days), for redness 1.8 days (range 1 to 5 days), and for swelling 1.6 days (range 1 to 5 days) in the COMIRNATY group.
|
856 |
+
Table 5: Study 2 - Frequency and Percentages of Adolescents With Solicited Local Reactions, by
|
857 |
+
Maximum Severity, Within 7 Days After Each Dose - Adolescents 12 Through 15 Years of Age - Safety Population *
|
858 |
+
COMIRNATY
|
859 |
+
Dose 1
|
860 |
+
N°=1127 ab (%)
|
861 |
+
Placebo
|
862 |
+
Dose 1
|
863 |
+
Na=1127 nb (%)
|
864 |
+
COMIRNATY
|
865 |
+
Dose 2
|
866 |
+
Na=1097 nb (%)
|
867 |
+
Placebo
|
868 |
+
Dose 2
|
869 |
+
Na=1078 rb (%)
|
870 |
+
Redness®
|
871 |
+
Any (>2 cm)
|
872 |
+
Mild
|
873 |
+
Moderate
|
874 |
+
Severe
|
875 |
+
65 (5.8)
|
876 |
+
44 (3.9)
|
877 |
+
20 (1.8)
|
878 |
+
1 (0.1)
|
879 |
+
12 (1.1)
|
880 |
+
11 (1.0)
|
881 |
+
1 (0.1)
|
882 |
+
0 (0.0)
|
883 |
+
55 (5.0)
|
884 |
+
29 (2.6)
|
885 |
+
26 (2.4)
|
886 |
+
0 (0.0)
|
887 |
+
10 (0.9)
|
888 |
+
8 (0.7)
|
889 |
+
2 (0.2)
|
890 |
+
0 (0.0)
|
891 |
+
12
|
892 |
+
|
893 |
+
COMIRNATY
|
894 |
+
Dose 1
|
895 |
+
Na=1127 nb (%)
|
896 |
+
Placebo
|
897 |
+
Dose 1
|
898 |
+
Na=1127 n° (%)
|
899 |
+
COMIRNATY
|
900 |
+
Dose 2
|
901 |
+
Na=1097 nb (%)
|
902 |
+
Placebo
|
903 |
+
Dose 2
|
904 |
+
Na=1078 nb (%)
|
905 |
+
Swelling®
|
906 |
+
Any (>2 cm)
|
907 |
+
Mild
|
908 |
+
Moderate
|
909 |
+
Severe
|
910 |
+
78 (6.9)
|
911 |
+
55 (4.9)
|
912 |
+
23 (2.0)
|
913 |
+
0 (0.0)
|
914 |
+
11 (1.0)
|
915 |
+
9 (0.8)
|
916 |
+
2 (0.2)
|
917 |
+
0 (0.0)
|
918 |
+
54 (4.9)
|
919 |
+
36 (3.3)
|
920 |
+
18 (1.6)
|
921 |
+
0 (0.0)
|
922 |
+
Pain at the iniection sited
|
923 |
+
Any
|
924 |
+
971 (86.2)
|
925 |
+
263 (23.3)
|
926 |
+
866 (78.9)
|
927 |
+
Mild
|
928 |
+
467 (41.4)
|
929 |
+
227 (20.1)
|
930 |
+
466 (42.5)
|
931 |
+
Moderate
|
932 |
+
493 (43.7)
|
933 |
+
36 (3.2)
|
934 |
+
393 (35.8)
|
935 |
+
Severe
|
936 |
+
11 (1.0)
|
937 |
+
0 (0.0)
|
938 |
+
7 (0.6)
|
939 |
+
Note: Reactions were collected in the electronic diary (e-diary) from Day 1 to Day 7 after vaccination
|
940 |
+
* Randomized participants in the safety analysis population who received at least 1 dose of the study intervention.
|
941 |
+
a. N= Number of participants reporting at least 1 yes or no response for the specified reaction after the specified dose.
|
942 |
+
b. n = Number of participants with the specified reaction.
|
943 |
+
c. Mild: >2.0 to <5.0 cm; Moderate: >5.0 to <10.0 cm; Severe: >10.0 cm.
|
944 |
+
d. Mild: does not interfere with activity; Moderate: interferes with activity; Severe: prevents daily activity.
|
945 |
+
6 (0.6)
|
946 |
+
4 (0.4)
|
947 |
+
2 (0.2)
|
948 |
+
0 (0.0)
|
949 |
+
193 (17.9)
|
950 |
+
164 (15.2)
|
951 |
+
29 (2.7)
|
952 |
+
0 (0.0)
|
953 |
+
Table 6: Study 2 - Frequency and Percentages of Adolescents with Solicited Systemic Reactions, by
|
954 |
+
Maximum Severity, Within 7 Days After Each Dose - Adolescents 12 Through 15 Years of Age - Safety Population*
|
955 |
+
COMIRNATY
|
956 |
+
Dose 1
|
957 |
+
Na=1127 nb (%)
|
958 |
+
Placebo
|
959 |
+
Dose 1
|
960 |
+
Na=1127 nb (%)
|
961 |
+
COMIRNATY
|
962 |
+
Dose 2
|
963 |
+
Na=1097 nb (%)
|
964 |
+
Placebo
|
965 |
+
Dose 2
|
966 |
+
Na=1078 nb (%)
|
967 |
+
Fever
|
968 |
+
≥38.0°C
|
969 |
+
>38.0°C to 38.4°C
|
970 |
+
>38.4°C to 38.9°C
|
971 |
+
>38.9°C to 40.0°C
|
972 |
+
>40.0°C
|
973 |
+
Fatigue
|
974 |
+
Any
|
975 |
+
Mild
|
976 |
+
Moderate
|
977 |
+
Severe
|
978 |
+
Headache
|
979 |
+
Any
|
980 |
+
Mild
|
981 |
+
Moderate
|
982 |
+
Severe
|
983 |
+
Chills°
|
984 |
+
Any
|
985 |
+
Mild
|
986 |
+
Moderate
|
987 |
+
Severe
|
988 |
+
114 (10.1)
|
989 |
+
74 (6.6)
|
990 |
+
29 (2.6)
|
991 |
+
10 (0.9)
|
992 |
+
1 (0.1)
|
993 |
+
12 (1.1)
|
994 |
+
8 (0.7)
|
995 |
+
2 (0.2)
|
996 |
+
2 (0.2)
|
997 |
+
0 (0.0)
|
998 |
+
215 (19.6)
|
999 |
+
107 (9.8)
|
1000 |
+
83 (7.6)
|
1001 |
+
25 (2.3)
|
1002 |
+
0 (0.0)
|
1003 |
+
7 (0.6)
|
1004 |
+
5 (0.5)
|
1005 |
+
1 (0.1)
|
1006 |
+
1 (0.1)
|
1007 |
+
0 (0.0)
|
1008 |
+
677 (60.1)
|
1009 |
+
278 (24.7)
|
1010 |
+
384 (34.1)
|
1011 |
+
15 (1.3)
|
1012 |
+
457 (40.6)
|
1013 |
+
250 (22.2)
|
1014 |
+
199 (17.7)
|
1015 |
+
8 (0.7)
|
1016 |
+
726 (66.2)
|
1017 |
+
232 (21.1)
|
1018 |
+
468 (42.7)
|
1019 |
+
26 (2.4)
|
1020 |
+
264(24.5)
|
1021 |
+
133 (12.3)
|
1022 |
+
127 (11.8)
|
1023 |
+
4 (0.4)
|
1024 |
+
623 (55.3)
|
1025 |
+
361 (32.0)
|
1026 |
+
251 (22.3)
|
1027 |
+
11 (1.0)
|
1028 |
+
396 (35.1)
|
1029 |
+
256 (22.7)
|
1030 |
+
131 (11.6)
|
1031 |
+
9 (0.8)
|
1032 |
+
708 (64.5)
|
1033 |
+
302 (27.5)
|
1034 |
+
384 (35.0)
|
1035 |
+
22 (2.0)
|
1036 |
+
264 (24.5)
|
1037 |
+
170 (15.8)
|
1038 |
+
93 (8.6)
|
1039 |
+
1 (0.1)
|
1040 |
+
311 (27.6)
|
1041 |
+
195 (17.3)
|
1042 |
+
111 (9.8)
|
1043 |
+
5 (0.4)
|
1044 |
+
109 (9.7)
|
1045 |
+
82 (7.3)
|
1046 |
+
25 (2.2)
|
1047 |
+
2 (0.2)
|
1048 |
+
455 (41.5)
|
1049 |
+
221 (20.1)
|
1050 |
+
214 (19.5)
|
1051 |
+
20 (1.8)
|
1052 |
+
74 (6.9)
|
1053 |
+
53 (4.9)
|
1054 |
+
21 (1.9)
|
1055 |
+
0 (0.0)
|
1056 |
+
13
|
1057 |
+
|
1058 |
+
COMIRNATY
|
1059 |
+
Dose 1
|
1060 |
+
Na=1127 nb (%)
|
1061 |
+
Placebo
|
1062 |
+
Dose 1
|
1063 |
+
Na=1127 nb (%)
|
1064 |
+
COMIRNATY
|
1065 |
+
Placebo
|
1066 |
+
Dose 2
|
1067 |
+
Dose 2
|
1068 |
+
N°=1097
|
1069 |
+
Na=1078
|
1070 |
+
nb (%)
|
1071 |
+
nb (%)
|
1072 |
+
Vomiting
|
1073 |
+
Any
|
1074 |
+
Mild
|
1075 |
+
Moderate
|
1076 |
+
Severe
|
1077 |
+
31 (2.8)
|
1078 |
+
30 (2.7)
|
1079 |
+
0 (0.0)
|
1080 |
+
1 (0.1)
|
1081 |
+
10 (0.9)
|
1082 |
+
8 (0.7)
|
1083 |
+
2 (0.2)
|
1084 |
+
0 (0.0)
|
1085 |
+
29 (2.6)
|
1086 |
+
25 (2.3)
|
1087 |
+
4 (0.4)
|
1088 |
+
0 (0.0)
|
1089 |
+
12 (1.1)
|
1090 |
+
11 (1.0)
|
1091 |
+
1 (0.1)
|
1092 |
+
0 (0.0)
|
1093 |
+
Diarrhea®
|
1094 |
+
Any
|
1095 |
+
Mild
|
1096 |
+
Moderate
|
1097 |
+
Severe
|
1098 |
+
90 (8.0)
|
1099 |
+
77 (6.8)
|
1100 |
+
13 (1.2)
|
1101 |
+
0 (0.0)
|
1102 |
+
82 (7.3)
|
1103 |
+
72 (6.4)
|
1104 |
+
10 (0.9)
|
1105 |
+
0 (0.0)
|
1106 |
+
65 (5.9)
|
1107 |
+
59 (5.4)
|
1108 |
+
6 (0.5)
|
1109 |
+
0 (0.0)
|
1110 |
+
44 (4.1)
|
1111 |
+
39 (3.6)
|
1112 |
+
5 (0.5)
|
1113 |
+
0 (0.0)
|
1114 |
+
New or worsened muscle pain°
|
1115 |
+
Any
|
1116 |
+
Mild
|
1117 |
+
Moderate
|
1118 |
+
Severe
|
1119 |
+
272 (24.1)
|
1120 |
+
125 (11.1)
|
1121 |
+
145 (12.9)
|
1122 |
+
2 (0.2)
|
1123 |
+
148 (13.1)
|
1124 |
+
88 (7.8)
|
1125 |
+
60 (5.3)
|
1126 |
+
0 (0.0)
|
1127 |
+
355 (32.4)
|
1128 |
+
152 (13.9)
|
1129 |
+
197 (18.0)
|
1130 |
+
6 (0.5)
|
1131 |
+
90 (8.3)
|
1132 |
+
51 (4.7)
|
1133 |
+
37 (3.4)
|
1134 |
+
2 (0.2)
|
1135 |
+
New or worsened ioint pain°
|
1136 |
+
Any
|
1137 |
+
Mild
|
1138 |
+
Moderate
|
1139 |
+
Severe
|
1140 |
+
109 (9.7)
|
1141 |
+
66 (5.9)
|
1142 |
+
42 (3.7)
|
1143 |
+
1 (0.1)
|
1144 |
+
77 (6.8)
|
1145 |
+
50 (4.4)
|
1146 |
+
27 (2.4)
|
1147 |
+
0 (0.0)
|
1148 |
+
173 (15.8)
|
1149 |
+
91 (8.3)
|
1150 |
+
78 (7.1)
|
1151 |
+
4 (0.4)
|
1152 |
+
51 (4.7)
|
1153 |
+
30 (2.8)
|
1154 |
+
21 (1.9)
|
1155 |
+
0 (0.0)
|
1156 |
+
Use of antipyretic or pain medication
|
1157 |
+
413 (36.6)
|
1158 |
+
557 (50.8)
|
1159 |
+
95 (8.8)
|
1160 |
+
111 (9.8)
|
1161 |
+
Note: Events and use of antipyretic or pain medication were collected in the electronic diary (e-diary) from Day 1 to Day 7 after each dose.
|
1162 |
+
* Randomized participants in the safety analysis population who received at least 1 dose of the study intervention.
|
1163 |
+
a. N= Number of participants reporting at least 1 yes or no response for the specified event after the specified dose.
|
1164 |
+
b. n = Number of participants with the specified reaction.
|
1165 |
+
c. Mild: does not interfere with activity; Moderate: some interference with activity; Severe: prevents daily activity.
|
1166 |
+
d. Mild: 1 to 2 times in 24 hours; Moderate: >2 times in 24 hours; Severe: requires intravenous hydration.
|
1167 |
+
e. Mild: 2 to 3 loose stools in 24 hours; Moderate: 4 to 5 loose stools in 24 hours; Severe: 6 or more loose stools in 24 hours.
|
1168 |
+
f. Severity was not collected for use of antipyretic or pain medication.
|
1169 |
+
Unsolicited Adverse Events
|
1170 |
+
In Study 2, 2,260 adolescents (1,131 COMIRNATY; 1,129 placebo) were 12 through 15 years of age. Of these, 634 (56.1%) participants in the COMIRNATY group and 629 (55.7%) participants in the placebo group had follow-up time between >4 months to <6 months after Dose 2 in the blinded placebo-controlled follow-up period with an additional 152 (13.4%) and 144 (12.8%) with >6 months of blinded follow-up time in the COMIRNATY and placebo groups, respectively.
|
1171 |
+
A total of 1,113 (98.4%) participants 12 through 15 years of age originally randomized to COMIRNATY had
|
1172 |
+
>6 months total (blinded and unblinded) follow-up after Dose 2.
|
1173 |
+
An analysis of all unsolicited adverse events in Study 2 from Dose 1 up to the participant unblinding date was conducted. Among participants 12 through 15 years of age who received at least one dose of study vaccine, unsolicited adverse events were reported by 95 (8.4%) participants in the COMIRNATY group and 113 (10.0%) participants in the placebo group.
|
1174 |
+
14
|
1175 |
+
|
1176 |
+
In an analysis of all unsolicited adverse events reported during blinded follow-up from Dose 1 through 1 month after Dose 2, in adolescents 12 to 15 years of age, those assessed as adverse reactions not already captured by solicited local and systemic reactions were lymphadenopathy (9 vs. 2), and nausea (5 vs. 2).
|
1177 |
+
In the analysis of blinded, placebo-controlled follow-up, there were no other notable patterns or numerical imbalances between treatment groups for specific categories of unsolicited adverse events (including other neurologic or neuro-inflammatory, and thrombotic events) that would suggest a causal relationship to COMIRNATY. In the analysis of unblinded follow-up, there were no notable patterns of specific categories of non-serious adverse events that would suggest a causal relationship to COMIRNATY.
|
1178 |
+
Serious Adverse Events
|
1179 |
+
In Study 2, among participants 12 through 15 years of age who had received at least 1 dose of vaccine or
|
1180 |
+
placebo (COMIRNATY = 1,131; placebo = 1,129), serious adverse events from Dose 1 up to the participant
|
1181 |
+
unblinding date in ongoing follow-up were reported by 10 (0.9%) COMIRNATY recipients and 2 (0.2%) placebo recipients. In these analyses, 69.0% of study participants had at least 4 months of follow-up after Dose 2. In the analysis of blinded, placebo-controlled follow-up, there were no notable patterns between treatment groups for specific categories of serious adverse events (including neurologic, neuro- inflammatory, and thrombotic events) that would suggest a causal relationship to COMIRNATY. In the analysis of unblinded follow-up, there were no notable patterns of specific categories of serious adverse events that would suggest a causal relationship to COMIRNATY.
|
1182 |
+
6.2 Postmarketing Experience
|
1183 |
+
The following adverse reactions have been identified during postmarketing use of COMIRNATY, including under Emergency Use Authorization. Because these reactions are reported voluntarily from a population of uncertain size, it is not always possible to reliably estimate their frequency or establish a causal relationship to vaccine exposure.
|
1184 |
+
Cardiac Disorders: myocarditis, pericarditis
|
1185 |
+
Gastrointestinal Disorders: diarrhea, vomiting
|
1186 |
+
Immune System Disorders: severe allergic reactions, including anaphylaxis, and other hypersensitivity reactions (e.g., rash, pruritus, urticaria, angioedema)
|
1187 |
+
Musculoskeletal and Connective Tissue Disorders: pain in extremity (arm)
|
1188 |
+
Nervous System Disorders: syncope, dizziness
|
1189 |
+
8 USE IN SPECIFIC POPULATIONS
|
1190 |
+
8.1 Pregnancy
|
1191 |
+
There is a pregnancy exposure registry that monitors pregnancy outcomes in women exposed to COMIRNATY during pregnancy. Women who are vaccinated with COMIRNATY during pregnancy are encouraged to enroll in the registry by visiting https://mothertobaby.org/ongoing-study/covid19-vaccines/.
|
1192 |
+
Risk Summary
|
1193 |
+
All pregnancies have a risk of birth defect, loss, or other adverse outcomes. In the US general population, the estimated background risk of major birth defects and miscarriage in clinically recognized pregnancies is 2% to 4% and 15% to 20%, respectively. Available data on COMIRNATY administered to pregnant women are insufficient to inform vaccine-associated risks in pregnancy.
|
1194 |
+
15
|
1195 |
+
|
1196 |
+
A developmental toxicity study has been performed in female rats administered the equivalent of a single human dose of COMIRNATY on 4 occasions, twice prior to mating and twice during gestation. These studies revealed no evidence of harm to the fetus due to the vaccine (see Animal Data).
|
1197 |
+
Data
|
1198 |
+
Animal Data
|
1199 |
+
In a developmental toxicity study, 0.06 mL of a vaccine formulation containing the same quantity of nucleoside-modified messenger ribonucleic acid (mRNA) (30 mcg) and other ingredients included in a single human dose of COMIRNATY was administered to female rats by the intramuscular route on 4 occasions: 21 and 14 days prior to mating, and on gestation days 9 and 20. No vaccine-related adverse effects on female fertility, fetal development, or postnatal development were reported in the study.
|
1200 |
+
8.2 Lactation
|
1201 |
+
Risk Summary
|
1202 |
+
It is not known whether COMIRNATY is excreted in human milk. Data are not available to assess the effects of COMIRNATY on the breastfed infant or on milk production/excretion. The developmental and health benefits of breastfeeding should be considered along with the mother's clinical need for COMIRNATY and any potential adverse effects on the breastfed child from COMIRNATY or from the underlying maternal condition.
|
1203 |
+
For preventive vaccines, the underlying maternal condition is susceptibility to disease prevented by the vaccine.
|
1204 |
+
8.4 Pediatric Use
|
1205 |
+
Safety and effectiveness of COMIRNATY in individuals 12 through 17 years of age is based on safety and effectiveness data in this age group and in adults /see Adverse Reactions (6) and Clinical Studies (14.1)].
|
1206 |
+
The safety and effectiveness of COMIRNATY in individuals younger than 12 years of age have not been established.
|
1207 |
+
8.5 Geriatric Use
|
1208 |
+
Of the total number of COMIRNATY recipients in Study 2 as of March 13, 2021 (N = 22,026),
|
1209 |
+
20.7% (n =4,552) were 65 years of age and older and 4.2% (n = 925) were 75 years of age and older [see
|
1210 |
+
Clinical Studies (14.1)]. No overall differences in safety or effectiveness were observed between these recipients and younger recipients.
|
1211 |
+
11 DESCRIPTION
|
1212 |
+
COMIRNATY (COVID-19 Vaccine, mRNA) is a sterile suspension for injection for intramuscular use. Each 0.3 mL dose of COMIRNATY contains 30 mcg of a nucleoside-modified messenger RNA (mRNA) encoding the viral spike (S) glycoprotein of SARS-CoV-2.
|
1213 |
+
Each 0.3 mL dose of COMIRNATY supplied in vials with gray caps and labels with gray borders also includes the following ingredients:
|
1214 |
+
lipids (0.43 mg ((4-hydroxybutyl)azanediyl)bis(hexane-6,1-diyl)bis(2-hexyldecanoate), 0.05 mg 2-(polyethylene glycol 2000)-N,N-ditetradecylacetamide,
|
1215 |
+
16
|
1216 |
+
|
1217 |
+
0.09 mg 1,2-distearoyl-sn-glycero-3-phosphocholine, and 0.19 mg cholesterol), 0.06 mg tromethamine, 0.4 mg tromethamine hydrochloride, and 31 mg sucrose.
|
1218 |
+
COMIRNATY does not contain preservative.
|
1219 |
+
The vial stoppers are not made with natural rubber latex.
|
1220 |
+
12 CLINICAL PHARMACOLOGY
|
1221 |
+
12.1 Mechanism of Action
|
1222 |
+
The nucleoside-modified mRNA in COMIRNATY is formulated in lipid particles, which enable delivery of the mRNA into host cells to allow expression of the SARS-CoV-2 S antigen. The vaccine elicits an immune response to the S antigen, which protects against COVID-19.
|
1223 |
+
13 NONCLINICAL TOXICOLOGY
|
1224 |
+
13.1 Carcinogenesis, Mutagenesis, Impairment of Fertility
|
1225 |
+
COMIRNATY has not been evaluated for the potential to cause carcinogenicity, genotoxicity, or impairment of male fertility. In a developmental toxicity study in rats with COMIRNATY there were no vaccine-related effects on female fertility [see Use in Specific Populations (8.1)].
|
1226 |
+
14 CLINICAL STUDIES
|
1227 |
+
14.1 Efficacy in Participants 16 Years of Age and Older
|
1228 |
+
Study 2 is an ongoing, multicenter, multinational, randomized, placebo-controlled, observer-blind, dose-finding, vaccine candidate-selection, and efficacy study in participants 12 years of age and older. Randomization was stratified by age: 12 through 15 years of age, 16 through 55 years of age, or 56 years of age and older, with a minimum of 40% of participants in the ≥56-year stratum. The study excluded participants who were immunocompromised and those who had previous clinical or microbiological diagnosis of COVID-19.
|
1229 |
+
Participants with preexisting stable disease, defined as disease not requiring significant change in therapy or hospitalization for worsening disease during the 6 weeks before enrollment, were included as were participants with known stable infection with HIV, hepatitis C virus (HCV), or hepatitis B virus (HBV).
|
1230 |
+
In Study 2, based on data accrued through March 13, 2021, approximately 44,000 participants 12 years of age and older were randomized equally and received 2 doses of COMIRNATY or placebo. Participants are planned to be followed for up to 24 months, for assessments of safety and efficacy against COVID-19.
|
1231 |
+
Overall, among the total participants who received COMIRNATY or placebo, 51.4% or 50.3% were male and 48.6% or 49.7% were female, 79.1% or 79.2% were 16 through 64 years of age, 20.9% or 20.8% were 65 years of age and older, 81.9% or 82.1% were White, 9.5% or 9.6% were Black or African American, 1.0% or 0.9% were American Indian or Alaska Native, 4.4% or 4.3% were Asian, 0.3% or 0.2% Native Hawaiian or other Pacific Islander, 25.6% or 25.4% were Hispanic/Latino, 73.9% or 74.1% were non-Hispanic/Latino, 0.5% or 0.5% did not report ethnicity, 46.0% or 45.7% had comorbidities [participants who have 1 or more comorbidities that increase the risk of severe COVID-19 disease: defined as subiects who had at least 1 of the Charlson comorbidity index category or body mass index (BMI) >30 kg/m 1, respectively. The mean age at vaccination was 49.8 or 49.7 years and median age was 51.0 or 51.0 in participants who received COMIRNATY or placebo, respectively.
|
1232 |
+
17
|
1233 |
+
|
1234 |
+
Efficacy Against COVID-19
|
1235 |
+
The population for the analysis of the protocol pre-specified primary efficacy endpoint included
|
1236 |
+
36,621 participants 12 years of age and older (18,242 in the COMIRNATY group and 18,379 in the placebo group) who did not have evidence of prior infection with SARS-CoV-2 through 7 days after the second dose.
|
1237 |
+
The population in the protocol pre-specified primary efficacy analvsis included all participants 12 years of age and older who had been enrolled from July 27, 2020, and followed for the development of COVID-19 through November 14, 2020. Participants 18 through 55 years of age and 56 years of age and older began enrollment from July 27, 2020, 16 through 17 years of age began enrollment from September 16, 2020, and 12 through 15 years of age began enrollment from October 15, 2020.
|
1238 |
+
For participants without evidence of SARS-CoV-2 infection prior to 7 days after Dose 2, vaccine efficacy against confirmed COVID-19 occurring at least 7 days after Dose 2 was 95.0% (95% credible interval: 90.3,
|
1239 |
+
97.6), which met the pre-specified success criterion. The case split was 8 COVID-19 cases in the COMIRNATY group compared to 162 COVID-19 cases in the placebo group.
|
1240 |
+
The population for the updated vaccine efficacy analysis included participants 16 years of age and older who had been enrolled from July 27, 2020, and followed for the development of COVID-19 during blinded placebo-controlled follow-up through March 13, 2021, representing up to 6 months of follow-up after Dose 2.
|
1241 |
+
There were 12,796 (60.8%) participants in the COMIRNATY group and 12,449 (58.7%) in the placebo group followed for >4 months after Dose 2 in the blinded placebo-controlled follow-up period.
|
1242 |
+
SARS-CoV-2 variants of concern identified from COVID-19 cases for this age group from this data cutoff include B. 1.1.7 (Alpha) and B. 1.351 (Beta). Representation of identified variants among cases in vaccine versus placebo recipients did not suggest decreased vaccine effectiveness against these variants.
|
1243 |
+
The updated vaccine efficacy information is presented in Table 7.
|
1244 |
+
Table 7: Vaccine Efficacy - First COVID-19 Occurrence From 7 Days After Dose 2, by Age
|
1245 |
+
Subgroup - Participants 16 Years of Age and Older Without Evidence of Infection and Participants With or Without Evidence of Infection Prior to 7 Days After Dose 2 - Evaluable
|
1246 |
+
Efficacy (7 Days) Population During the Placebo-Controlled Follow-up Period
|
1247 |
+
First COVID-19 occurrence from 7 days after Dose 2 in participants without evidence of prior
|
1248 |
+
SARS-CoV-2 infection*
|
1249 |
+
COMIRNATY
|
1250 |
+
Placebo
|
1251 |
+
Na=19,993
|
1252 |
+
Na=20,118
|
1253 |
+
Cases
|
1254 |
+
Cases
|
1255 |
+
nib
|
1256 |
+
nib
|
1257 |
+
Subgroup
|
1258 |
+
Surveillance Time® (n2d) Surveillance Time* (n2d)
|
1259 |
+
77
|
1260 |
+
833
|
1261 |
+
All participants
|
1262 |
+
6.092 (19,711)
|
1263 |
+
5.857 (19,741)
|
1264 |
+
70
|
1265 |
+
709
|
1266 |
+
16 through 64 years
|
1267 |
+
4.859 (15,519)
|
1268 |
+
4.654 (15,515)
|
1269 |
+
7
|
1270 |
+
124
|
1271 |
+
65 vears and older
|
1272 |
+
1.233 (4192)
|
1273 |
+
1.202 (4226)
|
1274 |
+
Vaccine Efficacy %
|
1275 |
+
(95% CI)
|
1276 |
+
91.1
|
1277 |
+
(88.8, 93.1)
|
1278 |
+
90.5
|
1279 |
+
(87.9, 92.7)
|
1280 |
+
94.5
|
1281 |
+
(88.3, 97.8)
|
1282 |
+
18
|
1283 |
+
|
1284 |
+
First COVID-19 occurrence from 7 days after Dose 2 in participants with or without* evidence of prior
|
1285 |
+
SARS-CoV-2 infection
|
1286 |
+
COMIRNATY
|
1287 |
+
Placebo
|
1288 |
+
Na=21,047
|
1289 |
+
Na=21,210
|
1290 |
+
Cases
|
1291 |
+
Cases
|
1292 |
+
nib
|
1293 |
+
nib
|
1294 |
+
Vaccine Efficacy %
|
1295 |
+
Subgroup
|
1296 |
+
Surveillance Time' (n20)
|
1297 |
+
Surveillance Time (n29)
|
1298 |
+
(95% CIE)
|
1299 |
+
81
|
1300 |
+
854
|
1301 |
+
90.9
|
1302 |
+
All participants
|
1303 |
+
6.340 (20,533)
|
1304 |
+
6.110 (20,595)
|
1305 |
+
(88.5, 92.8)
|
1306 |
+
74
|
1307 |
+
726
|
1308 |
+
90.2
|
1309 |
+
16 through 64 years
|
1310 |
+
5.073 (16,218)
|
1311 |
+
4.879 (16,269)
|
1312 |
+
(87.5, 92.4)
|
1313 |
+
7
|
1314 |
+
128
|
1315 |
+
94.7
|
1316 |
+
65 years and older
|
1317 |
+
1.267 (4315)
|
1318 |
+
1.232 (4326)
|
1319 |
+
(88.7, 97.9)
|
1320 |
+
Note: Confirmed cases were determined by Reverse Transcription- Polymerase Chain Reaction (RT-PCR) and at least 1 symptom consistent with COVID-19 (symptoms included: fever; new or increased cough; new or increased shortness of breath; chills; new or increased muscle pain; new loss of taste or smell, sore throat; diarrhea; vomiting).
|
1321 |
+
* Participants who had no evidence of past SARS-CoV-2 infection (i.e., N-binding antibody [serum] negative at Visit 1 and SARS-CoV-2 not detected by NAAT [nasal swab] at Visits 1 and 2), and had negative NAAT (nasal swab) at any unscheduled visit prior to 7 days after Dose 2 were included in the analysis.
|
1322 |
+
a. N= Number of participants in the specified group.
|
1323 |
+
b. n1 = Number of participants meeting the endpoint definition.
|
1324 |
+
c. Total surveillance time in 1000 person-years for the given endpoint across all participants within each group at risk for the endpoint.
|
1325 |
+
Time period for COVID-19 case accrual is from 7 days after Dose 2 to the end of the surveillance period.
|
1326 |
+
d. n2 = Number of participants at risk for the endpoint.
|
1327 |
+
e. Two-sided confidence interval (CI) for vaccine efficacy is derived based on the Clopper and Pearson method adjusted to the surveillance time.
|
1328 |
+
Subgroup analyses of vaccine efficacy (although limited by small numbers of cases in some subgroups) did not suggest meaningful differences in efficacy across genders, ethnic groups, geographies, or for participants with obesity or medical comorbidities associated with high risk of severe COVID-19.
|
1329 |
+
Efficacy Against Severe COVID-19
|
1330 |
+
Efficacy analyses of secondary efficacy endpoints supported benefit of COMIRNATY in preventing severe
|
1331 |
+
COVID-19. Vaccine efficacy against severe COVID-19 is presented only for participants with or without prior SARS-CoV-2 infection (Table 8) as the COVID-19 case counts in participants without prior SARS-CoV-2 infection were the same as those in participants with or without prior SARS-CoV-2 infection in both the COMIRNATY and placebo groups.
|
1332 |
+
19
|
1333 |
+
|
1334 |
+
Table 8: Vaccine Efficacy - First Severe COVID-19 Occurrence in Participants 16 Years of Age and
|
1335 |
+
Older With or Without* Prior SARS-CoV-2 Infection Based on Protocol or Centers for Disease Control and Prevention (CDC) Definition From 7 Das After Dose 2 - Evaluable
|
1336 |
+
Efficacy (7 Days) Population During the Placebo-Controlled Follow-up
|
1337 |
+
Vaccine Efficacy - First Severe COVID-19 Occurrence
|
1338 |
+
COMIRNATY
|
1339 |
+
Placebo
|
1340 |
+
Cases
|
1341 |
+
Cases
|
1342 |
+
nia
|
1343 |
+
n1a
|
1344 |
+
Surveillance Time' (n2°
|
1345 |
+
Surveillance Time® (n29)
|
1346 |
+
21
|
1347 |
+
7 days after Dose 2d
|
1348 |
+
6.353 (20.540)
|
1349 |
+
6.237 (20,629)
|
1350 |
+
Vaccine Efficacy %
|
1351 |
+
(95% CI)
|
1352 |
+
95.3
|
1353 |
+
(70.9, 99.9)
|
1354 |
+
Vaccine Efficacy - First Severe COVID-19 Occurrence Based on CDC Definition
|
1355 |
+
COMIRNATY
|
1356 |
+
Placebo
|
1357 |
+
Cases
|
1358 |
+
Cases
|
1359 |
+
nia
|
1360 |
+
nia
|
1361 |
+
Vaccine Efficacy %
|
1362 |
+
Surveillance Time® (n2°) Surveillance Time® (n2°)
|
1363 |
+
(95% CId'
|
1364 |
+
31
|
1365 |
+
100
|
1366 |
+
7 davs after Dose 2d
|
1367 |
+
6.345 (20.513)
|
1368 |
+
6.225 (20,593)
|
1369 |
+
(87.6, 100.0)
|
1370 |
+
Note: Confirmed cases were determined by Reverse Transcription- Polymerase Chain Reaction (RT-PCR) and at least 1 symptom consistent with COVID-19 (symptoms included: fever; new or increased cough; new or increased shortness of breath; chills; new or increased muscle pain; new loss of taste or smell, sore throat; diarrhea; vomiting).
|
1371 |
+
* Participants who had no evidence of past SARS-CoV-2 infection (i.e., N-binding antibody [serum] negative at Visit 1 and SARS-CoV-2 not detected by NAAT [nasal swab] at Visits 1 and 2), and had negative NAAT (nasal swab) at any unscheduled visit prior to 7 days after Dose 2 were included in the analysis.
|
1372 |
+
† Severe illness from COVID-19 is defined in the protocol as confirmed COVID-19 and presence of at least 1 of the following:
|
1373 |
+
• Clinical signs at rest indicative of severe systemic illness (respiratory rate >30 breaths per minute, heart rate >125 beats per minute, saturation of oxygen <93% on room air at sea level, or ratio of arterial oxygen partial pressure to fractional inspired oxygen <300 mm Hg);
|
1374 |
+
• Respiratory failure [defined as needing high-flow oxygen, noninvasive ventilation, mechanical ventilation or extracorporeal membrane oxygenation (ECMO)];
|
1375 |
+
• Evidence of shock (systolic blood pressure <90 mm Hg, diastolic blood pressure <60 mm Hg, or requiring vasopressors);
|
1376 |
+
• Significant acute renal, hepatic, or neurologic dysfunction;
|
1377 |
+
• Admission to an Intensive Care Unit:
|
1378 |
+
• Death.
|
1379 |
+
#Severe illness from COVID-19 as defined by CDC is confirmed COVID-19 and presence of at least 1 of the following:
|
1380 |
+
• Hospitalization;
|
1381 |
+
• Admission to the Intensive Care Unit;
|
1382 |
+
• Intubation or mechanical ventilation;
|
1383 |
+
• Death.
|
1384 |
+
a. n1 = Number of participants meeting the endpoint definition.
|
1385 |
+
b. Total surveillance time in 1000 person-years for the given endpoint across all participants within each group at risk for the endpoint.
|
1386 |
+
Time period for COVID-19 case accrual is from 7 days after Dose 2 to the end of the surveillance period.
|
1387 |
+
c. n2 = Number of participants at risk for the endpoint.
|
1388 |
+
d. Two-side confidence interval (CI) for vaccine efficacy is derived based on the Clopper and Pearson method adjusted to the surveillance time.
|
1389 |
+
14.2 Efficacy in Adolescents 12 Through 15 Years of Age
|
1390 |
+
A descriptive efficacy analysis of Study 2 has been performed in 2,260 adolescents 12 through 15 years of age evaluating confirmed COVID-19 cases accrued up to a data cutoff date of September 2, 2021.
|
1391 |
+
The vaccine efficacy information in adolescents 12 through 15 years of age is presented in Table 9.
|
1392 |
+
20
|
1393 |
+
|
1394 |
+
Table 9: Vaccine Efficacy - First COVID-19 Occurrence From 7 Days After Dose 2: Without Evidence
|
1395 |
+
of Infection and With or Without Evidence of Infection Prior to 7 Days After Dose 2 - Blinded Placebo-Controlled Follow-up Period, Adolescents 12 Through 15 Years of Age Evaluable Efficacy (7 Days) Population
|
1396 |
+
First COVID-19 occurrence from 7 days after Dose 2 in adolescents 12 through 15 years of age without evidence of prior SARS-CoV-2 infection*
|
1397 |
+
COMIRNATY
|
1398 |
+
Placebo
|
1399 |
+
Na=1057
|
1400 |
+
Na=1030
|
1401 |
+
Cases
|
1402 |
+
Cases
|
1403 |
+
nib
|
1404 |
+
nib
|
1405 |
+
Surveillance Time^ (n24)
|
1406 |
+
Surveillance Time' (n2d)
|
1407 |
+
Adolescents
|
1408 |
+
0
|
1409 |
+
28
|
1410 |
+
12 through 15 years of age
|
1411 |
+
0.343 (1043)
|
1412 |
+
0.322 (1019)
|
1413 |
+
Vaccine Efficacy %
|
1414 |
+
(95% CI°)
|
1415 |
+
100.0
|
1416 |
+
(86.8, 100.0)
|
1417 |
+
First COVID-19 occurrence from 7 days after Dose 2 in adolescents 12 through 15 years of age with or without evidence of prior SARS-CoV-2 infection
|
1418 |
+
COMIRNATY
|
1419 |
+
Placebo
|
1420 |
+
Na=1119
|
1421 |
+
Na=1109
|
1422 |
+
Cases
|
1423 |
+
Cases
|
1424 |
+
nib
|
1425 |
+
n1b
|
1426 |
+
Vaccine Efficacy %
|
1427 |
+
Surveillance Time^ (n2d)
|
1428 |
+
Surveillance Time (n2d)
|
1429 |
+
(95% CI)
|
1430 |
+
Adolescents
|
1431 |
+
0
|
1432 |
+
30f
|
1433 |
+
100.0
|
1434 |
+
12 through 15 years of age
|
1435 |
+
0.362 (1098)
|
1436 |
+
0.345 (1088)
|
1437 |
+
(87.5, 100.0)
|
1438 |
+
Note: Confirmed cases were determined by Reverse Transcription-Polymerase Chain Reaction (RT-PCR) and at least 1 symptom consistent with COVID-19 (symptoms included: fever; new or increased cough; new or increased shortness of breath; chills; new or increased muscle pain; new loss of taste or smell; sore throat; diarrhea; vomiting).
|
1439 |
+
* Participants who had no evidence of past SARS-CoV-2 infection (i.e., N-binding antibody [serum] negative at Visit 1 and SARS-CoV-2 not detected by NAAT [nasal swab] at Visits 1 and 2), and had negative NAAT (nasal swab) at any unscheduled visit prior to 7 days after Dose 2 were included in the analysis.
|
1440 |
+
a. N= Number of participants in the specified group.
|
1441 |
+
b. n1 = Number of participants meeting the endpoint definition.
|
1442 |
+
c. Total surveillance time in 1000 person-years for the given endpoint across all participants within each group at risk for the endpoint.
|
1443 |
+
Time period for COVID-19 case accrual is from 7 days after Dose 2 to the end of the surveillance period.
|
1444 |
+
d. n2 = Number of participants at risk for the endpoint.
|
1445 |
+
e. Two-side confidence interval (CI) for vaccine efficacy is derived based on the Clopper and Pearson method adjusted for surveillance time.
|
1446 |
+
The only SARS-CoV-2 variant of concern identified from COVID-19 cases in this age group from this data cutoff was B. 1.1.7
|
1447 |
+
(Alpha).
|
1448 |
+
14.3 Immunogenicity in Adolescents 12 Through 15 Years of Age
|
1449 |
+
In Study 2, an analysis of SARS-CoV-2 50% neutralizing titers (NT50) 1 month after Dose 2 in a randomly selected subset of participants demonstrated non-inferior immune responses (within 1.5-fold) comparing adolescents 12 through 15 years of age to participants 16 through 25 years of age who had no serological or virological evidence of past SARS-CoV-2 infection up to 1 month after Dose 2 (Table 10).
|
1450 |
+
21
|
1451 |
+
|
1452 |
+
Table 10: Summary of Geometric Mean Ratio for 50% Neutralizing Titer - Comparison of Adolescents
|
1453 |
+
12 Through 15 Years of Age to Participants 16 Through 25 Years of Age (Immunogenicity
|
1454 |
+
Subset) - Participants Without Evidence of Infection up to 1 Month After Dose 2 - Dose 2
|
1455 |
+
Evaluable Immunogenicity Population
|
1456 |
+
COMIRNATY
|
1457 |
+
12 Through 15 Years
|
1458 |
+
16 Through 25 Years
|
1459 |
+
na=190
|
1460 |
+
na=170
|
1461 |
+
12 Through 15 Years/
|
1462 |
+
16 Through 25 Years
|
1463 |
+
Met
|
1464 |
+
Noninferiority
|
1465 |
+
GMRd
|
1466 |
+
(95% CId)
|
1467 |
+
Objective
|
1468 |
+
(YIN)
|
1469 |
+
Time
|
1470 |
+
Point
|
1471 |
+
GMT
|
1472 |
+
(95% CI°
|
1473 |
+
GMT
|
1474 |
+
(95% CI°
|
1475 |
+
Assay
|
1476 |
+
SARS-CoV-2 neutralization
|
1477 |
+
1 month
|
1478 |
+
assay - NT50
|
1479 |
+
after
|
1480 |
+
(titer)f
|
1481 |
+
1253.6
|
1482 |
+
708.1
|
1483 |
+
1.77
|
1484 |
+
Dose 2
|
1485 |
+
(1117.7, 1406.1)
|
1486 |
+
(625.9, 801.1)
|
1487 |
+
(1.50, 2.09)
|
1488 |
+
Y
|
1489 |
+
Abbreviations: CI = confidence interval; GMR = geometric mean ratio; GMT = geometric mean titer; LLOQ = lower limit of
|
1490 |
+
quantitation; NAAT = nucleic-acid amplification test; NT50 = 50% neutralizing titer; SARS-CoV-2 = severe acute respiratory
|
1491 |
+
svndrome coronavirus 2.
|
1492 |
+
Note: Participants who had no serological or virological evidence (up to 1 month after receipt of the last dose) of past SARS-CoV-2 infection (i.e., N-binding antibody [serum] negative at Visit 1 and SARS-CoV-2 not detected by NAAT [nasal swab] at Visits 1 and
|
1493 |
+
2), and had negative NAAT (nasal swab) at any unscheduled visit up to 1 month after Dose 2 were included in the analysis.
|
1494 |
+
a. n= Number of participants with valid and determinate assay results for the specified assay at the given dose/sampling time point
|
1495 |
+
b. Protocol-specified timing for blood sample collection.
|
1496 |
+
c. GMTs and 2-sided 95% CIs were calculated by exponentiating the mean logarithm of the titers and the corresponding CIs (based on the Student t distribution). Assay results below the LLOQ were set to 0.5 × LLOQ.
|
1497 |
+
d. GMRs and 2-sided 95% CIs were calculated by exponentiating the mean difference of the logarithms of the titers (Group 1 [12 through 15 years of age] - Group 2 [16 through 25 years of age]) and the corresponding CI (based on the Student t distribution).
|
1498 |
+
e. Noninferiority is declared if the lower bound of the 2-sided 95% CI for the GMR is greater than 0.67.
|
1499 |
+
f. SARS-CoV-2 NT50 were determined using the SARS-CoV-2 mNeonGreen Virus Microneutralization Assay. The assay uses a fluorescent reporter virus derived from the USA WA1/2020 strain and virus neutralization is read on Vero cell monolayers. The sample NT50 is defined as the reciprocal serum dilution at which 50% of the virus is neutralized.
|
1500 |
+
16 HOW SUPPLIED/STORAGE AND HANDLING
|
1501 |
+
Single Dose Vials: COMIRNATY is a suspension for intramuscular injection. Single dose vials with gray caps and labels with gray borders are supplied in a carton containing 10 single dose vials. One vial contains 1 dose of 0.3 mL.
|
1502 |
+
• Carton of 10 single dose vials: NDC 0069-3125-10
|
1503 |
+
• Single dose vial: NDC 0069-3125-01
|
1504 |
+
Multiple Dose Vials: COMIRNATY is a suspension for intramuscular injection. Multiple dose vials with gray caps and labels with gray borders are supplied in a carton containing 10 multiple dose vials or 25 multiple dose vials. One vial contains 6 doses of 0.3 mL.
|
1505 |
+
• Carton of 10 multiple dose vials: NDC 0069-2025-10
|
1506 |
+
Carton of 25 multiple dose vials: NDC 0069-2025-25
|
1507 |
+
• Multiple dose vial: NDC 0069-2025-01
|
1508 |
+
During storage, minimize exposure to room light, and avoid exposure to direct sunlight and ultraviolet light.
|
1509 |
+
Do not refreeze thawed vials.
|
1510 |
+
22
|
1511 |
+
|
1512 |
+
Vial Storage Prior to Use
|
1513 |
+
Cartons of COMIRNATY single dose vials and multiple dose vials with gray caps and labels with gray borders will arrive frozen at ultra-cold conditions in thermal containers with dry ice.
|
1514 |
+
Once received, frozen vials may be immediately transferred to the refrigerator [2°C to 8°C (35°F to 46°F)], thawed and stored for up to 10 weeks. The 10-week refrigerated expiry date should be recorded on the carton at the time of transfer. A carton of 10 single dose vials may take up to 2 hours to thaw at this temperature.
|
1515 |
+
A carton of 10 multiple dose vials may take up to 6 hours to thaw at this temperature.
|
1516 |
+
Alternatively, frozen vials may be stored in an ultra-low temperature freezer at -90°C to -60°C (-130°F to -76°F).
|
1517 |
+
Do not store vials at -25°C to -15°C (-13°F to 5°F). Once vials are thawed, they should not be refrozen.
|
1518 |
+
If cartons of COMIRNATY single dose vials or multiple dose vials with gray caps and labels with gray borders are received at 2°C to 8°C, they should be stored at 2°C to 8°C. Check that the carton has been updated to reflect the 10-week refrigerated expiry date.
|
1519 |
+
Regardless of storage condition, the vaccine should not be used after the expiration date printed on the vial and
|
1520 |
+
cartons.
|
1521 |
+
Vial Storage During Use
|
1522 |
+
If not previously thawed at 2°C to 8°C (35°F to 46°F), allow COMIRNATY single dose vials and multiple dose vials to thaw at room temperature [up to 25°C (77°F)] for 30 minutes.
|
1523 |
+
DO NOT DILUTE SINGLE DOSE VIALS OR MULTIPLE DOSE VIALS PRIOR TO USE.
|
1524 |
+
COMIRNATY single dose vials and multiple dose vials with gray caps and labels with gray borders may be stored at room temperature [8°C to 25°C (46 F to 77°F) for a total of 12 hours prior to the first puncture. After first puncture, multiple dose vials should be held between 2°C to 25°C (35°F to 77°F). Multiple dose vials should be discarded 12 hours after first puncture.
|
1525 |
+
Transportation of Vials
|
1526 |
+
If local redistribution is needed, single dose vials and multiple dose vials may be transported at -90°C to -60°C (-130°F to -76°F), or at 2°C to 8°C (35°F to 46°F).
|
1527 |
+
17 PATIENT COUNSELING INFORMATION
|
1528 |
+
Inform vaccine recipient of the potential benefits and risks of vaccination with COMIRNATY.
|
1529 |
+
Inform vaccine recipient of the importance of completing the 2 dose vaccination series.
|
1530 |
+
There is a pregnancy exposure registry for COMIRNATY. Encourage individuals exposed to COMIRNATY around the time of conception or during pregnancy to register by visiting https://mothertobaby.org/ongoing-study/covid19-vaccines/.
|
1531 |
+
Advise vaccine recipient to report any adverse events to their healthcare provider or to the Vaccine Adverse Event Reporting System at 1-800-822-7967 and www.vaers.hhs.gov.
|
1532 |
+
23
|
1533 |
+
|
1534 |
+
Prior to administering the vaccine, give the vaccine recipient the Vaccine Information Fact Sheet for Recipients and Caregivers about COMIRNATY (COVID-19 Vaccine, mRNA) and the Pfizer-BioNTech COVID-19
|
1535 |
+
Vaccine to Prevent Coronavirus Disease 2019 (COVID-19) for Use in Individuals 12 Years of Age and Older.
|
1536 |
+
The Vaccine Information Fact Sheet for Recipients and Caregivers is available at www.cvdvaccine-us.com.
|
1537 |
+
This product's labeling may have been updated. For the most recent prescribing information, please visit https://dailymed.nlm.nih.gov/dailymed/
|
1538 |
+
BIONTECH
|
1539 |
+
Manufactured for
|
1540 |
+
BioNTech Manufacturing GmbH
|
1541 |
+
An der Goldgrube 12
|
1542 |
+
55131 Mainz, Germany
|
1543 |
+
@Pfizer
|
1544 |
+
Manufactured by
|
1545 |
+
Pfizer Inc., New York, NY 10017
|
1546 |
+
LAB-1490-4.0
|
1547 |
+
US Govt. License No. 2229
|
1548 |
+
24
|
1549 |
+
|
docs/Package Insert – COMIRNATY (purple cap).txt
ADDED
@@ -0,0 +1,1593 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Individuals using assistive technology may not be able to fully access the information contained in this file. For assistance, please call 800-835-4709 or 240-402-8010, extension 1. CBER
|
2 |
+
Consumer Affairs Branch or send an e-mail to: ocod@fda.hhs.gov and include 508 Accommodation and the title of the document in the subject line of your e-mail.
|
3 |
+
|
4 |
+
HIGHLIGHTS OF PRESCRIBING INFORMATION
|
5 |
+
These highlights do not include all the information needed to use
|
6 |
+
COMIRNATY safely and effectively. See full prescribing information for COMIRNATY.
|
7 |
+
COMIRNATY® (COVID-19 Vaccine, mRNA) suspension for injection, for intramuscular use
|
8 |
+
Initial U.S. Approval: 2021
|
9 |
+
-RECENT MAJOR CHANGES
|
10 |
+
Indications and Usage (1)
|
11 |
+
Dosage and Administration, Preparation for Administration (2.1)
|
12 |
+
7/2022
|
13 |
+
7/2022
|
14 |
+
• INDICATIONS AND USAGE
|
15 |
+
COMIRNATY is a vaccine indicated for active immunization to prevent coronavirus disease 2019 (COVID-19) caused by severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2) in individuals 12 years of age and older. (1)
|
16 |
+
•
|
17 |
+
-DOSAGE AND ADMINISTRATION.
|
18 |
+
COMIRNATY supplied in multiple dose vials with purple caps and labels with purple borders MUST BE DILUTED before use. (2.1)
|
19 |
+
For intramuscular injection only. (2.2)
|
20 |
+
COMIRNATY is administered intramuscularly as a series of 2 doses
|
21 |
+
(0.3 mL each) 3 weeks apart. (2.3)
|
22 |
+
DOSAGE FORMS AND STRENGTHS
|
23 |
+
Suspension for injection. After preparation, a single dose is 0.3 mL. (3)
|
24 |
+
- CONTRAINDICATIONS
|
25 |
+
Known history of a severe allergic reaction (e.g., anaphylaxis) to any component of COMIRNATY. (4)
|
26 |
+
FULL PRESCRIBING INFORMATION: CONTENTS*
|
27 |
+
1 INDICATIONS AND USAGE
|
28 |
+
2
|
29 |
+
DOSAGE AND ADMINISTRATION
|
30 |
+
2.1
|
31 |
+
Preparation for Administration
|
32 |
+
2.2
|
33 |
+
Administration Information
|
34 |
+
2.3
|
35 |
+
Vaccination Schedule
|
36 |
+
DOSAGE FORMS AND STRENGTHS
|
37 |
+
CONTRAINDICATIONS
|
38 |
+
5
|
39 |
+
WARNINGS AND PRECAUTIONS
|
40 |
+
5.1
|
41 |
+
Management of Acute Allergic Reactions
|
42 |
+
5.2
|
43 |
+
Mvocarditis and Pericarditis
|
44 |
+
5.3
|
45 |
+
Syncope
|
46 |
+
5.4
|
47 |
+
Altered Immunocompetence
|
48 |
+
5.5
|
49 |
+
Limitation of Effectiveness
|
50 |
+
6
|
51 |
+
ADVERSE REACTIONS
|
52 |
+
6.1
|
53 |
+
Clinical Trials Experience
|
54 |
+
6.2
|
55 |
+
Postmarketing Experience
|
56 |
+
§ USE IN SPECIFIC POPULATIONS
|
57 |
+
8.1
|
58 |
+
Pregnancy
|
59 |
+
- WARNINGS AND PRECAUTIONS
|
60 |
+
Postmarketing data demonstrate increased risks of myocarditis and pericarditis, particularly within 7 days following the second dose. (5.2)
|
61 |
+
Syncope (fainting) may occur in association with administration of injectable vaccines, including COMIRNATY. Procedures should be in place to avoid injury from fainting. (5.4)
|
62 |
+
- ADVERSE REACTIONS
|
63 |
+
In clinical studies of participants 16 through 55 years of age, the most commonly reported adverse reactions (>10%) were pain at the injection site (88.6%), fatigue (70.1%), headache (64.9%), muscle pain (45.5%), chills (41.5%), joint pain (27.5%), fever (17.8%), and injection site swelling (10.6%). (6.1)
|
64 |
+
In clinical studies of participants 56 years of age and older, the most commonly reported adverse reactions (≥10%) were pain at the injection site (78.2%), fatigue (56.9%), headache, (45.9%), muscle pain (32.5%). chills (24.8%), joint pain (21.5%), injection site swelling (11.8%), fever (11.5%), and injection site redness (10.4%). (6.1)
|
65 |
+
In clinical studies of adolescents 12 through 15 years of age, the most commonly reported adverse reactions (≥8%) were pain at the injection site (90.5%), fatigue (77.5%), headache (75.5%), chills (49.2%), muscle pain (42.2%). fever (24.3%), joint pain (20.2%), injection site swelling (9.2%), and injection site redness (8.6%). (6. 1)
|
66 |
+
To report SUSPECTED ADVERSE REACTIONS, contact Pfizer Inc. at
|
67 |
+
1-800-438-1985 or VAERS at 1-800-822-7967 or http://vaers.hhs.gov.
|
68 |
+
See 17 for PATIENT COUNSELING INFORMATION.
|
69 |
+
Revised: 4/2023
|
70 |
+
8.2
|
71 |
+
Lactation
|
72 |
+
8.4
|
73 |
+
Pediatric Use
|
74 |
+
8.5
|
75 |
+
Geriatric Use
|
76 |
+
11 DESCRIPTION
|
77 |
+
12 CLINICAL PHARMACOLOGY
|
78 |
+
12.1 Mechanism of Action
|
79 |
+
13 NONCLINICAL TOXICOLOGY
|
80 |
+
13.1
|
81 |
+
Carcinogenesis, Mutagenesis, Impairment of Fertility
|
82 |
+
14 CLINICAL STUDIES
|
83 |
+
14.1 Efficacy in Participants 16 Years of Age and Older
|
84 |
+
14.2 Efficacy in Adolescents 12 Through 15 Years of Age
|
85 |
+
14 3
|
86 |
+
Immunogenicity in Adolescents 12 Through 15 Years of Age
|
87 |
+
16 HOW SUPPLIED/STORAGE AND HANDLING
|
88 |
+
17 PATIENT COUNSELING INFORMATION
|
89 |
+
* Sections or subsections omitted from the full prescribing information are not listed.
|
90 |
+
|
91 |
+
FULL PRESCRIBING INFORMATION
|
92 |
+
1
|
93 |
+
INDICATIONS AND USAGE
|
94 |
+
COMIRNATY is a vaccine indicated for active immunization to prevent coronavirus disease 2019 (COVID-19) caused by severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2) in individuals 12 years of age and older.
|
95 |
+
2
|
96 |
+
DOSAGE AND ADMINISTRATION
|
97 |
+
For intramuscular injection only.
|
98 |
+
2.1
|
99 |
+
Preparation for Administration
|
100 |
+
| The storage, preparation, and administration information in this Prescribing Information apply to COMIRNATY for individuals 12 years of age and older supplied in multiple dose vials with purple caps and labels with purple borders, which MUST BE DILUTED before use.
|
101 |
+
COMIRNATY Multiple Dose Vial with a Purple Cap and Label with a Purple Border
|
102 |
+
Doses Per Vial
|
103 |
+
Age Range
|
104 |
+
After Dilution
|
105 |
+
12 years and older
|
106 |
+
Dilution Information
|
107 |
+
Dilute with 1.8 mL sterile 0.9%
|
108 |
+
Sodium Chloride Injection, US prior
|
109 |
+
to use
|
110 |
+
Dose Volume
|
111 |
+
6
|
112 |
+
0.3 mL
|
113 |
+
Dose Preparation
|
114 |
+
Each vial MUST BE DILUTED before administering the vaccine.
|
115 |
+
Prior to Dilution
|
116 |
+
• COMIRNATY multiple dose vial with a purple cap and label with a purple border contains a volume of 0.45 mL, supplied as a frozen suspension that does not contain preservative.
|
117 |
+
• Each vial must be thawed before dilution.
|
118 |
+
• Vials may be thawed in the refrigerator [2°C to 8°C (35°F to 46°F)] or at room temperature [up to 25°C (77°F)] [see How Supplied/Storage and Handling (16)].
|
119 |
+
• Refer to thawing instructions in the panels below.
|
120 |
+
Dilution
|
121 |
+
• Dilute the vial contents using 1.8 mL of sterile 0.9% Sodium Chloride Injection, US to form
|
122 |
+
COMIRNATY. Do not add more than 1.8 mL of diluent.
|
123 |
+
• ONLY use sterile 0.9% Sodium Chloride Injection, US as the diluent. Do not use bacteriostatic 0.9%
|
124 |
+
Sodium Chloride Injection or any other diluent.
|
125 |
+
• Vials of sterile 0.9% Sodium Chloride Injection, US are provided but shipped separately. Use the provided diluent or another sterile 0.9% Sodium Chloride Injection, USP as the diluent. o Provided diluent vials are single-use only; discard after 1.8 mL is withdrawn. o If another sterile 0.9% Sodium Chloride Injection, USP is used as the diluent, discard after
|
126 |
+
1.8 mL is withdrawn.
|
127 |
+
2
|
128 |
+
|
129 |
+
• Do not dilute more than 1 vial of COMIRNATY using the same diluent vial.
|
130 |
+
• After dilution, 1 vial of COMIRNATY contains 6 doses of 0.3 mL each.
|
131 |
+
• Refer to dilution and dose preparation instructions in the panels below.
|
132 |
+
Dilution and Preparation Instructions
|
133 |
+
COMIRNATY Multiple Dose Vial with Purple Cap and Label with Purple Border
|
134 |
+
Vial Verification
|
135 |
+
Purple cap
|
136 |
+
DILUTE BEFORE USE
|
137 |
+
• Verify that the vial of COMIRNATY has a purple plastic cap and a label with a purple border.
|
138 |
+
V Purple plastic cap and label with purple border.
|
139 |
+
COMIRNATY Multiple Dose Vial with Purple Cap and Label with Purple Border - Thawing Prior to Dilution
|
140 |
+
No more than
|
141 |
+
2 hours at room temperature (up to 25°C/77°F).
|
142 |
+
• Thaw vial(s) of COMIRNATY before dilution either by:
|
143 |
+
o Allowing vial(s) to thaw in the refrigerator [2°C
|
144 |
+
to 8°C (35°F to 46°F)I. A carton of vials may take up to 3 hours to thaw, and thawed vials can be stored in the refrigerator for up to 1 month.
|
145 |
+
Allowing vial(s) to sit at room temperature [up to
|
146 |
+
25°C (77°F)] for 30 minutes.
|
147 |
+
• Using either thawing method, vials must reach room temperature before dilution and must be diluted within 2 hours.
|
148 |
+
3
|
149 |
+
|
150 |
+
Dilution and Preparation Instructions
|
151 |
+
• Before dilution invert vaccine vial gently 10 times.
|
152 |
+
• Do not shake.
|
153 |
+
• Inspect the liquid in the vial prior to dilution. The liquid is a white to off-white suspension and may contain white to off-white opaque amorphous
|
154 |
+
• particles.
|
155 |
+
Do not use if liquid is discolored or if other particles are observed.
|
156 |
+
Gently × 10
|
157 |
+
COMIRNATY Multiple Dose Vial with Purple Cap and Label with Purple Border -
|
158 |
+
Dilution
|
159 |
+
• ONLY use sterile 0.9% Sodium Chloride Injection,
|
160 |
+
USP as the diluent.
|
161 |
+
• Withdraw 1.8 mL of diluent into a transfer syringe
|
162 |
+
(21-gauge or narrower needle).
|
163 |
+
• Add 1.8 mL of sterile 0.9% Sodium Chloride
|
164 |
+
Injection, USP into the vaccine vial.
|
165 |
+
Z
|
166 |
+
Add 1.8 mL of sterile 0.9% sodium chloride injection, USP.
|
167 |
+
4
|
168 |
+
|
169 |
+
Dilution and Preparation Instructions
|
170 |
+
• Equalize vial pressure before removing the needle from the vaccine vial by withdrawing 1.8 mL air into the empty diluent syringe.
|
171 |
+
Pull back plunger to 1.8 mL to remove air from vial.
|
172 |
+
• Gently invert the vial containing COMIRNATY
|
173 |
+
10 times to mix.
|
174 |
+
• Do not shake.
|
175 |
+
Inspect the vaccine in the vial.
|
176 |
+
• The vaccine will be an off-white suspension. Do not use if vaccine is discolored or contains particulate matter.
|
177 |
+
Gently × 10
|
178 |
+
5
|
179 |
+
|
180 |
+
Dilution and Preparation Instructions
|
181 |
+
DILUTE BEFORE,
|
182 |
+
• Record the date and time of dilution on the
|
183 |
+
COMIRNATY vial label.
|
184 |
+
• Store between 2°C to 25°C (35°F to 77°F).
|
185 |
+
• Discard any unused vaccine 6 hours after dilution.
|
186 |
+
Record the date and time of dilution.
|
187 |
+
Use within 6 hours after dilution.
|
188 |
+
COMIRNATY Multiple Dose Vial with Purple Cap and Label with Purple Border -
|
189 |
+
Preparation of Individual 0.3 mL Doses
|
190 |
+
10.2
|
191 |
+
+ 0.3
|
192 |
+
0.4
|
193 |
+
Withdraw 0.3 mL of COMIRNATY preferentially using low dead-volume syringes and/or needles.
|
194 |
+
• Each dose must contain 0.3 mL of vaccine.
|
195 |
+
• If the amount of vaccine remaining in a single vial cannot provide a full dose of 0.3 mL, discard the vial and any excess volume.
|
196 |
+
• Administer immediately.
|
197 |
+
Withdraw 0.3 mL dose of vaccine.
|
198 |
+
2.2
|
199 |
+
Administration Information
|
200 |
+
Parenteral drug products should be inspected visually for particulate matter and discoloration prior to administration, whenever solution and container permit. The vaccine will be an off-white suspension. Do not administer if vaccine is discolored or contains particulate matter.
|
201 |
+
Administer a single 0.3 mL dose of COMIRNATY intramuscularly.
|
202 |
+
After dilution, vials of COMIRNATY with purple caps and labels with purple borders contain 6 doses of 0.3 mL of vaccine. Low dead-volume syringes and/or needles can be used to extract 6 doses from a single vial If standard syringes and needles are used, there may not be sufficient volume to extract 6 doses from a single vial. Irrespective of the type of syringe and needle,
|
203 |
+
• each dose must contain 0.3 mL of vaccine.
|
204 |
+
• if the amount of vaccine remaining in the vial cannot provide a full dose of 0.3 mL, discard the vial and any excess volume.
|
205 |
+
do not pool excess vaccine from multiple vials.
|
206 |
+
6
|
207 |
+
|
208 |
+
2.3
|
209 |
+
Vaccination Schedule
|
210 |
+
COMIRNATY is administered intramuscularly as a series of 2 doses (0.3 mL each) 3 weeks apart.
|
211 |
+
There are no data available on the interchangeability of COMIRNATY with COVID-19 vaccines from other manufacturers to complete the vaccination series. Individuals who have received 1 dose of COMIRNATY should receive a second dose of COMIRNATY to complete the vaccination series.
|
212 |
+
DOSAGE FORMS AND STRENGTHS
|
213 |
+
COMIRNATY is a suspension for injection. After preparation, each dose of COMIRNATY supplied in vials with purple caps and labels with purple borders is 0.3 mL.
|
214 |
+
4
|
215 |
+
CONTRAINDICATIONS
|
216 |
+
Do not administer COMIRNATY to individuals with known history of a severe allergic reaction (e.g., anaphylaxis) to any component of the COMIRNATY [see Description (11)].
|
217 |
+
WARNINGS AND PRECAUTIONS
|
218 |
+
5.1
|
219 |
+
Management of Acute Allergic Reactions
|
220 |
+
Appropriate medical treatment used to manage immediate allergic reactions must be immediately available in the event an acute anaphylactic reaction occurs following administration of COMIRNATY.
|
221 |
+
5.2
|
222 |
+
Myocarditis and Pericarditis
|
223 |
+
Postmarketing data demonstrate increased risks of myocarditis and pericarditis, particularly within 7 days following the second dose. The observed risk is higher among males under 40 years of age than among females and older males. The observed risk is highest in males 12 through 17 years of age. Although some cases required intensive care support, available data from short-term follow-up suggest that most individuals have had resolution of symptoms with conservative management. Information is not yet available about potential long-term sequelae. The CDC has published considerations related to myocarditis and pericarditis after vaccination, including for vaccination of individuals with a history of myocarditis or pericarditis (https://www.cdc.gov/vaccines/covid-19/clinical-considerations/myocarditis.html).
|
224 |
+
5.3
|
225 |
+
Syncope
|
226 |
+
Syncope (fainting) may occur in association with administration of injectable vaccines, including
|
227 |
+
COMIRNATY. Procedures should be in place to avoid injury from fainting.
|
228 |
+
5.4
|
229 |
+
Altered Immunocompetence
|
230 |
+
Immunocompromised persons, including individuals receiving immunosuppressant therapy, may have a diminished immune response to the COMIRNATY.
|
231 |
+
5.5
|
232 |
+
Limitation of Effectiveness
|
233 |
+
COMIRNATY may not protect all vaccine recipients.
|
234 |
+
7
|
235 |
+
|
236 |
+
6
|
237 |
+
ADVERSE REACTIONS
|
238 |
+
In clinical studies, the most commonly reported (≥10%) adverse reactions in participants 16 through 55 years of age following any dose were pain at the injection site (88.6%), fatigue (70.1%), headache (64.9%), muscle pain (45.5%), chills (41.5%), joint pain (27.5%), fever (17.8%), and injection site swelling (10.6%).
|
239 |
+
In clinical studies, the most commonly reported (≥10%) adverse reactions in participants 56 years of age and older following any dose were pain at the injection site (78.2%), fatigue (56.9%), headache, (45.9%), muscle pain (32.5%), chills (24.8%), joint pain (21.5%), injection site swelling (11.8%), fever (11.5%), and injection site redness (10.4%).
|
240 |
+
In a clinical study, the most commonly reported (≥8%) adverse reactions in adolescents 12 through 15 years of age following any dose were pain at the injection site (90.5%), fatigue (77.5%), headache (75.5%), chills (49.2%), muscle pain (42.2%), fever (24.3%), joint pain (20.2%), injection site swelling (9.2%), and injection site redness (8.6%).
|
241 |
+
6.1 Clinical Trials Experience
|
242 |
+
Because clinical trials are conducted under widely varying conditions, adverse reaction rates observed in the clinical trials of a vaccine cannot be directly compared to rates in the clinical trials of another vaccine and may not reflect the rates observed in practice.
|
243 |
+
The safety of COMIRNATY was evaluated in participants 12 years of age and older in 2 clinical studies conducted in Germany (Study 1), United States, Argentina, Brazil, Turkey, South Africa, and Germany (Study 2). Study BNT162-01 (Study 1) was a Phase 1/2, 2-part, dose-escalation trial that enrolled 60 participants, 18 through 55 years of age and 36 participants, 56 through 85 years of age. Study C4591001 (Study 2) is a Phase 1/2/3 multicenter, multinational, randomized, saline placebo-controlled, double-blinded (Phase 2/3), dose-finding, vaccine candidate-selection and efficacy study that has enrolled approximately 46,000 participants 12 years of age or older. Of these, approximately 44,047 participants (22,026 COMIRNATY; 22,021 placebo) in Phase 2/3 are 16 years of age or older (including 378 and 376 participants 16 through 17 years of age in the COMIRNATY and placebo groups, respectively) and
|
244 |
+
2,260 adolescents are 12 through 15 years of age (1,131 and 1,129 in the COMIRNATY and placebo groups, respectively). Upon issuance of the Emergency Use Authorization for COMIRNATY, participants were unblinded to offer placebo participants COMIRNATY. Participants were unblinded in a phased manner over a period of months to offer placebo participants COMIRNATY. Study 2 also included 200 participants with confirmed stable human immunodeficiency virus (HIV) infection; HIV-positive participants are included in safety population disposition but are summarized separately in safety analyses. Confirmed stable HIV infection was defined as documented viral load <50 copies/mL and CD4 count >200 cells/mm? within 6 months before enrollment, and on stable antiretroviral therapy for at least 6 months.
|
245 |
+
In Study 2, all participants 12 through 15 years of age, and 16 years and older in the reactogenicity subset were monitored for solicited local and systemic reactions and use of antipyretic medication after each vaccination in an electronic diary. Participants are being monitored for unsolicited adverse events, including serious adverse events, throughout the study [from Dose 1 through 1 month (all unsolicited adverse events) or 6 months (serious adverse events) after the last vaccination]. Tables 1 through 6 present the frequency and severity of solicited local and systemic reactions, respectively, within 7 days following each dose of COMIRNATY and placebo.
|
246 |
+
8
|
247 |
+
|
248 |
+
Participants 16 Years of Age and Older
|
249 |
+
At the time of the analysis of the ongoing Study 2 with a data cutoff of March 13, 2021, there were 25,651 (58.2%) participants (13,031 COMIRNATY and 12,620 placebo) 16 years of age and older followed for
|
250 |
+
>4 months after the second dose.
|
251 |
+
Demographic characteristics in Study 2 were generally similar with regard to age, gender, race, and ethnicity among participants who received COMIRNATY and those who received placebo. Overall, among the total participants who received either COMIRNATY or placebo, 50.9% were male, 49.1% were female, 79.3% were 16 through 64 years of age, 20.7% were 65 years of age and older, 82.0% were White, 9.6% were Black or African American, 25.9% were Hispanic/Latino, 4.3% were Asian, and 1.0% were American Indian or Alaska Native.
|
252 |
+
Local and Systemic Adverse Reactions Solicited in the Study 2
|
253 |
+
In participants 16 through 55 years of age after receiving Dose 2, the mean duration of pain at the injection site was 2.5 days (range 1 to 70 days), for redness 2.2 days (range 1 to 9 days), and for swelling 2.1 days (range 1 to 8 days) for participants in the COMIRNATY group. In participants 56 years of age and older after receiving Dose 2, the mean duration of pain at the injection site was 2.4 days (range 1 to 36 days), for redness 3.0 days (range 1 to 34 days), and for swelling 2.6 days (range 1 to 34 days) for participants in the COMIRNATY group.
|
254 |
+
Table 1: Study 2 - Frequency and Percentages of Participants with Solicited Local Reactions, by
|
255 |
+
Maximum Severity, Within 7 Days After Each Dose - Participants 16 Through 55 Years of Age - Reactogenicity Subset of the Safety Population*
|
256 |
+
COMIRNATY
|
257 |
+
Placebo
|
258 |
+
Dose 1
|
259 |
+
Dose 1
|
260 |
+
Na=2899
|
261 |
+
Na=2908
|
262 |
+
nb (%)
|
263 |
+
nb (%)
|
264 |
+
COMIRNATY
|
265 |
+
Dose 2
|
266 |
+
Na=2682 nb (%)
|
267 |
+
Placebo
|
268 |
+
Dose 2
|
269 |
+
Na=2684 nb (%)
|
270 |
+
Redness®
|
271 |
+
Any (>2.0 cm)
|
272 |
+
Mild
|
273 |
+
Moderate
|
274 |
+
Severe
|
275 |
+
156 (5.4)
|
276 |
+
113 (3.9)
|
277 |
+
36 (1.2)
|
278 |
+
7 (0.2)
|
279 |
+
28 (1.0)
|
280 |
+
19 (0.7)
|
281 |
+
6 (0.2)
|
282 |
+
3 (0.1)
|
283 |
+
151 (5.6)
|
284 |
+
90 (3.4)
|
285 |
+
50 (1.9)
|
286 |
+
11 (0.4)
|
287 |
+
18 (0.7)
|
288 |
+
12 (0.4)
|
289 |
+
6 (0.2)
|
290 |
+
O
|
291 |
+
Swelling
|
292 |
+
Any (>2.0 cm)
|
293 |
+
Mild
|
294 |
+
Moderate
|
295 |
+
Severe
|
296 |
+
184(6,3)
|
297 |
+
124(4.3)
|
298 |
+
54 (1.9)
|
299 |
+
6 (0.2)
|
300 |
+
16 (0.6)
|
301 |
+
6 (0.2)
|
302 |
+
8 (0.3)
|
303 |
+
2 (0.1)
|
304 |
+
183 (6.8)
|
305 |
+
110 (4.1)
|
306 |
+
66 (2.5)
|
307 |
+
7 (0.3)
|
308 |
+
5 (0.2)
|
309 |
+
3 (0.1)
|
310 |
+
2 (0.1)
|
311 |
+
0
|
312 |
+
Pain at the iniection sited
|
313 |
+
Any
|
314 |
+
2426 (83.7)
|
315 |
+
414 (14.2)
|
316 |
+
2101 (78.3)
|
317 |
+
Mild
|
318 |
+
1464 (50.5)
|
319 |
+
391 (13.4)
|
320 |
+
1274 (47.5)
|
321 |
+
Moderate
|
322 |
+
923 (31.8)
|
323 |
+
20 (0.7)
|
324 |
+
788 (29.4)
|
325 |
+
312 (11.6)
|
326 |
+
284 (10.6)
|
327 |
+
28 (1.0)
|
328 |
+
Severe
|
329 |
+
39 (1.3)
|
330 |
+
3 (0.1)
|
331 |
+
39 (1.5)
|
332 |
+
Notes: Reactions were collected in the electronic diary (e-diary) from Day 1 to Day 7 after vaccination.
|
333 |
+
No Grade 4 solicited local reactions were reported in participants 16 through 55 years of age.
|
334 |
+
* Randomized participants in the safety analysis population who received at least 1 dose of the study intervention. Participants with chronic, stable HIV infection were excluded.
|
335 |
+
a. N= Number of participants reporting at least 1 yes or no response for the specified reaction after the specified dose. The N for each reaction was the same, therefore, this information was included in the column header.
|
336 |
+
b. n = Number of participants with the specified reaction.
|
337 |
+
c. Mild: >2.0 to <5.0 cm; Moderate: >5.0 to <10.0 cm; Severe: >10.0 cm.
|
338 |
+
d. Mild: does not interfere with activity; Moderate: interferes with activity; Severe: prevents daily activity.
|
339 |
+
9
|
340 |
+
|
341 |
+
Table 2: Study 2 - Frequency and Percentages of Participants with Solicited Systemic Reactions, by
|
342 |
+
Maximum Severity, Within 7 Days After Each Dose - Participants 16 Through 55 Years of Age - Reactogenicity Subset of the Safety Population*
|
343 |
+
COMIRNATY
|
344 |
+
Placebo
|
345 |
+
Dose 1
|
346 |
+
Dose 1
|
347 |
+
Na=2899
|
348 |
+
Na=2908
|
349 |
+
nb (%)
|
350 |
+
nb (%)
|
351 |
+
COMIRNATY
|
352 |
+
Dose 2
|
353 |
+
Na=2682 nb (%)
|
354 |
+
Placebo
|
355 |
+
Dose 2
|
356 |
+
Na=2684 nb (%)
|
357 |
+
Fever
|
358 |
+
>38.0°C
|
359 |
+
≥38.0°C to 38.4°C
|
360 |
+
>38.4°C to 38.9°C
|
361 |
+
>38.9°C to 40.0°C
|
362 |
+
>40.0°C
|
363 |
+
Fatigue
|
364 |
+
Any
|
365 |
+
Mild
|
366 |
+
Moderate
|
367 |
+
Severe
|
368 |
+
Headache
|
369 |
+
Any
|
370 |
+
Mild
|
371 |
+
Moderate
|
372 |
+
Severe
|
373 |
+
Chills°
|
374 |
+
Any
|
375 |
+
Mild
|
376 |
+
Moderate
|
377 |
+
Severe
|
378 |
+
Vomiting
|
379 |
+
Any
|
380 |
+
Mild
|
381 |
+
Moderate
|
382 |
+
Severe
|
383 |
+
Diarrheg®
|
384 |
+
Any
|
385 |
+
Mild
|
386 |
+
Moderate
|
387 |
+
Severe
|
388 |
+
New or worsened muscle pain°
|
389 |
+
Any
|
390 |
+
Mild
|
391 |
+
Moderate
|
392 |
+
Severe
|
393 |
+
New or worsened ioint pain°
|
394 |
+
Any
|
395 |
+
Mild
|
396 |
+
Moderate
|
397 |
+
Severe
|
398 |
+
119 (4.1)
|
399 |
+
86 (3.0)
|
400 |
+
25 (0.9)
|
401 |
+
8 (0.3)
|
402 |
+
1431 (49.4)
|
403 |
+
760 (26.2)
|
404 |
+
630 (21.7)
|
405 |
+
41 (1.4)
|
406 |
+
1262 (43.5)
|
407 |
+
785 (27.1)
|
408 |
+
444(15.3)
|
409 |
+
33 (1.1)
|
410 |
+
479 (16.5)
|
411 |
+
338 (11.7)
|
412 |
+
126 (4.3)
|
413 |
+
15 (0.5)
|
414 |
+
34 (1.2)
|
415 |
+
29 (1.0)
|
416 |
+
5 (0.2)
|
417 |
+
0
|
418 |
+
309 (10.7)
|
419 |
+
251 (8.7)
|
420 |
+
55 (1.9)
|
421 |
+
3 (0.1)
|
422 |
+
664 (22.9)
|
423 |
+
353 (12.2)
|
424 |
+
296 (10.2)
|
425 |
+
15 (0.5)
|
426 |
+
342 (11.8)
|
427 |
+
200 (6.9)
|
428 |
+
137 (4.7)
|
429 |
+
5 (0.2)
|
430 |
+
25 (0.9)
|
431 |
+
16 (0.6)
|
432 |
+
5 (0.2)
|
433 |
+
4 (0.1)
|
434 |
+
960 (33.0)
|
435 |
+
570 (19.6)
|
436 |
+
372 (12.8)
|
437 |
+
18 (0.6)
|
438 |
+
975 (33.5)
|
439 |
+
633 (21.8)
|
440 |
+
318 (10.9)
|
441 |
+
24 (0.8)
|
442 |
+
199 (6.8)
|
443 |
+
148 (5.1)
|
444 |
+
49 (1.7)
|
445 |
+
2 (0.1)
|
446 |
+
36 (1.2)
|
447 |
+
30 (1.0)
|
448 |
+
5 (0.2)
|
449 |
+
1 (0.0)
|
450 |
+
323 (11.1)
|
451 |
+
264 (9.1)
|
452 |
+
58 (2.0)
|
453 |
+
1 (0.0)
|
454 |
+
329 (11.3)
|
455 |
+
231 (7.9)
|
456 |
+
96 (3.3)
|
457 |
+
2 (0.1)
|
458 |
+
168 (5.8)
|
459 |
+
112 (3.9)
|
460 |
+
55 (1.9)
|
461 |
+
1 (0.0)
|
462 |
+
10
|
463 |
+
440 (16.4)
|
464 |
+
254 (9.5)
|
465 |
+
146 (5.4)
|
466 |
+
39 (1.5)
|
467 |
+
1 (0.0)
|
468 |
+
1649 (61.5)
|
469 |
+
558 (20.8)
|
470 |
+
949 (35.4)
|
471 |
+
142 (5.3)
|
472 |
+
1448 (54.0)
|
473 |
+
699 (26.1)
|
474 |
+
658 (24.5)
|
475 |
+
91 (3.4)
|
476 |
+
1015 (37.8)
|
477 |
+
477 (17.8)
|
478 |
+
469 (17.5)
|
479 |
+
69 (2.6)
|
480 |
+
58 (2.2)
|
481 |
+
42 (1.6)
|
482 |
+
12 (0.4)
|
483 |
+
4 (0.1)
|
484 |
+
269 (10.0)
|
485 |
+
219 (8.2)
|
486 |
+
44 (1.6)
|
487 |
+
6 (0.2)
|
488 |
+
1055 (39.3)
|
489 |
+
441 (16.4)
|
490 |
+
552 (20.6)
|
491 |
+
62 (2.3)
|
492 |
+
638 (23.8)
|
493 |
+
291 (10.9)
|
494 |
+
320 (11.9)
|
495 |
+
27 (1.0)
|
496 |
+
11 (0.4)
|
497 |
+
5 (0.2)
|
498 |
+
4 (0.1)
|
499 |
+
2 (0.1)
|
500 |
+
O
|
501 |
+
614 (22.9)
|
502 |
+
317 (11.8)
|
503 |
+
283 (10.5)
|
504 |
+
14 (0.5)
|
505 |
+
652 (24.3)
|
506 |
+
404 (15.1)
|
507 |
+
230 (8.6)
|
508 |
+
18 (0.7)
|
509 |
+
114(4.2)
|
510 |
+
89 (3.3)
|
511 |
+
23 (0.9)
|
512 |
+
2 (0.1)
|
513 |
+
30 (1.1)
|
514 |
+
20 (0.7)
|
515 |
+
10 (0.4)
|
516 |
+
O
|
517 |
+
205 (7.6)
|
518 |
+
169 (6.3)
|
519 |
+
35 (1.3)
|
520 |
+
1 (0.0)
|
521 |
+
237 (8.8)
|
522 |
+
150 (5.6)
|
523 |
+
84 (3.1)
|
524 |
+
3 (0.1)
|
525 |
+
147 (5.5)
|
526 |
+
82 (3.1)
|
527 |
+
61 (2.3)
|
528 |
+
4 (0.1)
|
529 |
+
|
530 |
+
COMIRNATY
|
531 |
+
Dose 1
|
532 |
+
Na=2899 nb (%)
|
533 |
+
Placebo
|
534 |
+
Dose 1
|
535 |
+
Na=2908 nb (%)
|
536 |
+
COMIRNATY
|
537 |
+
Dose 2
|
538 |
+
N°=2682 nb (%)
|
539 |
+
Placebo
|
540 |
+
Dose 2
|
541 |
+
Na=2684 nb (%)
|
542 |
+
Use of antipyretic or pain medication
|
543 |
+
805 (27.8)
|
544 |
+
398 (13.7)
|
545 |
+
1213 (45.2)
|
546 |
+
320 (11.9)
|
547 |
+
Notes: Reactions and use of antipyretic or pain medication were collected in the electronic diary (e-diary) from Day 1 to Day 7 after each dose.
|
548 |
+
No Grade 4 solicited systemic reactions were reported in participants 16 through 55 years of age.
|
549 |
+
* Randomized participants in the safety analysis population who received at least 1 dose of the study intervention. Participants with chronic, stable HIV infection were excluded.
|
550 |
+
a. N= Number of participants reporting at least 1 yes or no response for the specified reaction after the specified dose. The N for each reaction or use of antipyretic or pain medication was the same, therefore, this information was included in the column header.
|
551 |
+
b. n = Number of participants with the specified reaction.
|
552 |
+
c. Mild: does not interfere with activity; Moderate: some interference with activity; Severe: prevents daily activity.
|
553 |
+
d. Mild: 1 to 2 times in 24 hours; Moderate: >2 times in 24 hours; Severe: requires intravenous hydration.
|
554 |
+
e. Mild: 2 to 3 loose stools in 24 hours; Moderate: 4 to 5 loose stools in 24 hours; Severe: 6 or more loose stools in 24 hours.
|
555 |
+
f. Severity was not collected for use of antipyretic or pain medication.
|
556 |
+
Table 3: Study 2 - Frequency and Percentages of Participants with Solicited Local Reactions, by
|
557 |
+
Maximum Severity, Within 7 Days After Each Dose - Participants 56 Years of Age and Older - Reactogenicity Subset of the Safety Population*
|
558 |
+
COMIRNATY
|
559 |
+
Placebo
|
560 |
+
Dose 1
|
561 |
+
Dose 1
|
562 |
+
Na=2008
|
563 |
+
Na=1989
|
564 |
+
nb (%)
|
565 |
+
nb (%)
|
566 |
+
COMIRNATY
|
567 |
+
Dose 2
|
568 |
+
Na=1860 nb (%)
|
569 |
+
Placebo
|
570 |
+
Dose 2
|
571 |
+
Na=1833 nb (%)
|
572 |
+
Redness°
|
573 |
+
Any (>2.0 cm)
|
574 |
+
Mild
|
575 |
+
Moderate
|
576 |
+
Severe
|
577 |
+
106 (5.3)
|
578 |
+
71 (3.5)
|
579 |
+
30 (1.5)
|
580 |
+
5 (0.2)
|
581 |
+
20 (1.0)
|
582 |
+
13 (0.7)
|
583 |
+
5 (0.3)
|
584 |
+
2 (0.1)
|
585 |
+
133 (7.2)
|
586 |
+
65 (3.5)
|
587 |
+
58 (3.1)
|
588 |
+
10 (0.5)
|
589 |
+
14 (0.8)
|
590 |
+
10 (0.5)
|
591 |
+
3 (0.2)
|
592 |
+
1 (0.1)
|
593 |
+
Swelling
|
594 |
+
Any (>2.0 cm)
|
595 |
+
Mild
|
596 |
+
Moderate
|
597 |
+
Severe
|
598 |
+
141 (7.0)
|
599 |
+
87 (4.3)
|
600 |
+
52 (2.6)
|
601 |
+
2 (0.1)
|
602 |
+
23 (1.2)
|
603 |
+
11 (0.6)
|
604 |
+
12 (0.6)
|
605 |
+
0
|
606 |
+
145 (7.8)
|
607 |
+
80 (4.3)
|
608 |
+
61 (3.3)
|
609 |
+
4 (0.2)
|
610 |
+
13 (0.7)
|
611 |
+
5 (0.3)
|
612 |
+
7 (0.4)
|
613 |
+
1 (0.1)
|
614 |
+
Pain at the injection sited
|
615 |
+
Any (>2.0 cm)
|
616 |
+
1408 (70.1)
|
617 |
+
185 (9.3)
|
618 |
+
1230 (66.1)
|
619 |
+
Mild
|
620 |
+
1108 (55.2)
|
621 |
+
177 (8.9)
|
622 |
+
873 (46.9)
|
623 |
+
Moderate
|
624 |
+
296 (14.7)
|
625 |
+
8 (0.4)
|
626 |
+
347 (18.7)
|
627 |
+
Severe
|
628 |
+
4 (0.2)
|
629 |
+
0
|
630 |
+
10 (0.5)
|
631 |
+
143 (7.8)
|
632 |
+
138 (7.5)
|
633 |
+
5 (0.3)
|
634 |
+
0
|
635 |
+
Notes: Reactions were collected in the electronic diary (-diary) from Day 1 to Day 7 after vaccination.
|
636 |
+
No Grade 4 solicited local reactions were reported in participants 56 years of age and older.
|
637 |
+
Randomized participants in the safety analysis population who received at least 1 dose of the study intervention. Participants with
|
638 |
+
chronic, stable HIV infection were excluded.
|
639 |
+
a. N= Number of participants reporting at least 1 yes or no response for the specified reaction after the specified dose. The N for each reaction was the same, therefore, the information was included in the column header.
|
640 |
+
b. n = Number of participants with the specified reaction.
|
641 |
+
c. Mild: >2.0 to <5.0 cm; Moderate: >5.0 to <10.0 cm; Severe: >10.0 cm.
|
642 |
+
d. Mild: does not interfere with activity; Moderate: interferes with activity; Severe: prevents daily activity.
|
643 |
+
11
|
644 |
+
|
645 |
+
Table 4: Study 2 - Frequency and Percentages of Participants with Solicited Systemic Reactions, by Maximum Severity, Within 7 Days After Each Dose - Participants 56 Years of Age and Older - Reactogenicity Subset of the Safety Population*
|
646 |
+
COMIRNATY
|
647 |
+
Placebo
|
648 |
+
Dose 1
|
649 |
+
Dose 1
|
650 |
+
Na=2008
|
651 |
+
Na=1989
|
652 |
+
nb (%)
|
653 |
+
nb (%)
|
654 |
+
COMIRNATY
|
655 |
+
Dose 2
|
656 |
+
N°=1860 n° (%)
|
657 |
+
Placebo
|
658 |
+
Dose 2
|
659 |
+
Na=1833 nb (%)
|
660 |
+
Fever
|
661 |
+
>38.0°C
|
662 |
+
≥38.0°C to 38.4°C
|
663 |
+
>38.4°C to 38.9°C
|
664 |
+
>38.9°C to 40.0°C
|
665 |
+
>40.0°C
|
666 |
+
Fatigue
|
667 |
+
Any
|
668 |
+
Mild
|
669 |
+
Moderate
|
670 |
+
Severe
|
671 |
+
Grade 4
|
672 |
+
Headache
|
673 |
+
Any
|
674 |
+
Mild
|
675 |
+
Moderate
|
676 |
+
Severe
|
677 |
+
Chills
|
678 |
+
Any
|
679 |
+
Mild
|
680 |
+
Moderate
|
681 |
+
Severe
|
682 |
+
Vomiting
|
683 |
+
Any
|
684 |
+
Mild
|
685 |
+
Moderate
|
686 |
+
Severe
|
687 |
+
Diarrhea®
|
688 |
+
Any
|
689 |
+
Mild
|
690 |
+
Moderate
|
691 |
+
Severe
|
692 |
+
New or worsened muscle pain°
|
693 |
+
Any
|
694 |
+
Mild
|
695 |
+
Moderate
|
696 |
+
Severe
|
697 |
+
26 (1.3)
|
698 |
+
23 (1.1)
|
699 |
+
2 (0.1)
|
700 |
+
1 (0.0)
|
701 |
+
O
|
702 |
+
677 (33.7)
|
703 |
+
415 (20.7)
|
704 |
+
259 (12.9)
|
705 |
+
3 (0.1)
|
706 |
+
503 (25.0)
|
707 |
+
381 (19.0)
|
708 |
+
120 (6.0)
|
709 |
+
2 (0.1)
|
710 |
+
130 (6.5)
|
711 |
+
102 (5.1)
|
712 |
+
28 (1.4)
|
713 |
+
0
|
714 |
+
10 (0.5)
|
715 |
+
9 (0.4)
|
716 |
+
1 (0.0)
|
717 |
+
0
|
718 |
+
168 (8.4)
|
719 |
+
137 (6.8)
|
720 |
+
27 (1.3)
|
721 |
+
4 (0.2)
|
722 |
+
274 (13.6)
|
723 |
+
183 (9.1)
|
724 |
+
90 (4.5)
|
725 |
+
1 (0.0)
|
726 |
+
8 (0.4)
|
727 |
+
3 (0.2)
|
728 |
+
3 (0.2)
|
729 |
+
2 (0.1)
|
730 |
+
0
|
731 |
+
447 (22.5)
|
732 |
+
281 (14.1)
|
733 |
+
163 (8.2)
|
734 |
+
3 (0.2)
|
735 |
+
O
|
736 |
+
363 (18.3)
|
737 |
+
267 (13.4)
|
738 |
+
93 (4.7)
|
739 |
+
3 (0.2)
|
740 |
+
69 (3.5)
|
741 |
+
49 (2.5)
|
742 |
+
19 (1.0)
|
743 |
+
1 (0.1)
|
744 |
+
9 (0.5)
|
745 |
+
9 (0.5)
|
746 |
+
0
|
747 |
+
130 (6.5)
|
748 |
+
109 (5.5)
|
749 |
+
20 (1.0)
|
750 |
+
1 (0.1)
|
751 |
+
165 (8.3)
|
752 |
+
111 (5.6)
|
753 |
+
51 (2.6)
|
754 |
+
3 (0.2)
|
755 |
+
219 (11.8)
|
756 |
+
158 (8.5)
|
757 |
+
54 (2.9)
|
758 |
+
7 (0.4)
|
759 |
+
0
|
760 |
+
949 (51.0)
|
761 |
+
391 (21.0)
|
762 |
+
497 (26.7)
|
763 |
+
60 (3.2)
|
764 |
+
1 (0.1)
|
765 |
+
733 (39.4)
|
766 |
+
464 (24.9)
|
767 |
+
256 (13.8)
|
768 |
+
13 (0.7)
|
769 |
+
435 (23.4)
|
770 |
+
229 (12.3)
|
771 |
+
185 (9.9)
|
772 |
+
21 (1.1)
|
773 |
+
13 (0.7)
|
774 |
+
10 (0.5)
|
775 |
+
1 (0.1)
|
776 |
+
2 (0.1)
|
777 |
+
152 (8.2)
|
778 |
+
125 (6.7)
|
779 |
+
25 (1.3)
|
780 |
+
2 (0.1)
|
781 |
+
537 (28.9)
|
782 |
+
229 (12.3)
|
783 |
+
288 (15.5)
|
784 |
+
20 (1.1)
|
785 |
+
4 (0.2)
|
786 |
+
2 (0.1)
|
787 |
+
1 (0.1)
|
788 |
+
1 (0.1)
|
789 |
+
0
|
790 |
+
306 (16.7)
|
791 |
+
183 (10.0)
|
792 |
+
121 (6.6)
|
793 |
+
2 (0.1)
|
794 |
+
O
|
795 |
+
259 (14.1)
|
796 |
+
189 (10.3)
|
797 |
+
65 (3.5)
|
798 |
+
5 (0.3)
|
799 |
+
57 (3.1)
|
800 |
+
45 (2.5)
|
801 |
+
12 (0.7)
|
802 |
+
5 (0.3)
|
803 |
+
5 (0.3)
|
804 |
+
0
|
805 |
+
102 (5.6)
|
806 |
+
76 (4.1)
|
807 |
+
22 (1.2)
|
808 |
+
4 (0.2)
|
809 |
+
99 (5.4)
|
810 |
+
65 (3.5)
|
811 |
+
33 (1.8)
|
812 |
+
1 (0.1)
|
813 |
+
12
|
814 |
+
|
815 |
+
COMIRNATY
|
816 |
+
Dose 1
|
817 |
+
Na=2008 nb (%)
|
818 |
+
Placebo
|
819 |
+
Dose 1
|
820 |
+
Na=1989 nb (%)
|
821 |
+
COMIRNATY
|
822 |
+
Dose 2
|
823 |
+
N°=1860 nb (%)
|
824 |
+
Placebo
|
825 |
+
Dose 2
|
826 |
+
Na=1833 nb (%)
|
827 |
+
New or worsened ioint pain°
|
828 |
+
Any
|
829 |
+
175 (8.7)
|
830 |
+
124 (6.2)
|
831 |
+
353 (19.0)
|
832 |
+
72 (3.9)
|
833 |
+
Mild
|
834 |
+
119 (5.9)
|
835 |
+
78 (3.9)
|
836 |
+
183 (9.8)
|
837 |
+
44 (2.4)
|
838 |
+
Moderate
|
839 |
+
53 (2.6)
|
840 |
+
45 (2.3)
|
841 |
+
161 (8.7)
|
842 |
+
27 (1.5)
|
843 |
+
Severe
|
844 |
+
3 (0.1)
|
845 |
+
1 (0.1)
|
846 |
+
9 (0.5)
|
847 |
+
1 (0.1)
|
848 |
+
Use of antipyretic or pain medication"
|
849 |
+
382 (19.0)
|
850 |
+
224 (11.3)
|
851 |
+
688 (37.0)
|
852 |
+
170 (9.3)
|
853 |
+
Notes: Reactions and use of antipyretic or pain medication were collected in the electronic diary (e-diary) from Day 1 to Day 7 after each dose.
|
854 |
+
The only Grade 4 solicited systemic reaction reported in participants 56 years of age and older was fatigue.
|
855 |
+
* Randomized participants in the safety analysis population who received at least 1 dose of the study intervention. Participants with chronic, stable HIV infection were excluded.
|
856 |
+
a. N= Number of participants reporting at least 1 yes or no response for the specified reaction after the specified dose. N for each reaction or use of antipyretic or pain medication was the same, therefore was included in the column header.
|
857 |
+
b. n = Number of participants with the specified reaction.
|
858 |
+
c. Mild: does not interfere with activity; Moderate: some interference with activity; Severe: prevents daily activity; Grade 4 reactions were defined in the clinical study protocol as emergency room visit or hospitalization for severe fatigue, severe headache, severe chills, severe muscle pain, or severe joint pain.
|
859 |
+
d. Mild: 1 to 2 times in 24 hours; Moderate: >2 times in 24 hours; Severe: requires intravenous hydration; Grade 4 emergency visit or hospitalization for severe vomiting.
|
860 |
+
e. Mild: 2 to 3 loose stools in 24 hours; Moderate: 4 to 5 loose stools in 24 hours; Severe: 6 or more loose stools in 24 hours; Grade 4: emergency room or hospitalization for severe diarrhea.
|
861 |
+
f. Severity was not collected for use of antipyretic or pain medication.
|
862 |
+
In participants with chronic, stable HIV infection the frequencies of solicited local and systemic adverse reactions were similar to or lower than those observed for all participants 16 years of age and older.
|
863 |
+
Unsolicited Adverse Events
|
864 |
+
Overall, 11,253 (51.1%) participants in the COMIRNATY group and 11,316 (51.4%) participants in the placebo group had follow-up time between >4 months to <6 months after Dose 2 in the blinded placebo-controlled follow-up period with an additional 1,778 (8.1%) and 1,304 (5.9%) with ≥6 months of blinded follow-up time in the COMIRNATY and placebo groups, respectively.
|
865 |
+
A total of 12,006 (54.5%) participants originally randomized to COMIRNATY had >6 months total (blinded and unblinded) follow-up after Dose 2.
|
866 |
+
In an analysis of all unsolicited adverse events reported following any dose, through 1 month after Dose 2, in participants 16 years of age and older (N=43,847; 21,926 COMIRNATY group vs. 21,921 placebo group), those assessed as adverse reactions not already captured by solicited local and systemic reactions were nausea (274 vs. 87), malaise (130 vs. 22), lymphadenopathy (83 vs. 7), asthenia (76 vs. 25), decreased appetite (39 vs. 9), hyperhidrosis (31 vs. 9), lethargy (25 vs. 6), and night sweats (17 vs. 3).
|
867 |
+
In analyses of all unsolicited adverse events in Study 2 from Dose 1 up to the participant unblinding date, 58.2% of study participants had at least 4 months of follow-up after Dose 2. Among participants 16 through
|
868 |
+
55 years of age who received at least 1 dose of study vaccine, 12,995 of whom received COMIRNATY and
|
869 |
+
13,026 of whom received placebo, unsolicited adverse events were reported by 4,396 (33.8%) participants in the COMIRNATY group and 2,136 (16.4%) participants in the placebo group. In a similar analysis in participants 56 years of age and older that included 8,931 COMIRNATY recipients and 8,895 placebo
|
870 |
+
13
|
871 |
+
|
872 |
+
recipients, unsolicited adverse events were reported by 2,551 (28.6%) participants in the COMIRNATY group and 1,432 (16.1%) participants in the placebo group. Among participants with confirmed stable HIV infection that included 100 COMIRNATY recipients and 100 placebo recipients, unsolicited adverse events were reported by 29 (29%) participants in the COMIRNATY group and 15 (15%) participants in the placebo group.
|
873 |
+
The higher frequency of reported unsolicited adverse events among COMIRNATY recipients compared to placebo recipients was primarily attributed to events that are consistent with adverse reactions solicited among participants in the reactogenicity subset (Table 3 and Table 4).
|
874 |
+
Throughout the placebo-controlled safety follow-up period, Bell's palsy (facial paralysis) was reported by 4 participants in the COMIRNATY group and 2 participants in the placebo group. Onset of facial paralysis was Day 37 after Dose 1 (participant did not receive Dose 2) and Days 3, 9, and 48 after Dose 2. In the placebo group the onset of facial paralysis was Day 32 and Day 102. Currently available information is insufficient to determine a causal relationship with the vaccine. In the analysis of blinded, placebo-controlled follow-up, there were no other notable patterns or numerical imbalances between treatment groups for specific categories of non-serious adverse events (including other neurologic or neuro-inflammatory, and thrombotic events) that would suggest a causal relationship to COMIRNATY. In the analysis of unblinded follow-up, there were no notable patterns of specific categories of non-serious adverse events that would suggest a causal relationship to COMIRNATY.
|
875 |
+
Serious Adverse Events
|
876 |
+
In Study 2, among participants 16 through 55 years of age who had received at least 1 dose of vaccine or
|
877 |
+
placebo (COMIRNATY =12,995; placebo = 13,026), serious adverse events from Dose 1 up to the participant
|
878 |
+
unblinding date in ongoing follow-up were reported by 103 (0.8%) COMIRNATY recipients and 117 (0.9%)
|
879 |
+
placebo recipients. In a similar analysis, in participants 56 years of age and older (COMIRNATY = 8,931;
|
880 |
+
placebo = 8,895), serious adverse events were reported by 165 (1.8%) COMIRNATY recipients and 151 (1.7%)
|
881 |
+
placebo recipients who received at least 1 dose of COMIRNATY or placebo, respectively. In these analyses, 58.2% of study participants had at least 4 months of follow-up after Dose 2. Among participants with confirmed stable HIV infection serious adverse events from Dose 1 up to the participant unblinding date in ongoing follow-up were reported by 2 (2%) COMIRNATY recipients and 2 (2%) placebo recipients.
|
882 |
+
In the analysis of blinded, placebo-controlled follow-up, there were no notable patterns between treatment groups for specific categories of serious adverse events (including neurologic, neuro-inflammatory, and thrombotic events) that would suggest a causal relationship to COMIRNATY. In the analysis of unblinded follow-up, there were no notable patterns of specific categories of serious adverse events that would suggest a causal relationship to COMIRNATY.
|
883 |
+
Adolescents 12 Through 15 Years of Age
|
884 |
+
In Study 2, 2,260 adolescents (1,131 COMIRNATY; 1,129 placebo) were 12 through 15 years of age. At the time of the analysis of the ongoing Study 2 with a data cutoff of September 2, 2021, there were 1,559 (69.0%) adolescents (786 COMIRNATY and 773 placebo) 12 through 15 years of age followed for >4 months after the second dose. The safety evaluation in Study 2 is ongoing.
|
885 |
+
Demographic characteristics in Study 2 were generally similar with regard to age, gender, race, and ethnicity among adolescents who received COMIRNATY and those who received placebo. Overall, among the adolescents who received COMIRNATY, 50.1% were male and 49.9% were female, 85.8% were White, 4.6% were Black or African American, 11.7% were Hispanic/Latino, 6.4% were Asian, and 0.4% were American Indian/Alaska Native.
|
886 |
+
14
|
887 |
+
|
888 |
+
Local and Systemic Adverse Reactions Solicited in Study 2
|
889 |
+
In adolescents 12 through 15 years of age after receiving Dose 2, the mean duration of pain at the injection site was 2.5 days (range 1 to 11 days), for redness 1.8 days (range 1 to 5 days), and for swelling 1.6 days (range 1 to 5 days) in the COMIRNATY group.
|
890 |
+
Table 5: Study 2 - Frequency and Percentages of Adolescents With Solicited Local Reactions, by
|
891 |
+
Maximum Severity, Within 7 Days After Each Dose - Adolescents 12 Through 15 Years of Age - Safety Population*
|
892 |
+
COMIRNATY
|
893 |
+
Dose 1
|
894 |
+
Na=1127 nb (%)
|
895 |
+
Placebo
|
896 |
+
Dose 1
|
897 |
+
Na=1127 nb (%)
|
898 |
+
COMIRNATY
|
899 |
+
Dose 2
|
900 |
+
Na=1097 nb (%)
|
901 |
+
Placebo
|
902 |
+
Dose 2
|
903 |
+
N°=1078 nb (%)
|
904 |
+
Redness°
|
905 |
+
Any (>2 cm)
|
906 |
+
Mild
|
907 |
+
Moderate
|
908 |
+
Severe
|
909 |
+
65 (5.8)
|
910 |
+
44 (3.9)
|
911 |
+
20 (1.8)
|
912 |
+
1 (0.1)
|
913 |
+
12 (1.1)
|
914 |
+
11 (1.0)
|
915 |
+
1 (0.1)
|
916 |
+
0 (0.0)
|
917 |
+
55 (5.0)
|
918 |
+
29 (2.6)
|
919 |
+
26 (2.4)
|
920 |
+
0 (0.0)
|
921 |
+
Swelling
|
922 |
+
Any (>2 cm)
|
923 |
+
Mild
|
924 |
+
Moderate
|
925 |
+
Severe
|
926 |
+
78 (6.9)
|
927 |
+
55 (4.9)
|
928 |
+
23 (2.0)
|
929 |
+
0 (0.0)
|
930 |
+
11 (1.0)
|
931 |
+
9 (0.8)
|
932 |
+
2 (0.2)
|
933 |
+
0 (0.0)
|
934 |
+
54 (4.9)
|
935 |
+
36 (3.3)
|
936 |
+
18 (1.6)
|
937 |
+
0 (0.0)
|
938 |
+
Pain at the injection site
|
939 |
+
Any
|
940 |
+
971 (86.2)
|
941 |
+
263 (23.3)
|
942 |
+
866 (78.9)
|
943 |
+
Mild
|
944 |
+
467 (41.4)
|
945 |
+
227 (20.1)
|
946 |
+
466 (42.5)
|
947 |
+
Moderate
|
948 |
+
493 (43.7)
|
949 |
+
36 (3.2)
|
950 |
+
393 (35.8)
|
951 |
+
Severe
|
952 |
+
11 (1.0)
|
953 |
+
0 (0.0)
|
954 |
+
7 (0.6)
|
955 |
+
Note: Reactions were collected in the electronic diary (e-diary) from Day 1 to Day 7 after vaccination.
|
956 |
+
* Randomized participants in the safetv analvsis population who received at least 1 dose of the study intervention.
|
957 |
+
a. N= Number of participants reporting at least 1 yes or no response for the specified reaction after the specified dose.
|
958 |
+
b. n = Number of participants with the specified reaction.
|
959 |
+
c. Mild: >2.0 to 55.0 cm; Moderate: >5.0 to <10.0 cm; Severe: >10.0 cm.
|
960 |
+
d. Mild: does not interfere with activity; Moderate: interferes with activity; Severe: prevents daily activity.
|
961 |
+
10 (0.9)
|
962 |
+
8 (0.7)
|
963 |
+
2 (0.2)
|
964 |
+
0 (0.0)
|
965 |
+
6 (0.6)
|
966 |
+
4 (0.4)
|
967 |
+
2 (0.2)
|
968 |
+
0 (0.0)
|
969 |
+
193 (17.9)
|
970 |
+
164 (15.2)
|
971 |
+
29 (2.7)
|
972 |
+
0 (0.0)
|
973 |
+
Table 6: Study 2 - Frequency and Percentages of Adolescents with Solicited Systemic Reactions, by
|
974 |
+
Maximum Severity, Within 7 Days After Each Dose - Adolescents 12 Through 15 Years of Age - Safety Population*
|
975 |
+
COMIRNATY
|
976 |
+
Dose 1
|
977 |
+
Na=1127 nb (%)
|
978 |
+
Placebo
|
979 |
+
Dose 1
|
980 |
+
Na=1127 nb (%)
|
981 |
+
COMIRNATY
|
982 |
+
Dose 2
|
983 |
+
Na=1097 nb (%)
|
984 |
+
Placebo
|
985 |
+
Dose 2
|
986 |
+
Na=1078 nb (%)
|
987 |
+
Fever
|
988 |
+
>38 0°C
|
989 |
+
>38.0°C to 38.4°C
|
990 |
+
>38.4°C to 38.9°C
|
991 |
+
>38.9°C to 40.0°C
|
992 |
+
>40.0°0
|
993 |
+
Fatigue
|
994 |
+
Any
|
995 |
+
Mild
|
996 |
+
114 (10.1)
|
997 |
+
74 (6.6)
|
998 |
+
29 (2.6)
|
999 |
+
10 (0.9)
|
1000 |
+
1 (0.1)
|
1001 |
+
12 (1.1)
|
1002 |
+
8 (0.7)
|
1003 |
+
2 (0.2)
|
1004 |
+
2 (0.2)
|
1005 |
+
0 (0.0)
|
1006 |
+
215 (19.6)
|
1007 |
+
107 (9.8)
|
1008 |
+
83 (7.6)
|
1009 |
+
25 (2.3)
|
1010 |
+
0 (0.0)
|
1011 |
+
7 (0.6)
|
1012 |
+
5 (0.5)
|
1013 |
+
1 (0.1)
|
1014 |
+
1 (0.1)
|
1015 |
+
0 (0.0)
|
1016 |
+
677 (60.1)
|
1017 |
+
278 (24.7)
|
1018 |
+
457 (40.6)
|
1019 |
+
250 (22.2)
|
1020 |
+
15
|
1021 |
+
726 (66.2)
|
1022 |
+
232 (21.1)
|
1023 |
+
264 (24.5)
|
1024 |
+
133 (12.3)
|
1025 |
+
|
1026 |
+
COMIRNATY
|
1027 |
+
Placebo
|
1028 |
+
COMIRNATY
|
1029 |
+
Placebo
|
1030 |
+
Dose 1
|
1031 |
+
Dose 1
|
1032 |
+
Dose 2
|
1033 |
+
Dose 2
|
1034 |
+
Na=1127
|
1035 |
+
Na=1127
|
1036 |
+
N°=1097
|
1037 |
+
N°=1078
|
1038 |
+
nb (%)
|
1039 |
+
n" (%)
|
1040 |
+
nb (%)
|
1041 |
+
nb (%)
|
1042 |
+
Moderate
|
1043 |
+
384 (34.1)
|
1044 |
+
199 (17.7)
|
1045 |
+
468 (42.7)
|
1046 |
+
127 (11.8)
|
1047 |
+
Severe
|
1048 |
+
15 (1.3)
|
1049 |
+
8 (0.7)
|
1050 |
+
26 (2.4)
|
1051 |
+
4 (0.4)
|
1052 |
+
Headache
|
1053 |
+
Any
|
1054 |
+
623 (55.3)
|
1055 |
+
396 (35.1)
|
1056 |
+
708 (64.5)
|
1057 |
+
264 (24.5)
|
1058 |
+
Mild
|
1059 |
+
361 (32.0)
|
1060 |
+
256 (22.7)
|
1061 |
+
302 (27.5)
|
1062 |
+
170 (15.8)
|
1063 |
+
Moderate
|
1064 |
+
251 (22.3)
|
1065 |
+
131 (11.6)
|
1066 |
+
384 (35.0)
|
1067 |
+
93 (8.6)
|
1068 |
+
Severe
|
1069 |
+
11 (1.0)
|
1070 |
+
9 (0.8)
|
1071 |
+
22 (2.0)
|
1072 |
+
1 (0.1)
|
1073 |
+
Chills°
|
1074 |
+
Any
|
1075 |
+
311 (27.6)
|
1076 |
+
109 (9.7)
|
1077 |
+
455 (41.5)
|
1078 |
+
74 (6.9)
|
1079 |
+
Mild
|
1080 |
+
195 (17.3)
|
1081 |
+
82 (7.3)
|
1082 |
+
221 (20.1)
|
1083 |
+
53 (4.9)
|
1084 |
+
Moderate
|
1085 |
+
111 (9.8)
|
1086 |
+
25 (2.2)
|
1087 |
+
214 (19.5)
|
1088 |
+
21 (1.9)
|
1089 |
+
Severe
|
1090 |
+
5 (0.4)
|
1091 |
+
2 (0.2)
|
1092 |
+
20 (1.8)
|
1093 |
+
0 (0.0)
|
1094 |
+
Vomiting
|
1095 |
+
Any
|
1096 |
+
31 (2.8)
|
1097 |
+
10 (0.9)
|
1098 |
+
29 (2.6)
|
1099 |
+
12 (1.1)
|
1100 |
+
Mild
|
1101 |
+
30 (2.7)
|
1102 |
+
8 (0.7)
|
1103 |
+
25 (2.3)
|
1104 |
+
11 (1.0)
|
1105 |
+
Moderate
|
1106 |
+
0 (0.0)
|
1107 |
+
2 (0.2)
|
1108 |
+
4 (0.4)
|
1109 |
+
1 (0.1)
|
1110 |
+
Severe
|
1111 |
+
1 (0.1)
|
1112 |
+
0 (0.0)
|
1113 |
+
0 (0.0)
|
1114 |
+
0 (0.0)
|
1115 |
+
Diarrhea®
|
1116 |
+
Any
|
1117 |
+
90 (8.0)
|
1118 |
+
82 (7.3)
|
1119 |
+
65 (5.9)
|
1120 |
+
44 (4.1)
|
1121 |
+
Mild
|
1122 |
+
77 (6.8)
|
1123 |
+
72 (6.4)
|
1124 |
+
59 (5.4)
|
1125 |
+
39 (3.6)
|
1126 |
+
Moderate
|
1127 |
+
13 (1.2)
|
1128 |
+
10 (0.9)
|
1129 |
+
6 (0.5)
|
1130 |
+
5 (0.5)
|
1131 |
+
Severe
|
1132 |
+
0 (0.0)
|
1133 |
+
0 (0.0)
|
1134 |
+
0 (0.0)
|
1135 |
+
0 (0.0)
|
1136 |
+
New or worsened muscle pain°
|
1137 |
+
Any
|
1138 |
+
272 (24.1)
|
1139 |
+
148 (13.1)
|
1140 |
+
355 (32.4)
|
1141 |
+
90 (8.3)
|
1142 |
+
Mild
|
1143 |
+
125 (11.1)
|
1144 |
+
88 (7.8)
|
1145 |
+
152 (13.9)
|
1146 |
+
51 (4.7)
|
1147 |
+
Moderate
|
1148 |
+
145 (12.9)
|
1149 |
+
60 (5.3)
|
1150 |
+
197 (18.0'
|
1151 |
+
37 (3.4)
|
1152 |
+
Severe
|
1153 |
+
2 (0.2)
|
1154 |
+
0 (0.0)
|
1155 |
+
6 (0.5)
|
1156 |
+
2 (0.2)
|
1157 |
+
New or worsened ioint pain°
|
1158 |
+
Any
|
1159 |
+
109 (9.7)
|
1160 |
+
77 (6.8)
|
1161 |
+
173 (15.8)
|
1162 |
+
51 (4.7)
|
1163 |
+
Mild
|
1164 |
+
66 (5.9)
|
1165 |
+
50 (4.4)
|
1166 |
+
91 (8.3)
|
1167 |
+
30 (2.8)
|
1168 |
+
Moderate
|
1169 |
+
42 (3.7)
|
1170 |
+
27 (2.4)
|
1171 |
+
78 (7.1)
|
1172 |
+
21 (1.9)
|
1173 |
+
Severe
|
1174 |
+
1 (0.1)
|
1175 |
+
0 (0.0)
|
1176 |
+
4 (0.4)
|
1177 |
+
0 (0.0)
|
1178 |
+
Use of antipyretic or pain medicationf
|
1179 |
+
413 (36.6)
|
1180 |
+
111 (9.8)
|
1181 |
+
557 (50.8)
|
1182 |
+
95 (8.8)
|
1183 |
+
Note: Events and use of antipyretic or pain medication were collected in the electronic diary (e-diary) from Day 1 to Day 7 after each dose.
|
1184 |
+
* Randomized participants in the safety analysis population who received at least 1 dose of the study intervention.
|
1185 |
+
a. N= Number of participants reporting at least 1 yes or no response for the specified event after the specified dose.
|
1186 |
+
b. n = Number of participants with the specified reaction.
|
1187 |
+
c. Mild: does not interfere with activity; Moderate: some interference with activity; Severe: prevents daily activity.
|
1188 |
+
d. Mild: 1 to 2 times in 24 hours; Moderate: >2 times in 24 hours; Severe: requires intravenous hydration.
|
1189 |
+
e. Mild: 2 to 3 loose stools in 24 hours; Moderate: 4 to 5 loose stools in 24 hours; Severe: 6 or more loose stools in 24 hours.
|
1190 |
+
f. Severity was not collected for use of antipyretic or pain medication.
|
1191 |
+
Unsolicited Adverse Events
|
1192 |
+
In Study 2, 2,260 adolescents (1,131 COMIRNATY; 1,129 placebo) were 12 through 15 years of age. Of these, 634 (56.1%) participants in the COMIRNATY group and 629 (55.7%) participants in the placebo group had
|
1193 |
+
16
|
1194 |
+
|
1195 |
+
follow-up time between ≥4 months to <6 months after Dose 2 in the blinded placebo-controlled follow-up period with an additional 152 (13.4%) and 144 (12.8%) with ≥6 months of blinded follow-up time in the
|
1196 |
+
COMIRNATY and placebo groups, respectively.
|
1197 |
+
A total of 1,113 (98.4%) participants 12 through 15 years of age originally randomized to COMIRNATY had
|
1198 |
+
>6 months total (blinded and unblinded) follow-up after Dose 2.
|
1199 |
+
An analysis of all unsolicited adverse events in Study 2 from Dose 1 up to the participant unblinding date was conducted. Among participants 12 through 15 years of age who received at least one dose of study vaccine, unsolicited adverse events were reported by 95 (8.4%) participants in the COMIRNATY group and 113 (10.0%) participants in the placebo group.
|
1200 |
+
In an analysis of all unsolicited adverse events reported during blinded follow-up from Dose 1 through 1 month after Dose 2, in adolescents 12 to 15 years of age, those assessed as adverse reactions not already captured by solicited local and systemic reactions were lymphadenopathy (9 vs. 2), and nausea (5 vs. 2).
|
1201 |
+
In the analysis of blinded, placebo-controlled follow-up, there were no other notable patterns or numerical imbalances between treatment groups for specific categories of unsolicited adverse events (including other neurologic or neuro-inflammatory, and thrombotic events) that would suggest a causal relationship to COMIRNATY. In the analysis of unblinded follow-up, there were no notable patterns of specific categories of non-serious adverse events that would suggest a causal relationship to COMIRNATY.
|
1202 |
+
Serious Adverse Events
|
1203 |
+
In Study 2, among participants 12 through 15 years of age who had received at least 1 dose of vaccine or
|
1204 |
+
placebo (COMIRNATY = 1,131; placebo = 1,129), serious adverse events from Dose 1 up to the participant
|
1205 |
+
unblinding date in ongoing follow-up were reported by 10 (0.9%) COMIRNATY recipients and 2 (0.2%) placebo recipients. In these analyses, 69.0% of study participants had at least 4 months of follow-up after Dose 2. In the analysis of blinded, placebo-controlled follow-up, there were no notable patterns between treatment groups for specific categories of serious adverse events (including neurologic, neuro-inflammatory, and thrombotic events) that would suggest a causal relationship to COMIRNATY. In the analysis of unblinded follow-up, there were no notable patterns of specific categories of serious adverse events that would suggest a causal relationship to COMIRNATY.
|
1206 |
+
6.2
|
1207 |
+
Postmarketing Experience
|
1208 |
+
The following adverse reactions have been identified during postmarketing use of COMIRNATY, including under Emergency Use Authorization. Because these reactions are reported voluntarily from a population of uncertain size, it is not always possible to reliably estimate their frequency or establish a causal relationship to vaccine exposure.
|
1209 |
+
Cardiac Disorders: myocarditis, pericarditis
|
1210 |
+
Gastrointestinal Disorders: diarrhea, vomiting
|
1211 |
+
Immune System Disorders: severe allergic reactions, including anaphylaxis, and other hypersensitivity reactions (e.g., rash, pruritus, urticaria, angioedema)
|
1212 |
+
Musculoskeletal and Connective Tissue Disorders: pain in extremity (arm)
|
1213 |
+
Nervous System Disorders: syncope, dizziness
|
1214 |
+
17
|
1215 |
+
|
1216 |
+
USE IN SPECIFIC POPULATIONS
|
1217 |
+
8.1
|
1218 |
+
Pregnancy
|
1219 |
+
There is a pregnancy exposure registry that monitors pregnancy outcomes in women exposed to COMIRNATY during pregnancy. Women who are vaccinated with COMIRNATY during pregnancy are encouraged to enroll in the registry by visiting https://mothertobaby.org/ongoing-study/covid19-vaccines/
|
1220 |
+
Risk Summary
|
1221 |
+
All pregnancies have a risk of birth defect, loss, or other adverse outcomes. In the US general population, the estimated background risk of major birth defects and miscarriage in clinically recognized pregnancies is 2% to 4% and 15% to 20%, respectively. Available data on COMIRNATY administered to pregnant women are insufficient to inform vaccine-associated risks in pregnancy.
|
1222 |
+
A developmental toxicity study has been performed in female rats administered the equivalent of a single human dose of COMIRNATY on 4 occasions, twice prior to mating and twice during gestation. These studies revealed no evidence of harm to the fetus due to the vaccine (see Animal Data).
|
1223 |
+
Data
|
1224 |
+
Animal Data
|
1225 |
+
In a developmental toxicity study, 0.06 mL of a vaccine formulation containing the same quantity of nucleoside-modified messenger ribonucleic acid (mRNA) (30 mcg) and other ingredients included in a single human dose of COMIRNATY was administered to female rats by the intramuscular route on 4 occasions: 21 and 14 days prior to mating, and on gestation days 9 and 20. No vaccine-related adverse effects on female fertility, fetal development, or postnatal development were reported in the study.
|
1226 |
+
8.2
|
1227 |
+
Lactation
|
1228 |
+
Risk Summary
|
1229 |
+
It is not known whether COMIRNATY is excreted in human milk. Data are not available to assess the effects of COMIRNATY on the breastfed infant or on milk production/excretion. The developmental and health benefits of breastfeeding should be considered along with the mother's clinical need for COMIRNATY and any potential adverse effects on the breastfed child from COMIRNATY or from the underlying maternal condition.
|
1230 |
+
For preventive vaccines, the underlying maternal condition is susceptibility to disease prevented by the vaccine.
|
1231 |
+
8.4
|
1232 |
+
Pediatric Use
|
1233 |
+
Safety and effectiveness of COMIRNATY in individuals 12 through 17 years of age is based on safety and effectiveness data in this age group and in adults I see Adverse Reactions (6) and Clinical Studies (14.1)].
|
1234 |
+
The safety and effectiveness of COMIRNATY in individuals younger than 12 years of age have not been established.
|
1235 |
+
8.5
|
1236 |
+
Geriatric Use
|
1237 |
+
Of the total number of COMIRNATY recipients in Study 2 as of March 13, 2021 (N = 22,026),
|
1238 |
+
20.7% (n = 4,552) were 65 years of age and older and 4.2% (n = 925) were 75 years of age and older [see
|
1239 |
+
18
|
1240 |
+
|
1241 |
+
Clinical Studies (14.1)]. No overall differences in safety or effectiveness were observed between these recipients and younger recipients.
|
1242 |
+
11
|
1243 |
+
DESCRIPTION
|
1244 |
+
COMIRNATY (COVID-19 Vaccine, mRNA) is a sterile suspension for injection for intramuscular use.
|
1245 |
+
COMIRNATY is supplied as a frozen suspension in multiple dose vials with purple caps and labels with purple borders; each vial must be diluted with 1.8 mL of sterile 0.9% Sodium Chloride Injection, USP prior to use to form the vaccine. Each 0.3 mL dose of COMIRNATY supplied in multiple dose vials with purple caps and labels with purple borders contains 30 mcg of a nucleoside-modified messenger RNA (mRNA) encoding the viral spike (S) glycoprotein of SARS-CoV-2.
|
1246 |
+
Each 0.3 mL dose of the COMIRNATY supplied in multiple dose vials with purple caps and labels with purple borders also includes the following ingredients:
|
1247 |
+
lipids (0.43 mg ((4-hydroxybutylazanediyl)bis(hexane-6,1-diyl)bis(2-hexyldecanoate), 0.05 mg 2-(polyethylene glycol 2000)-N,N-ditetradecylacetamide,
|
1248 |
+
0.09 mg 1,2-distearoyl-sn-glycero-3-phosphocholine, and 0.2 mg cholesterol), 0.01 mg potassium chloride, 0.01 mg monobasic potassium phosphate, 0.36 mg sodium chloride, 0.07 mg dibasic sodium phosphate dihydrate, and 6 mg sucrose. The diluent (sterile 0.9% Sodium Chloride Injection, USP) contributes an additional 2.16 mg sodium chloride per dose.
|
1249 |
+
COMIRNATY does not contain preservative.
|
1250 |
+
The vial stoppers are not made with natural rubber latex.
|
1251 |
+
12
|
1252 |
+
CLINICAL PHARMACOLOGY
|
1253 |
+
12.1 Mechanism of Action
|
1254 |
+
The nucleoside-modified mRNA in COMIRNATY is formulated in lipid particles, which enable delivery of the mRNA into host cells to allow expression of the SARS-CoV-2 S antigen. The vaccine elicits an immune response to the S antigen, which protects against COVID-19.
|
1255 |
+
13
|
1256 |
+
NONCLINICAL TOXICOLOGY
|
1257 |
+
13.1 Carcinogenesis, Mutagenesis, Impairment of Fertility
|
1258 |
+
COMIRNATY has not been evaluated for the potential to cause carcinogenicity, genotoxicity, or impairment of male fertility. In a developmental toxicity study in rats with COMIRNATY there were no vaccine-related effects on female fertility [see Use in Specific Populations (8.1)].
|
1259 |
+
14
|
1260 |
+
CLINICAL STUDIES
|
1261 |
+
14.1 Efficacy in Participants 16 Years of Age and Older
|
1262 |
+
Study 2 is an ongoing, multicenter, multinational, randomized, placebo-controlled, observer-blind, dose-finding, vaccine candidate-selection, and efficacy study in participants 12 ears of age and older. Randomization was stratified by age: 12 through 15 years of age, 16 through 55 years of age, or 56 years of age and older, with a minimum of 40% of participants in the >56-year stratum. The study excluded participants who were immunocompromised and those who had previous clinical or microbiological diagnosis of COVID-19.
|
1263 |
+
Participants with preexisting stable disease, defined as disease not requiring significant change in therapy or
|
1264 |
+
19
|
1265 |
+
|
1266 |
+
hospitalization for worsening disease during the 6 weeks before enrollment, were included as were participants with known stable infection with HIV, hepatitis C virus (HCV), or hepatitis B virus (HBV).
|
1267 |
+
In Study 2, based on data accrued through March 13, 2021, approximately 44,000 participants 12 years of age and older were randomized equally and received 2 doses of COMIRNATY or placebo. Participants are planned to be followed for up to 24 months, for assessments of safety and efficacy against COVID-19.
|
1268 |
+
Overall, among the total participants who received COMIRNATY or placebo, 51.4% or 50.3% were male and 48.6% or 49.7% were female, 79.1% or 79.2% were 16 through 64 years of age, 20.9% or 20.8% were 65 years of age and older, 81.9% or 82.1% were White, 9.5% or 9.6% were Black or African American, 1.0% or 0.9% were American Indian or Alaska Native, 4.4% or 4.3% were Asian, 0.3% or 0.2% Native Hawaiian or other Pacific Islander, 25.6% or 25.4% were Hispanic/Latino, 73.9% or 74. 1% were non-Hispanic/Latino, 0.5% or 0.5% did not report ethnicity, 46.0% or 45.7% had comorbidities [participants who have 1 or more comorbidities that increase the risk of severe COVID-19 disease: defined as subiects who had at least 1 of the Charlson comorbidity index category or body mass index (BMI) ≥30 kg/m?1, respectively. The mean age at vaccination was 49.8 or 49.7 years and median age was 51.0 or 51.0 in participants who received COMIRNATY or placebo, respectively.
|
1269 |
+
Efficacy Against COVID-19
|
1270 |
+
The population for the analysis of the protocol pre-specified primary efficacy endpoint included
|
1271 |
+
36,621 participants 12 years of age and older (18,242 in the COMIRNATY group and 18,379 in the placebo group) who did not have evidence of prior infection with SARS-CoV-2 through 7 days after the second dose.
|
1272 |
+
The population in the protocol pre-specified primary efficacy analysis included all participants 12 years of age and older who had been enrolled from July 27, 2020, and followed for the development of COVID-19 through November 14, 2020. Participants 18 through 55 years of age and 56 years of age and older began enrollment from July 27, 2020, 16 through 17 years of age began enrollment from September 16, 2020, and 12 through 15 years of age began enrollment from October 15, 2020.
|
1273 |
+
For participants without evidence of SARS-CoV-2 infection prior to 7 days after Dose 2, vaccine efficacy against confirmed COVID-19 occurring at least 7 days after Dose 2 was 95.0% (95% credible interval: 90.3,
|
1274 |
+
97.6), which met the pre-specified success criterion. The case split was 8 COVID-19 cases in the COMIRNATY group compared to 162 COVID-19 cases in the placebo group.
|
1275 |
+
The population for the updated vaccine efficacy analysis included participants 16 years of age and older who had been enrolled from July 27, 2020, and followed for the development of COVID-19 during blinded placebo-controlled follow-up through March 13, 2021, representing up to 6 months of follow-up after Dose 2.
|
1276 |
+
There were 12,796 (60.8%) participants in the COMIRNATY group and 12,449 (58.7%) in the placebo group followed for >4 months after Dose 2 in the blinded placebo-controlled follow-up period.
|
1277 |
+
SARS-CoV-2 variants of concern identified from COVID-19 cases for this age group from this data cutoff include B. 1.1.7 (Alpha) and B. 1.351 (Beta). Representation of identified variants among cases in vaccine versus placebo recipients did not suggest decreased vaccine effectiveness against these variants.
|
1278 |
+
The updated vaccine efficacy information is presented in Table 7.
|
1279 |
+
20
|
1280 |
+
|
1281 |
+
Table 7: Vaccine Efficacy - First COVID-19 Occurrence From 7 Days After Dose 2, by Age
|
1282 |
+
Subgroup - Participants 16 Years of Age and Older Without Evidence of Infection and Participants With or Without Evidence of Infection Prior to 7 Days After Dose 2 - Evaluable
|
1283 |
+
Efficacy (7 Days) Population During the Placebo-Controlled Follow-up Period
|
1284 |
+
First COVID-19 occurrence from 7 days after Dose 2 in participants without evidence of prior
|
1285 |
+
SARS-CoV-2 infection*
|
1286 |
+
COMIRNATY
|
1287 |
+
Placebo
|
1288 |
+
Na=19,993
|
1289 |
+
Na=20,118
|
1290 |
+
Cases
|
1291 |
+
Cases
|
1292 |
+
nib
|
1293 |
+
nib
|
1294 |
+
Subgroup
|
1295 |
+
Surveillance Time' (n2d)
|
1296 |
+
Surveillance Time^ (n24)
|
1297 |
+
77
|
1298 |
+
833
|
1299 |
+
All participants
|
1300 |
+
6.092 (19,711)
|
1301 |
+
5.857 (19,741)
|
1302 |
+
70
|
1303 |
+
709
|
1304 |
+
16 through 64 years
|
1305 |
+
4.859 (15,519)
|
1306 |
+
4.654 (15,515)
|
1307 |
+
7
|
1308 |
+
124
|
1309 |
+
65 years and older
|
1310 |
+
1.233 (4192)
|
1311 |
+
1.202 (4226)
|
1312 |
+
Vaccine Efficacy %
|
1313 |
+
(95% CI°)
|
1314 |
+
91.1
|
1315 |
+
(88.8, 93.1)
|
1316 |
+
90.5
|
1317 |
+
(87.9, 92.7)
|
1318 |
+
94.5
|
1319 |
+
(88.3, 97.8)
|
1320 |
+
First COVID-19 occurrence from 7 days after Dose 2 in participants with or without* evidence of prior
|
1321 |
+
SARS-CoV-2 infection
|
1322 |
+
COMIRNATY
|
1323 |
+
Placebo
|
1324 |
+
Na=21,047
|
1325 |
+
Na=21,210
|
1326 |
+
Cases
|
1327 |
+
Cases
|
1328 |
+
nib
|
1329 |
+
n1b
|
1330 |
+
Vaccine Efficacy %
|
1331 |
+
Subgroup
|
1332 |
+
Surveillance Time' (n29)
|
1333 |
+
Surveillance Time (n2d)
|
1334 |
+
(95% CI)
|
1335 |
+
81
|
1336 |
+
854
|
1337 |
+
90.9
|
1338 |
+
All participants
|
1339 |
+
6.340 (20,533)
|
1340 |
+
6.110 (20,595)
|
1341 |
+
(88.5, 92.8)
|
1342 |
+
74
|
1343 |
+
726
|
1344 |
+
90.2
|
1345 |
+
16 through 64 years
|
1346 |
+
5.073 (16.218)
|
1347 |
+
4.879 (16.269)
|
1348 |
+
(87.5, 92.4)
|
1349 |
+
7
|
1350 |
+
128
|
1351 |
+
94.7
|
1352 |
+
65 vears and older
|
1353 |
+
1.267 (4315)
|
1354 |
+
1.232 (4326)
|
1355 |
+
(88.7, 97.9)
|
1356 |
+
Note: Confirmed cases were determined by Reverse Transcription-Polymerase Chain Reaction (RT-PCR) and at least 1 symptom consistent with COVID-19 (symptoms included: fever; new or increased cough; new or increased shortness of breath; chills; new or increased muscle pain; new loss of taste or smell; sore throat; diarrhea; vomiting).
|
1357 |
+
Participants who had no evidence of past SARS-CoV-2 infection (i.e., N-binding antibody [serum] negative at Visit 1 and SARS-CoV-2 not detected by NAAT [nasal swab] at Visits 1 and 2), and had negative NAAT (nasal swab) at any unscheduled visit prior to 7 days after Dose 2 were included in the analysis.
|
1358 |
+
a. N= Number of participants in the specified group.
|
1359 |
+
b. n1 = Number of participants meeting the endpoint definition.
|
1360 |
+
c. Total surveillance time in 1000 person-years for the given endpoint across all participants within each group at risk for the endpoint.
|
1361 |
+
Time period for COVID-19 case accrual is from 7 days after Dose 2 to the end of the surveillance period.
|
1362 |
+
d. n2 = Number of participants at risk for the endpoint.
|
1363 |
+
e. Two-sided confidence interval (CI) for vaccine efficacy is derived based on the Clopper and Pearson method adjusted to the surveillance time.
|
1364 |
+
Subgroup analyses of vaccine efficacy (although limited by small numbers of cases in some subgroups) did not suggest meaningful differences in efficacy across genders, ethnic groups, geographies, or for participants with obesity or medical comorbidities associated with high risk of severe COVID-19.
|
1365 |
+
Efficacy Against Severe COVID-19
|
1366 |
+
Efficacy analyses of secondary efficacy endpoints supported benefit of COMIRNATY in preventing severe
|
1367 |
+
COVID-19. Vaccine efficacy against severe COVID-19 is presented only for participants with or without prior
|
1368 |
+
21
|
1369 |
+
|
1370 |
+
SARS-CoV-2 infection (Table 8) as the COVID-19 case counts in participants without prior SARS-CoV-2 infection were the same as those in participants with or without prior SARS-CoV-2 infection in both the
|
1371 |
+
COMIRNATY and placebo groups.
|
1372 |
+
Table 8: Vaccine Efficacy - First Severe COVID-19 Occurrence in Participants 16 Years of Age and
|
1373 |
+
Older With or Without* Prior SARS-CoV-2 Infection Based on Protocol or Centers for Disease Control and Prevention (CDC) Definition From 7 Davs After Dose 2 - Evaluable
|
1374 |
+
Efficacy (7 Days) Population During the Placebo-Controlled Follow-up
|
1375 |
+
Vaccine Efficacy - First Severe COVID-19 Occurrence
|
1376 |
+
COMIRNATY
|
1377 |
+
Placebo
|
1378 |
+
Cases
|
1379 |
+
Cases
|
1380 |
+
n1a
|
1381 |
+
n1a
|
1382 |
+
Surveillance Timel (n2°)
|
1383 |
+
Surveillance Time (n2°
|
1384 |
+
1
|
1385 |
+
21
|
1386 |
+
7 days after Dose 2d
|
1387 |
+
6.353 (20.540)
|
1388 |
+
6.237 (20.629)
|
1389 |
+
Vaccine Efficacy %
|
1390 |
+
(95% CI)
|
1391 |
+
95.3
|
1392 |
+
(70.9, 99.9)
|
1393 |
+
Vaccine Efficacy - First Severe COVID-19 Occurrence Based on CDC Definition
|
1394 |
+
COMIRNATY
|
1395 |
+
Placebo
|
1396 |
+
Cases
|
1397 |
+
Cases
|
1398 |
+
nia
|
1399 |
+
n1a
|
1400 |
+
Vaccine Efficacy %
|
1401 |
+
Surveillance Time® (n2°)
|
1402 |
+
Surveillance Time' (n2°)
|
1403 |
+
(95% CId
|
1404 |
+
31
|
1405 |
+
100
|
1406 |
+
7 davs after Dose 2d
|
1407 |
+
6.345 (20,513)
|
1408 |
+
6.225 (20,593)
|
1409 |
+
(87.6, 100.0)
|
1410 |
+
Note: Confirmed cases were determined by Reverse Transcription-Polymerase Chain Reaction (RT-PCR) and at least 1 symptom consistent with COVID-19 (symptoms included: fever; new or increased cough; new or increased shortness of breath; chills; new or increased muscle pain; new loss of taste or smell, sore throat; diarrhea; vomiting).
|
1411 |
+
* Participants who had no evidence of past SARS-CoV-2 infection (i.e., N-binding antibody [serum] negative at Visit 1 and SARS-CoV-2 not detected by NAAT [nasal swab] at Visits 1 and 2), and had negative NAAT (nasal swab at any unscheduled visit prior to 7 days after Dose 2 were included in the analysis.
|
1412 |
+
† Severe illness from COVID-19 is defined in the protocol as confirmed COVID-19 and presence of at least 1 of the following:
|
1413 |
+
• Clinical signs at rest indicative of severe systemic illness (respiratory rate >30 breaths per minute, heart rate >125 beats per minute, saturation of oxygen <93% on room air at sea level, or ratio of arterial oxygen partial pressure to fractional inspired oxygen <300 mm Hg);
|
1414 |
+
• Respiratory failure [defined as needing high-flow oxygen, noninvasive ventilation, mechanical ventilation or extracorporeal membrane oxygenation (ECMO)];
|
1415 |
+
• Evidence of shock (systolic blood pressure <90 mm Hg, diastolic blood pressure <60 mm Hg, or requiring vasopressors);
|
1416 |
+
• Significant acute renal, hepatic, or neurologic dysfunction;
|
1417 |
+
• Admission to an Intensive Care Unit;
|
1418 |
+
• Death.
|
1419 |
+
‡ Severe illness from COVID-19 as defined by CDC is confirmed COVID-19 and presence of at least 1 of the following:
|
1420 |
+
• Hospitalization;
|
1421 |
+
• Admission to the Intensive Care Unit;
|
1422 |
+
• Intubation or mechanical ventilation;
|
1423 |
+
• Death.
|
1424 |
+
a. n1 = Number of participants meeting the endpoint definition.
|
1425 |
+
b. Total surveillance time in 1000 person-years for the given endpoint across all participants within each group at risk for the endpoint.
|
1426 |
+
Time period for COVID-19 case accrual is from 7 days after Dose 2 to the end of the surveillance period
|
1427 |
+
c. n2 = Number of participants at risk for the endpoint.
|
1428 |
+
d. Two-side confidence interval (CI) for vaccine efficacy is derived based on the Clopper and Pearson method adjusted to the surveillance time.
|
1429 |
+
14.2 Efficacy in Adolescents 12 Through 15 Years of Age
|
1430 |
+
A descriptive efficacy analysis of Study 2 has been performed in 2,260 adolescents 12 through 15 years of age evaluating confirmed COVID-19 cases accrued up to a data cutoff date of September 2, 2021.
|
1431 |
+
22
|
1432 |
+
|
1433 |
+
The vaccine efficacy information in adolescents 12 through 15 years of age is presented in Table 9.
|
1434 |
+
Table 9: Vaccine Efficacy - First COVID-19 Occurrence From 7 Days After Dose 2: Without Evidence
|
1435 |
+
of Infection and With or Without Evidence of Infection Prior to 7 Das After Dose 2 - Blinded Placebo-Controlled Follow-up Period, Adolescents 12 Through 15 Years of Age Evaluable Efficacy (7 Days) Population
|
1436 |
+
First COVID-19 occurrence from 7 days after Dose 2 in adolescents 12 through 15 years of age without evidence of prior SARS-CoV-2 infection*
|
1437 |
+
COMIRNATY
|
1438 |
+
Placebo
|
1439 |
+
Na=1057
|
1440 |
+
Na=1030
|
1441 |
+
Cases
|
1442 |
+
Cases
|
1443 |
+
nIb
|
1444 |
+
n]b
|
1445 |
+
Surveillance Time® (n20)
|
1446 |
+
Surveillance Time (n2d)
|
1447 |
+
Adolescents
|
1448 |
+
28
|
1449 |
+
12 through 15 years of age
|
1450 |
+
0.343 (1043)
|
1451 |
+
0.322 (1019)
|
1452 |
+
Vaccine Efficacy %
|
1453 |
+
(95% CI°
|
1454 |
+
100.0
|
1455 |
+
(86.8, 100.0)
|
1456 |
+
First COVID-19 occurrence from 7 days after Dose 2 in adolescents 12 through 15 years of age with or without evidence of prior SARS-CoV-2 infection
|
1457 |
+
COMIRNATY
|
1458 |
+
Placebo
|
1459 |
+
Na=1119
|
1460 |
+
Na=1109
|
1461 |
+
Cases
|
1462 |
+
Cases
|
1463 |
+
nib
|
1464 |
+
nib
|
1465 |
+
Vaccine Efficacy %
|
1466 |
+
Surveillance Time (n2d)
|
1467 |
+
Surveillance Time (n2d)
|
1468 |
+
(95% CI°
|
1469 |
+
Adolescents
|
1470 |
+
0
|
1471 |
+
30f
|
1472 |
+
100.0
|
1473 |
+
12 through 15 years of age
|
1474 |
+
0.362 (1098)
|
1475 |
+
0.345 (1088)
|
1476 |
+
(87.5, 100.0)
|
1477 |
+
Note: Confirmed cases were determined by Reverse Transcription-Polymerase Chain Reaction (RT-PCR) and at least 1 symptom consistent with COVID-19 (symptoms included: fever; new or increased cough; new or increased shortness of breath; chills; new or increased muscle pain; new loss of taste or smell; sore throat, diarrhea; vomiting).
|
1478 |
+
* Participants who had no evidence of past SARS-CoV-2 infection (i.e., N-binding antibody [serum] negative at Visit 1 and SARS-CoV-2 not detected by NAAT (nasal swab] at Visits 1 and 2), and had negative NAAT (nasal swab) at any unscheduled visit prior to 7 davs after Dose 2 were included in the analysis.
|
1479 |
+
a. N= Number of participants in the specified group.
|
1480 |
+
b. n1 = Number of participants meeting the endpoint definition.
|
1481 |
+
c. Total surveillance time in 1000 person-years for the given endpoint across all participants within each group at risk for the endpoint.
|
1482 |
+
Time period for COVID-19 case accrual is from 7 days after Dose 2 to the end of the surveillance period.
|
1483 |
+
d. n2 = Number of participants at risk for the endpoint.
|
1484 |
+
e. Two-side confidence interval (CI) for vaccine efficacy is derived based on the Clopper and Pearson method adjusted for surveillance time.
|
1485 |
+
f.
|
1486 |
+
The only SARS-CoV-2 variant of concern identified from COVID-19 cases in this age group from this data cutoff was B. 1.1.7
|
1487 |
+
(Alpha).
|
1488 |
+
14.3 Immunogenicity in Adolescents 12 Through 15 Years of Age
|
1489 |
+
In Study 2, an analysis of SARS-CoV-2 50% neutralizing titers (NT50) 1 month after Dose 2 in a randomly selected subset of participants demonstrated non-inferior immune responses (within 1.5-fold) comparing adolescents 12 through 15 years of age to participants 16 through 25 years of age who had no serological or virological evidence of past SARS-CoV-2 infection up to 1 month after Dose 2 (Table 10).
|
1490 |
+
23
|
1491 |
+
|
1492 |
+
Table 10: Summary of Geometric Mean Ratio for 50% Neutralizing Titer - Comparison of Adolescents
|
1493 |
+
12 Through 15 Years of Age to Participants 16 Through 25 Years of Age (Immunogenicity
|
1494 |
+
Subset) - Participants Without Evidence of Infection up to 1 Month After Dose 2 - Dose 2
|
1495 |
+
Evaluable Immunogenicity Population
|
1496 |
+
COMIRNATY
|
1497 |
+
12 Through 15 Years
|
1498 |
+
16 Through 25 Years
|
1499 |
+
na=190
|
1500 |
+
na=170
|
1501 |
+
Time
|
1502 |
+
Point
|
1503 |
+
GMT
|
1504 |
+
(95% CI°
|
1505 |
+
GMT
|
1506 |
+
(95% CI°
|
1507 |
+
12 Through 15 Years/
|
1508 |
+
16 Through 25 Years
|
1509 |
+
Met
|
1510 |
+
Noninferiority
|
1511 |
+
GMRd
|
1512 |
+
(95% CId)
|
1513 |
+
Objective
|
1514 |
+
(YIN)
|
1515 |
+
Assay
|
1516 |
+
SARS-CoV-2 neutralization
|
1517 |
+
1 month
|
1518 |
+
assay - NT50
|
1519 |
+
after
|
1520 |
+
(titer)f
|
1521 |
+
1253.6
|
1522 |
+
708.1
|
1523 |
+
1.77
|
1524 |
+
Dose 2
|
1525 |
+
(1117.7, 1406.1)
|
1526 |
+
(625.9, 801.1)
|
1527 |
+
(1.50, 2.09)
|
1528 |
+
Y
|
1529 |
+
Abbreviations: CI = confidence interval; GMR = geometric mean ratio; GMT = geometric mean titer; LLOQ = lower limit of
|
1530 |
+
quantitation; NAAT = nucleic-acid amplification test; NT50 = 50% neutralizing tier; SARS-CoV-2 = severe acute respiratory
|
1531 |
+
svndrome coronavirus 2.
|
1532 |
+
Note: Participants who had no serological or virological evidence (up to 1 month after receipt of the last dose) of past SARS-CoV-2 infection (i.e., N-binding antibody [serum] negative at Visit 1 and SARS-CoV-2 not detected by NAAT [nasal swab] at Visits 1 and
|
1533 |
+
2), and had negative NAAT (nasal swab) at any unscheduled visit up to 1 month after Dose 2 were included in the analysis.
|
1534 |
+
a. n= Number of participants with valid and determinate assay results for the specified assay at the given dose/sampling time point
|
1535 |
+
b. Protocol-specified timing for blood sample collection.
|
1536 |
+
c. GMTs and 2-sided 95% CIs were calculated by exponentiating the mean logarithm of the titers and the corresponding CIs (based on the Student t distribution). Assay results below the LLOQ were set to 0.5 × LLOQ.
|
1537 |
+
d. GMRs and 2-sided 95% CIs were calculated by exponentiating the mean difference of the logarithms of the titers (Group 1 [12 through 15 years of age] - Group 2 [16 through 25 years of age]) and the corresponding CI (based on the Student t distribution).
|
1538 |
+
e. Noninferiority is declared if the lower bound of the 2-sided 95% CI for the GMR is greater than 0.67.
|
1539 |
+
f. SARS-CoV-2 NT50 were determined using the SARS-CoV-2 mNeonGreen Virus Microneutralization Assay. The assay uses a fluorescent reporter virus derived from the USA WA1/2020 strain and virus neutralization is read on Vero cell monolayers. The sample NT50 is defined as the reciprocal serum dilution at which 50% of the virus is neutralized.
|
1540 |
+
16
|
1541 |
+
HOW SUPPLIED/STORAGE AND HANDLING
|
1542 |
+
COMIRNATY Suspension for Intramuscular Injection, multiple dose vials with purple caps and labels with purple borders are supplied in a carton containing 25 multiple dose vials (NDC 0069-1000-03) or 195 multiple dose vials (NDC 0069-1000-02). A 0.9% Sodium Chloride Injection, US diluent is provided but shipped separately, and should be stored at controlled room temperature 20°C to 25°C (68°F to 77°F) [see USP Controlled Room Temperature]. The provided 0.9% Sodium Chloride Injection, US diluent will be supplied either as cartons of 10 mL single-use vials manufactured by Hospira, Inc (NDC 0409-4888-10), or 2 mI single-use vials manufactured by Fresenius Kabi USA, LLC (NDC 63323-186-02).
|
1543 |
+
After dilution, 1 vial contains 6 doses of 0.3 mL.
|
1544 |
+
During storage, minimize exposure to room light, and avoid exposure to direct sunlight and ultraviolet light.
|
1545 |
+
Do not refreeze thawed vials.
|
1546 |
+
Frozen Vials Prior to Use
|
1547 |
+
Cartons of COMIRNATY multiple dose vials with purple caps and labels with purple borders arrive in thermal containers with dry ice. Once received, remove the vial cartons immediately from the thermal container and
|
1548 |
+
24
|
1549 |
+
|
1550 |
+
preferably store in an ultra-low temperature freezer between -90°C to -60°C (-130°F to -76°F) until the expiry date printed on the label.
|
1551 |
+
Alternatively, vials may be stored at -25°C to - 15°C (-13°F to 5°F) for up to 2 weeks. Vials must be kept frozen and protected from light, in the original cartons, until ready to use. Vials stored at -25°C to - 15°C (-13°F to 5°F) for up to 2 weeks may be returned 1 time to the recommended storage condition of -90°C to -60°C (-130°F to -76°F). Total cumulative time the vials are stored at -25°C to -15°C (-13°F to 5°F) should be tracked and should not exceed 2 weeks.
|
1552 |
+
If an ultra-low temperature freezer is not available, the thermal container in which COMIRNATY arrives may be used as temporary storage when consistently re-filled to the top of the container with dry ice. Refer to the re-icing guidelines packed in the original thermal container for instructions regarding the use of the thermal container for temporary storage. The thermal container maintains a temperature range of -90°C to -60°C (-130°F
|
1553 |
+
to -76°F). Storage of the vials between -96°C to -60°C (-141°F to -76°F) is not considered an excursion from the recommended storage condition.
|
1554 |
+
Transportation of Frozen Vials
|
1555 |
+
If local redistribution is needed and full cartons containing vials cannot be transported at -90°C to -60°C (-130°F to -76°F), vials may be transported at -25°C to -15°C (-13°F to 5°F). Any hours used for transport at -25°C to -15°C (-139F to 5°F) count against the 2-week limit for storage at -25°C to -15°C (-13°F to 5°F).
|
1556 |
+
Frozen vials transported at -25°C to -15°C (-13°F to 5°F) may be returned 1 time to the recommended storage condition of -90°C to -60°C (-130°F to -76°F).
|
1557 |
+
Thawed Vials Before Dilution
|
1558 |
+
Thawed Under Refrigeration
|
1559 |
+
Thaw and then store undiluted vials in the refrigerator 2°C to 8°C (35°F to 46°F)] for up to 1 month. A carton of 25 vials or 195 vials may take up to 2 or 3 hours, respectively, to thaw in the refrigerator, whereas a fewer number of vials will thaw in less time.
|
1560 |
+
Thawed at Room Temperature
|
1561 |
+
For immediate use, thaw undiluted vials at room temperature [up to 25°C (77°F)] for 30 minutes. Thawed vials can be handled in room light conditions.
|
1562 |
+
Vials must reach room temperature before dilution.
|
1563 |
+
Undiluted vials may be stored at room temperature for no more than 2 hours.
|
1564 |
+
Transportation of Thawed Vials
|
1565 |
+
Available data support transportation of 1 or more thawed vials at 2°C to 8°C (35°F to 46°F) for up to 12 hours.
|
1566 |
+
Vials After Dilution
|
1567 |
+
After dilution, store vials between 2°C to 25°C (35°F to 77°F) and use within 6 hours from the time of dilution.
|
1568 |
+
During storage, minimize exposure to room light, and avoid exposure to direct sunlight and ultraviolet light.
|
1569 |
+
Any vaccine remaining in vials must be discarded after 6 hours. Do not refreeze.
|
1570 |
+
25
|
1571 |
+
|
1572 |
+
17
|
1573 |
+
PATIENT COUNSELING INFORMATION
|
1574 |
+
Inform vaccine recipient of the potential benefits and risks of vaccination with COMIRNATY.
|
1575 |
+
Inform vaccine recipient of the importance of completing the 2 dose vaccination series.
|
1576 |
+
There is a pregnancy exposure registry for COMIRNATY. Encourage individuals exposed to COMIRNATY around the time of conception or during pregnancy to register by visiting https://mothertobaby.org/ongoing-study/covid19-vaccines/
|
1577 |
+
Advise vaccine recipient to report any adverse events to their healthcare provider or to the Vaccine Adverse Event Reporting System at 1-800-822-7967 and www.vaers.hhs.gov.
|
1578 |
+
Prior to administering the vaccine, give the vaccine recipient the Vaccine Information Fact Sheet for Recipients and Caregivers about COMIRNATY (COVID-19 Vaccine, mRNA) and the Pfizer-BioNTech COVID-19
|
1579 |
+
Vaccine to Prevent Coronavirus Disease 2019 (COVID-19) for Use in Individuals 12 Years of Age and Older.
|
1580 |
+
The Vaccine Information Fact Sheet for Recipients and Caregivers is available at www.cvdvaccine-us.com.
|
1581 |
+
This product's labeling may have been updated. For the most recent prescribing information, please visit https://dailymed.nlm.nih.gov/dailymed/.
|
1582 |
+
BIONTECH
|
1583 |
+
Manufactured for
|
1584 |
+
BioNTech Manufacturing GmbH
|
1585 |
+
An der Goldgrube 12
|
1586 |
+
55131 Mainz, Germany
|
1587 |
+
& Pfizer
|
1588 |
+
Manufactured by
|
1589 |
+
Pfizer Inc., New York, NY 10017
|
1590 |
+
LAB-1448-4.0
|
1591 |
+
US Govt. License No. 2229
|
1592 |
+
26
|
1593 |
+
|
docs/Pharmacovigilance Plan Review Memo - COMIRNATY.txt
ADDED
@@ -0,0 +1,697 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Department of Health and Human Services
|
2 |
+
Food and Drug Administration (FDA)
|
3 |
+
Center for Biologics Evaluation and Research (CBER)
|
4 |
+
Office of Biostatistics and Epidemiology (OBE)
|
5 |
+
Division of Epidemiology (DE)
|
6 |
+
PHARMACOVIGILANCE PLAN REVIEW MEMORANDUM
|
7 |
+
From:
|
8 |
+
To:
|
9 |
+
Through:
|
10 |
+
Subiect:
|
11 |
+
Sponsor:
|
12 |
+
Product:
|
13 |
+
BLA Number:
|
14 |
+
Proposed Indication:
|
15 |
+
Submission Date:
|
16 |
+
Action Due Date:
|
17 |
+
Deborah L. Thompson, MD, MSPH
|
18 |
+
Medical Officer, Analytic Epidemiology Branch (AEB) DE, OBE, CBER, FDA
|
19 |
+
Ramachandra Naik, PhD Chair, Review Committee
|
20 |
+
Office of Vaccines Research and Review (OVRR), CBER, FDA
|
21 |
+
Manette Niu, MD
|
22 |
+
Branch Chief, AEB
|
23 |
+
DE, OBE, CBER, FDA
|
24 |
+
Narayan Nair, MD
|
25 |
+
Division Director, DE OBE, CBER, FDA
|
26 |
+
Review of Pharmacovigilance Plan
|
27 |
+
Pfizer
|
28 |
+
BNT162b2 (COVID-19 Vaccine)
|
29 |
+
125742/0
|
30 |
+
Active immunization to prevent COVID-19 disease caused by SARS-CoV-2 in individuals ≥16 years of age.
|
31 |
+
May 18, 2021
|
32 |
+
January 16, 2022
|
33 |
+
|
34 |
+
1 Objective and Scope
|
35 |
+
The purpose of this review is to assess the adequacy of the sponsor's proposed pharmacovigilance plan (PVP) submitted under the original BLA 125742/0 for post-marketing safety monitoring for BNT162b2 (COVID-19 vaccine) and to identify potential safety issues associated with the use of BNT162b2 that may need to be addressed through additional pharmacovigilance activities including safety-related studies such as Post-Marketing Requirements (PMs) and/or Post-Marketing Commitments (PMCs) or a Risk Evaluation and Mitigation Strategy (REMS).
|
36 |
+
2 Product Information
|
37 |
+
2.1 Product Description
|
38 |
+
BNT162b2 contains a nucleoside-modified messenger RNA (modRNA) that encodes the viral spike (S) glycoprotein of SARS-CoV-2. Each vial of vaccine is diluted with 1.8 mL of sterile 0.9% Sodium Chloride Injection, USP prior to use to form the vaccine.
|
39 |
+
Each dose includes the following ingredients: lipids (14-
|
40 |
+
hydroxybutyl)azanediyl)bis(hexane-6,1-diyl)bis(2-hexyldecanoate),2[(polyethylene glycol)-2000]-N,N-ditetradecylacetamide, 1,2-distearoyl-sn-glycero-3-phosphocholine, and cholesterol), potassium chloride, monobasic potassium phosphate, sodium chloride, dibasic sodium phosphate dihydrate, and sucrose.
|
41 |
+
2.2 Authorized Indication and Dosing Regimen
|
42 |
+
The Pfizer-BioNTech COVID-19 Vaccine is currently authorized for use under an Emergency Use Authorization (EUA) for active immunization to prevent coronavirus disease 2019 (COVID-19) caused by severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2) in individuals >12 years of age. The vaccine is administered intramuscularly as a series of two doses (0.3 mL each) given three weeks apart.
|
43 |
+
2.3 Proposed Product Indication and Dosing Regimen
|
44 |
+
The proposed indication for BNT162b2 is active immunization to prevent COVID-19 disease caused by SARS-CoV-2 in individuals >16 years of age. The vaccine is administered intramuscularly as a series of two doses (0.3 mL each) given three weeks apart.
|
45 |
+
3 Materials Reviewed
|
46 |
+
• Pharmacovigilance Plan, Version 1.0 (ST 125742/0.1, Module 1.16.1, dated May 17, 2021; received May 18, 2021)
|
47 |
+
• Pharmacovigilance Plan, Version 1.1 (ST 125742/0.20, sequence 0021,
|
48 |
+
Module 1.16.1, dated July 28, 2021; received July 29, 2021)
|
49 |
+
2
|
50 |
+
|
51 |
+
• Cumulative Analysis of Post-authorization Adverse Event Reports (ST
|
52 |
+
125742/0, Module 5.3.6, received May 6, 2021)
|
53 |
+
Summary of Clinical Safety (STN 125742/0, Module 2.7.4; received May 6, 2021)
|
54 |
+
• Draft Labeling Text (STN 125742/0.1, Module 1.14; received May 18, 2021)
|
55 |
+
• Post-authorization safety surveillance study protocols linked in the PVP
|
56 |
+
• Sponsor's IR responses
|
57 |
+
• VAERS database and data mining
|
58 |
+
4 Summary of Pertinent Regulatory History and Prior Marketed Experience
|
59 |
+
Pertinent regulatory history is shown in Table 1. BNT162b2 has received temporary authorization for emergency supply in 28 countries and conditional marketing authorization in 39 countries. As of August 4, 2021, over 194 million doses of BNT16b2 have been administered to over 88 million individuals in the U.S. under the EUA. Per the sponsor's Summary Monthly Safety Report (ST 19736.409), approximately (b) (4) doses of BNT162b2 have been shipped worldwide from December 1, 2020
|
60 |
+
through June 30, 2021, which corresponds to approximately 757,863,718 estimated doses administered.
|
61 |
+
Table 1: Pertinent Regulatory History
|
62 |
+
Date
|
63 |
+
April 29, 2020
|
64 |
+
July 7, 2020
|
65 |
+
December 11, 2020
|
66 |
+
May 10, 2021
|
67 |
+
May 18, 2021
|
68 |
+
June 25, 2021
|
69 |
+
Regulatory Action
|
70 |
+
IND for BNT162b2 became effective
|
71 |
+
Fast Track Designation granted for individuals 18 years of age and older
|
72 |
+
Emergency Use Authorization (EUA 27034) granted for active immunization to prevent COVID-19 in individuals
|
73 |
+
16 years of age and older
|
74 |
+
FDA re-issued EUA letter to expand authorization for use in individuals 12 through 15 years of age with addition of following warning in Fact Sheet for Healthcare Providers: "Syncope (fainting) may occur in association with administration of injectable vaccines, in particular adolescents. Procedures should be in place to avoid injury from fainting."
|
75 |
+
Final roll of BLA 125742/0 submitted
|
76 |
+
EUA Fact Sheet revised to add Warnings for myocarditis and pericarditis following use of Pfizer-BioNTech
|
77 |
+
COVID-19 Vaccine
|
78 |
+
|
79 |
+
5 Summary of Sponsor's Safety Database
|
80 |
+
5.1 Clinical Studies
|
81 |
+
There are two clinical studies for BNT1622 which are summarized in Table 2.
|
82 |
+
Table 2: Summary of Clinical Studies for BNT162b2*
|
83 |
+
Study
|
84 |
+
Description
|
85 |
+
Number of
|
86 |
+
Data cut-off date
|
87 |
+
subiects randomized
|
88 |
+
216
|
89 |
+
October 23, 2020
|
90 |
+
BNT162-01 Phase 1/2 first in human dose
|
91 |
+
finding study, open-label, non-randomized, included two age cohorts: 18-55 years and 56-85 years; BNT162b2 was given at 5 dose levels (1, 3, 10, 20, 30 Mg)
|
92 |
+
C4591001 (BNT162-02)
|
93 |
+
Phase 1/2/3 randomized, placebo-controlled, observer blind study for safety, immunogenicity, and efficacy
|
94 |
+
Phase 1: two age cohorts: 18-55 years and 65-85 years; 3 dose levels for BNT162b2: 10, 20, and
|
95 |
+
30 Mg, randomized 4:1 to receive active vaccine or placebo; long term follow-up (LTFU) for AEs/SAEs for BNT162b2 30 ug group only
|
96 |
+
Phase 2: two age cohorts: 18-55
|
97 |
+
years and 56-85 years; BNT162b2 30 ug dose; randomized 1:1 to receive active vaccine or placebo
|
98 |
+
Phase 3: three age cohorts: 12-15,
|
99 |
+
16-55 years and >55 years;
|
100 |
+
BNT162b2 30 Mg dose; randomized
|
101 |
+
1:1 to receive active vaccine or placebo
|
102 |
+
195 (30 in
|
103 |
+
LTFU)
|
104 |
+
August 24, 2020
|
105 |
+
(March 13, 2021
|
106 |
+
for LTFU)
|
107 |
+
360
|
108 |
+
September 2,
|
109 |
+
2020
|
110 |
+
43,847
|
111 |
+
(includes
|
112 |
+
360
|
113 |
+
subiects from Phase
|
114 |
+
2)
|
115 |
+
March 13, 2021
|
116 |
+
|
117 |
+
*Adapted from sponsor's Summary of Clinical Safety, Table 1.
|
118 |
+
Study BNT162-01
|
119 |
+
Study BNT162b2 is an ongoing, first-in-human, open-label, non-randomized Phase 1/2 dose finding and cohort expansion (for dose levels selected during dose finding) study conducted in Germany (not under U.S. IND) among healthy adults age 18 to 85 years of age. Four vaccine candidates from three different RNA platforms were tested. Key safety assessments included physical examinations, electrocardiograms, clinical laboratory tests, solicited local and systemic reactions (recorded in diaries for seven days post-dose), SARS-CoV-2 testing, adverse events (AEs), and serious adverse events (SAEs). Unsolicited treatment emergent As (TEEs) were recorded for 28 days post-second dose. Adverse events of special interest (AESI) included enhanced respiratory disease or flu-like symptomatology that did not resolve after seven days.
|
120 |
+
Study C4591001
|
121 |
+
Study C4591001 (IND 019736) is a Phase 1/2/3 randomized, placebo-controlled, observer blind study for safety, immunogenicity, and efficacy. Participants are followed for 24 months. Participants ≥16 years who originally received placebo (i.e., normal saline) and became eligible for receipt of BNT162b2 were offered BNT162b2 in a phased process as part of the study.
|
122 |
+
Phase 1 evaluated two vaccine candidates (BNT162b1 and BNT162b2) and involved dose-level finding (three dose levels for BNT162b2: 10, 20, and 30 g) among two age cohorts of healthy adults (18-55 and 65-85 years; n=195). Subjects were randomized
|
123 |
+
4:1 to receive active vaccine or placebo. Reactogenicity (i.e., local and systemic reactions) was assessed for up to seven days after each dose, As were assessed from dose 1 through 1-month after the last dose, and SAEs were assessed from dose 1 to six months after the last dose. Long-term follow-up for As and SAEs was conducted for the BNT162b2 30 g cohort (n=30) from 1-month post-second dose to the unblinding date (approximately 6-months post-second dose).
|
124 |
+
Phase 2/3 was conducted to define the safety profile of BNT162b2 and involved administration of BNT1622 (30 ug dose) to individuals in three age cohorts (12-15 years, 16-55 years and >55 years; n=43,847). Phase 2/3 participants were those judged by investigators to be at higher risk for acquiring COVID-19 (e.g., individuals who use mass transportation or frontline essential workers). Subjects were randomized 1:1 to receive active vaccine or placebo. Phase 2 was conducted to confirm the safety profile seen in Phase 1 and included the first 360 randomized subiects; reactogenicity was assessed for up to seven days after each dose and AEs/SAEs were assessed from dose 1 to 7-days post-second dose. Phase 3 assessed reactogenicity in a subset of subjects (n=9,839) for up to seven days after each dose. Adverse events and SAEs were assessed in all subjects for 1-month post-second dose and up to the unblinding
|
125 |
+
|
126 |
+
date. In addition, open-label AEs/SAEs were assessed among participants originally randomized to BNT162b2 (n=20,309) from the date of unblinding to the data cut-off (March 13, 2021). Open-label AEs/SAEs were assessed among participants who were originally randomized to placebo but were vaccinated with BNT162b2 after treatment disclosure (n=19,525) from the date of BNT1622 vaccination to the data-cutoff (March 13, 2021). No AEs of special interest were defined for Study C4591001.
|
127 |
+
5.2 Adverse Events
|
128 |
+
In Study BNT162-01 most solicited local and systemic reactions were mild or moderate in severity and were short-lived after dosing. Most unsolicited As were also mild to moderate in severity and all resolved; there were no unanticipated safety findings.
|
129 |
+
There were no AESs, deaths, or treated-related SAEs reported among participants who received BNT162b2 in Study BNT162-01. Similarly, in Phase 1 and 2 of Study C4591001, reactogenicity was mostly mild to moderate and short-lived after dosing; the AE profile did not suggest any serious safety concerns. There were no treatment-related SAEs or deaths.
|
130 |
+
In Phase 3 of Study C4591001, solicited local reactions occurred more commonly in the BNT162b2 group as compared with the placebo group; the majority of local reactions were mild or moderate in severity after both first and second doses and in both younger (<55 years) and older age groups (>55 years. Solicited systemic events and use of antipyretic/pain medication were generally reported less frequently in the placebo group as compared with the BNT162b2 group for both age groups and doses, with the exception of vomiting and diarrhea which were reported at similar frequencies between BNT162b2 and placebo groups. The majority of solicited systemic events were mild or moderate in severity. Solicited systemic events occurred more frequently after Dose 2 of BNT162b2 as compared with Dose 1 in both younger and older age groups.
|
131 |
+
Reactogenicity As were generally milder and less frequent in the older age group as compared with the younger age group.
|
132 |
+
In the blinded placebo-controlled follow-up period (n=43,847), 30.2% of BNT162b2 recipients and 13.9% of placebo recipients had any AE from Dose 1 to 1-month after Dose 2 and 0.6% and 0.5%, respectively, had an SAE; there were three deaths in the BNT162b2 group and five deaths in the placebo group. The most frequently reported AEs were reactogenicity events including injection site pain (13.3% BNT1622 group vs 1.8% placebo group), pyrexia (6.9% vs 0.4%), fatigue (6.7% vs 1.7%), chills (6.2% vS
|
133 |
+
0.5%), headache (6.1% vs 1.9%), myalgia (5.7% vs 0.8%), pain (2.9% vs 0.3%), and arthralgia (1.2% vs 0.5%). Among those in the BNT1622 group, the overall AE frequencies were higher in the younger age group (32.6%) as compared with the older age group (26.7%).
|
134 |
+
From Dose 1 to the unblinding date, the As with the highest incidence rates were consistent with the AEs in the Dose 1 to 1-month after Dose 2 analvsis. There were also similar incidence rates of SAEs (3.2 per 100 person-years for BNT162b2 group vs 3.3 per 100 person-years for placebo group) and deaths among BNT162b2 and placebo
|
135 |
+
6
|
136 |
+
|
137 |
+
recipients (0.2 per 100 person-years for both groups; 15 vs 14 deaths, respectively).
|
138 |
+
There were four related-SAEs in the BNT162b2 group (one each of lymphadenopathy, shoulder injury related to vaccine administration, ventricular arrhythmia, and paresthesia of right leg) and one related-SAE in the placebo group (psoriatic arthropathy). The 15 deaths in BNT162b2 group were due to: cardiac arrest (n=4), arteriosclerosis (n=2), and one each of COVID-19 pneumonia, cardiac failure congestive, cardiorespiratory arrest, chronic obstructive pulmonary disease (COPD), emphysematous cholecystitis, hypertensive heart disease, metastatic lung cancer, sepsis, septic shock, shigella sepsis, and an unevaluable event; multiple contributing causes of death could be reported for each subject. The 14 deaths in the placebo group were due to COVID-19 (n=2), multiple organ dysfunction syndrome (n=2), myocardial infarction (n=2), pneumonia (n=2), lacking specific cause (n=2; one "death" and one "missing") and one each of acute respiratory failure, aortic rupture, metastatic biliary cancer, cardiac arrest, cardiorespiratory arrest, dementia, hemorrhagic stroke, liver metastases, and overdose.
|
139 |
+
None of the deaths during the Dose 1 to unblinding date time period were assessed by investigators as related to the study intervention.
|
140 |
+
From the unblinding date to the data cut-off, the incidence rates of AEs were markedly reduced relative to the AEs reported from Dose 1 to the unblinding date among the original BNT162b2 recipients (n=21,926) (8.8/100,000 person-years vs 83.2/100,000 person-years, respectively). There were 55 SAEs during this time period among the original BNT162b2 recipients, including one related-SAE of myocardial infarction (participant in younger age group with no past medical history [PMH1, onset 71-days after Dose 2, resolved same day). There were three deaths among the original BNT162b2 participants (all in the older age group; one each due to road traffic accident, lung metastases, and myocardial infarction); none of the deaths were assessed by investigators as related to study intervention.
|
141 |
+
Among the 19,525 participants who originally received placebo and then received BNT162b2 after unblinding, the most frequently reported As overall were related to reactogenicity and were consistent with As reported among the group that was originally randomized to receive BNT162b2. After vaccination with BNT162b2, there was one related-SAE of anaphylactoid reaction in a patient with an ongoing medical history of drug hypersensitivity and food and seasonal allergies (onset 2-days post-1st dose of BNT162b2; treated with self-administered epinephrine pen and resolved same day). Two deaths occurred following vaccination with BNT162b2 (both in the older age group; one each due to cardiorespiratory arrest and completed suicide), neither of which were assessed by investigators as related to the study intervention.
|
142 |
+
The sponsor also provided a review of As of interest requested by FDA (hypersensitivity/anaphylaxis, Bell's palsy/facial paralysis, lymphadenopathy, and appendicitis) and the Center for Disease Control and Prevention's (CDC) AESI list for COVID-19 vaccines. This review was focused on the Dose 1 to unblinding time period.
|
143 |
+
For hypersensitivity, there was a higher number and percentage of participants in the BNT162b2 vs placebo groups (182 [0.83%] vs 161 [0.73%], respectively), which was mainly due to skin and subcutaneous tissue disorders (134 [0.61%] vs 119 [0.54%]),
|
144 |
+
|
145 |
+
including rash (62 [0.28%] vs 52 (0.24%]), urticaria (18 [0.08%] vs 15 [0.07%]), rash pruritic (8 [0.04%] vs 6 [0.03%]), rash maculo-papular (7 [0.03%] vs 4 [0.02%]), and eczema (7 [0.03%] vs 3 [0.01%]). There were three hypersensitivity SAEs during the blinded placebo-controlled follow-up period: two in the BNT162b2 group (anaphylactic reaction following bee sting and drug hypersensitivity to an antibiotic) and one in the placebo group (anaphylactic shock due to an ant bite; none were considered by investigators as related to the study intervention. Among the original placebo group participants who then received BNT1622 after unblinding there was one anaphvlactoid reaction (assessed as related; reviewed in section 5.2 of this memorandum). For Bell's palsy, there were four cases in the BNT162b2 group (two of which were considered related by investigators) and two in the placebo group during the blinded placebo-controlled follow-up period. Among those who originally received placebo and then received BNT162b2 after unblinding, there were three participants who experienced facial paralysis (all considered related by investigators). Lymphadenopathy was reported in 87 (1.0 per 100 person-years [P]) participants in the BNT162b2 group compared to 8 (0.2 per 100 PY) participants in the placebo group. One lymphadenopathy event (right axilla, normal lymph node biopsy) was considered a related-SAE in the BNT162b2 group and resolved within 66 days. Appendicitis was reported for a total of 15 BNT162b2 participants, including one case of perforated appendicitis, as compared with 12 total reports of appendicitis in the placebo group, including two cases of complicated appendicitis, and one case of perforated appendicitis. All appendicitis cases were reported as SAEs and none were considered related to study intervention by investigators. Among CDC-defined AESIs that occurred from Dose 1 to unblinding in the Phase 2/3 study, the overall number and percentage of participants with any unsolicited AESIs within selected SMQs were similar between the BNT162b2 (224 [1.02%]) and placebo groups (217 [0.99%]); most individual AESI categories were similar between BNT162b2 and placebo groups (or higher in the placebo group) with the exception of hypersensitivity which is discussed above.
|
146 |
+
Reviewer comment: The sponsor submitted a revised PVP (Version 1.1) on July 29, 2021 which added the important identified risks of myocarditis and pericarditis and also included clinical trial data for myocarditis and pericarditis through June 18, 2021. The revised PVP indicated that among participants age 16 years and older two SAE cases of pericarditis were found from Phase 3 clinical trial C4591001; both SAEs were deemed by study investigators as not related to study treatment. There were no clinical trial reports of myocarditis as an SAE. Review of the sponsor's safety data did not identify new safety concerns that required further amending the sponsor's PVP.
|
147 |
+
5.3 Sponsor's Cumulative Analysis of Post-Authorization Adverse Event Reports
|
148 |
+
Cumulative post-authorization safety data, through February 28, 2021:
|
149 |
+
The sponsor provided a summary of cumulative post-authorization safety data, including U.S. and foreign post-authorization adverse event reports received through February 28, 2021. The safety database includes As reported spontaneously, by health authorities, and from published medical literature, Pfizer-sponsored marketing
|
150 |
+
|
151 |
+
programs, non-interventional studies, and serious As reported from clinical studies regardless of causality assessment.
|
152 |
+
There was a total of 42,086 AE reports containing 158,893 events. Most reports were from the U.S. (13,739), followed by the United Kingdom (13,404), Italy (2,578),
|
153 |
+
Germany (1,973), France (1,506), Portugal (866), and Spain (756); the remaining 7,324 reports were from 56 other countries. Most reports were in females (29,914 (71.1%) reports); there were 9,182 (21.8%) reports for males and 2,990 (7.1 %) with no sex data.
|
154 |
+
Reports by age groups were as follows: <17 years (n=175), 18-30 years (n=4,953), 31-50 years (n=13,886), 51-64 years (n=7,884), 65-74 years (n=3,098), ≥75 years (n=5,214), and unknown (n=6,876). The most commonly reported MedDRA Preferred Terms (PTs) occurring ≥10% were headache (24.1%), pyrexia (18.2%), fatigue (17.4%), chills (13.1%), vaccination site pain (12.3%), nausea (12.3%), and myalgia (11.7%).
|
155 |
+
The sponsor included a summary of post-authorization A reports for each safety concern listed in the PVP (see Section 7 of this memorandum for PVP summar). For anaphylaxis (important identified risk), there were 1,002 cases that met the Brighton Collaboration (BC definition level 1 (highest level of certainty) through 4 (reported event with insufficient evidence to meet case definition), including nine fatal events. The sponsor concluded that evaluation of these cases did not reveal any significant new safety information and that anaphylaxis and non-anaphylactic hypersensitivity reactions are appropriately described in the product labeling (Sections 4 Contraindications, 5.1
|
156 |
+
Management of Acute Allergic Reactions, and 6 Adverse Reactions of the proposed USPI). In addition, the sponsor did not identify any cases definitively considered to be vaccine-associated enhanced disease (VAED) or vaccine-associated enhanced respiratory disease (VAERD) and concluded that VAED/VAERD remains a theoretical risk for the vaccine (i.e., important potential risk).
|
157 |
+
Among "missing information" categories in the PVP, there were 413 reports (84 serious and 329 non-serious) involving use in pregnancy and lactation. There were 270
|
158 |
+
maternal cases and four fetus/infant cases. Pregnancy outcomes were reported for 32 cases (including twins who each had two different outcomes reported and included spontaneous abortion (n=23); outcome pending (n=5); premature birth with neonatal death, spontaneous abortion with intrauterine death (2 each); spontaneous abortion with neonatal death and normal outcome (1 each). Among mothers, 124 cases (75 serious and 49 non-serious) were pregnancy-related PTs: spontaneous abortion (n=25); uterine contraction during pregnancy, premature rupture of membranes, abortion, abortion missed, and fetal death (1 each). The four fetus/infant cases reported the following PTs: exposure during pregnancy, fetal growth restriction, maternal exposure during pregnancy, premature baby (2 each); and death neonatal (n=1). There were 133 reports in breastfed infants, including 17 cases (3 serious and 14 non-serious) that reported clinical events that occurred in an infant/child exposed to vaccine via breastfeeding: pyrexia (n=5); rash (n=4); infant irritability (n=3); infantile vomiting, diarrhea, insomnia, and illness (2 each); poor feeding infant, lethargy, abdominal discomfort, vomiting, allergy to vaccine, increased appetite, anxiety, crying, poor quality sleep, eructation, agitation, pain, and urticaria (1 each).
|
159 |
+
C
|
160 |
+
|
161 |
+
There were 34 reports (24 serious and 10 non-serious) involving 132 As indicating use in pediatric individuals <12 years of age. Events reported more than once included product administered to patient of inappropriate age (n=27); off label use (n=11); pyrexia (n=6); product use issue (n=5); fatigue, headache, nausea (4 each); vaccination site pain (n=3); upper abdominal pain, COVID-19, facial paralysis, lymphadenopathy, malaise, pruritis, and swelling (2 each).
|
162 |
+
There were 1,665 reports concerning vaccine effectiveness (1,649 drug ineffective and 16 vaccination failure). Among the 16 cases of vaccination failure, eight individuals had onset of COVID-19 svmptoms within 7-13 days post-2nd vaccine dose and six individuals had onset within 15-29 das post-2nd dose. Six reports were asymptomatic COVID-19 infections. For each concern listed in the PVP, the sponsor concluded that no new safety signals were identified in post-authorization AE data.
|
163 |
+
The sponsor also evaluated As in the following ASI categories: anaphylactic reactions, cardiovascular, COVID-19, dermatological, hematological, hepatic, facial paralysis, immune-mediated/autoimmune, musculoskeletal, neurological (including demyelination), other (e.g., herpes viral infections) pregnancy-related, renal, respiratory, thromboembolic events, stroke, and vasculitic events, and concluded that the cumulative case review did not raise new safety issues.
|
164 |
+
Finally, the sponsor provided information on reports potentially indicative of medication errors. There were 2,056 reports of medication errors, with or without associated AEs.
|
165 |
+
Of these, there were seven death reports; and 1,569 (76.3%) reports were medically confirmed. The sponsor indicated that all medication errors reported in death reports were assessed as non-serious events with unknown outcomes and concluded that based on available information, including causes of death, the relationship between the medication error and the death is weak. Overall, most reports (n=1,371, 66.7%) included only medication errors without any associated clinical adverse events (e.g., poor quality product administered, product temperature excursion issue, underdose, circumstance or information capable of leading to medication error). In 685 reports, there were AEs co-reported; the most frequent As were headache (n=187), pyrexia (n=161), fatigue (n=135), chills (n=127), pain (n=107), vaccination site pain (n=100), nausea (n=89), myalgia (n=88), pain in extremity (n=85), arthralgia (n=68), off label use (n=57), dizziness (n=52), lymphadenopathy (n=47), asthenia (n=46), and malaise (n=41).
|
166 |
+
Reviewer comment: The sponsor's cumulative summary of post-authorization data as of the data lock point, February 28, 2021, showed that the most frequently reported AEs were consistent with As described in the EUA Fact Sheet (i.e., headache, pyrexia, fatigue, chills, vaccination site pain, nausea, and myalgia).
|
167 |
+
Post-authorization safety data, updated through June/July 2021:
|
168 |
+
10
|
169 |
+
|
170 |
+
The sponsor submitted a revised PVP (Version 1.1) on July 29, 2021 which included post-authorization data for myocarditis and pericarditis among individuals 16 years of age and older through June 18, 2021. There was a total of 823 AE reports, including 490 reports of myocarditis and 372 reports of pericarditis; 38 reports included both myocarditis and pericarditis. Among the 490 myocarditis reports, 464 (including 78 U.S. reports) met Brighton Collaboration Level 1 to 4 (Version 1.4.2; May 30, 2021). The majority of myocarditis reports (n=325, 66.3%) were in males and the median age was 32 years (range=16-97 years; there were 14 death reports. Among the 371 reports of pericarditis (including 68 U.S. reports), 181 (48.8%) were in males and 185 (49.9%) occurred in females (five reports did not include sex); the median age was 51 years (range=16-92 years) and there were three death reports.
|
171 |
+
The sponsor also provided post-authorization data through June 18, 2021 for myocarditis and pericarditis in individuals age 12-15 years. There were 13 reports of myocarditis (none were deaths); 11 met Brighton Collaboration Level 4 (i.e., reported event with insufficient evidence to meet the case definition) and two met Brighton Collaboration Level 5 (i.e., not a case); 10 (90.9%) were male and 1 (9.1%) was female; the median age was 14 years (range=12-15 years). There were four reports of pericarditis (none were deaths); all were male, and the median age was 13.5 years (range=12-15 years).
|
172 |
+
The sponsor indicates that a mechanism of action by which the vaccine could cause myocarditis and pericarditis has not been established, however myocarditis and pericarditis are considered an important identified risk in the PVP. The sponsor concluded that the vaccine continues to have a favorable risk benefit balance and that considering the low rates of myocarditis and pericarditis reported following vaccination, balanced with the risk of death and illness (including myocarditis) from SARS-CoV-2, the public health impact of post-vaccination myocarditis and pericarditis is minimal.
|
173 |
+
Reviewer comment: There are ongoing analyses, by the sponsor and FDA, to further characterize the new safety signal for myocarditis and pericarditis after the Pfizer-BioNTech COVID-19 vaccine. As described above, the majority of myocarditis reports occurred in males, under 30 years of age. Please see section 6.1 and 8.2 for additional discussion.
|
174 |
+
6 Summary of FDA Post-Authorization Safety Data
|
175 |
+
6.1 Vaccine Adverse Event Reporting System Data
|
176 |
+
Since its authorization on December 11, 2021 through June 11, 2021 a total of 151,543 reports, including 24,961 serious reports (3,512 of which were death reports), have been received and processed (coded, redacted, and quality assurance performed by the Vaccine Adverse Event Reporting System (VAERS) for the Pfizer-BioNTech COVID-19 vaccine. Among all reports the top 10 most frequently reported PTs are headache, fatigue, pyrexia, chills, pain, dizziness, nausea, pain in extremity, arthralgia,
|
177 |
+
11
|
178 |
+
|
179 |
+
and injection site pain. Among serious reports the top 10 most frequently reported PTs are SARS-CoV-2 test, COVID-19, dyspnea, headache, fatigue, pyrexia, death, SARS-
|
180 |
+
Cov-2 test positive, dizziness, and nausea.
|
181 |
+
Reviewer comment: Most of the commonly reported PTs in VAERS reports are labeled events in the EUA Fact Sheet (i.e., headache, fatigue, fever, chills, pain, joint pain, nausea, vomiting) or a non-specific A that could be a possible vaccine stress-related response (i.e., dizziness). The PTs of SARS-CoV-2 test and SARS-CoV-2 test positive refer to testing for SARS-CoV-2 infection. The PT of "dyspnea" is a non-specific symptom that may be present in a variety of conditions both serious and non-serious.
|
182 |
+
Dyspnea associated with FDA/CDC AESs, such as acute myocardial infarction, pulmonary embolus, or myopericarditis, is monitored as part of routine surveillance for AESIs and/or through death reviews.
|
183 |
+
VAERS was queried for the safety concerns listed in the PVP (Section 7 of this memorandum).
|
184 |
+
Anaphylaxis:
|
185 |
+
For the important identified risk of anaphylaxis, VAERS was queried from December 11, 2020 (the date of authorization) to June 11, 2021. The query was run on June 17, 2021 using the PTs anaphylactic reaction, anaphylactic shock, anaphylactoid reaction, or anaphylactoid shock. The search returned 1,034 reports (1,009 U.S. reports), including 524 serious reports; 12 of the serious reports were death reports. There were
|
186 |
+
167,680,391 doses of the Pfizer-BioNTech Covid-19 vaccine administered in the U.S. as of June 14, 2021. This equates to a crude reporting rate for anaphylaxis of 6.0 cases per million doses. Among the 12 deaths, five individuals were female, six were male, and one was of unknown sex; the median age was 81 years (range= 58-86 years; 3 individuals were of unknown age) and the median onset as calculated by VAERS dates was zero days post-vaccination (range=0-16 days). Nine individuals who died reported various chronic underlying conditions including hypertension, asthma, diabetes mellitus, ischemic cardiomyopathy, myocardial infarction, atrial fibrillation, arrythmia, obesity, sleep apnea, and dementia. Three individuals who died had a history of hypersensitivity to penicillin, contrast imaging, or food/fruit allergy. One individual had a history of COVID-19 one-month prior to vaccination and one individual was diagnosed with concomitant COVID-19 pneumonia and acute hypoxic respiratory failure post-vaccination.
|
187 |
+
Reviewer comment: Allergic reactions and anaphylaxis are labeled in the EUA Fact Sheet for this product. In addition, the EUA Fact Sheet cites CDC clinical guidelines which recommend observation periods following COVID-19 vaccination. Review of VAERS reports did not identify new safety concerns related to anaphylaxis. Limitations to interpreting this information include that VAERS data are based on passive surveillance and important limitations of passive surveillance data include missing/inaccurate data, unconfirmed diagnoses, potential under-reporting, and variable or incomplete reporting. The methodology for calculating crude reporting rates was
|
188 |
+
12
|
189 |
+
|
190 |
+
based on reports retrieved from automated queries, which may include duplicate cases as not all cases were manually reviewed to apply the Brighton Collaboration case definition criteria for anaphylaxis (Ruggeberg, 2007). (Note that this is a key difference in the above methodology compared to previous publications [MMWR Jan 15, 2021;
|
191 |
+
Gee, 2021; Shimabukuro, 2021], which calculated reporting rates based only on adiudicated cases that were confirmed through medical record review or direct contact with the provider.\ The incidence of anaphvlaxis after receipt of the Pfizer-BioNTech COVID-19 vaccine is comparable with those reported after receipt of other vaccines (Gee, 2021).
|
192 |
+
Myocarditis and pericarditis:
|
193 |
+
After the issuance of the EUA, FDA and CDC received reports of myocarditis and pericarditis following administration of the Pfizer-BioNTech COVID-19 Vaccine. In accordance with FDA recommendations, the sponsor added myocarditis and pericarditis as important identified risks in the PVP. A VAERS search was performed for the timeframe from December 11, 2020 (the date of authorization) to June 21, 2021. The query was run on June 23, 2021 utilizing the PTs autoimmune myocarditis, autoimmune pericarditis, eosinophilic myocarditis, hypersensitivity myocarditis, myocarditis, pericarditis, pericarditis adhesive, pericarditis constrictive, and pleuropericarditis.
|
194 |
+
The query returned 1,023 reports (1012 U.S. reports), including 809 serious reports (seven were death reports concerning six unique individuals), of which 652 reports were in individuals under 30 years of age. The reports concerned 775 (75.8%) males and 238 (23.3%) females; 10 reports concerned individuals of unknown sex. The median age was 21 years (range=12-86 years). The median onset post-vaccination as calculated by VAERS dates was 3 days (range=0-151 days). The six unique death reports (3 U.S. and 3 foreign reports) concerned three males and three females; the median age at death was 66 years (range=19-81 years) and the median onset post-vaccination was 4 days (range=1-22 days). Four deaths occurred following the second dose, one following the first dose, and for one the dose number was not reported. Most death reports contained limited information or described concurrent medical conditions and/or risk factors that might have contributed to the death. A summary of each death report is listed below:
|
195 |
+
1394140: 78-year male with no reported PMH died (b) (6)
|
196 |
+
post-2nd vaccine. An
|
197 |
+
autopsy revealed myocarditis, but limited details were provided.
|
198 |
+
1044420: 36-year male with history of anosmia and influenza-like illness (ILI) developed non-specific ILI symptoms a few days post-vaccination. Twenty-two days post-2nd vaccination he developed low grade fevers, malaise, and sore throat. Testing revealed a negative SARS-CoV-2 test and a positive coronavirus nucleocapsid IgG. His symptoms progressed and the patient ultimately deteriorated and died. Autopsy findings included: heart with multifocal myocarditis with mixed inflammatory infiltrate, myocyte necrosis, microthrombi. The death certificate listed the following causes of death: hemorrhagic shock, d/t intraperitoneal bleed, d/t coagulopathy, d/t post COVID-19 syndrome.
|
199 |
+
13
|
200 |
+
|
201 |
+
1340821: 60-year female reported to have endocarditis following first dose and then myocarditis post-2nd dose (reported by friend, limited details).
|
202 |
+
1070309: Foreign report: 72-year female with PMH of cardiac arrest, chest pain, high cholesterol, neoplasm, acute myeloid leukemia, hypertension, high BMI, and GERD had chest pain and pericarditis 3-days post-1st dose. She suffered a cardiac arrest 7-days post-vaccination and died br days post-vaccination due to pericarditis.
|
203 |
+
1048413: Foreign report: 19-year male with no PH experienced accelerated heartbeat, shortness of breath (SOB), and sharp pains radiating down left arm 5-days post-2nd vaccination. He was hospitalized in intensive care unit (ICU) and died. The reported cause of death was myocarditis.
|
204 |
+
1048221: Foreign report: 81-year female with history of COVID-19 experienced septic shock, extensive mo- and pericarditis, and multiple organ failure 3-days post-vaccination, died * days post-vaccination; autopsy-determined cause of death: Carditis pericardium myocardium.
|
205 |
+
In addition to review of reports from automated queries, all U.S. death reports are manually reviewed, and the following death was identified:
|
206 |
+
coordination disorder experienced flu-like symptoms for
|
207 |
+
deceased; onset of symptoms 1-day post vaccination. The preliminary autopsy report revealed cardiomegaly with biventricular dilatation, bilateral serous pulmonary effusions and serous pericardial effusion, marked pulmonary edema and congestion, and moderate degree of diffuse cerebral edema; SARS-CoV-2 and influenza A/B tests, toxicology, and determination of the cause of death are pending.
|
208 |
+
Furthermore, observed to expected (O/E) analyses were performed for risk windows of 7 days and 21 days, stratified by age, sex and dose, using U.S. data retrieved from automated queries of the VAERS database (data lock point July 6, 2021). The following PTs were used: atypical mycobacterium, pericarditis, autoimmune myocarditis, autoimmune pericarditis, bacterial pericarditis, coxsackie myocarditis, coxsackie pericarditis, cytomegalovirus myocarditis, cytomegalovirus pericarditis, enterovirus myocarditis, eosinophilic myocarditis, hypersensitivity myocarditis, immune-mediated myocarditis, myocarditis, myocarditis bacterial, myocarditis helminthic, myocarditis infectious, myocarditis meningococcal, myocarditis mycotic, myocarditis post infection, myocarditis septic, pericarditis, pericarditis adhesive, pericarditis constrictive, pericarditis helminthic, pericarditis infective, pericarditis mycoplasmal, pleuropericarditis, purulent pericarditis, viral myocarditis, and viral pericarditis. The vaccine administration data lock point for the O/E analysis was June 30, 2021. Only results for 7-day risk windows are shown in Tables 3 and 4 (relative risks [RR] with 95% CI >1 in bold font). The O/E analysis, stratified by age and dose number, indicates that the observed number of cases exceeds the expected number of cases (based on pre-COVID-19 pandemic U.S. population-based background incidence rates). The reporting rate and R was higher among males than females for
|
209 |
+
14
|
210 |
+
|
211 |
+
almost all age groups and higher following dose 2 as compared to dose 1 in most age groups for both males and females. This trend was higher in the 7-day risk window compared to the 21-day risk window, and in the younger age groups. Important limitations of passive surveillance data include missing/inaccurate data, unconfirmed diagnosis and potential under-reporting. There is ongoing follow-up of the reports to obtain additional medical records for assessment of cases.
|
212 |
+
Table 3: Reporting Rates and Relative Risk (RR) of Myocarditis and Pericarditis
|
213 |
+
Post Vaccination in Males using a 7-Day Risk Window
|
214 |
+
Age
|
215 |
+
Background
|
216 |
+
Group
|
217 |
+
Rate*
|
218 |
+
(years)
|
219 |
+
12 - 17
|
220 |
+
2.16a
|
221 |
+
Dose 1
|
222 |
+
Reporting
|
223 |
+
Rate**
|
224 |
+
0.99
|
225 |
+
18 - 24
|
226 |
+
2.16
|
227 |
+
0.48
|
228 |
+
25 - 29
|
229 |
+
2.16
|
230 |
+
0.26
|
231 |
+
30 - 39
|
232 |
+
6.1b
|
233 |
+
0.17
|
234 |
+
Dose 1
|
235 |
+
RR (95%
|
236 |
+
CI)
|
237 |
+
23.94
|
238 |
+
(17.02-
|
239 |
+
32.73)
|
240 |
+
11.5
|
241 |
+
(6.7-
|
242 |
+
18.42)
|
243 |
+
6.2
|
244 |
+
(2.49-
|
245 |
+
12.78)
|
246 |
+
1.45 (0.7
|
247 |
+
-2.67)
|
248 |
+
Dose 2
|
249 |
+
Reporting
|
250 |
+
Rate**
|
251 |
+
10.22
|
252 |
+
Dose 2
|
253 |
+
RR (95%
|
254 |
+
CI)
|
255 |
+
246.84
|
256 |
+
(219.83-
|
257 |
+
276.26)
|
258 |
+
5.91
|
259 |
+
142.84
|
260 |
+
(122.17 -
|
261 |
+
166)
|
262 |
+
1.55
|
263 |
+
37.44
|
264 |
+
(26.08 -
|
265 |
+
52.06)
|
266 |
+
0.88
|
267 |
+
7.56
|
268 |
+
(5.49-
|
269 |
+
10.14)
|
270 |
+
40 - 49
|
271 |
+
6.1
|
272 |
+
0.12
|
273 |
+
1.04
|
274 |
+
0.53
|
275 |
+
4.49
|
276 |
+
(0.42-
|
277 |
+
(2.93-
|
278 |
+
2.13)
|
279 |
+
6.58)
|
280 |
+
50 - 64
|
281 |
+
6.1
|
282 |
+
0.07
|
283 |
+
0.59
|
284 |
+
0.14
|
285 |
+
1.16
|
286 |
+
(0.24-
|
287 |
+
(0.6-
|
288 |
+
1.22)
|
289 |
+
2.03)
|
290 |
+
>65
|
291 |
+
6.1
|
292 |
+
0.07
|
293 |
+
0.63
|
294 |
+
0.07
|
295 |
+
0.61
|
296 |
+
(0.25-
|
297 |
+
(0.22-
|
298 |
+
1.3)
|
299 |
+
1.33)
|
300 |
+
*Background rates are rates per 100,000 persons per year.
|
301 |
+
**Reporting rates are per 100,000 doses of vaccine
|
302 |
+
Relative Risk (RR) is the reporting rate compared to the background rate when applied to the proportion of individuals vaccinated in each age group to July 1, 2021
|
303 |
+
aGubernot et al, U.S. Population-Based background incidence rates of medical conditions for use in safety assessment of COVID-19 vaccines
|
304 |
+
•Roth et al, Global Burden of Cardiovascular Diseases and Risk Factors, 1990-2019
|
305 |
+
15
|
306 |
+
|
307 |
+
Table 4: Reporting Rates and Relative Risk of Myocarditis and Pericarditis post
|
308 |
+
Vaccination in Females using a 7-Day Risk Window
|
309 |
+
Age
|
310 |
+
Group (years)
|
311 |
+
12 - 17
|
312 |
+
Background
|
313 |
+
Rate*
|
314 |
+
2.16a
|
315 |
+
Dose 1
|
316 |
+
Reporting
|
317 |
+
Rate**
|
318 |
+
0.15
|
319 |
+
Dose 1
|
320 |
+
RR' (95%
|
321 |
+
CI)
|
322 |
+
3.51
|
323 |
+
Dose 2
|
324 |
+
Reporting
|
325 |
+
Rate**
|
326 |
+
1.06
|
327 |
+
(1.29-
|
328 |
+
7.64)
|
329 |
+
18 - 24
|
330 |
+
2.16
|
331 |
+
0.1
|
332 |
+
2.32
|
333 |
+
0.58
|
334 |
+
(0.63
|
335 |
+
5.94)
|
336 |
+
25 - 29
|
337 |
+
2.16
|
338 |
+
0.07
|
339 |
+
1.59
|
340 |
+
0.2
|
341 |
+
(0.19-
|
342 |
+
5.75)
|
343 |
+
30 - 39
|
344 |
+
4.4b
|
345 |
+
0.18
|
346 |
+
2.16
|
347 |
+
0.16
|
348 |
+
(1.12-
|
349 |
+
3.78)
|
350 |
+
40 - 49
|
351 |
+
4.4
|
352 |
+
0.06
|
353 |
+
0.72
|
354 |
+
0.32
|
355 |
+
(0.19-
|
356 |
+
1.83)
|
357 |
+
50 - 64
|
358 |
+
4.4
|
359 |
+
0.1
|
360 |
+
1.23
|
361 |
+
0.19
|
362 |
+
(0.64-
|
363 |
+
2.16)
|
364 |
+
>65
|
365 |
+
4.4
|
366 |
+
0.04
|
367 |
+
0.5
|
368 |
+
0.08
|
369 |
+
(0.16-
|
370 |
+
1.17)
|
371 |
+
Dose 2
|
372 |
+
RR (95%
|
373 |
+
CI)
|
374 |
+
25.49
|
375 |
+
(17.55-
|
376 |
+
35.8)
|
377 |
+
14.13
|
378 |
+
(8.63 -
|
379 |
+
21.82)
|
380 |
+
4.74
|
381 |
+
(1.54 -
|
382 |
+
11.05)
|
383 |
+
1.91
|
384 |
+
(0.87 -
|
385 |
+
3.63)
|
386 |
+
3.74
|
387 |
+
(2.22 -
|
388 |
+
5.92)
|
389 |
+
2.23
|
390 |
+
(1.34-
|
391 |
+
3.48)
|
392 |
+
0.91
|
393 |
+
(0.39-
|
394 |
+
1.79)
|
395 |
+
*Background rates are rates per 100,000 persons per year.
|
396 |
+
**Reporting rates are per 100,000 doses of vaccine
|
397 |
+
Relative Risk (RR) is the reporting rate compared to the background rate when applied to the proportion of individuals vaccinated in each age group to July 1, 2021
|
398 |
+
aGubernot et al, U.S. Population-Based background incidence rates of medical conditions for use in safety assessment of COVID-19 vaccines
|
399 |
+
bRoth et al, Global Burden of Cardiovascular Diseases and Risk Factors, 1990-2019
|
400 |
+
Reviewer comment: Myocarditis and pericarditis emerged as a safety signal in VAERS and was jointly reviewed by FDA and CDC. Please see section 8.2 for further discussion of this safety signal.
|
401 |
+
Vaccine-associated enhanced disease (VAED):
|
402 |
+
There are not specific PTs for the important potential risk of vaccine-associated enhanced disease (VAED). Please see reviewer comments below regarding the VAERS search for PTs related to vaccine effectiveness.
|
403 |
+
16
|
404 |
+
|
405 |
+
Other:
|
406 |
+
Categories in the PVP that are considered "missing information" (i.e., use during pregnancy and lactation, vaccine effectiveness, and use in pediatric individuals <12
|
407 |
+
years of age), were also queried in VAERS. A VAERS search from December 11, 2020 (the date of authorization) to June 11, 2021 (run on June 22, 2021) for the System Organ Class (SOC) Pregnancy, Puerperium and Perinatal Conditions returned 1,050 reports, including 175 serious reports, 11 of which were deaths. Among the 11 death reports, eight involved a fetal (n=5) or infant death (n=3) and three were maternal deaths. The five fetal deaths were either miscarriage or intrauterine death that occurred less than two weeks post-maternal vaccination. The three infant deaths were: one death from thrombotic thromboctopenic purpura (TTP) in a breastfed infant (symptom onset
|
408 |
+
1-day post-2nd-maternal vaccination), one report of premature birth 6-days post-vaccination with subsequent death (vaccine exposure during second trimester), and one report of premature birth at 21 weeks gestation with subsequent death 2-hours after birth (birth 13-davs post-maternal vaccination and complicated by meconium aspiration and maternal chorioamnionitis due to a Staphylococcus aureus infection). The three maternal deaths were: a 32-year old female with asymptomatic Factor V Leiden who died 4-days after childbirth and 52-days post-vaccination (limited details); a 42-year old female with no reported PH who died of a massive pulmonary embolus at 27-weeks gestation, and a 38-year old female with Type I diabetes mellitus, hemochromatosis, and sleep apnea who experienced maternal cardiac arrest with likely amniotic fluid embolism and disseminated intravascular coagulation (DIC) 14-days post-vaccination.
|
409 |
+
A separate query (run on July 13, 2021) of VAERS PT event counts for the SOC
|
410 |
+
Pregnancy, Puerperium and Perinatal Conditions (from December 11, 2021 to June 11,
|
411 |
+
2021) showed a total of 1,589 PTs, including 546 PTs reported for serious reports and
|
412 |
+
21 PTs reported for deaths. Among serious reports, the top 10 most frequently reported PTs in the SOC Pregnancy, Puerperium and Perinatal Conditions were: exposure during pregnancy (n=189), abortion spontaneous (n=83), maternal exposure during pregnancy (n=40), fetal death (n=27), premature delivery (n=20), premature labor (n=17), delivery (n=15), induced labor (n=14), premature baby (n=11), and premature separation of placenta (n=9). Among death reports, PTs in the SOC Pregnancy, Puerperium and Perinatal Conditions reported more than once included exposure during pregnancy (n=4), maternal exposure during pregnancy (n=4), fetal death (n=4), spontaneous abortion (n=2), and premature baby (n=2).
|
413 |
+
Reviewer comment: Vaccine safety in pregnant women is being evaluated in a randomized controlled trial conducted by the sponsor, active surveillance studies conducted by the sponsor, and the CDC v-safe program. The background incidence of miscarriage varies by age and ranges from 10% in women aged 25-29 years up to 53% in women aged 45 years and older (Magnus, 2019). Review of the most common PTs reported in the SOC Pregnancy, Puerperium and Perinatal Conditions and individual review of VAERS death reports did not suggest patterns indicating a new safety concern that needs to be addressed in the PVP.
|
414 |
+
17
|
415 |
+
|
416 |
+
For "missing information" regarding vaccine effectiveness, VAERS was searched for the timeframe December 11, 2020 to June 11, 2021 (query run on June 17, 2021) using PTs for vaccination failure and drug ineffective. The search returned 1,788 reports that included the PT "vaccination failure" (n=254) and/or "drug ineffective" (n=1,565); 31 reports contained both PTs. Among the 254 reports including the PT vaccination failure, there were 24 serious reports and eight deaths. Among the eight deaths (three U.S. and five foreign reports), six were female and two were male; the median age was 71 years (range=37-98 years) and median onset as calculated by VAERS dates was 10 days post-vaccination (range=7-63 days). Most deaths occurred in individuals with reported underlying co-morbidities. Among the 1,565 reports of drug ineffective, there were 258 serious reports including 120 deaths. Among the 120 deaths, the majority (n=103, 86%) were foreign reports; 41 individuals were female, 57 were male, and 22 were of unknown sex; the median age was 84 years (range=17-99 years; 29 [24%] with unknown age) and median onset as calculated by VAERS dates was 4 days post-vaccination (range=0-26 days; 22 [18%] had incalculable VAERS dates). Most deaths occurred in individuals with reported underlying co-morbidities or unknown medical history.
|
417 |
+
Reviewer comment: There are VAERS reports of deaths due to COVID-19 in patients reported to be fully vaccinated. It is expected there may be some cases of vaccination failure, especially in elderly or immunocompromised subjects. Infection with a variant SARS-CoV-2 virus for which vaccination is less effective is also a possibility. Many reports concern elderly individuals with co-morbidities or contain limited details which makes complete assessment difficult. Generally, passive surveillance and spontaneous adverse event reporting cannot be used to draw conclusions regarding vaccine effectiveness due to the lack of a control group, reporter bias, and underreporting.
|
418 |
+
Severe manifestations and death from COVID-19 raise the possibility of vaccine-associated enhanced disease (VAED), which has overlapping clinical manifestations with natural SARS-CoV-2 infection, making it difficult to differentiate VAED from severe COVID-19 disease in individual VAERS reports (Munoz, 2021). VAED is being assessed in a continuation of the Phase 3 clinical studies and active surveillance studies being conducted by the sponsor.
|
419 |
+
For "missing information" regarding individuals <12 years of age, VAERS was searched for the timeframe December 11, 2020 to June 11, 2021 (query run on June 22, 2021).
|
420 |
+
There was a total of 273 reports in children <12 years of age, including 31 serious reports and two death reports. Among the 31 serious reports, the most commonly reported PTs (>10%) were product administered to patient of inappropriate age (n=15), off-label use (n=11), headache (n=7), exposure via breast milk (n=5), rash (n=5), pyrexia (n=4), product use issue (i.e., product use in unapproved population; n=3), dizziness (n=3), nausea (n=3), and vaccination site pain (n=3). One death report concerned an 11-vear-old female but it was not clear if she had received the vaccine or if she was exposed to other family members who received the vaccine; this report contained limited details and was difficult to interpret. The other death report concerned a 5-month-old breastfed infant who was diagnosed with TTP after the mother received
|
421 |
+
18
|
422 |
+
|
423 |
+
her 2nd Pfizer-BioNTech vaccine dose; symptom onset 1-day post-maternal vaccination this report was included in the pregnancy and lactation review above).
|
424 |
+
Reviewer comment: The Pfizer-BioNTech COVID-19 vaccine is currently authorized for use in individuals age 12 years and older and the BLA has a proposed indication for use in individuals age 16 years and older. Review of VAERS data indicates that individuals younger than age 12 have received the product outside of clinical trials; no patterns of Es were identified to suggest new safety concerns that warrant amendment to the PVP.
|
425 |
+
6.2 Data Mining Findings
|
426 |
+
Data mining of the VAERS database using Empirica Signal' with a data lock point of June 4, 2021, revealed the following PTs and subgroups had an increased disproportional reporting value (EB05>2) for the Pfizer-BioNTech COVID-19 vaccine (Table 5):
|
427 |
+
Table 5: Preferred Terms with Disproportional Reporting in Empirica Signal for the Pfizer-BioNTech COVID-19 Vaccine
|
428 |
+
Preferred Term (PT)
|
429 |
+
Drug ineffective
|
430 |
+
Investigation
|
431 |
+
Product preparation issue
|
432 |
+
Weight
|
433 |
+
US
|
434 |
+
EB05
|
435 |
+
1.964
|
436 |
+
2.053
|
437 |
+
2.021
|
438 |
+
2.02
|
439 |
+
US Adult >65 years
|
440 |
+
EB05
|
441 |
+
2.034
|
442 |
+
2.071
|
443 |
+
2.124
|
444 |
+
2.028
|
445 |
+
US Female
|
446 |
+
EB05
|
447 |
+
1 770
|
448 |
+
2.001
|
449 |
+
1 047
|
450 |
+
1.98
|
451 |
+
Reviewer comment: Reports with PT "drug ineffective" generally describe patients who contracted COVID-19 prior to being fully vaccinated or reports with limited details to assess timing or confirmation of COVID-19 infection or number of vaccine doses. Cases of vaccination failure might not always be reported to a spontaneous adverse event reporting system. Inferences that can be made from VAERS about COVID disease after vaccination are limited. Vaccine effectiveness is monitored through clinical trials, and post-authorization studies conducted by the sponsor. The PT "investigation" is nonspecific and generally refers to investigations performed as part of work-up for signs or symptoms. The PT "product preparation issue" generally concerns reports with issues such as incorrect vaccine reconstitution or lack of reconstitution with diluent. The PT of
|
452 |
+
1 Empirica Signal is a web-based platform that uses an automated approach to explore relationships in large datasets by generating statistical scores for combinations of products and events from drug or vaccine databases. Data mining is conducted to evaluate whether any events (i.e., MedDRA PTs) following use of a particular vaccine are disproportionally reported compared to all vaccine reports in VAERS; the threshold for signal detection is an EB05 value >2. (EBO5 is the lower bound of the 90% confidence limit for the Empirical Bayesian Geometric Mean). The data generated from Empirica Signal do not, by themselves, demonstrate causal associations, but the data might serve as a signal for further investigation and can be useful for hypothesis generation and exploration of potential concerns
|
453 |
+
19
|
454 |
+
|
455 |
+
"weight" is non-specific and may refer to weight gain or loss in a patient or report of the patient's weight. Review of PTs with an EB05>2 did not identify new safety concerns that need to be addressed in the PVP.
|
456 |
+
6.3 Discussion of U.S. Package Insert (USPI) Section 6.2 Post-marketing Experience
|
457 |
+
Sponsor proposed As for inclusion under Section 6.2 Post-marketing Experience include:
|
458 |
+
Cardiac Disorders: myocarditis and pericarditis
|
459 |
+
Gastrointestinal Disorders: diarrhea, vomiting
|
460 |
+
Immune System Disorders: severe allergic reactions, including anaphylaxis, and other hypersensitivity reactions (e.g., rash, pruritis, urticaria, angioedema)
|
461 |
+
Musculoskeletal and Connective Tissue Disorders: pain in extremity (arm)
|
462 |
+
OBE/DE recommends inclusion of additional PTs to Section 6.2 Post-marketing
|
463 |
+
Experience for:
|
464 |
+
• Dizziness
|
465 |
+
• Among serious reports (as of August 2, 2021), dizziness ranks in the cumulative top 10 reported PTs with 11,107 events reported. A cumulative VAERS query for the PT dizziness, run on August 3, 2021, returned 35,104 reports (26,131 [74.4%] were U.S. reports), including 3,857 (11.0%) serious reports (145 of these were death reports). There were 26,032 (74.2%) reports concerning females and 8,615 (25.5%) concerning males; 457 (1.3%) reports did not include sex. The median onset based on VAERS dates=0 days (range=0-171 days post-vaccination) and median age=42 years (range=0.1-115 years).
|
466 |
+
• Dyspnea
|
467 |
+
• Among serious reports (as of August 2, 2021), dyspnea ranks in the cumulative top 10 reported PTs with 10,506 events reported. A cumulative VAERS query for the PT dyspnea, run on August 3, 2021, returned 19,858 reports (12,757 [64.2%] were U.S. reports), including 6,235 (31.4%) serious reports (1,102 of these were death reports). There were 14, 166 (71.3%) reports concerning females and 5,421 (27.3%) concerning males;
|
468 |
+
271 (1.4%) reports did not include sex. The median onset based on VAERS dates=0 days (range=0-207 days post-vaccination) and median age=48 years (range=0.1-109 years).
|
469 |
+
20
|
470 |
+
|
471 |
+
7 Pharmacovigilance Plan
|
472 |
+
7.1 Summary of Pharmacovigilance Plan
|
473 |
+
The sponsor submitted a PVP proposing routine pharmacovigilance (PV), including data capture aids (DCAs) for anaphylactic reactions and VAED, and post-authorization observational and active surveillance safety studies (Table 6). There are also ongoing clinical trials.
|
474 |
+
Table 6: Summary of Safety Concerns and Planned Pharmacovigilance Activities*
|
475 |
+
Safety Concern
|
476 |
+
Actions Proposed
|
477 |
+
Important Identified Risks
|
478 |
+
Anaphylaxis
|
479 |
+
• Routine pharmacovigilance
|
480 |
+
• Data capture aid
|
481 |
+
Communication of important identified risk via label (Sections 4 - Contraindications, 5.1 - Management of Acute Allergic Reactions, Section 6 - Adverse reactions - and 6.2 - Post Authorization Experience)
|
482 |
+
• Completion of C4591001: Phase 1/2/3, placebo-controlled, randomized, observer-blind, dose-finding study to evaluate the safety, tolerability, immunogenicity, and efficacy of SARS-CoV-2 mRNA vaccine candidates against COVID-19 in healthy individuals
|
483 |
+
• Three post-authorization safety studies to monitor safety of BNT1622 (C4591009, C4591011, C4591012)
|
484 |
+
Myocarditis and Pericarditis • Routine pharmacovigilance
|
485 |
+
• Three post-authorization safety studies to monitor safety of BNT162b2 (C4591009, C4591011, C4591012)
|
486 |
+
FDA will also require a safety post-marketing study to further assess these serious risks
|
487 |
+
| Important Potential Risks
|
488 |
+
Vaccine-Associated
|
489 |
+
• Routine pharmacovigilance
|
490 |
+
Enhanced Disease (VAED),
|
491 |
+
• Data capture aid
|
492 |
+
including Vaccine-
|
493 |
+
Completion of C4591001: Phase 1/2/3, placebo-
|
494 |
+
Associated Enhanced
|
495 |
+
controlled, randomized, observer-blind, dose-
|
496 |
+
Respiratory Disease
|
497 |
+
finding study to evaluate the safety, tolerability,
|
498 |
+
(VAERD)
|
499 |
+
immunogenicity, and efficacy of SARS-CoV-2 mRNA vaccine candidates against COVID-19 in healthy individuals
|
500 |
+
• Four post-authorization safety studies to monitor safety of BNT1622 (C4591008, C4591009
|
501 |
+
21
|
502 |
+
|
503 |
+
Missing Information
|
504 |
+
Use in pregnancy and lactation
|
505 |
+
Vaccine effectiveness
|
506 |
+
Use in pediatric individuals
|
507 |
+
<12 vears of age
|
508 |
+
C4591011, C4591012)
|
509 |
+
• Routine pharmacovigilance
|
510 |
+
• Completion of C4591015: A phase 2/3, placebo-controlled, randomized, observer blind study to evaluate the safety, tolerability, and immunogenicity of a SARS-CoV-2 RNA vaccine candidate (BNT162b2) against COVID-19 in healthy pregnant women 18 years of age and older
|
511 |
+
• Three post-authorization safety studies to monitor safety of BNT162b2
|
512 |
+
(C4591009, C4591011, C4591022
|
513 |
+
[Pregnancy Registry study])
|
514 |
+
• Routine pharmacovigilance
|
515 |
+
• Completion of BNT162-01 cohort 13 (Phase 1/2 dose-escalation clinical trial): Immunogenicity of
|
516 |
+
Pfizer-BioNTech COVID-19 Vaccine in immunocompromised subjects, including assessment of antibody responses and cell-mediated responses
|
517 |
+
• Three post-authorization vaccine effectiveness studies (C4591014: Pfizer-BioNTech COVID-19
|
518 |
+
BNT162b2 Vaccine Effectiveness Study - Kaiser
|
519 |
+
Permanente Southern California
|
520 |
+
• WI235284: determining RSV Burden and Outcomes in Pregnant Women and Older Adults Requiring Hospitalization. COVID-19
|
521 |
+
Amendment for COVID VE/ Sub-study 6
|
522 |
+
WI255886: Avon Community Acquired
|
523 |
+
Pneumonia Surveillance Study: A Pan- pandemic
|
524 |
+
Acute Lower Respiratory Tract Disease
|
525 |
+
Surveillance Study
|
526 |
+
• Routine pharmacovigilance
|
527 |
+
• Completion of C4591001 ≥12 to 515 years of age: Phase 1/2/3, placebo-controlled, randomized, observer-blind, dose-finding study to evaluate the safety, tolerability, immunogenicity, and efficacy of SARS-CoV-2 mRNA vaccine candidates against COVID-19 in healthy individuals. Randomized placebo-controlled study in 2,000 participants (1,000 active recipients) of 2 doses of BNT162b2 at a
|
528 |
+
21-day interval
|
529 |
+
• Completion of C4591007 <12 years of age:
|
530 |
+
Phase 1 open label dose-finding study to
|
531 |
+
22
|
532 |
+
|
533 |
+
evaluate safety, tolerability, and immunogenicity and phase 2/3 placebo-controlled, observer-blinded safety, tolerability, and immunogenicity study of a SARS-CoV-2 mRNA vaccine candidate against COVID-19 in healthy children <12 years of age
|
534 |
+
• One post-authorization safety study to monitor safety of BNT162b2 (C4591009)
|
535 |
+
*Adapted from sponsor's Pharmacovigilance Plan, Version 1.1 Table 46: Summary of Safety Concerns and Action Plans.
|
536 |
+
7.3 Summary of Post-authorization Safety Surveillance Studies
|
537 |
+
The sponsor proposes five post-authorization safety surveillance studies, which are summarized in the sections below. The sponsor also proposes three post-authorization vaccine effectiveness studies (C4591014, W1235284, WI255886):
|
538 |
+
• C4591014: Pfizer-BioNTech COVID-19 BNT1622 Vaccine Effectiveness Study -
|
539 |
+
Kaiser Permanente Southern California
|
540 |
+
• WI235284: Determining RSV Burden and Outcomes in Pregnant Women and Older Adults Requiring Hospitalization; COVID-19 Amendment for COVID VE/ Sub-study 6
|
541 |
+
• WI255886: Avon Community Acquired Pneumonia Surveillance Study: A Pan-pandemic Acute Lower Respiratory Tract Disease Surveillance Study
|
542 |
+
Reviewer comment: The vaccine effectiveness study protocols were submitted to IND 19736/268 and are being reviewed by the CBER Biologics Effectiveness and Safety
|
543 |
+
(BEST) team; see memorandums from CBER BEST team for study details and OBE assessment.
|
544 |
+
7.3.1 C4591008: HERO Together: A post-Emergency Use Authorization observational cohort study to evaluate the safety of the Pfizer-BioNTech COVID-
|
545 |
+
19 Vaccine in U.S. healthcare workers, their families, and their communities
|
546 |
+
The primary objective of this study is to estimate the real-world incidence of safety events of interest and other clinically significant events among U.S. healthcare workers vaccinated with the Pfizer-BioNTech COVID-19 vaccine following EUA. Secondary objectives are to evaluate whether the vaccine recipients experience increased risk of safety events of interest and other clinically significant events post-vaccination and to estimate the incidence rates of safety events of interest and other clinically significant events among sub-cohorts, such as individuals who are pregnant or immunocompromised, and stratified by age.
|
547 |
+
This prospective observational study will collect data based on participant self-report
|
548 |
+
23
|
549 |
+
|
550 |
+
(primarily using a secure web portal) at regular intervals for 24 months following vaccination. Events will be confirmed using medical records. This study aims to enroll at least 20,000 HCW who received a COVID-19 vaccine. Safety outcomes of interest area based on the priority list of AESI from the Brighton Collaboration's Safety Platform for Emergency Vaccines (SPEC) Project (https://brightoncollaboration.us/priority-list-aesi-covid/; accessed 12/13/2020) and include the following (* denotes events that will only be collected if individual hospitalized:
|
551 |
+
• Neurologic: generalized convulsion/seizures, Guillain-Barré syndrome, aseptic meningitis, encephalitis/encephalomyelitis, other acute demyelinating diseases, transverse myelitis, multiple sclerosis, optic neuritis, Bell's palsy
|
552 |
+
• Immunologic: anaphylaxis, vasculitides*, arthritis/arthralgia, multisystem inflammatory syndrome (in adults), Kawasaki disease, fibromyalgia, autoimmune thyroiditis
|
553 |
+
• COVID-19: severe COVID-19 disease*, microangiopathy*, heart failure and cardiogenic shock*, stress cardiomyopathy*, coronary artery disease*, arrythmia*, deep vein thrombosis, pulmonary embolus, cerebrovascular stroke, limb ischemia*, hemorrhagic disease*, acute kidney injury*, liver injury, Chillblain-like lesions, single organ cutaneous vasculitis*, erythema multiforme*
|
554 |
+
• Cardiac: myocarditis, pericarditis, acute myocardial infarction
|
555 |
+
• Hematologic: thrombocytopenia, disseminated intravascular coagulation
|
556 |
+
• Other: pregnancy outcomes, death, narcolepsy and cataplexy, non-anaphylactic allergic reactions
|
557 |
+
Data analysis will include descriptive statistics of vaccination and baseline characteristics, number and incidence rate for each safety event of interest will be calculated overall and within subgroups of interest. Qualitative comparisons will be made using hospitalization rates among non-vaccinated HW enrolled in the HERO registry and external sources of background event rates. A self-matched comparative analysis will then be performed for events that appear to be associated with vaccination and that are amenable to self-matched analysis (e.g., adequate case counts, known risk interval).
|
558 |
+
The proposed study milestones are:
|
559 |
+
Interim report submission: June 30, 2021; December 31, 2021; June 30, 2022;
|
560 |
+
December 31, 2022
|
561 |
+
Final study report submission: December 31, 2023
|
562 |
+
Reviewer comment: This study was proposed in the original EUA submission (EUA 27034/0) and the final study protocol was submitted to EUA 27034/68; OBE/DE reviewed the final study protocol and provided comments to the sponsor. In addition, the sponsor submitted an interim statistical analysis plan (SAP) and a protocol amendment (IND 19736/324) to expand the study population to include HCW families and community members, update recruitment strategies, and provide additional details
|
563 |
+
24
|
564 |
+
|
565 |
+
regarding the clinical event ascertainment process. The protocol amendment and SAP were reviewed by OBE/DE and are acceptable. Please see previous review memorandums for additional details.
|
566 |
+
7.3.2 C4591009: A non-interventional post-approval safety study of the Pfizer--BioNTech COVID-19 mRNA vaccine in the United States
|
567 |
+
The primary objective of this study is to estimate the relative risk (RR) or prevalence ratio of safety events of interest following receipt of at least one dose of the Pfizer-BioNTech COVID-19 vaccine in the overall study population and in pregnant women, in immunocompromised individuals, and in individuals with a history of COVID-19. Secondary objectives are to describe the proportion of individuals receiving at least one dose and a complete dose series, the timing and type of second dose of COVID-19 vaccine, and the baseline characteristics of individuals who receive at least one dose of the Pfizer-BioNTech COVID-19 vaccine compared to those who do not receive any COVID-19 vaccine doses.
|
568 |
+
This is a retrospective cohort study comparing vaccinated individuals with concurrent unexposed comparators using claims and electronic health record data from partners in the Sentinel System. Safety events of interest will be aligned with events being monitored in the rapid cycle analysis of COVID-19 vaccines in the FDA's BEST system and CDC's VSD. The study will estimate incidence rates or incidence/prevalence proportions for each safety event of interest for matched exposed and unexposed cohorts; comparative analyses will also estimate hazard ratios or incidence rate ratios and 95% Cl within propensity score-matched cohorts. Individuals of all ages will be included in the descriptive analysis of vaccine utilization while the safety analysis will be limited to individuals within the age-indicated population for the Pfizer-BioNTech COVID-19 vaccine. The study period will extend a minimum of three years post-EUA.
|
569 |
+
The proposed study milestones are:
|
570 |
+
Final protocol submission: August 31, 2021
|
571 |
+
Monitoring report submission: October 31, 2022
|
572 |
+
Interim report submission: October 31, 2023
|
573 |
+
Final study report submission: October 31, 2025
|
574 |
+
Reviewer comment: This study was proposed in the EU submission to expand the Pfizer-BioNTech COVID-19 vaccine indication to pediatric individuals age 12-15 years (EUA 27034/132); a study protocol synopsis was submitted with the BLA.
|
575 |
+
25
|
576 |
+
|
577 |
+
7.3.3 C4591011: Active safety surveillance of the Pfizer-BioNTech COVID-19 vaccine in the U.S. Department of Defense population following Emergency Use Authorization
|
578 |
+
The primary objective of this study is to assess whether individuals and sub-cohorts of interest (i.e., pregnant women, immunocompromised, elderly, individuals with specific comorbidities, individuals receiving only one dose of the Pfizer-BioNTech COVID-19 vaccine, and individuals with prior SARS-CoV-2 infection) in the Department of Defense (DoD) military health system (MHS) experience increased risk of safety events of interest following receipt of the Pfizer-BioNTech COVID-19 vaccine.
|
579 |
+
Secondary objectives are to characterize utilization patterns of the Pfizer-BioNTech
|
580 |
+
COVID-19 vaccine among individuals within the DoD MHS.
|
581 |
+
This active safety surveillance study will utilize a rapid-cycle, longitudinal, observational cohort study design to assess real-world safety of the Pfizer-BioNTech COVID-19 vaccine using a self-controlled risk interval design and a cohort design with two comparator populations (2018/2019 season influenza vaccine recipients and unvaccinated matched controls). Safety events of interest are aligned with AESs from the Brighton Collaboration's SPEAC Project, FDA, and CDC's Advisory Committee on Immunization Practices (ACIP) enhanced safety monitoring recommendations. A stepwise data analysis process will include signal detection, evaluation, and verification.
|
582 |
+
The study will use coding and medical record data from the DoD MHS Data Repository and will be conducted for 30-months post-EUA.
|
583 |
+
The proposed study milestones are:
|
584 |
+
Interim report submissions: June 30, 2021; December 31, 2021; June 30, 2022;
|
585 |
+
December 31, 2022
|
586 |
+
Final study report submission: December 31, 2023
|
587 |
+
Reviewer comment: This study was proposed in the original EUA submission (EUA 27034/0). The final study protocol was submitted to EUA 27034/68 and reviewed by the
|
588 |
+
CBER BEST team. An IR response (EUA 27034/186) indicated that the start date for C4591011 is delayed due to a change in study collaborators and the first interim report will be submitted by December 31, 2021 rather than June 30, 2021. Please see previous review memorandums for additional details.
|
589 |
+
7.3.4 C4591012: Post-emergency use authorization active safety surveillance study among individuals in the Veteran's Affairs Health System receiving Pfizer-BioNTech Coronavirus Disease 2019 (COVID-19) vaccine
|
590 |
+
The primary obiective of this study is to assess whether individuals and sub-cohorts of interest (i.e., immunocompromised, elderly, individuals with specific comorbidities, individuals receiving only one dose of the Pfizer-BioNTech COVID-19 vaccine, and individuals with prior SARS-CoV-2 infection) in the Veterans Health Administration
|
591 |
+
26
|
592 |
+
|
593 |
+
(VHA) system experience increased risk of safety events of interest following receipt of the Pfizer-BioNTech COVID-19 vaccine. Secondary obiectives are to characterize utilization patterns of the Pfizer-BioNTech COVID-19 vaccine among individuals within the VHA.
|
594 |
+
This active safety surveillance study will utilize a rapid-cycle, longitudinal, observational cohort study design to assess real-world safety of the Pfizer-BioNTech COVID-19 vaccine using a self-controlled risk interval design and an active comparator design (2014/2015 through 2018/2019 seasonal influenza vaccine recipients). Safety events of interest are aligned with AESs from the Brighton Collaboration's SPEAC Project, FDA, and CDC's ACIP enhanced safety monitoring recommendations. A stepwise data analysis process will include signal detection, evaluation, and verification. The study will use coding and medical record data from the VHA Corporate Data Warehouse which is an integrated electronic medical record system and will be conducted for 30-months post-EUA.
|
595 |
+
The proposed study milestones are:
|
596 |
+
Interim report submissions: June 30, 2021; December 31, 2021; June 30, 2022;
|
597 |
+
December 31, 2022
|
598 |
+
Final study report submission: December 31, 2023
|
599 |
+
Reviewer comment: This study was proposed in the original EUA submission (EUA
|
600 |
+
27034/0). The final study protocol was submitted to EUA 27034/68 and reviewed by the
|
601 |
+
CBER BEST team. An IR response (EUA 27034/186) indicates that the protocol will be revised to incorporate CBER BEST team comments regarding the addition of a contemporary unvaccinated comparator cohort for signal evaluation; a revised protocol will be submitted by August 31, 2021. Please see previous review memorandums for additional details.
|
602 |
+
7.3.5 C4591022: Pfizer-BioNTech COVID-19 Vaccine exposure during pregnancy: A non-interventional post-approval safety study of pregnancy and infant outcomes in the Organization of Teratology Information Specialists (OTIS)/Mother To Baby
|
603 |
+
Pregnancy Registry
|
604 |
+
The primary objective of this pregnancy registry study is to assess whether pregnant women in the Organization of Teratology Information Specialists (OTIS) Pregnancy Registry receiving the Pfizer-BioNTech COVID-19 vaccine experience increased risk of pregnancy and infant safety outcomes. The secondary objective is to characterize utilization patterns of the Pfizer-BioNTech COVID-19 vaccine among pregnant women in the OTIS registry.
|
605 |
+
This prospective, observational cohort pregnancy registry study will utilize two comparator groups: 1) pregnant women who received an influenza or Tap (tetanus, diphtheria, and acellular pertussis) vaccine during pregnancy and 2) pregnant women who received no vaccines during pregnancy. The study aims to enroll 1800 pregnant women over a 3-year recruitment period. Pregnancy and infant safety outcomes will include major congenital malformations, spontaneous abortion, stillbirth, preterm
|
606 |
+
27
|
607 |
+
|
608 |
+
delivery, small for gestational age, and small for age postnatal growth to one year of age. Data will be collected using maternal interviews, medical record review, and a pregnancy exposure diary. Data analysis will include descriptive statistics, birth prevalence rates and incidence rates, and risk estimates.
|
609 |
+
The proposed study milestones are:
|
610 |
+
Final protocol submission: July 1, 2021
|
611 |
+
Interim report submissions: January 31, 2022; January 31, 2023; January 31, 2024;
|
612 |
+
January 31, 2025
|
613 |
+
End of data collection: December 31, 2024
|
614 |
+
Final study report submission: December 1, 2025
|
615 |
+
Reviewer comment: This pregnancy registry study will be a post-marketing commitment
|
616 |
+
(PMC).
|
617 |
+
8 DE Assessment of Sponsor's Pharmacovigilance Plan
|
618 |
+
8.1 Important Identified Risk: Anaphylaxis
|
619 |
+
The risk of anaphylaxis was recognized early in the post-authorization time period and information was added to the EUA Fact Sheets for healthcare providers and recipients and caregivers. One BNT162b2-related-SAE of anaphylactoid reaction occurred in a clinical trial (C4591001) participant who originally received placebo and then received BNT162b2 after unblinding. This individual had an ongoing medical history of drug hypersensitivity and food and seasonal allergies and had onset 2-days post-1st dose of BNT162b2; she self-administered an epinephrine pen and symptoms resolved the same day. In addition, the sponsor's summary of post-authorization A reports identified 1,002 cases of anaphylaxis that met the Brighton Collaboration (BC) definition level 1 (highest level of certainty) through 4 (reported event with insufficient evidence to meet case definition), including nine fatal events. A VAERS search for reports of anaphylaxis returned 1,034 reports, including 524 serious reports and 12 death reports; there were no patterns suggestive of any new safety signals.
|
620 |
+
The important identified risk of anaphylaxis, which can be fatal or life-threatening, will be monitored through routine pharmacovigilance activities, including a data capture aid to identify relevant clinical information, and post-authorization safety studies. This safety concern has labeling proposed in the following sections of the USPI
|
621 |
+
• Section 4 Contraindications
|
622 |
+
• Section 5 Warnings and Precautions, 5.1 Management of Acute Allergic Reactions
|
623 |
+
• Section 6 Adverse Reactions
|
624 |
+
Reviewer comment: The proposed PVP is adequate to monitor the risk of anaphylaxis.
|
625 |
+
28
|
626 |
+
|
627 |
+
8.2 Important Identified Risk: Myopericarditis and Pericarditis
|
628 |
+
During the post-authorization period, myocarditis and pericarditis following administration of the Pfizer-BioNTech COVID-19 Vaccine was reported to VAERS.
|
629 |
+
Myocarditis and pericarditis emerged as a safety signal in VAERS, and there are ongoing analyses for further characterization of these risks. CDC issued clinical considerations regarding myocarditis and pericarditis after receipt of mRNA COVID-19 vaccines among adolescents and young adults in May 2021. Myocarditis and pericarditis following mRNA COVID-19 vaccines was discussed at the FDA Vaccines and Related Biological Products Advisory Committee (VRBPAC) and CDC Advisory Committee on Immunization Practices (ACIP) meetings in June 2021. The EUA Fact Sheet was revised on June 25, 2021 to add a Warning for myocarditis and pericarditis and the PVP was amended to include myocarditis and pericarditis as important identified risks. The sponsor's PVP indicates that a mechanism of action has not been established for how the vaccine could cause myocarditis and pericarditis, however potential hypotheses are related to an immune stimulated response, a general systemic inflammatory response, or a hypersensitivity response. The revised PVP (Version 1.1) also included post-authorization data for myocarditis and pericarditis among individuals 16 years of age and older through June 18, 2021. As per the sponsor, there was a total of 823 reports, including 490 reports of myocarditis and 372 reports of pericarditis. A VAERS search for reports of myopericarditis returned 1,023 reports (1,012 were U.S. reports), including 809 serious reports (seven were death reports concerning six unique individuals). As described in the O/E analysis, given a 7-day risk window (Tables 3 and
|
630 |
+
4), the reporting rate and R is elevated in age groups under 30 years, with more cases occurring after dose 2. The reporting rate and RR was higher among males than females for almost all age groups.
|
631 |
+
Monitoring for myocarditis and pericarditis is ongoing and includes the following activities:
|
632 |
+
Continued passive surveillance using VAERS
|
633 |
+
Vaccine Safety Datalink (VSD) analyses for safety signals
|
634 |
+
- Ongoing Sponsor passive surveillance using worldwide adverse events data
|
635 |
+
Ongoing Sponsor active surveillance studies
|
636 |
+
In addition, a safety post-marketing requirement (PMR) under FDAAA is warranted to further characterize the serious risk of myopericarditis.
|
637 |
+
This safety concern has labeling proposed in the following sections of the USPI:
|
638 |
+
• Section 5 Warnings and Precautions
|
639 |
+
• Section 6 Adverse Reactions
|
640 |
+
Reviewer comment: The sponsor's proposed PVP and FDA required post-marketing study is adequate to monitor and further assess the risk of myocarditis and pericarditis including long-term follow up. Please see PVP addendum memo for review of the safety PMR.
|
641 |
+
29
|
642 |
+
|
643 |
+
8.3 Important Potential Risk: Vaccine-Associated Enhanced Disease (VAED), including Vaccine-Associated Enhanced Respiratory Disease (VAERD)
|
644 |
+
Vaccine-associated enhanced disease (VAED) is a modified and/or severe presentation of an infectious disease in individuals exposed to a wild-type pathogen following receipt of a vaccine designed to prevent infection (Munoz, 2021). The clinical manifestations of VAED are within the spectrum of natural disease and are difficult to separate from vaccine failure; there are no specific biomarkers or histopathologic findings for VAED (Munoz, 2021). In addition, there can be multiple pathophysiologic pathways that could lead to VAED/VAERD in general, such as immune complex mediated enhanced disease, cellular immunity in enhanced respiratory disease, antibody mediated enhanced disease, cytokine activation, or vaccine-induced enhancement of infection acquisition (Munoz, 2021). The sponsor cites VAED as a theoretical risk based on animal models of related betacoronaviruses, including SARS-CoV-1 and MERS-CoV, and disease enhancement that was seen in vaccinated children following infection with natural virus after receipt of inactivated respiratory syncytial virus vaccine. Data from the blinded placebo-controlled follow-up period in Study C4591001 show one confirmed case of post-vaccination severe COVID-19 compared to 31 confirmed cases in the placebo group. No post-authorization A reports have been identified as cases of VAED/VAERD. The important potential risk of VAED will be monitored through routine pharmacovigilance activities, including a data capture aid to identify relevant clinical information, and post-authorization safety studies.
|
645 |
+
Reviewer comment: The favorable balance of confirmed cases of severe COVID-19 in BNT162b2 vs placebo recipients in Study C4591001 is reassuring. The proposed PVP is adequate to monitor the potential risk of VAED and VAERD.
|
646 |
+
8.4 Missing Information: Use in pregnancy and lactation
|
647 |
+
Pregnant women were excluded from the pivotal clinical trial and the safety profile of the Pfizer-BioNTech COVID-19 vaccine in pregnant or lactating women is not known. Post-authorization data from the sponsor's safety database and a VAERS search did not identify any patterns suggesting new safety concerns. Missing information regarding the use of the product during pregnancy and lactation will be monitored through routine pharmacovigilance activities, a clinical trial, and post-authorization safety studies, including a Pregnancy Registry study which will be a PMC. The lack of safety data will be communicated in product labeling (Section 8.1 Pregnancy and 8.3 Lactation).
|
648 |
+
Reviewer comment: The proposed PVP is adequate to monitor for use in pregnancy and lactation.
|
649 |
+
8.5 Missing Information: Vaccine effectiveness
|
650 |
+
Real-world vaccine effectiveness of the Pfizer-BioNTech COVID-19 vaccine outside of clinical trials and in larger and more diverse populations is not known. Post-
|
651 |
+
30
|
652 |
+
|
653 |
+
authorization data from the sponsor's safety database identified 16 cases of vaccination failure out of 42,086 total AE cases reported cumulatively to February 28, 2021. The sponsor's review of these cases did not reveal any new safety signals associated with the lack of vaccine effectiveness. In addition, a VAERS search returned 1,788 reports that included the PT vaccination failure (n=254) and/or drug ineffective (n=1,565); 31 reports contained both PTs; there were no patterns suggestive of any safety signals.
|
654 |
+
Missing information regarding real-world vaccine effectiveness will be monitored through routine pharmacovigilance activities and post-authorization real-world vaccine effectiveness studies. Data on vaccine efficacy in clinical trials will be communicated in product labeling (Section 14 Clinical Studies).
|
655 |
+
Reviewer comment: The proposed PVP is adequate to monitor vaccine effectiveness.
|
656 |
+
8.6 Missing Information: Use in pediatric individuals <12 years of age
|
657 |
+
Pediatric individuals <12 years of age were excluded from the pivotal clinical trial and the safety profile in this population is not known. Post-authorization data from the sponsor's safety database revealed 34 cases concerning 132 AEs; review of PTs did not reveal new safety concerns. A VAERS search returned 273 reports concerning individuals <12 years of age and did not suggest any patterns concerning for any new safety signals. Missing information regarding pediatric individuals <12 years of age will be monitored through routine pharmacovigilance activities and a post-authorization safety study. There are also ongoing clinical trials. The lack of safety data will be communicated in product labeling (Section 8.4 Pediatric Use).
|
658 |
+
Reviewer comment: The proposed PVP is adequate to monitor use in individuals <12 years of age.
|
659 |
+
9 DE Conclusions
|
660 |
+
Based on review of available data, there is a new safety signal for myopericarditis from post-authorization safety surveillance which warrants a FDAAA Title IX PMR safety study to assess the important identified risk of myopericarditis. Please see PVP addendum memo for review of the safety PMR. The sponsor's proposed Pregnancy Registry study (C4591022) will be a PMC. In addition, the safety of BNT162b2 can be monitored through routine PV activities, risk communication through labeling, and the additional post-authorization safety studies proposed by the sponsor.
|
661 |
+
10 DE Recommendations
|
662 |
+
Should the product be approved, based on the review of the clinical trial safety data, and the post-authorization safety data, OBE/DE recommends the following actions:
|
663 |
+
• Routine pharmacovigilance in accordance with adverse event reporting regulations under 21 CFR 600.80, as per the sponsor's proposed PVP.
|
664 |
+
31
|
665 |
+
|
666 |
+
• Post-marketing requirement (PMR) safety study under Section 505(o) of the
|
667 |
+
FDCA (amended by FDAAA, Title IX, Section 901), to assess the serious risk of myopericarditis. (Please see PVP addendum memo for review of the safety PMR.)
|
668 |
+
• Post-marketing commitment (PMC) safety study for a pregnancy registry
|
669 |
+
(C4591022) to assess whether pregnant women receiving the Pfizer-BioNTech
|
670 |
+
COVID-19 vaccine experience an increased risk of pregnancy and infant safety outcomes compared to two comparator groups.
|
671 |
+
• Voluntary post-marketing studies: Post-EUA studies that continue as voluntary studies will be followed through updates in periodic safety update reports (PSURs).
|
672 |
+
OBE/DE also recommends inclusion of the following AEs to the USPI, Section 6.2 Post-marketing Experience: dizziness and dyspnea.
|
673 |
+
At this time, the available safety data do not suggest a safety concern that would require a REMS. Please see the final version of the package insert submitted by the sponsor for the final agreed-upon language for the label.
|
674 |
+
11 References
|
675 |
+
Allergic Reactions Including Anaphylaxis After Receipt of the First Dose of Pfizer-BioNTech COVID-19 Vaccine - United States, December 14-23, 2020. MMWR Morb Mortal Wkly Rep 2021;70:46-51. DOl: http://dx.doi.org/10.15585/mmwr.mm70021
|
676 |
+
Gee J, Marquez P, Su J, et al. First Month of COVID-19 Vaccine Safety Monitoring - United States, December 14, 2020-January 13, 2021. MMWR Morb Mortal Wkly Rep
|
677 |
+
2021;70:283-288. DOl: http://dx.doi.org/10.15585/mmwr.mm70083
|
678 |
+
Gubernot D, Jazwa A, Niu M, Baumblatt J, U.S. Population-Based background incidence rates of medical conditions for use in safetv assessment of COVID-19 vaccines. Vaccine. 2021 Jun 23;39(28): 3666-3677. PMID: 34088506.
|
679 |
+
Magnus MC, Wilcox AJ, Morken NH, Weinberg CR, Haberg SE. Role of maternal age and pregnancy history in risk of miscarriage: prospective register based study. BMJ.
|
680 |
+
2019;364:1869.
|
681 |
+
Munoz FM, Cramer JP, Dekker CL, Dudley MZ, Graham BS, Gurwith M, Law B, Perlman S, Polack FP, Spergel JM, Van Braeckel E, Ward BJ, Didierlaurent AM, Lambert PH; Brighton Collaboration Vaccine-associated Enhanced Disease Working Group. Vaccine-associated enhanced disease: Case definition and guidelines for data collection, analysis, and presentation of immunization safety data. Vaccine. 2021 May
|
682 |
+
21;39(22):3053-3066. do: 10.1016/j.vaccine.2021.01.055. Epub 2021 Feb 23. PMID:
|
683 |
+
33637387; PMCID: PMC7901381.
|
684 |
+
32
|
685 |
+
|
686 |
+
Myocarditis Brighton Collaboration Definition (Pandemic Emergency Response
|
687 |
+
Process_Draft Release), Version 1.4.2; May 30, 2021. Available at:
|
688 |
+
https://brightoncollaboration.us/wp-content/uploads/2021/07/Myocarditis-
|
689 |
+
CD Version 1.4.2 30.May .2021 LOC ALL FINAL.POSTING.pdf
|
690 |
+
Roth, G. A., Mensah, G., Johnson, C.O., Addolorato, G., Journal of the American College of Cardiology J Am Coll Cardiol. 2020 Dec 22; 76(25): 2982-3021. PMID:
|
691 |
+
33309175.
|
692 |
+
Rüggeberg JU, Gold MS, Bayas JM, Blum MD, Bonhoeffer J, Friedlander S, de Souza Brito G, Heininger U, Imoukhuede B, Khamesipour A, Erlewyn-Lajeunesse M, Martin S, Mäkelä M, Nell P, Pool V, Simpson N; Brighton Collaboration Anaphylaxis Working Group. Anaphylaxis: case definition and guidelines for data collection, analysis, and presentation of immunization safety data. Vaccine. 2007 Aug 1;25(31):5675-84. doi:
|
693 |
+
10.1016/j.vaccine.2007.02.064. Epub 2007 Mar 12. PMID: 17448577.
|
694 |
+
Shimabukuro TT, Cole M, Su JR. Reports of Anaphylaxis After Receipt of mRNA COVID-19 Vaccines in the US-December 14, 2020-January 18, 2021. JAMA. 2021 Mar
|
695 |
+
16;325(11):1101-1102. do: 10.1001/jama.2021.1967. PMID: 33576785
|
696 |
+
33
|
697 |
+
|
docs/Pharmacovigilance Plan Review-Addendum Memo - COMIRNATY.txt
ADDED
@@ -0,0 +1,183 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Department of Health and Human Services
|
2 |
+
Food and Drug Administration (FDA)
|
3 |
+
Center for Biologics Evaluation and Research (CBER)
|
4 |
+
Office of Biostatistics and Epidemiology (OBE)
|
5 |
+
Division of Epidemiology (DE)
|
6 |
+
PHARMACOVIGILANCE PLAN REVIEW: ADDENDUM MEMORANDUM
|
7 |
+
From:
|
8 |
+
Meghna Alimchandani, MD
|
9 |
+
Deputy Director, Division of Epidemiology (DE)
|
10 |
+
Kerry Welsh, MD
|
11 |
+
Medical Officer, Analytic Epidemiology Branch (AEB)
|
12 |
+
To:
|
13 |
+
Through:
|
14 |
+
Subject:
|
15 |
+
Sponsor:
|
16 |
+
Product:
|
17 |
+
BLA Number:
|
18 |
+
Proposed Indication:
|
19 |
+
Submission Date:
|
20 |
+
Action Due Date:
|
21 |
+
Ramachandra Naik, PhD
|
22 |
+
Chair, Review Committee
|
23 |
+
Office of Vaccines Research and Review (OVRR), CBER, FDA
|
24 |
+
Manette Niu, MD
|
25 |
+
Branch Chief, AEB
|
26 |
+
DE, OBE, CBER, FDA
|
27 |
+
Narayan Nair, MD
|
28 |
+
Division Director, DE
|
29 |
+
OBE, CBER, FDA
|
30 |
+
Review of Pharmacovigilance Plan - Addendum memo
|
31 |
+
Pfizer
|
32 |
+
COMIRNATY; BNT162b2 (Pfizer-BioNTech COVID-19
|
33 |
+
Vaccine)
|
34 |
+
125742/0
|
35 |
+
Active immunization to prevent COVID-19 disease caused by SARS-CoV-2 in individuals >16 years of age.
|
36 |
+
May 18, 2021
|
37 |
+
January 16, 2022
|
38 |
+
1
|
39 |
+
|
40 |
+
1 Objectives and Scope
|
41 |
+
The sponsor's proposed pharmacovigilance plan (PVP), clinical safety database and post-authorization safety data were reviewed in the OBE/DE Pharmacovigilance Plan
|
42 |
+
Review Memorandum, dated August 6, 2021 (OBE/DE primary reviewer: Deborah Thompson, MD). This addendum memo serves to provide review updates, including additional VAERS analvsis for adverse events of special interest, and new information on sponsor proposed postmarketing safety studies, and final OBE/DE recommendations for postmarket safety monitoring for COMIRNATY.
|
43 |
+
2 Vaccine Adverse Event Reporting System Data
|
44 |
+
FDA post-authorization safety data was previously summarized in section 6 of OBE/DE
|
45 |
+
Pharmacovigilance Plan Review Memorandum, dated August 6, 2021. A COVID-19
|
46 |
+
Vaccine Safety Update1 from the European Medicines Agency (EMA) prompted further
|
47 |
+
VAERS analysis of the following adverse events of special interest (AESI): ervthema multiforme; glomerulonephritis and nephrotic syndrome; menstrual disorders.
|
48 |
+
• Erythema multiforme (EM), Stevens-Johnson Syndrome, and toxic epidermal necrolysis:
|
49 |
+
A query? of the VAERS database on August 16, 2021, retrieved 194 reports of
|
50 |
+
which there were 53 U.S. reports. Among U.S. reports (n = 53), there were 12
|
51 |
+
serious reports including 1 death:
|
52 |
+
• The patient that died (VAERS ID 1034116) was a 58 year old female who presented with 3 - 4 days of extensive rash with skin sloughing 11 days after vaccination. Skin biopsy was compatible with toxic epidermal necrolvsis. She died ®® davs after vaccination.
|
53 |
+
Cases involved 29 females, 23 males and sex was unknown in one case. Median age was 56 years (range 13 - 98 years, unknown for 5 cases). Interval to onset of symptoms post vaccination was 2 days (range 0 - 45 days, unknown for 3 cases).
|
54 |
+
• Glomerulonephritis and nephrotic syndrome:
|
55 |
+
A query of the VAERS database on August 16, 2021, retrieved 175 reports of
|
56 |
+
which there were 57 U.S. reports. Among U.S. reports (n = 57), there were 35
|
57 |
+
serious reports. There were no deaths. Cases involved 24 females, 32 males and sex was not reported in one case. Median age was 40 years (range 12 - 88
|
58 |
+
1 https://www.ema.europa.eu/en/documents/covid-19-vaccine-safety-update/covid-19-vaccine-safety-update-spikevax-previouslv-covid-19-vaccine-moderna-11-august-2021 en.odf
|
59 |
+
2 Preferred Terms (PTs) for querv: ERYTHEMA MULTIFORME-STEVENS-JOHNSON SYNDROME:TOXIC EPIDERMAL NECROLYSIS
|
60 |
+
3 PTs for query: ANTI-GLOMERULAR BASEMENT MEMBRANE DISEASE; C3 GLOMERULOPATHY; FIBRILLARY GLOMERULONEPHRITIS; FOCAL SEGMENTAL GLOMERULOSCLEROSIS: GLOMERULONEPHRITIS: GLOMERULONEPHRITIS ACUTE:GLOMERULONEPHRITIS CHRONIC:GLOMERULONEPHRITIS MEMBRANOPROLIFERATIVE:GLOMERULONEPHRITIS MEMBRANOUS:GLOMERULONEPHRITIS MINIMAL LESION•GLOMERULONEPHRITIS PROLIFERATIVE-GLOMERULONEPHRITIS RAPIDLY PROGRESSIVE:GOODPASTURES SYNDROME:GRANULOMATOSIS WITH POLYANGIITIS:HENOCH-SCHONLEIN PURPURA: HENOCH-SCHONLEIN PURPURA NEPHRITIS: IGA NEPHROPATHY:IGM NEPHROPATHY:MESANGIOPROLIFERATIVE GLOMERULONEPHRITIS: MICROSCOPIC POLYANGIITIS:NEPHRITIC SYNDROME:NEPHRITIS ALLERGIC:NEPHRITIS:NEPHRITIS INTERSTITIAL: NEPHROTIC SYNDROME
|
61 |
+
2
|
62 |
+
|
63 |
+
years, unknown for 2 cases). Interval to onset of symptoms post vaccination was 2.5 days (range 0 - 48 days, unknown for 3 cases).
|
64 |
+
• Menstrual disorders:
|
65 |
+
A query of the VAERS database on August 16, 2021, retrieved 7249 reports of which there were 3327 U.S. reports. Twenty-eight U.S. reports were excluded because sex was reported as male, or sex was not reported. Among U.S. cases
|
66 |
+
in females only (n = 3299), there were 85 serious reports. There were no deaths.
|
67 |
+
Median age was 37 years (range 12 - 74 years, unknown for 107 cases).
|
68 |
+
Interval to onset of symptoms post vaccination was median 3 days (range 0 - 154 days, unknown for 158 cases).
|
69 |
+
Reviewer comment: Note that the above analysis is based on case counts retrieved from automated queries, and individual cases were not manually reviewed. Limitations of passive surveillance data include missinq/incomplete data and unconfirmed diagnoses. In the context of 201,577,973 doses of Pfizer-BioNTech COVID-19 Vaccine administered, there are no new safety signals identified from the above analysis of VAERS data at this time. Based on the above query results, there were few U.S.
|
70 |
+
reports for erythema multiforme (n = 53 U.S.) and glomerulonephritis and nephrotic
|
71 |
+
syndrome (n = 57 U.S. reports). Majority of the reports of menstrual disorders were non-
|
72 |
+
serious reports. Menstrual disorders are common in the general population and can occur without an underlying medical condition. OBE/DE will continue safety monitoring for adverse events after COMIRNATY. We will review any additional information on these AESIs from EMA when available.
|
73 |
+
3 Serious risks: myocarditis and pericarditis, and subclinical myocarditis
|
74 |
+
Myocarditis and pericarditis: Post-authorization safety data (previously described in section 6 of OBE/DE Pharmacovigilance Plan Review Memorandum, dated August 6,
|
75 |
+
2021) has identified serious risks for myocarditis and pericarditis after COMIRNATY, with increased risk in males under 30 years of age, particularly following the second dose, and onset of symptoms within 7 days following vaccination. Authorized EUA Fact Sheets were updated on June 25, 2021, to include a new Warning about myocarditis and pericarditis.
|
76 |
+
Subclinical myocarditis: Incidence of subclinical myocarditis and potential long-term sequelae following COMIRNATY are unknown. A previous study® of smallpox vaccine
|
77 |
+
4 PTs for query: ABNORMAL UTERINE BLEEDING;ABNORMAL WITHDRAWAL BLEEDING; ANOVULATORY CYCLE; BLEEDING ANOVULATORY;
|
78 |
+
DELAYED MENARCHEDYSMENORRHOE;INTERMENSTRUALBLEEDING:MENSTRUALDISORDER:MENSTRUALDISCOMFORT:MENSTRUATION IRREGULAR;PREMENSTRUAL DYSPHORIC DISORDER;PREMENSTRUAL PAIN;PREMENSTRUAL SYNDROME;WITHDRAWAL BLEED; AMENORRHOEA;
|
79 |
+
HYPOMENORRHOEA;MENSTRUATION DELAYED; OLIGOMENORRHOEA; HEAVY MENSTRUAL BLEEDING; MENOMETRORRHAGIA;
|
80 |
+
POLYMENORRHAGIA; POLYMENORRHOEA
|
81 |
+
5 CDC COVID Data Tracker accessed on August 18, 2021 https://covid.cdc.gov/covid-data-tracker/#vaccinations vacc-total-admin-rate-total
|
82 |
+
6 Engler RJ, et al. A prospective study of the incidence of myocarditis/pericarditis and new onset cardiac symptoms following smallpox and influenza vaccination. PLoS One. 2015;10(3): e0118283
|
83 |
+
|
84 |
+
suggested an incidence of possible subclinical myocarditis (based on cardiac troponin T elevations) 60-times higher than the incidence rate of overt clinical myocarditis.
|
85 |
+
FDA information request dated July 28, 2021, asked the sponsor to propose postmarketing observational safety study(ies) to assess myocarditis and pericarditis following administration of COMIRNATY to quantify the magnitude of risk by age, sex, and dose; include follow up cases (e.g., via a registry) for recovery status and long-term sequelae; and propose plans to characterize subclinical cases of myocarditis. The sponsor's proposed plans were reviewed (responses to Information Requests dated July 28, 2021, and August 10, 2021) and recommendations for proposed safety postmarketing requirements/commitments (PMs/PMs) as well as CBER Sentinel Sufficiency assessment were presented to the CBER Safety Working Group (SWG) on
|
86 |
+
August 12, 2021.
|
87 |
+
4 Sponsor proposed post-authorization/postmarketing safety studies
|
88 |
+
The safety surveillance studies proposed by the Sponsor were previously reviewed in section 7.3 of OBE/DE Pharmacovigilance Plan Review Memorandum, dated August 6,
|
89 |
+
2021. Additional information provided by the sponsor is summarized below.
|
90 |
+
Studies to assess risks of myocarditis, pericarditis and subclinical myocarditis
|
91 |
+
• C4591021 and C4591021 substudy (EU): Post Conditional Approval Active
|
92 |
+
Surveillance Study Among Individuals in Europe
|
93 |
+
• C4591021 is a retrospective cohort study and the C4591021 substudy is a natural history cohort study within a retrospective cohort study. The substudy plans to collect follow-up for treatment for myocarditis and pericarditis, clinical outcomes, and recovery. The data source comprises of electronic healthcare databases in Netherlands, Norway, United Kingdom, Italy and Spain. The sponsor estimates that the EU databases will capture approximately 4.1 million individuals ≤ 30 years of age with exposure to COMIRNATY. The final protocol for study C4591021 was approved by the EMA on June 24, 202, and this protocol was submitted to FDA for review on August 11, 2021 and is currently under review.?
|
94 |
+
Prospective cohort registry study for long term follow-up, in collaboration with Pediatric Heart Network (PHN). PHN is a multi-center consortium of hospitals across U.S. and Canada that conducts research for congenital and pediatric-acquired heart disease. The National Institutes of Health (NIH)/National Heart, Lung and Blood Institute (NHLBI) provides funding for PHN. The sponsor identified approximately 130 patients (as of August 2021), who presented to PHN
|
95 |
+
https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0118283
|
96 |
+
Note that review of study protocols are documented in separate protocol review memorandums.
|
97 |
+
|
98 |
+
sites after receiving a COVID-19 vaccine and were diagnosed with myocarditis.
|
99 |
+
The sponsor states that, "additional patients continue to present and could be enrolled." Projected sample size and statistical analysis plan will be provided upon submission of the final study protocol on November 30, 2021. In accordance with FDA recommendations, the sponsor has agreed to follow subjects prospectively for 5 years. The objectives of the study include:
|
100 |
+
• Characterize the clinical course of acute post-vaccine myocarditis
|
101 |
+
Characterize potential long-term sequelae and quality of life
|
102 |
+
• Compare long-term effects of post-vaccine myocarditis with those of nonvaccine myocarditis, including myocarditis arising in COVID-infected persons
|
103 |
+
• Identify possible risk factors for post-vaccine myocarditis (including age, sex, race, ethnicity, obesity, and other factors)
|
104 |
+
• Plans by Sponsor to characterize subclinical cases of myocarditis:
|
105 |
+
• The sponsor has expressed challenges in proposing a potential prospective study of subclinical myocarditis because of the absence of a definition of subclinical myocarditis and unknown background incidence of troponin abnormalities. As an initial step, the sponsor plans to determine the background rate of abnormal troponin levels by analyzing troponin I levels in samples of stored sera (drawn <1 year ago) in 12-30-year-old individuals participating in BNT162b2 studies, prior to receipt of BNT162b2 (i.e., either at baseline, or at any visit for placebo recipients).
|
106 |
+
Three thousand samples, stratified in the 12-17, 18-24 and 25-30 years age group, will be analyzed (there is a 95% probability of observing one abnormal result amongst the overall sample if the background rate of abnormality is 0.1%). The sponsor anticipates this analysis to be completed by the end of December 2021.
|
107 |
+
o The sponsor has proposed modifications to the following two trials to
|
108 |
+
obtain a serum sample for storage and potential future troponin testing, at baseline and 2-5 days after the second or third dose of BNT162b2:
|
109 |
+
* Study C4591007: proposed addition of 750 participants 5 to <12 years of age (randomized 2:1 to receive BNT162b2 10 ug or placebo) and 500 participants 12-15 years of age (open label receipt of BNT162b2 30 ug).
|
110 |
+
C4591031 substudy: proposed addition of a new substudy of 1000 subiects with documented receipt of 2 prior 30 ug doses of BNT162b2 (the second dose received at least 6 months ago), 16 to 30 years of age (randomized 1:1 in a crossover design to receive
|
111 |
+
30 Mg BNT162b2 or placebo at baseline and the alternative 4 weeks later).
|
112 |
+
• As per the sponsor, "Assuming that subclinical myocarditis can be defined on the basis of elevated troponin I, and that the baseline analysis indicates that such a study is feasible, we will consider C4591031 to be the
|
113 |
+
|
114 |
+
prospective study to assess the incidence of subclinical myocarditis following vaccination in individuals ≥16 years. If the sample size of 1000 is insufficient, it will be increased through a protocol amendment."
|
115 |
+
5 CBER Safety Working Group (SWG) concurrence with proposed safety postmarketing requirements/commitments (PMRs/PMCs)
|
116 |
+
Based on review of available data, there are known risks for myocarditis and pericarditis and an unexpected serious risk for subclinical myocarditis, which warrant PMR safety studies to assess these serious risks. The CBER Sentinel Program was deemed to be insufficient to assess the serious risks of myocarditis and pericarditis, and subclinical myocarditis for the following reasons (please also see Sentinel Sufficiency memorandum):
|
117 |
+
• At the time of BLA approval, the data sources in the CBER Sentinel Program are not sufficient to identify the outcomes due to lack of sufficient power to assess the magnitude of risk in patients 12-30 years of age.
|
118 |
+
• In addition, CBER Sentinel Program is not sufficient to follow up cases for recovery status and long-term sequelae of myocarditis and pericarditis, or for identification and characterization of subclinical myocarditis cases.
|
119 |
+
Furthermore, the FDA and applicant have agreed upon safety studies as PMCs to (a) assess safety in pregnant women and, (b) an active surveillance study in the Veteran's Affair Health System database, which includes sub-cohorts of interest (i.e., immunocompromised, elderly, individuals with specific comorbidities, individuals receiving only one dose Pfizer vaccine, and individuals with prior SARS-CoV-2 infection).
|
120 |
+
During a meeting on August 12, 2021, the CBER Safety Working Group concurred with the review team's proposed PMRs/PMCs:
|
121 |
+
• Postmarketing requirements (PM) under Section 505(o) of Federal Food, Drug, and Cosmetic Act (FDCA) to assess known serious risks of mvocarditis and pericarditis and an unexpected serious risk for subclinical myocarditis:
|
122 |
+
1. Epidemiologic studies using large electronic healthcare databases to evaluate the occurrence of myocarditis and pericarditis
|
123 |
+
a) US - Sentinel system (C4591009)
|
124 |
+
b) EU - active surveillance study (C4591021 and C4591021 substudy)
|
125 |
+
2. Registry for long-term follow-up (in collaboration with Pediatric Heart
|
126 |
+
Network)
|
127 |
+
3. Prospective study to assess the incidence of subclinical myocarditis following vaccination
|
128 |
+
• Postmarketing commitments (PMCs):
|
129 |
+
6
|
130 |
+
|
131 |
+
1. Pregnancy registry study to assess pregnancy and infant outcomes after exposure to COMIRNATY during pregnancy among pregnant women aged 18 years or older& who reside in the US or Canada. (C4591022)
|
132 |
+
2. Randomized controlled trial (RCT) in pregnant women (C4591015)
|
133 |
+
3. Active safety surveillance study among persons in the Veteran's Affairs
|
134 |
+
Health System (C4591012)
|
135 |
+
The sponsor was notified of the above PMs/PMCs in an Information Request (IR) dated August 13, 2021.
|
136 |
+
Updates since August 12, 2021 SWG meeting:
|
137 |
+
• During the SW meeting, there were questions raised regarding the feasibility of completing the RCT in pregnant women (C4591015), as planned, considering CDC's recommendation° of COVID-19 vaccination for all people 12 years and older, including people who are pregnant. In further communication with the sponsor, Pfizer described this as a global study that included sites outside the U.S. The Sponsor acknowledged challenges with enrollment due to recommendations for immunization of pregnant women in most participating countries, which may preclude them from reaching the full target enrollment for 700 subjects. As of August 13, 2021, enrollment included 259 subjects, and the sponsor anticipated enrollment for approximately 450 subjects by December
|
138 |
+
2021. The Sponsor's Internal Review Committee met on August 5, 2021, to review reactogenicity and safety data through 7 days after the second dose and recommended that the study continue. At this time, Pfizer plans (b) (4)
|
139 |
+
Upon further discussion between OVRR and OBE, it was decided not to include the RCT in pregnant women as a PMC at this time. The study will continue under IND. OBE defers to OVRR as the lead reviewer for this clinical trial.
|
140 |
+
• The SWG had concurred on the need for PMR(s) to further assess subclinical myocarditis, but additional details on study design were not available at the time of the SW meeting. Since the SW meeting, OVRR had further communication with the sponsor and, the sponsor proposed protocol modifications to two clinical trials (studies C4591007 and C4591031) to assess subclinical myocarditis. OBE defers to OVRR as the lead reviewer for these clinical trial PMRs:
|
141 |
+
• A prospective assessment of the incidence of subclinical myocarditis following administration of the second dose of COMIRNATY in a subset of participants 5 through 15 years of age enrolled in Study C4591007
|
142 |
+
& The pregnancy registry will be in collaboration with the Organization of Teratology Information Specialists
|
143 |
+
(OTIS) /MotherToBaby Pregnancy Registry. The final protocol was submitted on July 1, 2021, is currently under review.
|
144 |
+
9 https://www.cdc.gov/coronavirus/2019-ncov/vaccines/recommendations/pregnancy.html#anchor 1628692562866
|
145 |
+
|
146 |
+
• Study C4591031 substudy to prospectively assess the incidence of subclinical myocarditis following administration of a third dose of
|
147 |
+
COMIRNATY in a subset of participants 16 to 30 years of age
|
148 |
+
• OBE and OVRR are in agreement with the following PMC for a vaccine effectiveness study: Study C4591014, entitled "Pfizer-BioNTech COVID-19
|
149 |
+
BNT162b2 Vaccine Effectiveness Study - Kaiser Permanente Southern
|
150 |
+
California." DE defers to OBE/OD as the lead reviewer of real-world evidence
|
151 |
+
(RWE) for vaccine effectiveness.
|
152 |
+
• OVRR included the following clinical trial as a PMC: An evaluation of the immunogenicity and safety of lower dose levels of COMIRNATY in individuals 12 through <30 years of age enrolled in Study C4591007. OBE defers to OVRR as the lead reviewer for this clinical trial PMC.
|
153 |
+
6 DE Recommendations
|
154 |
+
Should the product be approved, based on the review of the clinical trial safety data, and the post-authorization safety data, OBE/DE recommends the following pharmacovigilance activities:
|
155 |
+
• Routine pharmacovigilance in accordance with adverse event reporting regulations under 21 CF 600.80, as per sponsor's proposed PVP (version 1.1).
|
156 |
+
• Postmarketing requirement (PMR) safety studies under Section 505(o) of the Federal Food, Drug, and Cosmetic Act (FDCA) to assess the known serious risks of myocarditis and pericarditis and an unexpected serious risk for subclinical myocarditis:
|
157 |
+
1. Study C4591009, entitled "A Non-Interventional Post-Approval Safety
|
158 |
+
Study of the Pfizer-BioNTech COVID-19 mRNA Vaccine in the United States," to evaluate the occurrence of myocarditis and pericarditis following administration of COMIRNATY.
|
159 |
+
2. Study C4591021, entitled "Post Conditional Approval Active Surveillance
|
160 |
+
Study Among Individuals in Europe Receiving the Pfizer-BioNTech Coronavirus Disease 2019 (COVID-19) Vaccine," to evaluate the occurrence of myocarditis and pericarditis following administration of COMIRNATY.
|
161 |
+
3. Study C4591021 substudy to describe the natural history of myocarditis and pericarditis following administration of COMIRNATY.
|
162 |
+
4. A prospective cohort study with at least 5 years of follow-up for potential long-term sequelae of myocarditis after vaccination (in collaboration with Pediatric Heart Network).
|
163 |
+
|
164 |
+
The following clinical trials to assess subclinical myocarditis will be under the lead review of OVRR:
|
165 |
+
5. A prospective assessment of the incidence of subclinical myocarditis following administration of the second dose of COMIRNATY in a subset of participants 5 through 15 years of age enrolled in Study C4591007.
|
166 |
+
6. Study C4591031 substudy to prospectively assess the incidence of subclinical myocarditis following administration of a third dose of
|
167 |
+
COMIRNATY in a subset of participants 16 to 30 years of age.
|
168 |
+
• Postmarketing commitment (MC) safety studies agreed upon by FDA and applicant:
|
169 |
+
1. Study C4591022, entitled "Pfizer-BioNTech COVID-19 Vaccine Exposure during Pregnancy: A Non-Interventional Post- Approval Safety Study of Pregnancy and Infant Outcomes in the Organization of Teratology Information Specialists (OTIS)/MotherToBaby Pregnancy Registry."
|
170 |
+
2. Study C4591012, entitled "Post-emergency Use Authorization Active
|
171 |
+
Safety Surveillance Study Among Individuals in the Veteran's Affairs Health System Receiving Pfizer-BioNTech Coronavirus Disease 2019
|
172 |
+
(COVID-19) Vaccine."
|
173 |
+
• Voluntary postmarketing studies: The sponsor has agreed to provide updates regarding post-EUA studies that continue as voluntary studies post-licensure in periodic safety update reports (PSURs).
|
174 |
+
1. C4591011: Active safety surveillance of the Pfizer-BioNTech COVID-19 vaccine in the U.S. Department of Defense population following
|
175 |
+
Emergency Use Authorization
|
176 |
+
2. C4591008: HERO Together: A post-Emergency Use Authorization observational cohort study to evaluate the safety of the Pfizer-BioNTech
|
177 |
+
COVID-19 Vaccine in U.S. healthcare workers, their families, and their
|
178 |
+
communities
|
179 |
+
At this time, the available safety data do not suggest a safety concern that would require a Risk Evaluation and Mitigation Strategy (REMS).
|
180 |
+
Please see the approval letter for study milestone dates.
|
181 |
+
Please see the final version of the package insert submitted by the sponsor for the final agreed-upon lanquage for the label.
|
182 |
+
C
|
183 |
+
|
docs/Real World Evidence BLA Memo - COMIRNATY.txt
ADDED
@@ -0,0 +1,134 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FDA U.S. FOOD & DRUG
|
2 |
+
ADMINISTRATION
|
3 |
+
Department of Health and Human Services
|
4 |
+
Food and Drug Administration
|
5 |
+
Center for Biologics Evaluation and Research (CBER)
|
6 |
+
Office of Biostatistics and Epidemiology (OBE)
|
7 |
+
REAL WORLD EVIDENCE BLA MEMORANDUM
|
8 |
+
From:
|
9 |
+
Yun Lu, PhD
|
10 |
+
Mathematical Statistician
|
11 |
+
Analytics and Benefit-Risk Assessment Team (ABRA)
|
12 |
+
Office of Biostatistics and Epidemiology (OBE)
|
13 |
+
CBER, FDA
|
14 |
+
To:
|
15 |
+
Ramachandra Naik, PhD Chair of the Review Committee Office of Vaccines Research and Review
|
16 |
+
Through:
|
17 |
+
Richard Forshee, PhD Acting Deputy Director, OBE CBER, FDA
|
18 |
+
Subject:
|
19 |
+
Review of Pharmacovigilance Plan, Real World Post-Authorization Effectiveness Protocol C4591014, Post-Authorization Safety Protocols C4591009, C4591021,
|
20 |
+
Amendment 30, Amendment 42, Amendment 51
|
21 |
+
Sponsor:
|
22 |
+
BioNTech RNA Pharmaceuticals GmbH/Pfizer, Inc.
|
23 |
+
Product:
|
24 |
+
COMIRNATY; Pfizer-BioNTech COVID-19 Vaccine*
|
25 |
+
Application Type/Number:
|
26 |
+
BLA STN 125742/0
|
27 |
+
Proposed Indication:
|
28 |
+
Prevention of COVID-19 in individuals 16 years of age and older
|
29 |
+
Submission Date:
|
30 |
+
May 18, 2021
|
31 |
+
*The product was also referred to as BNT162b2 in the clinical development
|
32 |
+
|
33 |
+
1 OBJECTIVE
|
34 |
+
The purpose of this review is to assess the adequacy of the real world post-authorization vaccine effectiveness protocols C4591014, post-authorization vaccine safety protocols C4591009 and C4591021 for Pfizer-BioNTech coronavirus disease
|
35 |
+
2019 (COVID-19) Vaccine COMIRNATY.
|
36 |
+
Materials Reviewed
|
37 |
+
• Pharmacovigilance Plan, Version 1.1 (ST 125742/0.20; received July 29, 2021)
|
38 |
+
• Response to CBER 28 July 2021 Information Request Regarding Post-marketing Safety Study(ies) (ST 125742/0.30; received August 3, 2021)
|
39 |
+
• Response to CBER 10 August 2021 Information Request Regarding Post-marketing Safety Studies (STN 125742/0.42; received August 11, 2021)
|
40 |
+
• Response to CBER 13 August 2021 Information Request Regarding Safety-Related
|
41 |
+
Postmarketing Requirement/Postmarketing Commitment Studies (ST
|
42 |
+
125742/0.51; received August 16, 2021)
|
43 |
+
• C4591009 Synoposis: A Non-Interventional Post-Approval Safety Study of the
|
44 |
+
Pfizer-BioNTech COVID-19 mRNA Vaccine in the United States.
|
45 |
+
• C4591021 protocol: Post Conditional Approval Active Surveillance Study Among Individuals in Europe Receiving the Pfizer-BioNTech Coronavirus Disease 2019
|
46 |
+
(COVID-19) Vaccine
|
47 |
+
• C4591014 protocol: Pfizer-BioNTech COVID-19 BNT162b2 Vaccine Effectiveness
|
48 |
+
Study - Kaiser Permanente Southern California
|
49 |
+
2 PRODUCT INFORMATION
|
50 |
+
2.1 Product Description
|
51 |
+
The Pfizer-BioNTech COVID-19 Vaccine COMIRNATY contains a nucleoside-modified messenger RNA (modRNA) encoding the viral spike glycoprotein (S) of severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2). The product is a frozen suspension for intramuscular injection.
|
52 |
+
The product is administered as a series of two doses (0.3 mL) each 21 days apart by intramuscular injection.
|
53 |
+
2.2 Proposed Indication
|
54 |
+
The proposed indication for Pfizer-BioNTech COVID-19 Vaccine COMIRNATY in the United States is for active immunization to prevent COVID-19 caused by SARS-CoV-2 in individuals 16 years of age and older.
|
55 |
+
3 POST-AUTHORIZATION SAFETY AND EFFECTIVENESS STUDIES
|
56 |
+
In Response to CBER 28 July 2021 Information Request Regarding Post-marketing Safety Study(ies) (STN 125742/0.30; received August 3, 2021), the sponsor provided required number of cases to detect Myocarditis risk under
|
57 |
+
2
|
58 |
+
|
59 |
+
different assumptions of background rates. The sponsor also compared four post-authorization safety studies C4591009 (US), C4591011 (US), C4591012 (US), and C4591021 (EU) to assess increased risk of safety events of interest, including myocarditis/pericarditis.
|
60 |
+
Reviewer comment: Among the four proposed post-authorization safety studies, two studies C4591009 (US) and C4591021(EU) have relatively large source population. The estimated number of individuals <30 years administered Pfizer vaccine is approximately 14.1 million in C4591009 and approximately 4.1 million in C4591021. It would be useful to include these two safety studies as postmarketing requirements (PMRS).
|
61 |
+
Please provide protocols for the C4591021 study and C4591021 substudy.
|
62 |
+
The sponsor submitted C4591009 protocol synopsis, and the protocol is expected to be finalized by August 31, 2021.
|
63 |
+
Below are the comments for C4591009 protocol synopsis:
|
64 |
+
1. The primary analysis in the post-authorization safety study C4591009 protocol synopsis uses a concurrent unexposed cohort. People without vaccination codes could receive their COVID vaccinations outside of the system, and exposure misclassification could bias the results. The self-controlled methods such as self-controlled risk interval (SCRI) are less susceptible to bias due to exposure misclassification. SCRI with a post-vaccination control window was proposed as a sensitivity analysis.
|
65 |
+
Please clarify how you plan to assess the magnitude of exposure misclassification for the concurrent unexposed cohort and quantify the bias. If the magnitude of the exposure misclassification is large, please consider using the SCRI as the primary analysis. The proposed SCRI control window has the same length as the risk interval, which may decrease the risk of time-varying confounding bias but could result in more limited person time for some AESIs thus impacting the power of the SCRI analysis. Since SCRI allows the control window to have a different length than the risk window, please consider using a longer control window (e.g., multiples of the risk window) in the primary analysis, while maintaining the shorter control window for a sensitivity analysis. Please provide length of risk interval for each AESI.
|
66 |
+
2. Table 1 on Page 5 of the Response to Information Request provided the required number of cases to detect myocarditis under different assumptions with a self-controlled case series (SCCS) analysis. The study C4591009 protocol synopsis proposed a SCRI analysis. SCCS samples cases only, SCRI samples vaccinated individuals only, and the control interval could differ between these two study designs even with the same length of risk interval. Please clarify the length and definition of control interval in the Table 1 sample size calculation. The choice of risk window is critical for SCRI. Because the onset of myocarditis was typically
|
67 |
+
3
|
68 |
+
|
69 |
+
within several days after mRNA COVID-19 vaccination, please add a 7-day risk window to the SCRI analysis in addition to the proposed 14-day and 21-day risk window. Please also provide the sample size calculation for a 7-day risk window for myocarditis.
|
70 |
+
For study C4591009 protocol synopsis, the sample size calculation on Page 14 was based on a true RR=1. Please recalculate the sample size under alternative RRS.
|
71 |
+
In Response to CBER 10 August 2021 Information Request Regarding Post-marketing Safety Studies (ST 125742/0.42; received August 11, 2021), the sponsor addressed questions regarding study C4591009 and provided protocol for study C4591021.
|
72 |
+
Reviewer comment:
|
73 |
+
Below are the comments for sponsor's response regarding C4591009(US):
|
74 |
+
1. The sponsor addressed exposure misclassification issue in the full C4591009 protocol (to be submitted by August 31, 2021) with pre-specified feasibility assessment. If vaccine coverage estimates differ meaningfully from the
|
75 |
+
"benchmarking" estimates, the sponsor may consider the SCRI or the cohort design with historical unexposed comparators as the primary study designs and/or consider linkage to immunization registries if feasible.
|
76 |
+
The sponsor's response is acceptable.
|
77 |
+
The COVID pandemic could have short-term and long-term impact on people's health seeking behavior. For historical unexposed comparators, please clarify how you plan to evaluate the temporal trend of time varying confounders.
|
78 |
+
Page 12 of the C4591009 protocol synopsis mentioned ICD-9-CM and ICD-10-CM codes. ICD-10-CM was effective as of Oct 1, 2015. Please clarify whether historical unexposed comparators before Oct 1, 2015 will be used. There are differences between the ICD-9-CM and ICD-10-CM codes, and bias could be introduced. Please clarify how you plan to address the differences between the ICD-9-CM and ICD-10-CM sustem.
|
79 |
+
2. The length of the control window in the SCRI analyses will be assessed separately for each outcome and the risk intervals for each safety event of interest will be provided in Section 9.3.2.1 of the full C4591009 protocol.
|
80 |
+
The sponsor's response is acceptable.
|
81 |
+
3. The sponsor will incorporate a 7-day risk period for myocarditis into the protocols.
|
82 |
+
The sponsor's response is acceptable.
|
83 |
+
4
|
84 |
+
|
85 |
+
4. The sponsor provided study size estimates for 1:1 matching for true RR=1, 1.2 and
|
86 |
+
1.4 in Appendix 1.
|
87 |
+
The sponsor's response is acceptable.
|
88 |
+
The sponsor submitted C4591021(EU) protocol. Below are the comments:
|
89 |
+
1. Page 21. Section 9.1.1.1. Matching process.
|
90 |
+
The sponsor proposed "a 1:1 matching without replacement using a 'rolling cohort' design". A vaccinated individual will be censored if his/her unvaccinated match is vaccinated later.
|
91 |
+
If rapid vaccine rollout happens and a large number of individuals receive vaccines within a short period of time, many vaccinated individuals may get censored. This will have a negative impact on the person time. Please clarify how you plan to address this potential issue.
|
92 |
+
2. Page 23. Section 9.1.2. Self-controlled risk interval (SCRI) design.
|
93 |
+
Figure 1 illustrated a SCRI example with a risk window of 42 days and a control window of 42 days. Please clarify how the risk interval and control interval are defined for a fully vaccinated individual. For example, for a person who receives the and dose 21 days after the ist dose, the ist dose and the and dose risk intervals overlap. Is the risk window 42 days or 42+21=63 days? Is the control window 42 days or 42+21=63 days?
|
94 |
+
3. Page 29. Section 9.3.2.1. Safety outcomes
|
95 |
+
Table 1, Heparin-induced thrombocytopenia (HIT) - like event has a risk interval of 15 days. For a person who receives the 2nd dose 21 davs after the 1st dose, the ist dose risk interval and the and dose risk interval do not overlap. Please clarify the HIT-like event risk and control windows for people who receive two doses.
|
96 |
+
4. Page 29. Section 9.3.2.1. Safety outcomes
|
97 |
+
Table 1. Cardiovascular system. Myocarditis is one of the AESIs. The risk window was listed as "any". Please specify the length of risk window for myocarditis. Only cohort study was proposed in the Table. Please consider adding SCRI for myocarditis.
|
98 |
+
5. Page 32, 9.3.3. Covariate definition
|
99 |
+
"Age will be categorised as age categories in line with published background incidence rates from ACCESS (0-19, 20-29, 30-39, 40-49, 50-59, 60-69, 70-79,
|
100 |
+
80+)"
|
101 |
+
5
|
102 |
+
|
103 |
+
Myocarditis is one of the AESIs. Please consider refining the age category 0-19 to include an adolescent age group, such as 10-19 years old.
|
104 |
+
6. Page 47, 9.5. Study size
|
105 |
+
The protocol mentioned that "The study will be conducted in a source population of 38.9 million individuals captured in the electronic healthcare data sources.
|
106 |
+
39
|
107 |
+
Seven data sources are included in the protocol with a total source population of 38.9 million. The data will be analyzed separately by data source. The number of active individuals ranges from 1 million in Pedianet/Health Search Database (IT) to 16 million in Clinical Practice Research Datalink and Hospital Episode Statistics (UK). Some data sources may not have enough study size to detect rare AESIs.
|
108 |
+
In the Pharmacovigilance Plan, the Sponsor planned three real world post-authorization vaccine effectiveness studies to determine the effectiveness of COMIRNATY when administered outside of the clinical setting: one non-interventional study C4591014 and two low-interventional studies WI235284 and WI255886.
|
109 |
+
Reviewer comment:
|
110 |
+
WI235284 COVID-19 vaccine effectiveness (VE) Substudy 6 will enroll healthy women who present at Emory University Hospital or Emory University Hospital Midtown for delivery, regardless of respiratory syncytial virus or COVID-19 status. A test negative case-control design is proposed.
|
111 |
+
Study WI255886 will be conducted in Bristol, England with approximately 630,000 adults in surveillance population. Real world VE estimates for COVID-19 vaccines will be assessed using a test negative design case control analysis.
|
112 |
+
Study C4591014 will estimate the VE of 2-doses of Pfizer's COVID-19 vaccine against acute respiratory illness requiring hospitalization due to SARS-CoV-2 infection among
|
113 |
+
Kaiser Permanente Southern California (KPSC) members ≥16 years of age. Two parallel study designs are proposed: a test-negative case-control design and a retrospective cohort design.
|
114 |
+
Among the three proposed real world post-authorization vaccine effectiveness studies, Study C4591014 has the largest source population. KPSC has significant proportions of adolescent and young adult populations. It would be useful to include this effectiveness study as a postmarketing commitment (PMC) and include individuals 12 through 15 years of age.
|
115 |
+
In Response to CBER 13 August 2021 Information Request Regarding Safety-Related Postmarketing Requirement/Postmarketing Commitment Studies (ST 125742/0.51; received August 16, 2021), the sponsor addressed questions regarding study C4591014.
|
116 |
+
|
117 |
+
Reviewer comment:
|
118 |
+
The sponsor agreed to include individuals 12 through 15 years of age in Study
|
119 |
+
C4591014.
|
120 |
+
The sponsor's response is acceptable.
|
121 |
+
4 OBE REAL WORLD EVIDENCE RECOMMENDATIONS
|
122 |
+
Postmarketing requirement (PMR) safety studies under Section 505(o) of the Federal Food, Drug, and Cosmetic Act (FDCA) to assess the known serious risks of myocarditis and pericarditis, using real world evidence study design:
|
123 |
+
1. Study C4591009, entitled "A Non-Interventional Post-Approval Safety Study of the Pfizer-BioNTech COVID-19 mRNA Vaccine in the United States."
|
124 |
+
2. Study C4591021, entitled "Post Conditional Approval Active Surveillance Study
|
125 |
+
Among Individuals in Europe Receiving the Pfizer-BioNTech Coronavirus
|
126 |
+
Disease 2019 (COVID-19) Vaccine."
|
127 |
+
3. Study C4591021 substudy to describe the natural history of myocarditis and pericarditis following administration of COMIRNATY.
|
128 |
+
OBE will review the final protocols for C4591009 and C4591021 substudy when available (please see approval letter for study milestone dates). The final protocol for Study C4591021 was submitted August 11, 2021 [under ST 125742.0.42] and is currently under review1
|
129 |
+
Postmarketing commitment (PMC) vaccine effectiveness study agreed upon by FDA and the sponsor:
|
130 |
+
1. Study C4591014, entitled "Pfizer-BioNTech COVID-19 BNT162b2 Vaccine
|
131 |
+
Effectiveness Study - Kaiser Permanente Southern California." Include individuals 12 through 15 years of age.
|
132 |
+
Note that PMR/PMC studies, in addition to the above listed studies, have been described in OBE/Division of Epidemiology pharmacovigilance plan (PVP) review memo and addendum memo.
|
133 |
+
1 Note that the FDA review for this protocol will be documented in a separate protocol review memorandum. Additionally, study C4591021 is also a post-conditional approval study for the European Medicines Agency (EMA) and the protocol was approved by the EMA on June 24, 2021.
|
134 |
+
|
docs/Statistical Review - COMIRNATY.txt
ADDED
@@ -0,0 +1,1088 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Application Type
|
2 |
+
STN
|
3 |
+
CBER Received Date
|
4 |
+
PDUFA Goal Date
|
5 |
+
Division/ Office
|
6 |
+
Committee Chair
|
7 |
+
Clinical Reviewers)
|
8 |
+
Project Manager
|
9 |
+
Priority Review
|
10 |
+
Reviewer Names)
|
11 |
+
Review Completion Date /
|
12 |
+
Stamped Date
|
13 |
+
Supervisory Concurrence
|
14 |
+
Applicant
|
15 |
+
Established Name
|
16 |
+
(Proposed) Trade Name
|
17 |
+
Pharmacologic Class
|
18 |
+
Formulation(s), including
|
19 |
+
Adjuvants, etc
|
20 |
+
Dosage Form(s) and Route(s) of
|
21 |
+
Administration
|
22 |
+
Dosing Regimen
|
23 |
+
Indication(s) and Intended
|
24 |
+
Population(s)
|
25 |
+
Statistical Review
|
26 |
+
STN: 125742/0
|
27 |
+
BLA, Original Application
|
28 |
+
125742/0
|
29 |
+
May 18, 2021
|
30 |
+
January 16, 2022
|
31 |
+
DVRPA /OVRR
|
32 |
+
Ramachandra Naik
|
33 |
+
Ann Schwartz; Susan Wollersheim Mike Smith; Laura Gottschalk Yes Lei Huang
|
34 |
+
Tsai-Lien Lin, Branch Chief, VEB, DB,
|
35 |
+
John A. Scott, Director, DB, OBE
|
36 |
+
BioNTech Manufacturing GmbH (in partnership with Pfizer, Inc.)
|
37 |
+
COVID-19 Vaccine, mRNA
|
38 |
+
COMIRNATY
|
39 |
+
Vaccine
|
40 |
+
After preparation, each 0.3 mL dose contains 30ug modified mRNA encoding
|
41 |
+
SARS-CoV-2 spike glycoprotein
|
42 |
+
Injectable Suspension, Intramuscular
|
43 |
+
Two 0.3 mL doses, 3 weeks apart Active immunization to prevent coronavirus disease 2019 (COVID-19) caused by severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2) in individuals 16 years of age and older.
|
44 |
+
Page i
|
45 |
+
|
46 |
+
Statistical Review
|
47 |
+
STN: 125742/0
|
48 |
+
Table of Contents
|
49 |
+
Glossary....
|
50 |
+
1. Executive Summary..
|
51 |
+
2. Clinical and Regulatory Background
|
52 |
+
3. Submission Ouality and Good Clinical Practices ...............
|
53 |
+
3.1 Submission Quality and Completeness........
|
54 |
+
3.2 Compliance With Good Clinical Practices And Data Integrity.
|
55 |
+
4. Significant Efficacy/Safety Issues Related to Other Review Disciplines............
|
56 |
+
5
|
57 |
+
5. Sources of Clinical Data and Other Information Considered in the Review ........... 5
|
58 |
+
5.1 Review Strategy......
|
59 |
+
5.2 BLA/IND Documents That Serve as the Basis for the Statistical Review.........
|
60 |
+
5.3 Table of Studies/Clinical Trials...
|
61 |
+
6. Discussion of Individual Studies/Clinical Trials.
|
62 |
+
6.1 Study C4591001.
|
63 |
+
6.1.1 Objectives.
|
64 |
+
6.1.2 Design Overview.
|
65 |
+
6.1.3 Population
|
66 |
+
6.1.4 Study Treatments or Agents Mandated by the Protocol
|
67 |
+
6.1.6 Sites and Centers
|
68 |
+
6.1.7 Surveillance/Monitoring.
|
69 |
+
6.1.8 Endpoints and Criteria for Study Success
|
70 |
+
6.1.9 Statistical Considerations & Statistical Analysis Plan
|
71 |
+
6.1.10 Study Population and Disposition
|
72 |
+
6.1.11 Efficacy Analyses.....
|
73 |
+
6.1.12 Safety Analyses.
|
74 |
+
7. Integrated Overview of Efficacy...........
|
75 |
+
10
|
76 |
+
10
|
77 |
+
12
|
78 |
+
16
|
79 |
+
. 25
|
80 |
+
• 25
|
81 |
+
8. Integrated Overview of Safety.......
|
82 |
+
........ 25
|
83 |
+
9. Additional Statistical Issues...........
|
84 |
+
........... 25
|
85 |
+
10. Conclusions..........
|
86 |
+
10.1 Statistical Issues and Collective Evidence .........
|
87 |
+
10.2 Conclusions and Recommendations..
|
88 |
+
............. 25
|
89 |
+
......... 25
|
90 |
+
....... 26
|
91 |
+
Page ii
|
92 |
+
|
93 |
+
Statistical Review
|
94 |
+
STN: 125742/0
|
95 |
+
GLOSSARY
|
96 |
+
BIMO
|
97 |
+
BNT16262
|
98 |
+
CDC
|
99 |
+
CI
|
100 |
+
COVID-19
|
101 |
+
EUA
|
102 |
+
HHS
|
103 |
+
HIV
|
104 |
+
IM
|
105 |
+
IR
|
106 |
+
LNP modRNA
|
107 |
+
NAAT pV
|
108 |
+
RT-PCR
|
109 |
+
SARS-CoV-2
|
110 |
+
VE
|
111 |
+
VRBPAC
|
112 |
+
WHO
|
113 |
+
Bioresearch Monitoring
|
114 |
+
PfizerBioNTech COVID-19 Vaccine
|
115 |
+
Centers for Disease Control and Prevention
|
116 |
+
Confidence interval coronavirus disease 2019
|
117 |
+
Emergency Use Authorization
|
118 |
+
Health and Human Services human immunodeficiency virus intramuscular
|
119 |
+
Information request lipid nanoparticle nucleoside-modified messenger RNA nucleic acid amplification-based test person-years
|
120 |
+
reverse transcription-polymerase chain reaction severe acute respiratory syndrome coronavirus 2 vaccine efficacy
|
121 |
+
Vaccines and Related Biological Products Advisory Committee
|
122 |
+
World Health Organization
|
123 |
+
1. EXECUTIVE SUMMARY
|
124 |
+
Pfizer submitted a Biologics License Application (BLA 125742/0) on May 18, 2021 to seek licensure of the Pfizer-BioNTech COVID-19 Vaccine (BNT16262) for active immunization to prevent Coronavirus Disease 2019 (COVID-19) caused by Severe Acute Respiratory Syndrome Coronavirus 2 (SARS-CoV-2) in individuals 16 years of age and older. The BLA is supported by safety, efficacy, and immunogenicity data from two ongoing studies (C4591001 and BNT-162-01). This statistical review focuses on the analyses of efficacy data collected during the blinded, placebo-controlled follow-up in the Phase 2/3 portion of Study C4591001.
|
125 |
+
Study C4591001 is an ongoing, randomized, placebo-controlled, observer-blinded Phase 1/2/3 study being conducted in the United States, Argentina, Brazil, Germany, South Africa, and Turkey. In the Phase 2/3 portion of the study, 44,165 subjects aged 16 and above were randomized 1:1 to receive two doses of BNT162b2 or placebo 21 days apart.
|
126 |
+
Randomization was stratified by age group. Starting December 14, 2020, following issuance of an Emergency Use Authorization (EUA), participants 16 years of age and older were systematically unblinded when eligible per local recommendations and offered BNT1622 vaccination if they had been randomized to placebo.
|
127 |
+
In the updated efficacy analvsis for cases accrued during blinded placebo-controlled follow-up (cutoff date: March 13, 2021) of Study C4591001 in participants 16 years of age and older, the estimated vaccine efficacy (VE) against confirmed COVID-19
|
128 |
+
Page 3
|
129 |
+
|
130 |
+
Statistical Review
|
131 |
+
STN: 125742/0
|
132 |
+
occurring at least 7 days after Dose 2 was 91.1% (95% CI: 88.8%, 93.1%), with 77 COVID-19 cases in the BNT1622 group compared to 833 cases in the placebo group among participants without evidence of SARS-CoV-2 infection before and during the vaccination regimen; the estimated vaccine efficacy (VE) against confirmed COVID-19
|
133 |
+
occurring at least 7 days after Dose 2 was 90.9% (95% CI: 88.5%, 92.8%), with 81 COVID-19 cases in the BNT1622 group compared to 854 cases in the placebo group among participants with or without evidence of SARS-CoV-2 infection before and during the vaccination regimen.
|
134 |
+
With respect to efficacy against severe COVID-19 cases occurring at least 7 days after Dose 2, the estimated VE was 95.3% (95% CI: 71.0%, 99.9%), with 1 and 21 cases in the BNT1622 and placebo groups, respectively, among participants without evidence of SARS-CoV-2 infection; the VE result was the same among participants with or without evidence of SARS-CoV-2 infection.
|
135 |
+
Overall, the updated efficacy analysis results show that BNT1622 provided high VE in preventing symptomatic COVID-19 and severe COVID-19 cases.
|
136 |
+
2. CLINICAL AND REGULATORY BACKGROUND
|
137 |
+
Coronavirus disease 2019 (COVID-19) is an infectious disease caused by SARS-CoV-2, a novel coronavirus that emerged in late 2019 in patients with pneumonia of unknown cause. On January 31, 2020, the United States Secretary of Health and Human Services (HHS) made the declaration that COVID-19 constitutes a nationwide public health emergency. On March 11, 2020, the World Health Organization (WHO) declared the COVID-19 outbreak a pandemic.
|
138 |
+
The BNT16262 vaccine, developed by BioNTech Manufacturing GmbH in partnership with Pfizer, Inc., was granted Fast Track Designation on July 7, 2020 for individuals ≥18 years of age. An Emergency Use Authorization (EUA) was granted in the U.S. on December 11, 2020 for individuals >16 years of age (EUA 27034). An amendment to the EUA was submitted on May 10, 2021 to support emergency use in participants 12 to 15 years of age.
|
139 |
+
3. SUBMISSION QUALITY AND GOOD CLINICAL PRACTICES
|
140 |
+
3.1 Submission Quality and Completeness
|
141 |
+
The submission was adequately organized and integrated to accommodate the conduct of a complete statistical review.
|
142 |
+
3.2 Compliance With Good Clinical Practices And Data Integrity
|
143 |
+
Please refer to Haecin Chun's Bioresearch Monitoring (BIMO) review memo.
|
144 |
+
Page 4
|
145 |
+
|
146 |
+
Statistical Review
|
147 |
+
STN: 125742/0
|
148 |
+
4. SIGNIFICANT EFFICACY/SAFETY ISSUES RELATED TO OTHER REVIEW
|
149 |
+
DISCIPLINES
|
150 |
+
Please refer to other review disciplines' memos.
|
151 |
+
5. SOURCES OF CLINICAL DATA AND OTHER INFORMATION CONSIDERED IN THE REVIEW
|
152 |
+
5.1 Review Strategy
|
153 |
+
This memo focuses on the statistical review of clinical efficacy data. Please refer to Dr.
|
154 |
+
Ye Yang's memo for the statistical review of clinical safety data, and to Dr. Xinyu Tang's memo for the statistical review of non-clinical data.
|
155 |
+
To demonstrate efficacy of BNT162b2, the applicant provided the efficacy results from the interim analysis (cutoff date: November 4, 2020), the final analysis (cutoff date:
|
156 |
+
November 14, 2020), and an updated analysis for cases accrued during blinded placebo-controlled follow-up (cutoff date: March 13, 2021) for Study C4591001. As the efficacy results from the interim and final analyses supported the issuance of an EU and have been reviewed under EUA 27034, this statistical review primarily focuses on the updated efficacy results.
|
157 |
+
5.2 BLA/IND Documents That Serve as the Basis for the Statistical Review
|
158 |
+
The following documents submitted to the BLA are reviewed:
|
159 |
+
125742/0 (submitted on 5/6/2021)
|
160 |
+
Module 2. Common Technical Document Summaries
|
161 |
+
• Clinical Overview
|
162 |
+
• Summary of Clinical Efficacy
|
163 |
+
Module 5. Clinical Study Reports
|
164 |
+
• C4591001 Statistical Analysis Plan
|
165 |
+
C4591001 Interim 6-Month Report
|
166 |
+
125742/0.3 (submitted on 5/19/2021)
|
167 |
+
Module 1.11.3 Clinical Information Amendment
|
168 |
+
• Response to FDA 18 May 2021 IR
|
169 |
+
125742/0.17 (submitted on 7/26/2021)
|
170 |
+
Module 1.11.3 Clinical Information Amendment
|
171 |
+
• Response to CBER Clinical 22 July 2021 Info Request
|
172 |
+
125742/0.18 (submitted on 7/28/2021)
|
173 |
+
Module 1.11.3 Clinical Information Amendment
|
174 |
+
• Response to CBER 22 July 2021 Info Request
|
175 |
+
125742/0.27 (submitted on 8/2/2021)
|
176 |
+
Page 5
|
177 |
+
|
178 |
+
Statistical Review
|
179 |
+
STN: 125742/0
|
180 |
+
Module 1.14.1 Draft Labeling
|
181 |
+
125742/0.28 (submitted on 8/02/2021)
|
182 |
+
Module 1.11.3 Clinical Information Amendment
|
183 |
+
• Response to CBER Clinical 22 July 2021 Information Request
|
184 |
+
125742/0.32 (submitted on 8/05/2021)
|
185 |
+
Module 1.11.3 Clinical Information Amendment
|
186 |
+
• Response 22 Jul 2021 - Follow-up #3
|
187 |
+
Module 5 Clinical Study Reports
|
188 |
+
• C4591001 - 508 Efficacy Tables
|
189 |
+
125742/0.38 (submitted on 8/09/2021)
|
190 |
+
Module 1.14.1 Draft Labeling
|
191 |
+
Module 5 Clinical Study Reports
|
192 |
+
• C4591001 - Source Vaccine Efficacy Tables
|
193 |
+
125742/0.49 (submitted on 8/16/2021)
|
194 |
+
Module 1.14.1 Draft Labeling
|
195 |
+
Module 5 Clinical Study Reports
|
196 |
+
• C4591001 - Follow Up Table (with and without evidence of infection)
|
197 |
+
5.3 Table of Studies/Clinical Trials
|
198 |
+
Data from two ongoing clinical studies were submitted to support the licensing application for BNT16262 and are summarized in Table 1 below. The pivotal data are derived from a single study, C4591001, which is a multi-center, Phase 1/2/3, randomized, double-blinded, placebo-controlled safety, immunogenicity, and efficacy study; the second study, BNT162-01, is a Phase 1 safety and immunogenicity study evaluating various vaccine candidates and dose levels.
|
199 |
+
Page 6
|
200 |
+
|
201 |
+
Statistical Review
|
202 |
+
STN: 125742/0
|
203 |
+
Table 1. Clinical Trials Supporting Licensure of the Pfizer-BioNTech COVID-19 Vaccine
|
204 |
+
Study Number/ Description
|
205 |
+
BNT162b2 (30 jug)*
|
206 |
+
Placebo
|
207 |
+
Country
|
208 |
+
participants
|
209 |
+
participants
|
210 |
+
(N)
|
211 |
+
(N)
|
212 |
+
C4591001
|
213 |
+
Phase 1/2/3 randomized, placebo-
|
214 |
+
Phase 1ª: 24
|
215 |
+
Phase 1a. 6
|
216 |
+
Argentina, Brazil, controlled, observer-blind; to
|
217 |
+
Phase 2/3b: 22085
|
218 |
+
Phase 2/3b: 22080
|
219 |
+
Germany, S.
|
220 |
+
evaluate safety, immunogenicity
|
221 |
+
Africa, Turkey, and efficacy of COVID-19 US.A.
|
222 |
+
vaccine
|
223 |
+
BNT162-01
|
224 |
+
Phase 1/2 randomized, open-label; 24
|
225 |
+
0
|
226 |
+
Germany
|
227 |
+
to evaluate safety and
|
228 |
+
immunogenicity, dose escalation
|
229 |
+
N= total number of randomized participants 16 years of age and older, as of March 13, 2021 Placebo:
|
230 |
+
Study
|
231 |
+
Status
|
232 |
+
Ongoing
|
233 |
+
Ongoing
|
234 |
+
saline.
|
235 |
+
- Studies C4591001 and BNT162-01 started in April 2020 (first participant, first visit).
|
236 |
+
* Phase 1 studies included additional participants vaccinated with other dose levels and other mRNA vaccine candidates.
|
237 |
+
a Phase 1: enrolled individuals 18-85 years of age
|
238 |
+
b Phase 2/3: Phase 2: enrolled individuals >18 years of age (stratified as 18 to 55 years and 56 to 85 years); Phase 3: enrolled individuals ≥16 years of age (stratified as 16-55 years and >55 years of age).
|
239 |
+
Source: Summarized by reviewer based on information provided in Module 2 - Clinical Overview.
|
240 |
+
6. DISCUSSION OF INDIVIDUAL STUDIES/CLINICAL TRIALS
|
241 |
+
6.1 Study C4591001
|
242 |
+
Title: Phase 1/2/3, Placebo-Controlled, Randomized, Observer-Blind, Dose-Finding Study to Evaluate the Safety, Tolerability, Immunogenicity, and Efficacy of SARS-CoV-
|
243 |
+
2 RNA Vaccine Candidates Against COVID-19 in Healthy Individuals
|
244 |
+
First Subject First Visit: April 29, 2020
|
245 |
+
Data Cut-off: Mach 13, 2021
|
246 |
+
6.1.1 Objectives
|
247 |
+
The objectives and endpoints are presented below are for the Phase 2/3 portion of the study. The objectives for the Phase 1 portion are described in Section 6.1.2 (Design Overview).
|
248 |
+
Primary efficacy obiectives
|
249 |
+
1. To evaluate the efficacy of BNT1622 against confirmed COVID-19 occurring from 7 days after Dose 2 in participants without evidence of SARS-CoV-2 infection before vaccination.
|
250 |
+
Endpoint: COVID-19 disease based on laboratory-confirmed nuclei acid amplification-based test (NAAT) in participants with no serological or virological evidence (up to 7 davs after Dose 2) of past SARS-CoV-2 infection.
|
251 |
+
Page 7
|
252 |
+
|
253 |
+
Statistical Review
|
254 |
+
STN: 125742/0
|
255 |
+
2. To evaluate the efficacy of BNT16262 against confirmed COVID-19 occurring from 7 days after Dose 2 in participants with and without evidence of SARS-CoV-2 infection before vaccination.
|
256 |
+
Endpoint: COVID-19 disease based on laboratory-confirmed NAAT
|
257 |
+
Secondary efficacy objectives
|
258 |
+
• To evaluate the efficacy of BNT1622 against confirmed COVID-19 occurring from 14 days after Dose 2 in
|
259 |
+
o participants without evidence of SARS-CoV-2 infection before vaccination
|
260 |
+
(Dose 1)
|
261 |
+
o participants with and without evidence of SARS-CoV-2 infection before
|
262 |
+
vaccination (Dose 1)
|
263 |
+
Endpoint: COVID-19 disease based on laboratory-confirmed NAAT
|
264 |
+
• To evaluate the efficacy of BNT1622 against severe COVID-19 occurring from 7 days and from 14 days after Dose 2 in
|
265 |
+
• participants without evidence of SARS-CoV-2 infection before vaccination o participants with and without evidence of SARS-CoV-2 infection before
|
266 |
+
vaccination
|
267 |
+
Endpoint: Severe COVID-19 disease
|
268 |
+
• To describe the efficacy of BNT162b2 against confirmed COVID-19 (CDC-defined symptoms) occurring from 7 days and from 14 days after Dose 2 in o participants without evidence of SARS-CoV-2 infection before vaccination o participants with and without evidence of infection before vaccination
|
269 |
+
Endpoint: COVID-19 disease (CDC-defined symptoms) based on laboratory-confirmed NAAT
|
270 |
+
6.1.2 Design Overview
|
271 |
+
Study C4591001 is an ongoing, randomized, placebo-controlled, observer-blinded Phase 1/2/3 study being conducted in the U.S., Argentina, Brazil, Germany, South Africa and Turkey. Initially the study was designed as a Phase 1/2 study in healthy adults in the U.S. for vaccine candidate and dosage selection, as well as evaluation of immunogenicity and preliminary efficacy. The protocol was expanded to include a Phase 2/3 portion of the study to evaluate clinical disease efficacy endpoint in individuals 12 years of age and older in the U.S. and additional sites outside of the U.S. This review will focus on data collected from participants 16 years of age and older.
|
272 |
+
The Phase 1 portion of the study was designed to identify a preferred vaccine candidate(s) and vaccine dose level(s) for further development based on safety, tolerability, and immunogenicity. To this end, two age groups were evaluated in separate
|
273 |
+
Page 8
|
274 |
+
|
275 |
+
Statistical Review
|
276 |
+
STN: 125742/0
|
277 |
+
cohorts: younger adults 18 through 55 years of age (N=45) and older adults 65 through 85 years of age (N=45). The study population included healthy men and women and excluded participants at high risk of SARS-CoV-2 infection or with serological evidence of prior or current SARS-CoV-2 infection. Two different vaccine candidates were evaluated, and younger participants received escalating dose levels Evaluation of escalating dose levels in the older age group (65 through 85 years), were based on recommendations from an internal review committee that reviewed safety and immunogenicity data. For each vaccine candidate and dose level, participants were randomized 4:1, such that 12 participants received the vaccine candidate and 3 participants received placebo. Review of the safety and immunogenicity from Phase 1, in combination with data from Study BNT162-01 (see Section 6.2 of this review), supported the final vaccine candidate and dose level (BNT1622 at 30 ug, given 21 days apart) to proceed into Phase 2/3.
|
278 |
+
In Phase 2/3, participants were initially enrolled with stratification by age (younger adults: 18 through 55 years of age; older adults: over 55 years of age) and a goal of 40% enrollment in the older adult age group. Adolescents 16-17 years of age (and subsequently 12-15 years of age) were added to the protocol later, based on review of safety data in younger adults enrolled in the ongoing study. The study population for Phase 2/3 includes participants at higher risk for acquiring COVID-19 and at higher risk of severe COVID-19 disease, such as participants working in the healthcare field, participants with autoimmune disease, and participants with chronic but stable medical conditions such as hypertension, asthma, diabetes, and infection with HIV, hepatitis B or hepatitis C. Participants were randomized 1:1 to receive 2 doses of either BNT16262 or placebo, 21 days apart. The Phase 2 portion of the study evaluated reactogenicity and immunogenicity for 360 participants enrolled early, and these participants also contribute to the overall efficacy and safety data in the Phase 3 portion.
|
279 |
+
The ongoing Phase 3 portion of the study is evaluating the safety and efficacy of
|
280 |
+
BNT1622 for the prevention of COVID-19 disease occurring at least 7 days after the second dose of vaccine. Efficacy is being assessed throughout a participant's follow-up in the study through surveillance for potential cases of COVID-19. If, at any time, a participant develops acute respiratory illness, an illness visit occurs. Assessments for illness visits include a nasal (midturbinate) swab, which is tested at a central laboratory using a reverse transcription-polymerase chain reaction (RT-PCR) test (e.g., Cepheid;
|
281 |
+
FDA authorized under EUA), or other sufficiently validated NAAT, to detect SARS-CoV-2. The central laboratory NAAT result is used for the case definition, unless it is not possible to test the sample at the central laboratory. In that case, the following NAAT results are acceptable: Cepheid Xpert Xpress SARS-CoV-2, Roche cobas SARS-CoV-2 real-time RT-PCR test (EUA200009/A001), and Abbott Molecular/RealTime SARS-
|
282 |
+
CoV-2 assay (EUA200023/A001).
|
283 |
+
The study design included a planned interim analysis of the first primary efficacy endpoint at pre-specified numbers of COVID-19 cases (at least 62, 92, and 120 cases), and all primary and secondary efficacy endpoints were analyzed in the final efficacy analysis after at least 164 COVID-19 cases were accrued (see Statistical Analysis section,
|
284 |
+
Page 9
|
285 |
+
|
286 |
+
Statistical Review
|
287 |
+
STN: 125742/0
|
288 |
+
below). Participants are expected to participate for a maximum of approximately 26 months.
|
289 |
+
Starting December 14, 2020, following issuance of the Emergency Use Authorization for the Pfizer-BioNTech COVID-19 Vaccine, study participants 16 years of age and older have been unblinded to their treatment assignment when eligible per local recommendations, and offered BNT1622 vaccination if they had been randomized to placebo.
|
290 |
+
The study was unblinded in stages as each participant was either individually unblinded upon eligibility for vaccination outside the study or had concluded their 6-month post-Dose 2 study visit. Every participant 16 years of age and older who participated in the Phase 2/3 study was given the opportunity to receive BNT16262 no later than the 6-month timepoint after the second study vaccination. Participants who originally received placebo but then went on to receive BNT1622 were moved to a new visit schedule to receive both doses of BNT162b2, 3 weeks apart.
|
291 |
+
6.1.3 Population
|
292 |
+
comorbidities.
|
293 |
+
Individuals 12 years of age and older including those with stable infections and common
|
294 |
+
6.1.4 Study Treatments or Agents Mandated by the Protocol
|
295 |
+
Study C4591001 (Phase 1) evaluated a 2-dose series of investigational vaccine or placebo (0.9% normal saline) administered at a 21-day interval. Subiects were randomized to receive one of three levels of investigational RNA vaccine candidates (or placebo) for active immunization against COVID-19. The investigational RNA vaccine candidates included:
|
296 |
+
• BNT1621 (BNT162 RNA-LNP vaccine utilizing modRNA and encoding the
|
297 |
+
RBD): dose levels 10 Mg, 20 Mg, 30 Mg, 100 kg
|
298 |
+
• BNT16262 (BNT162 RNA-LNP vaccine utilizing modRNA and encoding the P2
|
299 |
+
S): dose levels 10 ug, 20 ug, 30 Mg
|
300 |
+
Based upon the preliminary results, the vaccine candidate selected for further evaluation in the Phase 2/3 studies was BNT16262 BNT162 RNA-LN vaccine utilizing modRNA
|
301 |
+
(6) (4) mcg/0.5 mL] at a dose of 30 Mg.
|
302 |
+
6.1.6 Sites and Centers
|
303 |
+
The study was conducted in a total of 153 sites: 131 in the U.S., 9 in Turkey, 6 in Germany, 4 in South Africa, 2 in Brazil, and 1 in Argentina.
|
304 |
+
6.1.7 Surveillance/Monitoring
|
305 |
+
Please refer to Drs. Susan Wollersheim and Ann Schwartz's clinical review memo.
|
306 |
+
Page 10
|
307 |
+
|
308 |
+
Statistical Review
|
309 |
+
STN: 125742/0
|
310 |
+
6.1.8 Endpoints and Criteria for Study Success
|
311 |
+
Please refer to Section 6.1.1 for efficacy endpoints.
|
312 |
+
Study success criteria:
|
313 |
+
In Phase 2/3, the assessment of VE is based on posterior probability of VE >30% and VEr>30%, where VEi represents VE for prophylactic BNT16262 against confirmed COVID-19 in participants without evidence of infection before vaccination, and VE2 represents VE for prophylactic BNT162b2 against confirmed COVID-19 in all participants after vaccination. Only the first primary endpoint was analyzed at interim analyses. The criteria for success at an interim analysis are based on the posterior probability, i.e. Pr(VE>30%|data) at the current number of cases. Efficacy will be declared if the posterior probability is higher than the success threshold, where the success threshold for each interim analysis was calibrated to maintain a familywise type I error rate of 2.5%. If the first primary objective is met, the second primary objective will be evaluated at the final analysis.
|
314 |
+
6.1.9 Statistical Considerations & Statistical Analysis Plan
|
315 |
+
The statistical analyses for the Phase 1 portion were descriptive.
|
316 |
+
For Phase 2/3, the evaluable efficacy population, which included all randomized participants who received all study interventions as randomized within the predefined window and had no other important protocol deviations as determined by the clinicians, was the primary analysis population for all efficacy analyses. Additional analyses based on the all-available efficacy population, which included all randomized subjects who received either at least 1 dose of vaccine or placebo (Dose 1 all-available set) or 2 doses (Dose 2 all-available set), were also performed.
|
317 |
+
The VE is defined as VE = 100 × (1 - IRR), where IRR is calculated as the ratio of the confirmed COVID-19 illness rate in the vaccine group to the corresponding illness rate in the placebo group. Assuming a true VE of 60%, 164 COVID-19 cases would provide 90% power to conclude true VE >30%. Because the analyses are based on the number of cases rather than the number of participants, the total number of participants enrolled in Phase 2/3 would vary depending on the incidence of COVID-19 at the time of enrollment, the true underlying VE, and a potential early stop for efficacy or futility. Four interim analyses were planned to be performed after accrual of at least 32, 62, 92, and 120 cases. However, for operational reasons, the first IA was not performed until 94 cases were accrued, followed by the final analysis with 170 cases.
|
318 |
+
VE was evaluated using a beta-binomial model and the posterior probability of VE being
|
319 |
+
>30% was assessed. A minimally informative beta prior, beta (0.700102, 1), was
|
320 |
+
proposed for 0 = r(1-VE)/(1+r(1-VE)), where r is the ratio of surveillance time in the
|
321 |
+
BNT162b2 group over that in the placebo group. For participants with multiple confirmed cases, only the first case contributed to the VE calculation. The two primary efficacy endpoints were evaluated sequentially to control the familywise type I error rate at 2.5% (one-sided). For the primary endpoint analysis, missing efficacy data were not imputed; only participants with known disease status were included. A sensitivity
|
322 |
+
Page 11
|
323 |
+
|
324 |
+
Statistical Review
|
325 |
+
STN: 125742/0
|
326 |
+
analysis was performed by imputing missing values with the assumption of missing at random (MAR). Secondary endpoints were evaluated similarly to the primary endpoints.
|
327 |
+
After the final efficacy analyses at 170 cases, updated efficacy analyses on primary and secondary efficacy endpoints were performed with additional data accrued. The point estimate of VE in the blinded follow-up period and associated 2-sided 95% CI were derived using the Clopper-Pearson method, adjusting for surveillance time. The posterior probability, Pr(VE>30%|data), was also provided.
|
328 |
+
6.1.10 Study Population and Disposition
|
329 |
+
6.1.10.1 Populations Enrolled/Analyzed
|
330 |
+
Participants 18 through 55 years of age and 56 years of age and older began enrollment into Phase 2/3 from July 27, 2020 and participants 16 through 17 years of age began enrollment from September 16, 2020.
|
331 |
+
6.1.10.1.1 Demographics
|
332 |
+
The population for the updated analysis of vaccine efficacy endpoint (March 2021 data cutoff) included 42,436 participants 16 years of age and older (21,136 in the BNT16262 group and 21,300 in the placebo group), with or without evidence of prior infection with SARS-CoV-2 through 7 days after the second dose. Table 2 presents the specific demographic characteristics in the studied population.
|
333 |
+
The evaluable efficacy population who received BNT1622 included 48.6% females, 81.9% White, 9.5% African American, 4.4% Asian, and <3% from other racial groups;
|
334 |
+
25.6% of participants were Hispanic/Latino. The median age was 51 years. One or more comorbidities that increase the risk of severe COVID-19 disease were present among 46% of participants. Evidence of prior SARS-CoV-2 infection was observed in 3% of participants. Geographically, <2% of participants lived in Germany, Turkey and South Africa, 6.8% lived in Brazil, 12.7% lived in Argentina, and 76.4% of participants lived in the U.S.
|
335 |
+
Page 12
|
336 |
+
|
337 |
+
Statistical Review
|
338 |
+
STN: 125742/0
|
339 |
+
Table 2. Demographics and Other Baseline Characteristics, Participants 16 Years of Age and Older, With or Without Evidence of Infection Prior to 7 Days After Dose 2, Evaluable Efficacy Population (Data Cutoff March 13, 2021)
|
340 |
+
BNT162b2 (30 ug)
|
341 |
+
(Na=21136
|
342 |
+
Characteristic
|
343 |
+
nb (%)
|
344 |
+
Placebo
|
345 |
+
(N°=21300)
|
346 |
+
nb (%)
|
347 |
+
Total
|
348 |
+
(Na=42436)
|
349 |
+
nb (%)
|
350 |
+
Sex: Female
|
351 |
+
Sex: Male
|
352 |
+
Age at Vaccination: Mean years (SD)
|
353 |
+
Age at Vaccination: Median (years)
|
354 |
+
Age at Vaccination: Min, max (years)
|
355 |
+
Age Group: 16 to <18 years
|
356 |
+
Age Group: 18 to 55 years
|
357 |
+
Age Group: >55 years
|
358 |
+
Age Group: ≥65 years
|
359 |
+
Race: American Indian or Alaska Native
|
360 |
+
Race: Asian
|
361 |
+
Race: Black or African American
|
362 |
+
Race: Native Hawaiian or Other Pacific Islander
|
363 |
+
Race: White
|
364 |
+
Race: Multiracial
|
365 |
+
Race: Not reported
|
366 |
+
Ethnicity: Hispanic or Latino
|
367 |
+
Ethnicity: Not Hispanic or Latino
|
368 |
+
Ethnicity: Not reported
|
369 |
+
Obesity: Yes
|
370 |
+
Obesity: No
|
371 |
+
Comorbidities: Yesd
|
372 |
+
Comorbidities: No
|
373 |
+
Baseline evidence of prior SARS-CoV-2 infection:
|
374 |
+
Negative™
|
375 |
+
Positive®
|
376 |
+
Missing
|
377 |
+
Country: Argentina
|
378 |
+
Country: Brazil
|
379 |
+
Country: Germany
|
380 |
+
Country: South Africa
|
381 |
+
Country: Turkey
|
382 |
+
Baseline evidence of prior SARS-CoV-2 infection:
|
383 |
+
Baseline evidence of prior SARS-CoV-2 infection:
|
384 |
+
10280 (48.6)
|
385 |
+
10856 (51.4)
|
386 |
+
49.8 (16.0)
|
387 |
+
51.0
|
388 |
+
(16, 89)
|
389 |
+
370 (1.8)
|
390 |
+
12120 (57.3)
|
391 |
+
8646 (40.9)
|
392 |
+
4407 (20.9)
|
393 |
+
204 (1.0)
|
394 |
+
929 (4.4)
|
395 |
+
2009 (9 5)
|
396 |
+
56 (0.3)
|
397 |
+
17304 (81.9)
|
398 |
+
545 (2.6)
|
399 |
+
89 (0.4)
|
400 |
+
5403 (25 6)
|
401 |
+
15628 (73.9)
|
402 |
+
105 (0.5)
|
403 |
+
7239 (34.2)
|
404 |
+
13897 (65.8)
|
405 |
+
9712 (46.0)
|
406 |
+
11424 (54.0)
|
407 |
+
20365 (96.4)
|
408 |
+
627 (3.0)
|
409 |
+
144 (0.7)
|
410 |
+
2686 (12.7)
|
411 |
+
1437 (6.8)
|
412 |
+
240 (1.1)
|
413 |
+
391 (1.8)
|
414 |
+
241 (1.1)
|
415 |
+
10579 (49.7) 20859 (49.2)
|
416 |
+
10721 (50.3) 21577 (50.8)
|
417 |
+
49.7 (16.0)
|
418 |
+
49.7 (16.0)
|
419 |
+
51.0
|
420 |
+
51.0
|
421 |
+
(16, 91)
|
422 |
+
(16, 91)
|
423 |
+
362 (1.7)
|
424 |
+
732 (1.7)
|
425 |
+
12252 (57.5) 24372 (57.4)
|
426 |
+
8686 (40.8) 17332 (40.8)
|
427 |
+
4429 (20.8)
|
428 |
+
8836 (20.8)
|
429 |
+
190 (0.9)
|
430 |
+
394 (0.9)
|
431 |
+
924 (4.3)
|
432 |
+
1853 (4.4)
|
433 |
+
2036 (9.6)
|
434 |
+
4045 (9.5)
|
435 |
+
32 (0.2)
|
436 |
+
88 (0.2)
|
437 |
+
17487 (82.1) 34791 (82.0)
|
438 |
+
519 (2.4)
|
439 |
+
1064 (2.5)
|
440 |
+
112 (0.5)
|
441 |
+
201 (0.5)
|
442 |
+
5409 (25.4) 10812 (25.5)
|
443 |
+
15778 (74.1) 31406 (74.0)
|
444 |
+
113 (0.5)
|
445 |
+
218 (0.5)
|
446 |
+
7386 (34 7) 14625 (34 5)
|
447 |
+
13914 (65.3) 27811 (65.5)
|
448 |
+
9736 (45.7) 19448 (45.8)
|
449 |
+
11564 (54.3) 22988 (54.2)
|
450 |
+
20511 (96.3) 40876 (96.3)
|
451 |
+
669 (3.1) 1296 (3.1)
|
452 |
+
120 (0.6)
|
453 |
+
264 (0.6)
|
454 |
+
2710 (12.7)
|
455 |
+
1432 (6.7)
|
456 |
+
243 (1.1)
|
457 |
+
392 (1.8)
|
458 |
+
238 (1.1)
|
459 |
+
5396 (12.7)
|
460 |
+
2869 (6.8)
|
461 |
+
483 (1.1)
|
462 |
+
783 (1.8)
|
463 |
+
479 (1.1)
|
464 |
+
Page 13
|
465 |
+
|
466 |
+
BNT162b2 (30 Mg)
|
467 |
+
(Na=21136)
|
468 |
+
nb (%)
|
469 |
+
Placebo
|
470 |
+
(N°=21300)
|
471 |
+
n' (%)
|
472 |
+
Statistical Review
|
473 |
+
STN: 125742/0
|
474 |
+
Total
|
475 |
+
(N°=42436)
|
476 |
+
nb (%)
|
477 |
+
Characteristic
|
478 |
+
Country: United States of America
|
479 |
+
16141 (76.4)
|
480 |
+
16285 (76.5) 32426 (76.4)
|
481 |
+
Abbreviation: SARS-CoV-2 = severe acute respiratory syndrome coronavirus 2.
|
482 |
+
Note: HIV-positive subjects are included in this summary but not included in the analyses of the overall study obiectives.
|
483 |
+
a. N= number of subjects in the specified group, or the total sample. This value is the denominator for the percentage calculations.
|
484 |
+
Note: The analysis was based on treatment group as randomized. b.
|
485 |
+
n = Number of subjects with the specified characteristic.
|
486 |
+
C.
|
487 |
+
Subiects who had BMI >30 kg/m?.
|
488 |
+
Number of subiects who have 1 or more comorbidities that increase the risk of severe COVID-19 disease: defined as subjects who had at least one Charlson comorbidity index category or BMI >30 kg/m?.
|
489 |
+
e. Positive N-binding antibody result at Visit 1, positive NAAT result at Visit 1, or medical history of COVID-19.
|
490 |
+
f. Negative N-binding antibody result and negative NAAT result at Visit 1 and no medical history of COVID-19.
|
491 |
+
Source: Table F of C4591001-508-efficacy-tables submitted to ST 125742/0.32.
|
492 |
+
6.1.10.1.2 Medical/Behavioral Characterization of the Enrolled Population
|
493 |
+
Please refer to Drs. Susan Wollersheim and Ann Schwartz's clinical review memo.
|
494 |
+
6.1.10.1.3 Subject Disposition
|
495 |
+
The disposition of all Phase 2/3 participants 16 years of age and older is presented in Table 3. During the blinded placebo-controlled follow-up period, most participants randomized received Dose 1 (99.7%) and Dose 2 (98.0%).
|
496 |
+
Table 3. Disposition of Participants 16 Years of Age and Older, Phase 2/3 Subjects, Efficacy Population (Data Cutoff March 13, 2021)
|
497 |
+
BNT162b2
|
498 |
+
(30 ug)
|
499 |
+
n° (%)
|
500 |
+
Randomized
|
501 |
+
Dose 1 all-available efficacy population
|
502 |
+
Subiects without evidence of infection before Dose 1
|
503 |
+
Subjects excluded from Dose 1 all-available efficacy population
|
504 |
+
Reason for exclusion°
|
505 |
+
Did not receive at least 1 vaccination
|
506 |
+
Data considered potentially unreliable due to lack of PI oversight identified as significant quality event
|
507 |
+
22085 (100.0)
|
508 |
+
22009 (99.7)
|
509 |
+
21172 (95.9)
|
510 |
+
76 (0.3)
|
511 |
+
Placebo na (%)
|
512 |
+
22080
|
513 |
+
(100.0)
|
514 |
+
Total n° (%)
|
515 |
+
44165
|
516 |
+
(100.0)
|
517 |
+
22008
|
518 |
+
44017
|
519 |
+
(99.7)
|
520 |
+
(99.7)
|
521 |
+
21168
|
522 |
+
42340
|
523 |
+
(95.9)
|
524 |
+
(95.9)
|
525 |
+
72 (0.3) 148 (0.3)
|
526 |
+
55 (0.2)
|
527 |
+
21 (0.1)
|
528 |
+
50 (0.2) 105 (0.2)
|
529 |
+
22 (0.1) 43 (0.1)
|
530 |
+
Page 14
|
531 |
+
|
532 |
+
Statistical Review
|
533 |
+
STN: 125742/0
|
534 |
+
BNT16262
|
535 |
+
(30 ug)
|
536 |
+
nª (%)
|
537 |
+
Placebo na (%)
|
538 |
+
Total na (%)
|
539 |
+
Dose 2 all-available efficacy population
|
540 |
+
21648 (98.0)
|
541 |
+
21624
|
542 |
+
43272
|
543 |
+
(97.9)
|
544 |
+
(98.0)
|
545 |
+
Subjects without evidence of infection prior to 7 days after Dose 20536 (93.0)
|
546 |
+
20487
|
547 |
+
41023
|
548 |
+
2
|
549 |
+
(92.8)
|
550 |
+
(92.9)
|
551 |
+
Subjects excluded from Dose 2 all-available efficacy population
|
552 |
+
437 (2.0)
|
553 |
+
456 (2.1) 893 (2.0)
|
554 |
+
Reason for exclusion°
|
555 |
+
Did not receive 2 vaccinations
|
556 |
+
374 (1.7)
|
557 |
+
Data considered potentially unreliable due to lack of PI oversight
|
558 |
+
21 (0.1)
|
559 |
+
430 (1.9) 804 (1.8)
|
560 |
+
22 (0.1) 43 (0.1)
|
561 |
+
identified as significant quality event
|
562 |
+
Unblinded prior to 7 days after Dose 2
|
563 |
+
44 (0.2)
|
564 |
+
11 (0.0) 55 (0.1)
|
565 |
+
Evaluable efficacy (7 days) population
|
566 |
+
21136 (95.7)
|
567 |
+
Subiects without evidence of infection prior to 7 days after Dose 20064 (90.8)
|
568 |
+
2
|
569 |
+
Subjects excluded from evaluable efficacy (7 days) population
|
570 |
+
Reason for exclusion
|
571 |
+
Randomized but did not meet all eligibility criteria
|
572 |
+
Data considered potentially unreliable due to lack of PI oversight identified as significant quality event
|
573 |
+
Did not receive all vaccinations as randomized or did not receive
|
574 |
+
Dose 2 within the predefined window (19-42 days after Dose 1)
|
575 |
+
Unblinded prior to 7 days after Dose 2
|
576 |
+
Had other important protocol deviations on or prior to 7 days after Dose 2
|
577 |
+
949 (4.3)
|
578 |
+
21300
|
579 |
+
42436
|
580 |
+
(96.5)
|
581 |
+
(96.1)
|
582 |
+
20197
|
583 |
+
40261
|
584 |
+
(91.5)
|
585 |
+
(91.2)
|
586 |
+
780 (3.5) 1729 (3.9)
|
587 |
+
32 (0.1)
|
588 |
+
21 (0.1)
|
589 |
+
30 (0.1) 62 (0.1)
|
590 |
+
22 (0.1) 43 (0.1)
|
591 |
+
718 (3.3) 729 (3.3) 1447 (3.3)
|
592 |
+
44 (0.2)
|
593 |
+
240 (1.1)
|
594 |
+
11 (0.0) 55 (0.1)
|
595 |
+
58 (0.3) 298 (0.7)
|
596 |
+
Note: HIV-positive subjects are included in this summary but not included in the analyses of the overall study obiectives.
|
597 |
+
Note: The analysis was based on treatment group as randomized.
|
598 |
+
а.
|
599 |
+
n = Number of subjects with the specified characteristic.
|
600 |
+
b. These values are the denominators for the percentage calculations.
|
601 |
+
c. Subjects may have been excluded for more than 1 reason.
|
602 |
+
Source: Table D of C4591001-508-efficacy-tables submitted to ST 125742/0.32.
|
603 |
+
Reviewer Comment
|
604 |
+
1. There were more protocol deviations leading to exclusion from analvses in the BNT162b2 group than in the placebo group. The majority of protocol deviations were in the category of investigational products, including dosing/administration error and investigational product deemed not suitable for use. Protocol deviations in other categories appeared balanced across the two treatment groups. The additional analysis on the all-available efficacy population may be regarded as a sensitivity analysis and showed very similar efficacy results.
|
605 |
+
2. The Dose I all-available efficacy population excluded 43 subjects (21 in the BNT162b2 group and 22 in the placebo group) due to a specific protocol
|
606 |
+
Page 15
|
607 |
+
|
608 |
+
Statistical Review
|
609 |
+
STN: 125742/0
|
610 |
+
deviation, i.e. data considered potentially unreliable due to lack of PI oversight identified as a significant quality event, while the Dose I all-available set is defined as all randomized participants who received at least I vaccination in the SAP. I conducted a sensitivity analysis without excluding these 43 subjects for efficacy analyses using the Dose I all-available population, when applicable, and it showed minimal impact on VE results.
|
611 |
+
6.1.11 Efficacy Analyses
|
612 |
+
6.1.11.1 Analyses of Primary Endpoints
|
613 |
+
The Interim and Final Analyses
|
614 |
+
At the interim analysis, there were 4 confirmed COVID-19 cases in the BNT1622 group and 90 confirmed cases in the placebo group among subjects without evidence of prior SARS-CoV-2 infection prior to 7 days after Dose 2, resulting in a VE point estimate of 95.5% (95% credible interval: 88.8%, 98.4%) and a 99.99% posterior probability for the true VE being >30%, which met the prespecified success criterion of posterior probability
|
615 |
+
>99.5%. The median follow-up duration for subjects included in the first interim efficacy analysis was slightly less than the planned 2 months. In the final analysis, the case split between the BNT162b2 and placebo groups was 8:162 (VE: 95.0%; 95% credible interval: 90.3%, 97.6%) among subjects without evidence of prior SARS-CoV-2 infection prior to 7 days after Dose 2, and 9:169 (VE: 94.6%; 95% credible interval:
|
616 |
+
89.9%, 97.3%) among subjects with and without evidence of prior SARS-CoV-2 infection prior to 7 days after Dose 2. The final analysis extended the median follow-up for these subjects to greater than 2 months, and the results indicate that the conclusions from the first interim efficacy analysis would not change when including additional follow-up to November 14, 2020. This pre-specified primary efficacy analysis was the basis for issuance of the Emergency Use Authorization (EUA) for the Pfizer-BioNTech COVID-19 Vaccine on December 10, 2020.
|
617 |
+
Reviewer Comment
|
618 |
+
1. The efficacy results presented above included 88 subjects 12-15 years of age (46 in the BNI162b2 group and 42 in the placebo group). Since none of these 12-15 years old subjects developed protocol defined cases and the number of subjects is small relative to the evaluable population, the efficacy results excluding these subjects are very similar to the results including them. Based on my calculation, VE for 16 years and older subjects is 94.6% (95% credible interval: 90.3%, 97.6%).
|
619 |
+
2. The interim and final analyses were reviewed under EUA 27034, and hence the review is not replicated for this BLA submission.
|
620 |
+
Updated Efficacy Analyses
|
621 |
+
Updated efficacy analyses were performed with additional confirmed COVID-19 cases accrued during blinded placebo-controlled follow-up through March 13, 2021,
|
622 |
+
Page 16
|
623 |
+
|
624 |
+
Statistical Review
|
625 |
+
STN: 125742/0
|
626 |
+
representing up to 6 months of follow-up after Dose 2 for participants in the efficacy population.
|
627 |
+
For participants without evidence of SARS-CoV-2 infection prior to 7 days after Dose 2, the updated VE against confirmed COVID-19 occurring at least 7 days after Dose 2 was 91.1%. The case split was 77 COVID-19 cases in the BNT16262 group compared to 833
|
628 |
+
COVID-19 cases in the placebo group (Table 4).
|
629 |
+
Table 4. Updated Efficacy of BNT162b2 Against Confirmed COVID-19 From 7 Days
|
630 |
+
After Dose 2 in Participants Without Evidence of Prior SARS-CoV-2 Infection
|
631 |
+
- Evaluable Efficacy Population, 16 Years and Older (Data Cutoff March 13, 2021)
|
632 |
+
BNT16262
|
633 |
+
Placebo
|
634 |
+
(Na=19993)
|
635 |
+
(Na=20118)
|
636 |
+
Cases nib
|
637 |
+
Cases nib
|
638 |
+
Surveillance Time°
|
639 |
+
Surveillance Time
|
640 |
+
Pre-specified Age Group
|
641 |
+
(n2d)
|
642 |
+
(n2d)
|
643 |
+
Vaccine Efficacy %
|
644 |
+
(95% CHe
|
645 |
+
All participants
|
646 |
+
77
|
647 |
+
833
|
648 |
+
6.092
|
649 |
+
5.857
|
650 |
+
91.1
|
651 |
+
(88.8. 93.1)
|
652 |
+
(19711)
|
653 |
+
(19741)
|
654 |
+
16 to 55 years
|
655 |
+
52
|
656 |
+
568
|
657 |
+
3.593
|
658 |
+
3.439
|
659 |
+
91.2
|
660 |
+
(88.3, 93.5)
|
661 |
+
(11517)
|
662 |
+
(11533)
|
663 |
+
>55 years and older
|
664 |
+
25
|
665 |
+
265
|
666 |
+
2.499
|
667 |
+
2.417
|
668 |
+
90 9
|
669 |
+
(86.2. 94.2)
|
670 |
+
(8194)
|
671 |
+
(8208)
|
672 |
+
Abbreviations: N-binding = SARS-CoV-2 nucleoprotein-binding; NAAT = nucleic acid amplification test;
|
673 |
+
SARS-CoV-2 = severe acute respiratory syndrome coronavirus 2; VE = vaccine efficacy.
|
674 |
+
Note: Subiects who had no serological or virological evidence (prior to 7 davs after receipt of the last dose) of past SARS-CoV-2 infection (i.e., N-binding antibody [serum] negative at Visit 1 and SARS-CoV-2 not detected by NAAT (nasal swab] at Visits 1 and 2), and had negative NAAT (nasal swab) at any unscheduled visit prior to 7 days after Dose 2 were included in the analysis.
|
675 |
+
a. N= number of subjects in the specified group. b.
|
676 |
+
n = Number of subjects meeting the endpoint definition.
|
677 |
+
c. Total surveillance time in 1000 person-years for the given endpoint across all subjects within each group at risk for the endpoint. Time period for COVID-19 case accrual is from 7 days after Dose 2 to the end of the surveillance period.
|
678 |
+
d. n2 = Number of subjects at risk for the endpoint.
|
679 |
+
e. Confidence interval (CI) for VE is derived based on the Clopper and Pearson method adjusted for surveillance time.
|
680 |
+
Source: Table H of C4591001-508-efficacv-tables submitted to STN 125742/0.32.
|
681 |
+
Reviewer Comment
|
682 |
+
1. One subject (C4591001 (b) (6)
|
683 |
+
) reported "covid-19 antibody test
|
684 |
+
positive" in medical history but was included in the VE analvis in participants without evidence of prior infection in Table 4. An information request (IR) was sent on July 22, 2021. In the IR response submitted on July 26, 2021, the applicant clarified that "without evidence of prior infection" was based only on the NAAT tests at Visits I and 2 and the N-binding assay results due to the
|
685 |
+
Page 17
|
686 |
+
|
687 |
+
Statistical Review
|
688 |
+
STN: 125742/0
|
689 |
+
potential uncertainty of a medical history entry without knowledge of circumstances, assay performed, etc. Because this subject received placebo and was not a case, inclusion of subject would result in no real change to the VE estimate.
|
690 |
+
2. A total of 9 participants in the placebo group with COVID-19 symptoms starting on the same day of unblinding with PCR confirmation either on the same day or a few days after, were included in these analyses as positive cases.
|
691 |
+
3. Initially, there was one additional case reported in the placebo group, for Subject
|
692 |
+
C4591001 (b) (6)
|
693 |
+
This subject reported three COVID symptom
|
694 |
+
episodes: from October 8, 2020 to October 16, 2020, November 2, 2020 to December 11, 2020, and December 17, 2020 to January 16, 2021 (referred to as Episodes A, B and C, respectively). The PCR tests were negative for the first two episodes and positive for Episode C. Since the three episodes were more than 4 days apart, they should be treated as separate episodes per the statistical analysis plan (SAP). Hence, this subject should be considered to be a case with an onset on December 17, 2020, one day after the unblinding on December 16, 2020, and should be excluded from the analysis. In the IR response submitted on July 26, 2021, the applicant explained that Episodes B and C were merged into one episode as this subject was hospitalized from (b) (6)
|
695 |
+
to (b) (6)
|
696 |
+
, connecting Episodes B and C. We did not agree with the merging of the two episodes, because hospitalization is not a symptom or criterion pre-specified in the protocol for COVID-19 definition and there were no other data that could corroborate that this hospitalization was due to COVID-19. The applicant agreed to remove this case and updated efficacy tables were submitted on August 5, 2021.
|
697 |
+
4. The set of subjects used for efficacy analyses excluded those who had reported
|
698 |
+
COVID symptoms but had missing or unknown PC results at any time. It may be reasonable to exclude subjects who had reported COVID symptoms but had missing/unknown PCR results prior to 7 days after Dose 2 for efficacy analyses in participants without evidence of prior infection. However, subjects who reported symptoms and had missing/unknown PCR results after 7 days post Dose 2 were also excluded from the risk set, while they were at risk for the efficacy endpoint (lab-confirmed COVID-19 starting from 7 days post Dose 2). An IR was sent to the applicant on July 22, 2021. In the IR response submitted on July 26, 2021, the applicant explained that subjects who reported symptoms and had missing/unknown PC results do not have a chance to be counted in the numerator and inclusion of these subjects may result in an underestimation of the incidence rate. Since the percentages of such subjects were small and slightly higher in the placebo group, excluding them from the analyses likely had minimal impact on VE results. Per our request, the applicant also provided a sensitivity analysis under the missing at random (MAR) assumption, where missing efficacy endpoints were imputed based on predicted probability from logistic regression model using the fully conditional specification method for a total of 648 subjects (279 in BNT162b2 group and 369 in placebo group) in the evaluable population who reported COVID-19 symptoms from 7 days post Dose 2 but had missing/unknown PCR results. As a supplementary sensitivity analysis, the
|
699 |
+
Page 18
|
700 |
+
|
701 |
+
Statistical Review
|
702 |
+
STN: 125742/0
|
703 |
+
applicant also applied a conservative approach to the model by assuming a higher than the observed case rate when imputing missing efficacy endpoints from participants in the BNTI62b2 group only, to reflect potentially unknowable missing not at random effects that are unfavorable for efficacy result of the study.
|
704 |
+
As shown in Table 5, the average VE after imputation was 90.76% under the MAR assumption, which is consistent with the efficacy results reported in Table 4. The sensitivity analyses under the missing-not-at-random assumptions show that the efficacy results are robust, e.g. at least a 16-fold increase of positivity rate in the BNTI62b2 group is required for the average VE to fall below 70%, which we do not consider to be a plausible scenario.
|
705 |
+
Table 5. Sensitivity and Robustness Analysis of Missing Laboratory Results for Vaccine Efficacy - First COVID-19 Occurrence From 7 Days After Dose 2 - Subjects Without
|
706 |
+
Evidence of Infection Prior to 7 Days After Dose 2 - Evaluable Efficacy (7 Days)
|
707 |
+
Population
|
708 |
+
Assumed
|
709 |
+
Missing Data
|
710 |
+
Mechanism
|
711 |
+
Infection Rates
|
712 |
+
Average Positive Based on Existing Median Median of
|
713 |
+
Rate (%) Across and Imputed
|
714 |
+
Posterior
|
715 |
+
Lower
|
716 |
+
all Imputations
|
717 |
+
Values
|
718 |
+
Probability Limit of
|
719 |
+
(BNT162b2:
|
720 |
+
(BNT162b2:
|
721 |
+
of
|
722 |
+
95% CI for Median
|
723 |
+
Average
|
724 |
+
Placebo)a
|
725 |
+
Placebo)b
|
726 |
+
VE>30%
|
727 |
+
VE
|
728 |
+
VE (%) VE (%)
|
729 |
+
MAR
|
730 |
+
MNARI
|
731 |
+
MNAR2
|
732 |
+
MNAR3
|
733 |
+
MNAR4
|
734 |
+
MNAR5
|
735 |
+
4.0:28.5
|
736 |
+
10.1:28 5
|
737 |
+
23.3:285
|
738 |
+
45.3:28.5
|
739 |
+
69.1:28.5
|
740 |
+
85.9:28.5
|
741 |
+
4.21:45.31
|
742 |
+
5.01:45.31
|
743 |
+
6.76:45.31
|
744 |
+
9.69:45.31
|
745 |
+
100.00
|
746 |
+
100.00
|
747 |
+
100.00
|
748 |
+
100.00
|
749 |
+
12.85:45.31
|
750 |
+
15.08:45.31
|
751 |
+
100.00
|
752 |
+
100.00
|
753 |
+
88.56
|
754 |
+
86.55
|
755 |
+
82.30
|
756 |
+
75.36
|
757 |
+
67.71
|
758 |
+
62.36
|
759 |
+
90 78
|
760 |
+
88.97
|
761 |
+
85.12
|
762 |
+
78.79
|
763 |
+
71.78
|
764 |
+
66.81
|
765 |
+
90.76
|
766 |
+
88.98
|
767 |
+
85.14
|
768 |
+
78.69
|
769 |
+
71.75
|
770 |
+
66.85
|
771 |
+
Abbreviations: MAR = missing at random; MNAR = missing not at random; VE = vaccine efficacy.
|
772 |
+
Note: Each row of this table represents summary results from 500 imputations that were generated using
|
773 |
+
SAS PROC MI Fully Conditional Specification (FCS) method. Each imputation filled in the missing laboratory results based on a logistic regression model at the subject level, under the assumed missing data mechanism.
|
774 |
+
a. Average positive rate for each vaccine group was calculated as the mean of positive rates across all imputations among subjects with missing data after each imputation. Under the MAR assumption, the imputation model assumes the probability of positive cases for each vaccine group to be the same as observed from subjects with no missing data in that group. Under each MNAR assumption, while keeping the imputation model for placebo group unchanged, an increase in the positive rate for the BTN16262 group was assumed to reflect a potential conservative and unknowable MNAR scenario for efficacy results of the study.
|
775 |
+
b. Infection rate in each vaccine group was the number of cases divided by a total number of subjects in that vaccine group times 1000.
|
776 |
+
Source: Adapted from Table I of response-22jul2021-followup submitted to STN 125742/0.28.
|
777 |
+
For participants with and without evidence of SARS-CoV-2 infection before and during vaccination regimen, the updated VE against confirmed COVID- 19 occurring at least 7 days after Dose 2 was 90.9%, with 81 and 854 cases in the BNT1622 and placebo groups, respectively (Table 6).
|
778 |
+
Page 19
|
779 |
+
|
780 |
+
Statistical Review
|
781 |
+
STN: 125742/0
|
782 |
+
Table 6. Updated Efficacy of BNT16262 Against Confirmed COVID-19 From 7 Days
|
783 |
+
After Dose 2 in Participants With or Without Evidence of Prior SARS-CoV-2 Infection
|
784 |
+
- Evaluable Efficacy Population, 16 Years and Older (Data Cutoff March 13, 2021)
|
785 |
+
BNT16262
|
786 |
+
Placebo
|
787 |
+
(Nª=21047)
|
788 |
+
(NA=21210)
|
789 |
+
Cases
|
790 |
+
Cases
|
791 |
+
nib
|
792 |
+
nib
|
793 |
+
Surveillance Time° Surveillance Time Vaccine Efficacy %
|
794 |
+
Pre-specified Age Group
|
795 |
+
(n24)
|
796 |
+
(n20)
|
797 |
+
(95% CI)°
|
798 |
+
All participants
|
799 |
+
81
|
800 |
+
854
|
801 |
+
6.340
|
802 |
+
6.110
|
803 |
+
90.9
|
804 |
+
(88.5, 92.8)
|
805 |
+
(20533)
|
806 |
+
(20595)
|
807 |
+
16 to 55 years
|
808 |
+
56
|
809 |
+
584
|
810 |
+
3.766
|
811 |
+
3.619
|
812 |
+
90.8
|
813 |
+
(87.9, 93.1)
|
814 |
+
(12088)
|
815 |
+
(12142)
|
816 |
+
>55 years and older
|
817 |
+
25
|
818 |
+
270
|
819 |
+
2.573
|
820 |
+
2.492
|
821 |
+
91.0
|
822 |
+
(86.5, 94.3)
|
823 |
+
(8445)
|
824 |
+
(8453)
|
825 |
+
Abbreviations: SARS-CoV-2 = severe acute respiratory syndrome coronavirus 2; VE = vaccine efficacy.
|
826 |
+
N = number of subjects in the specified group.
|
827 |
+
b. n1 = Number of subjects meeting the endpoint definition.
|
828 |
+
c. Total surveillance time in 1000 person-years for the given endpoint across all subjects within each
|
829 |
+
group at risk for the endpoint. Time period for COVID-19 case accrual is from 7 days after Dose 2 o the
|
830 |
+
end of the surveillance period.
|
831 |
+
d. n2 = Number of subiects at risk for the endpoint.
|
832 |
+
e. Confidence interval (CI) for VE is derived based on the Clopper and Pearson method adiusted for
|
833 |
+
surveillance time.
|
834 |
+
Source: Table I of C4591001-508-efficacy-tables submitted to STN 125742/0.32.
|
835 |
+
VE in participants in the all-available efficacy population was similar to results in the evaluable efficacy population (Table 7). The VE for the prevention of COVID-19 disease after Dose 1 is 87.6%, in the all-available efficacy population. Based on the number of cases accumulated after Dose 1 and before Dose 2, there seems to be some protection against COVID- 19 disease following one dose (VE=56.4%); however, these data do not provide information about longer term protection beyond 21 days after a single dose.
|
836 |
+
Page 20
|
837 |
+
|
838 |
+
Statistical Review
|
839 |
+
STN: 125742/0
|
840 |
+
Table 7. Primary Efficacy Endpoint - Participants 16 Years of Age and Older - Dose 1 All-Available Efficacy Population (Data Cutoff March 13, 2021)
|
841 |
+
BNT162b2
|
842 |
+
Placebo
|
843 |
+
(N°=21909)
|
844 |
+
(Na=21908)
|
845 |
+
Cases
|
846 |
+
Cases
|
847 |
+
nib
|
848 |
+
nib
|
849 |
+
Surveillance Time Surveillance Time Vaccine Efficacy %
|
850 |
+
Efficacy Endpoint Subgroup
|
851 |
+
(n29)
|
852 |
+
(n29)
|
853 |
+
(95% CI)e
|
854 |
+
First COVID-19 occurrence after Dose 1
|
855 |
+
After Dose 1 to before Dose 2
|
856 |
+
Dose 2 to 7 days after Dose 2
|
857 |
+
≥7 Days after Dose 2
|
858 |
+
128
|
859 |
+
8.155
|
860 |
+
(21385)
|
861 |
+
43
|
862 |
+
1.273
|
863 |
+
(21385)
|
864 |
+
3
|
865 |
+
0 403
|
866 |
+
(21049)
|
867 |
+
82
|
868 |
+
6 479
|
869 |
+
(21019)
|
870 |
+
998
|
871 |
+
7.874
|
872 |
+
(21315)
|
873 |
+
98
|
874 |
+
1.266
|
875 |
+
(21315)
|
876 |
+
30
|
877 |
+
0.401
|
878 |
+
(20952)
|
879 |
+
870
|
880 |
+
6.207
|
881 |
+
(20901)
|
882 |
+
87.6
|
883 |
+
(85.1, 89.8)
|
884 |
+
56.4
|
885 |
+
(37.0, 70.3)
|
886 |
+
90.0
|
887 |
+
(68.0, 98.1)
|
888 |
+
91.0
|
889 |
+
(88.7, 92.9)
|
890 |
+
Abbreviation: VE = vaccine efficacy.
|
891 |
+
a. N= number of subjects in the specified group. b.
|
892 |
+
n1 = Number of subjects meeting the endpoint definition.
|
893 |
+
c. Total surveillance time in 1000 person-years for the given endpoint across all subjects within each group at risk for the endpoint. Time period for COVID-19 case accrual is from Dose 1 to the end of the surveillance period. d.
|
894 |
+
n2 = Number of subiects at risk for the endpoint.
|
895 |
+
e.
|
896 |
+
Confidence interval (CI) for VE is derived based on the Clopper and Pearson method adiusted for surveillance time.
|
897 |
+
Source: Table O of C4591001-508-efficacy-tables submitted to ST 125742/0.32.
|
898 |
+
Reviewer Comment
|
899 |
+
As mentioned, the Dose I all-available efficacy population excluded 43 subjects with a protocol deviation of data being considered potentially unreliable due to lack of PI oversight identified as a significant quality event. In my additional analysis with these subjects included, the case split for the first COVID-19 occurrence after dose I is
|
900 |
+
129:1003, resulting in an estimated VE of 87.6% (95% CI: 85.1%, 89.7%). Hence, the exclusion of these subjects likely had minimal impact on the VE results.
|
901 |
+
6.1.11.2 Analyses of Secondary Endpoints
|
902 |
+
Protocol-Defined Severe cases
|
903 |
+
Undated efficacy analvses of the secondary efficacy endpoint for the use of BNT16262 for the prevention of severe COVID-19 were also evaluated. Vaccine efficacy against severe COVID-19 is presented in Table 8 for participants without prior SARS-CoV-2 infection. In the updated analysis, among participants without evidence of prior infection, the estimated VE against severe COVID-19 disease occurring at least 7 days after Dose 2 was 95.3% (71.0%, 99.9%), with one subject who received BNT16262 and 21
|
904 |
+
Page 21
|
905 |
+
|
906 |
+
Statistical Review
|
907 |
+
STN: 125742/0
|
908 |
+
participants who received placebo experiencing severe disease. The same number of severe cases were reported among participants with or without evidence of prior infection and the estimated VE was the same (95.3%). These updated analyses of the secondary vaccine efficacy with a larger number of severe cases now shows more definitive evidence of protection against severe COVID-19 disease offered by BNT16262 (the data from the November 14, 2020 cut-off were limited to 4 total severe cases).
|
909 |
+
Table 8. First Severe COVID-19 Occurrence From 7 Days After Dose 2 - Subiects
|
910 |
+
Without Evidence of Infection Prior to 7 Days After Dose 2 - Participants 16 Years of Age and Older - Evaluable Efficacy Population (Data Cutoff March 13, 2021)
|
911 |
+
BNT16262
|
912 |
+
Placebo
|
913 |
+
(Na=19993)
|
914 |
+
(N°=20118)
|
915 |
+
Cases
|
916 |
+
Cases
|
917 |
+
nib
|
918 |
+
nib
|
919 |
+
Surveillance
|
920 |
+
Surveillance
|
921 |
+
Time©
|
922 |
+
Time©
|
923 |
+
Secondary Efficacy Endpoint
|
924 |
+
(n2d)
|
925 |
+
(n2d)
|
926 |
+
Vaccine
|
927 |
+
Efficacy %
|
928 |
+
(95% CI)e
|
929 |
+
First severe COVID-19 occurrence from 7 days after Dose 2 in participants without evidence of prior SARS-CoV-2 infection
|
930 |
+
1
|
931 |
+
6.103
|
932 |
+
(19711)
|
933 |
+
21
|
934 |
+
5.971
|
935 |
+
(19741)
|
936 |
+
95.3
|
937 |
+
(71.0, 99.9)
|
938 |
+
Abbreviations: N-binding = SARS-CoV-2 nucleoprotein-binding; NAAT = nucleic acid amplification test;
|
939 |
+
SARS-CoV-2 = severe acute respiratory syndrome coronavirus 2; VE = vaccine efficacy.
|
940 |
+
Note: Subiects who had no serological or virological evidence (prior to 7 days after receipt of the last dose) of past SARS-CoV-2 infection (ie, N-binding antibody [serum] negative at Visit 1 and SARS-CoV-2 not detected by NAAT [nasal swab] at Visits 1 and 2), and had negative NAAT (nasal swab) at any unscheduled visit prior to 7 days after Dose 2 were included in the analysis.
|
941 |
+
a. N= number of subjects in the specified group. b.
|
942 |
+
n1 = Number of subjects meeting the endpoint definition.
|
943 |
+
C.
|
944 |
+
Total surveillance time in 1000 person-years for the given endpoint across all subjects within each group at risk for the endpoint. Time period for COVID-19 case accrual is from 7 days after Dose 2 to the end of the surveillance period.
|
945 |
+
d. n2 = Number of subiects at risk for the endpoint.
|
946 |
+
e.
|
947 |
+
Confidence interval (CI) for VE is derived based on the Clopper and Pearson method adjusted for surveillance time.
|
948 |
+
Source: Table M of C4591001-508-efficacy-tables submitted to ST 125742/0.32.
|
949 |
+
In the all-available efficacy population, 31 participants had severe COVID-19 disease after Dose 1 (one subject who received BNT16262 and 30 participants who received placebo) as summarized in Table 9.
|
950 |
+
Page 22
|
951 |
+
|
952 |
+
Statistical Review
|
953 |
+
STN: 125742/0
|
954 |
+
Table 9. First Severe COVID-19 Occurrence After Dose 1 - Participants 16 Years of Age and Older - Dose 1 All-Available Efficacy Population (Data Cutoff March 13, 2021)
|
955 |
+
BNT162b2
|
956 |
+
Placebo
|
957 |
+
(Na=21909)
|
958 |
+
(N°=21908)
|
959 |
+
Cases
|
960 |
+
Cases
|
961 |
+
nib
|
962 |
+
nib
|
963 |
+
Surveillance Time Surveillance Time Vaccine Efficacy %
|
964 |
+
Secondary Efficacy Endpoint
|
965 |
+
(n2d)
|
966 |
+
(n2)
|
967 |
+
(95% CIe
|
968 |
+
First severe case occurrence after Dose 1
|
969 |
+
1
|
970 |
+
8.181
|
971 |
+
(21385)
|
972 |
+
After Dose 1 to before Dose 2
|
973 |
+
1.285
|
974 |
+
(21385)
|
975 |
+
Dose 2 to 7 days after Dose 2
|
976 |
+
>7 Days after Dose 2
|
977 |
+
0.403
|
978 |
+
(21056)
|
979 |
+
1
|
980 |
+
6 493
|
981 |
+
(21029)
|
982 |
+
30
|
983 |
+
8.032
|
984 |
+
(21316)
|
985 |
+
6
|
986 |
+
1.293
|
987 |
+
(21316)
|
988 |
+
1
|
989 |
+
0 402
|
990 |
+
(20962)
|
991 |
+
23
|
992 |
+
6.337
|
993 |
+
(20940)
|
994 |
+
96.7
|
995 |
+
(80.3, 99.9)
|
996 |
+
100.0
|
997 |
+
(14.6, 100.0)
|
998 |
+
100.0
|
999 |
+
NA
|
1000 |
+
95.8
|
1001 |
+
(73.9, 99.9)
|
1002 |
+
Abbreviation: VE = vaccine efficacy.
|
1003 |
+
a. N= number of subjects in the specified group. b.
|
1004 |
+
n1 = Number of subjects meeting the endpoint definition.
|
1005 |
+
c. Total surveillance time in 1000 person-years for the given endpoint across all subjects within each group at risk for the endpoint. Time period for COVID-19 case accrual is from Dose 1 to the end of the surveillance period d.
|
1006 |
+
n2 = Number of subiects at risk for the endpoint.
|
1007 |
+
e.
|
1008 |
+
Confidence interval (CI) for VE is derived based on the Clopper and Pearson method adiusted for surveillance time.
|
1009 |
+
Source: Table N of C4591001-508-efficacy-tables submitted to STN 125742/0.32.
|
1010 |
+
Severe Case Based on CDC-Definition
|
1011 |
+
Vaccine efficacy against severe COVID-19 based on the CDC definition is presented for participants with or without prior SARS-CoV-2 infection (Table 10) as the COVID-19 case counts in participants without prior SARS-CoV-2 infection were the same as those in participants with or without prior SARSCoV2 infection in both the vaccine and placebo groups.
|
1012 |
+
Page 23
|
1013 |
+
|
1014 |
+
Statistical Review
|
1015 |
+
STN: 125742/0
|
1016 |
+
Table 10. First Severe COVID-19 Occurrence Based on CDC-Definition From 7 Days
|
1017 |
+
After Dose 2 - Subiects With or Without Evidence of Infection Prior to 7 Days After Dose 2 - Participants 16 Years of Age and Older - Evaluable Efficacy Population (Data
|
1018 |
+
Cutoff March 13, 2021)
|
1019 |
+
Efficacy Endpoint
|
1020 |
+
BNT162b2
|
1021 |
+
(N°=21047)
|
1022 |
+
Cases nib
|
1023 |
+
Surveillance
|
1024 |
+
Time (n20)
|
1025 |
+
Placebo
|
1026 |
+
(N°=21210)
|
1027 |
+
Cases nib
|
1028 |
+
Surveillance
|
1029 |
+
Time© (n29
|
1030 |
+
Vaccine
|
1031 |
+
Efficacy %
|
1032 |
+
(95% CIe
|
1033 |
+
First severe COVID-19 occurrence based on CDC-definition from 7 days after Dose 2
|
1034 |
+
0
|
1035 |
+
6.345
|
1036 |
+
(20513)
|
1037 |
+
31
|
1038 |
+
6.225
|
1039 |
+
(20593)
|
1040 |
+
100.0
|
1041 |
+
(87.6, 100.0)
|
1042 |
+
Abbreviations: VE = vaccine efficacy.
|
1043 |
+
N = number of subjects in the specified group.
|
1044 |
+
b. n1 = Number of subjects meeting the endpoint definition.
|
1045 |
+
c. Total surveillance time in 1000 person-years for the given endpoint across all subjects within each group at risk for the endpoint. Time period for COVID-19 case accrual is from 7 days after Dose 2 to the end of the surveillance period.
|
1046 |
+
d. n2 = Number of subjects at risk for the endpoint.
|
1047 |
+
e. Confidence interval (CI) for VE is derived based on the Clopper and Pearson method adjusted for surveillance time.
|
1048 |
+
Source: Adapted from Table ADCI9EF_VE_SEV_7PD2_CDC_EVALofC4591001-ve-tables submitted to
|
1049 |
+
STN 125742/0.38.
|
1050 |
+
6.1.11.3 Subpopulation Analyses
|
1051 |
+
VE point estimates for the primary endpoint in participants without evidence of prior infection were comparable across sex, age groups (16 to 55 years and >55 years), race, ethnicity, and country, excluding categories with too few cases to analyze. Additional subgroup analyses were performed for the second vaccine efficacy endpoint (i.e.
|
1052 |
+
COVID-19 for participants with and without evidence of infection prior to vaccination) because this endpoint may generalize better to the population who may receive the vaccine, as baseline evidence of prior infection may not be known by all people who might receive the vaccine. VE point estimates were generally high (>84%) across the subgroups examined (i.e. sex, age, race, ethnicity, comorbidity, baseline SARS-CoV-2 status, and country with the exception of participants identified as positive or unknown for baseline SARS-CoV-2 status and with un-reported ethnicity, for which there were too few COVID-19 cases to interpret efficacy data for these subgroups.
|
1053 |
+
6.1.11.4 Dropouts and/or Discontinuations
|
1054 |
+
Dropouts and discontinuations are generally balanced across the groups. There were 352 (1.6%) participants in the BNT162b2 group and 528 (2.4%) participants in the placebo group who discontinued from the vaccination period (Dose 1 to 1 month after Dose 2).
|
1055 |
+
Most participants completed the visit at 1 month post-Dose 2 (>96.4%). Few participants in the BNT1622 and placebo groups were withdrawn from the study (1.6% and 2.2%,
|
1056 |
+
Page 24
|
1057 |
+
|
1058 |
+
Statistical Review
|
1059 |
+
STN: 125742/0
|
1060 |
+
respectively), and most were due to withdrawals by the participant, or they were lost to follow-up without other cause given.
|
1061 |
+
Starting December 14, 2020, following issuance of the Emergency Use Authorization for the Pfizer-BioNTech COVID-19 Vaccine, study participants 16 years of age and older have been unblinded to their treatment assignment when eligible per local recommendations, and offered BNT16262 vaccination if they had been randomized to placebo. The length of blinded follow-up appears to be balanced between the BNT16262 and placebo groups. During the blinded placebo-controlled follow-up period, 52.4% of participants in the BNT1622 group and 52.6% of participants in the placebo group in the evaluable efficacy population with or without evidence of infection prior to 7 days after dose 2 had follow-up time between ≥4 months to <6 months after Dose 2, and 8.4% in the BNT16262 group and 6.1% in the placebo group had follow up ≥6 months.
|
1062 |
+
6.1.11.5 Exploratory and Post Hoc Analyses
|
1063 |
+
Not Applicable.
|
1064 |
+
6.1.12 Safety Analyses
|
1065 |
+
Please refer to Dr. Ye Yang's memo for the statistical review of the clinical safety data of
|
1066 |
+
Study C4591001.
|
1067 |
+
7. INTEGRATED OVERVIEW OF EFFICACY
|
1068 |
+
Data supporting the effectiveness of the vaccine were primarily generated in Study
|
1069 |
+
C4591001. Consequently, no pooled efficacy analyses were performed.
|
1070 |
+
8. INTEGRATED OVERVIEW OF SAFETY
|
1071 |
+
Please refer to Dr. Ye Yang's memo for the statistical review of the clinical safety data.
|
1072 |
+
9. ADDITIONAL STATISTICAL ISSUES
|
1073 |
+
Not Applicable.
|
1074 |
+
10. CONCLUSIONS
|
1075 |
+
10.1 Statistical Issues and Collective Evidence
|
1076 |
+
In the updated efficacy analysis for cases accrued during blinded placebo-controlled follow-up (cutoff date: March 13, 2021) of Study C4591001 in participants 16 years of age and older, the estimated vaccine efficacy (VE) against confirmed COVID-19
|
1077 |
+
occurring at least 7 days after Dose 2 was 91.1% (95% CI: 88.8%, 93.1%), with 77 COVID-19 cases in the BNT162b2 group compared to 833 cases in the placebo group among participants without evidence of SARS-CoV-2 infection before and during the vaccination regimen; the estimated vaccine efficacy (VE) against confirmed COVID-19
|
1078 |
+
occurring at least 7 days after Dose 2 was 90.9% (95% CI: 88.5%, 92.8%), with 81 COVID-19 cases in the BNT1622 group compared to 854 cases in the placebo group
|
1079 |
+
Page 25
|
1080 |
+
|
1081 |
+
Statistical Review
|
1082 |
+
STN: 125742/0
|
1083 |
+
among participants with or without evidence of SARS-CoV-2 infection before and during the vaccination regimen.
|
1084 |
+
With respect to efficacy against severe COVID-19 cases occurring at least 7 days after Dose 2, the estimated VE was 95.3% (95% CI: 71.0%, 99.9%), with 1 and 21 cases in the BNT1622 and placebo groups, respectively, among participants without evidence of SARS-CoV-2 infection; the VE result was the same among participants with or without evidence of SARS-CoV-2 infection.
|
1085 |
+
10.2 Conclusions and Recommendations
|
1086 |
+
Overall, the updated efficacy analysis results show that BNT1622 provided high VE in preventing symptomatic COVID-19 and severe COVID-19 cases that is consistent with the VE results reported in the interim and final analyses.
|
1087 |
+
Page 26
|
1088 |
+
|
docs/Statistical Review -- COMIRNATY.txt
ADDED
@@ -0,0 +1,266 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Statistical Review
|
2 |
+
STN: 125742/0
|
3 |
+
Application Type
|
4 |
+
Original BLA
|
5 |
+
STN
|
6 |
+
125742/0
|
7 |
+
CBER Received Date
|
8 |
+
May 18, 2021
|
9 |
+
PDUFA Goal Date
|
10 |
+
January 16, 2022
|
11 |
+
Division / Office
|
12 |
+
OVRR
|
13 |
+
Committee Chair
|
14 |
+
Ramachandra Naik
|
15 |
+
Product Reviewer
|
16 |
+
Xiao Wang
|
17 |
+
Project Manager Mike Smith and Laura Gottschalk
|
18 |
+
Priority Review
|
19 |
+
Yes
|
20 |
+
Reviewer Name
|
21 |
+
Xinyu Tang
|
22 |
+
Review Completion Date / Stamped
|
23 |
+
Date
|
24 |
+
Lei Huang, Concurring Reviewer, VEB, DB, OBE
|
25 |
+
Concurrence
|
26 |
+
Tsai-Lien Lin, Branch Chief, VEB, DB, OBE
|
27 |
+
John A. Scott, Director, DB, OBE
|
28 |
+
BioNTech Manufacturing GmbH in partnership
|
29 |
+
Applicant with Pfizer, Inc.
|
30 |
+
Established Name
|
31 |
+
COVID-19 Vaccine, mRNA
|
32 |
+
Trade Name
|
33 |
+
COMIRNATY@
|
34 |
+
Pharmacologic Class
|
35 |
+
Vaccine
|
36 |
+
After preparation, each 0.3 mL dose contains 30 ug
|
37 |
+
Formulation, including Adjuvants, etc.
|
38 |
+
modified mRNA encoding SARS-CoV-2 spike glycoprotein
|
39 |
+
Dosage Form and Route of
|
40 |
+
Administration
|
41 |
+
Dosing Regimen
|
42 |
+
Injectable Suspension, Intramuscular Two 0.3 mL doses, 3 weeks apart
|
43 |
+
Active immunization to prevent coronavirus disease
|
44 |
+
2019 (COVID-19) caused by severe acute
|
45 |
+
Indication and Intended Population respiratory syndrome coronavirus 2 (SARS-CoV-2)
|
46 |
+
in individuals 16 years of age and older
|
47 |
+
Page i
|
48 |
+
|
49 |
+
Statistical Review
|
50 |
+
STN: 125742/0
|
51 |
+
Table of Contents
|
52 |
+
GlossarY ..........
|
53 |
+
3
|
54 |
+
1. Executive Summary...
|
55 |
+
2. Regulatory Background.
|
56 |
+
3. Sources of Data and Other Information Considered in the Review .....
|
57 |
+
4. Review of the Method Validation of the SARS-CoV-2 mNeonGreen Virus
|
58 |
+
Microneutralization Assay ...........
|
59 |
+
4.1 Introduction...............
|
60 |
+
4.2 Experimental Design .......
|
61 |
+
4.3 Statistical Analysis..
|
62 |
+
4.4 (b) (4) Linearity...
|
63 |
+
4.4 Precision......
|
64 |
+
4.5 Limits of Quantitation.....
|
65 |
+
4.6 Assav Intermediate Precision.....
|
66 |
+
4.7 Limit of Detection..
|
67 |
+
4.8 Extravariability of Replicates.
|
68 |
+
11
|
69 |
+
..... 11
|
70 |
+
5. Review of the Report for Co-validation of Test Method TM100010380 -
|
71 |
+
Determination of the (b) (4)
|
72 |
+
of PF-07302048 (BNT162b2 Construct,
|
73 |
+
Drug Product) by (b) (4)
|
74 |
+
11
|
75 |
+
5.1 Introduction............
|
76 |
+
5.2 Validation Outline...........
|
77 |
+
5.3 Precision - Repeatability
|
78 |
+
5.4 Precision - Reproducibility
|
79 |
+
5.5 Specificity......
|
80 |
+
5.6 Detection Limit
|
81 |
+
.................... 11
|
82 |
+
.......... 12
|
83 |
+
.................. 13
|
84 |
+
14
|
85 |
+
15
|
86 |
+
15
|
87 |
+
5.7 Robustness........
|
88 |
+
........................... 17
|
89 |
+
6. Conclusions................
|
90 |
+
17
|
91 |
+
Page ii
|
92 |
+
|
93 |
+
Statistical Review
|
94 |
+
STN: 125742/0
|
95 |
+
GLOSSARY
|
96 |
+
BLA
|
97 |
+
CI
|
98 |
+
COVID-19
|
99 |
+
DL dLIA
|
100 |
+
DP
|
101 |
+
DPC
|
102 |
+
DS
|
103 |
+
GMT
|
104 |
+
IR
|
105 |
+
LLOO
|
106 |
+
IM
|
107 |
+
IND
|
108 |
+
ENP
|
109 |
+
LOD (b) (4)
|
110 |
+
mRNA
|
111 |
+
(b) (4)
|
112 |
+
biologics license application confidence interval
|
113 |
+
Coronavirus Disease 2019 detection limit direct Luminex assay drug product drug product control drug substance geometric mean titer information request lower limit of quantitation intramuscular
|
114 |
+
Investigational New Drug application lipid nanoparticle limit of detection
|
115 |
+
messenger RNA
|
116 |
+
RSD
|
117 |
+
SARS-CoV-2
|
118 |
+
SARS-CoV-2 mNG NT
|
119 |
+
SIN
|
120 |
+
TDV
|
121 |
+
ULOQ
|
122 |
+
VCA
|
123 |
+
relative standard deviation
|
124 |
+
severe acute respiratory syndrome coronavirus-2
|
125 |
+
SARS-CoV-2 mNeonGreen virus microneutralization assay signal-to-noise
|
126 |
+
Titer Determining Value upper limit of quantitation variance components analysis
|
127 |
+
1. Executive Summary
|
128 |
+
BioNTech and Pfizer submitted an original Biologics License Application (BLA) on May 18, 2021 for BNT1622. BNT162b2 is a prophylactic vaccine that prevents Coronavirus Disease 2019 (COVID-19) caused by severe acute respiratory syndrome coronavirus-2
|
129 |
+
(SARS-CoV-2). The proposed indication is active immunization to prevent COVID-19 caused by SARS-CoV-2 in individuals ≥16 years of age. The proposed dosage is 30 g via intramuscular (IM) injection following a dosing regimen of two 0.3-mL doses given three weeks apart.
|
130 |
+
This review memo focuses on the statistical review of the non-clinical aspects of this submission, including the validation of the clinical immunogenicity assay as well as the in-vitro potency assay. Specifically, this review memo covers:
|
131 |
+
• the validation of the SARS-CoV-2 mNeonGreen virus microneutralization assay
|
132 |
+
(SARS-CoV-2 mNG NT) for the detection of serum antibodies capable of neutralizing SARS-CoV-2 (VR-MVR-10083), and
|
133 |
+
• the validation of Test Method TM100010380 v5.0 for determination of the (b) (4)
|
134 |
+
of PF-07302048 (BNT16262 construct, Drug Product) by (b) (4)
|
135 |
+
(VAL100147509)
|
136 |
+
Page 3
|
137 |
+
|
138 |
+
Statistical Review
|
139 |
+
STN: 125742/0
|
140 |
+
based on the validation reports submitted in Module 5.3.1.4 of BLA125742/0.0 and Module 3.2.R of BLA125741/0.19, which have not been reviewed previously.
|
141 |
+
With respect to the validation of the SARS-CoV-2 mNG NT assay, results from the validation study suggest acceptable accuracy and precision. The limit of detection (LOD), lower limit of quantitation (LLOQ), and upper limit of quantitation (ULOQ) were determined to be (b) (4)
|
142 |
+
, respectively. The LOD study demonstrated an
|
143 |
+
acceptable false positive rate but did not evaluate the false negative rate at the LOD.
|
144 |
+
Because this assay was not used in the determination of serostatus in clinical studies included in this BLA submission, the unknown false negative rate does not impact the approval of this BLA. However, the false negative rate may be a concern in the future, depending on future use of this assay.
|
145 |
+
With respect to the validation of Test Method TM100010380 v5.0 (referred to as the (b) (4)
|
146 |
+
assay hereafter), results from the validation study suggest acceptable
|
147 |
+
specificity and robustness to b) (4)
|
148 |
+
. The detection limit (DL) was determined to be b) (4)
|
149 |
+
The repeatability and
|
150 |
+
reproducibility of the assay were estimated to be (b) (4)
|
151 |
+
relative standard deviation
|
152 |
+
(RSD), respectively. Since the (b) (4)
|
153 |
+
assay was validated as a limit test, the
|
154 |
+
repeatability and reproducibility results were evaluated for information only.
|
155 |
+
In conclusion, I consider both the SARS-CoV-2 mNG NT and (b) (4) adequate for their intended uses in support of this BLA.
|
156 |
+
assays
|
157 |
+
2. Regulatory Background
|
158 |
+
The Investigational New Drug Application (IND19736) for BNT16262 was submitted on April 29, 2020. Fast Track Designation was granted on July 7, 2020 for individuals 18 years of age and older. On December 11, 2020, Emergency Use Authorization (EUA
|
159 |
+
27034) of BNT16262 for active immunization to prevent COVID-19 in individuals 16 years of age and older was granted (EUA product identified as Pfizer-BioNTech COVID-
|
160 |
+
19 Vaccine). BioNTech and Pfizer submitted this BLA on May 18, 2021 for BNT162b2.
|
161 |
+
The following documents regarding clinical assays were submitted in Module 5.3.1.4 of
|
162 |
+
BLA125741/0.0:
|
163 |
+
• Report on Method Validation of a Cepheid Xpert® Xpress PC Assay to Detect SARS-CoV-2 (VR-MVR-10080, Version 3.0),
|
164 |
+
• Method Validation Report for the Elecsys Anti-SARS-CoV-2 Assay (VR-MVR-10081, Version 2.0),
|
165 |
+
• Qualification Report for a (b) (4)
|
166 |
+
Direct Luminex Assay (dLIA) for Quantitation
|
167 |
+
of IgG Antibodies to SARS-CoV-2 S1 Protein in Human Sera (VR-MQR-10211,
|
168 |
+
Version 2.0),
|
169 |
+
• Oualification Report for a b) (4)
|
170 |
+
Direct Luminex Assay (dLIA) for Ouantitation
|
171 |
+
of IgG Antibodies to SARS-CoV-2 RBD Protein in Human Sera (VR-MQR-10212,
|
172 |
+
Version 2.0),
|
173 |
+
Page 4
|
174 |
+
|
175 |
+
Statistical Review
|
176 |
+
STN: 125742/0
|
177 |
+
• Oualification of the SARS-CoV-2 mNeonGreen Virus Microneutralization Assay
|
178 |
+
(VR-MQR-10214, Version 2.0), and
|
179 |
+
• Method Validation of the SARS-CoV-2 mNeonGreen Virus Microneutralization
|
180 |
+
Assay (VR-MVR-10083, Version 1.0).
|
181 |
+
All these qualification and validation reports have been reviewed during the IND stage, except for the validation report for the SARS-CoV-2 mNG NT assay, which is covered in this review memo.
|
182 |
+
The following document regarding the potency assay was submitted in Module 3.2.R of
|
183 |
+
BLA125741/0.19:
|
184 |
+
• Report for Co-Validation of Test Method TM100010380 - Determination of the
|
185 |
+
of PF-07302048 (BNT162b2 Construct, Drug Product) by (b) (4)
|
186 |
+
(VAL100147509, Version 1.0).
|
187 |
+
This validation report has not been previously reviewed during the IND stage and is covered in this review memo as well.
|
188 |
+
3. SOURCES OF DATA AND OTHER INFORMATION CONSIDERED IN THE REVIEW
|
189 |
+
The following documents submitted to the BLA are reviewed:
|
190 |
+
• Method Validation of the SARS-CoV-2 mNeonGreen virus microneutralization assay used for the detection of serum antibodies capable of neutralizing SARS-CoV-2 (VR-MVR-10083, Version 1.0) (BLA125742/0.0, dated February 9, 2021, received May 6, 2021),
|
191 |
+
• Report for Co-Validation of Test Method TM100010380 - Determination of the (4)
|
192 |
+
of PF-07302048 (BNT162b2 Construct, Drug Product) by (b) (4)
|
193 |
+
(VAL100147509, Version 1.0) (BLA125742/0.19, Module 3.2.R, dated
|
194 |
+
July 16, 2021, received July 28, 2021).
|
195 |
+
• Response to 04 Aug 2021 FDA Information Request (IR) (BLA125742/0.34, Module
|
196 |
+
1.11.1, dated August 6, 2021, received August 6, 2021), and
|
197 |
+
• Validation of Analytical Procedure - (b) (4)
|
198 |
+
(BLA125742/0.34,
|
199 |
+
Module 3.2.P.5.3, dated August 6, 2021, received August 6, 2021).
|
200 |
+
The following document submitted to the IND is also referred to when reviewing the validation of the SARS-CoV-2 mNG NT assay:
|
201 |
+
• Validation Protocol for the SARS-CoV-2 mNeonGreen Virus Microneutralization
|
202 |
+
Assay (VR-MVP-10074, Version 2.0) (IND19736/157, Module 5.3.1.4, dated December 2, 2020, received December 4, 2020).
|
203 |
+
4. REVIEW OF THE METHOD VALIDATION OF THE SARS-CoV-2 MNEONGREEN
|
204 |
+
VIRUS MICRONEUTRALIZATION ASSAY
|
205 |
+
4.1 Introduction
|
206 |
+
The SARS-CoV-2 mNG NT assay is a biofunctional assay that measures neutralizing antibodies against SARS-CoV-2. This assay is described in Test Method VR-TM-10298
|
207 |
+
Briefly, (b) (4)
|
208 |
+
Page 5
|
209 |
+
|
210 |
+
Statistical Review
|
211 |
+
STN: 125742/0
|
212 |
+
(b) (4)
|
213 |
+
This validation study evaluated assay (b) (4) linearity, precision, limit of detection, and intermediate precision. The ) (4) linearity and precision results were used to define the limits of quantitation and extravariability criterion.
|
214 |
+
4.2 Experimental Design
|
215 |
+
Validation of the SARS-CoV-2 mNG NT assay was performed as described in the validation protocol (VR-MVP-10074). (b) (4)
|
216 |
+
(b) (4)
|
217 |
+
Page 6
|
218 |
+
|
219 |
+
4 pages have been determined to be not releasable: (b)(4)
|
220 |
+
|
221 |
+
(b) (4)
|
222 |
+
5.1 Introduction
|
223 |
+
Test Method TM100010380 Determination (b) (4)
|
224 |
+
(b) (4)
|
225 |
+
Statistical Review
|
226 |
+
STN: 125742/0
|
227 |
+
PF-07302048
|
228 |
+
Page 11
|
229 |
+
|
230 |
+
Statistical Review
|
231 |
+
STN: 125742/0
|
232 |
+
(b) (4)
|
233 |
+
5.2 Validation Outline
|
234 |
+
This validation report contains the results of validation study conducted according to the following method validation protocols:
|
235 |
+
• VAL100138078, V1.0 Protocol for co-validation of test method TM100010380, which was the original method validation protocol to evaluate repeatability, reproducibility, specificity, and detection limit,
|
236 |
+
• INX100459445, V1.0 Amendment for protocol for co-validation of test method
|
237 |
+
TM100010380, which was an amendment to original method validation protocol
|
238 |
+
VAL100138078 to evaluate the robustness of (b) (4)
|
239 |
+
during reproducibility studies.
|
240 |
+
In routine tests, the assay is analyzed (b) (4)
|
241 |
+
Page 12
|
242 |
+
|
243 |
+
4 pages have been determined to be not releasable: (b)(4)
|
244 |
+
|
245 |
+
Statistical Review
|
246 |
+
STN: 125742/0
|
247 |
+
(b) (4)
|
248 |
+
6. CONCLUSIONS
|
249 |
+
This review memo focuses on the validation of the SARS-CoV-2 mNG NT assay for the detection of serum antibodies capable of neutralizing SARS-CoV-2 and the validation of the (b) (4) potency assay, TM100010380 v5.0, for determination of the (b) (4)
|
250 |
+
of PF-07302048 by (b) (4)
|
251 |
+
With respect to the validation of the SARS-CoV-2 mNG NT assay, results from the validation study suggest acceptable accuracy and precision. The LOD, LLOQ, and ULOO were determined to be b) (4)
|
252 |
+
, respectively. The LOD study
|
253 |
+
demonstrated (b) (4)
|
254 |
+
With respect to the validation of the (b) (4)
|
255 |
+
assay, results from the validation
|
256 |
+
study suggest acceptable specificity and is robust to (b) (4)
|
257 |
+
. The detection limit (DL) was determined to be (b) (4)
|
258 |
+
The
|
259 |
+
repeatability and reproducibility of the assay were estimated to be (b) (4)
|
260 |
+
, respectively. Since the (b) (4)
|
261 |
+
assay was validated as
|
262 |
+
a limit test, the repeatability and reproducibility results were evaluated for information only.
|
263 |
+
In conclusion, I consider both the SARS-CoV-2 mNG NT and (b) (4) adequate for their intended uses in support of this BLA.
|
264 |
+
assays
|
265 |
+
Page 17
|
266 |
+
|
docs/Statistical Review-COMIRNATY.txt
ADDED
@@ -0,0 +1,1200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Statistical Review
|
2 |
+
STN: 125742/0
|
3 |
+
Application Type
|
4 |
+
BLA, Original Application
|
5 |
+
STN
|
6 |
+
125742/0
|
7 |
+
CBER Received Date
|
8 |
+
May 18, 2021
|
9 |
+
PDUFA Goal Date
|
10 |
+
January 16, 2022
|
11 |
+
Division/ Office
|
12 |
+
DVRPA/OVRR
|
13 |
+
Committee Chair
|
14 |
+
Ramachandra Naik
|
15 |
+
Clinical Reviewers)
|
16 |
+
Ann Schwartz; Susan Wollersheim
|
17 |
+
Project Manager
|
18 |
+
Michael Smith; Laura Gottschalk
|
19 |
+
Priority Review
|
20 |
+
Yes
|
21 |
+
Reviewer Name
|
22 |
+
Ye Yang, Mathematical Statistician, DB/VEB
|
23 |
+
Review Completion Date /
|
24 |
+
Stamped Date
|
25 |
+
Concurrence
|
26 |
+
Lei Huang, Concurring Reviewer, DB/VEB
|
27 |
+
Supervisory Concurrence
|
28 |
+
Tsai-Lien Lin, Branch Chief, DB/VEB
|
29 |
+
Supervisory Concurrence
|
30 |
+
John Scott, Director, DB
|
31 |
+
Applicant
|
32 |
+
Established Name
|
33 |
+
(Proposed) Trade Name
|
34 |
+
Dosage Form(s) and Route(s) of
|
35 |
+
Administration
|
36 |
+
Dosing Regimen
|
37 |
+
Indication(s) and Intended
|
38 |
+
Population(s)
|
39 |
+
BioNTech Manufacturing GmbH (in partnership with Pfizer, Inc.)
|
40 |
+
COVID-19 Vaccine, mRNA
|
41 |
+
COMIRNATY
|
42 |
+
Injectable Suspension, Intramuscular
|
43 |
+
Two 0.3 mL doses, three weeks apart
|
44 |
+
Active immunization to prevent coronavirus disease 2019 (COVID-19) caused by severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2) in individuals 16 years of age and older
|
45 |
+
Page i
|
46 |
+
|
47 |
+
Statistical Review
|
48 |
+
STN: 125742/0
|
49 |
+
Table of Contents
|
50 |
+
Glossary....
|
51 |
+
3
|
52 |
+
1. Executive Summary..
|
53 |
+
2. Clinical and Regulatory Background
|
54 |
+
3. Submission Ouality and Good Clinical Practices ..............
|
55 |
+
5
|
56 |
+
3.1 Submission Quality and Completeness ....
|
57 |
+
3.2 Compliance With Good Clinical Practices And Data Integrity
|
58 |
+
4. Significant Efficacy/Safety Issues Related to Other Review Disciplines............
|
59 |
+
5
|
60 |
+
5. Sources of Clinical Data and Other Information Considered in the Review. .......... 5
|
61 |
+
5.1 Review Strategy .........
|
62 |
+
5.2 BLA/IND Documents That Serve as the Basis for the Statistical Review.
|
63 |
+
5.3 Table of Studies/Clinical Trials...
|
64 |
+
6. Discussion of Individual Studies/Clinical Trials ..
|
65 |
+
6.1 Study C4591001......
|
66 |
+
6.1.1 Objectives.
|
67 |
+
6.1.2 Design Overview.
|
68 |
+
6.1.3 Population
|
69 |
+
6.1.4 Study Treatments or Agents Mandated by the Protocol
|
70 |
+
6.1.6 Sites and Centers
|
71 |
+
6.1.7 Surveillance/Monitoring.
|
72 |
+
6.1.8 Endpoints and Criteria for Study Success
|
73 |
+
6.1.9 Statistical Considerations & Statistical Analysis Plan
|
74 |
+
6.1.10 Study Population and Disposition
|
75 |
+
6.1.11 Efficacy Analyses.....
|
76 |
+
6.1.12 Safety Analyses.
|
77 |
+
7. Integrated Overview of Efficacy...........
|
78 |
+
8
|
79 |
+
9
|
80 |
+
9
|
81 |
+
.. 15
|
82 |
+
8. Integrated Overview of Safety.......
|
83 |
+
........ 15
|
84 |
+
9. Additional Statistical Issues...........
|
85 |
+
........... 15
|
86 |
+
10. Conclusions..........
|
87 |
+
10.1 Statistical Issues and Collective Evidence..............
|
88 |
+
10.2 Conclusions and Recommendations..
|
89 |
+
............. 15
|
90 |
+
15
|
91 |
+
........... C
|
92 |
+
Page ii
|
93 |
+
|
94 |
+
Statistical Review
|
95 |
+
STN: 125742/0
|
96 |
+
GLOSSARY
|
97 |
+
ADaM
|
98 |
+
AE
|
99 |
+
BIMO
|
100 |
+
BLA
|
101 |
+
BNT16262
|
102 |
+
COVID-19
|
103 |
+
EUA
|
104 |
+
HIV
|
105 |
+
RT-PCR
|
106 |
+
SAE
|
107 |
+
SAP
|
108 |
+
SARS-CoV-2
|
109 |
+
SDTM
|
110 |
+
Analysis Data Model
|
111 |
+
Adverse Event
|
112 |
+
Bioresearch Monitoring
|
113 |
+
Biologics License Application
|
114 |
+
Pfizer-BioNTech COVID-19 Vaccine
|
115 |
+
Coronavirus Disease 2019
|
116 |
+
Emergency Use Authorization
|
117 |
+
Human Immunodeficiency Virus
|
118 |
+
Reverse Transcription-Polymerase Chain Reaction
|
119 |
+
Serious Adverse Event
|
120 |
+
Statistical Analysis Plan
|
121 |
+
Severe Acute Respiratory Syndrome Coronavirus 2
|
122 |
+
Study Data Tabulation model
|
123 |
+
Page 3
|
124 |
+
|
125 |
+
Statistical Review
|
126 |
+
STN: 125742/0
|
127 |
+
1. Executive Summary
|
128 |
+
Pfizer submitted a Biologics License Application (BLA 125742.0) on May 18, 2021 to seek licensure of the Pfizer-BioNTech COVID-19 Vaccine (BNT162b2) for active immunization to prevent Coronavirus Disease 2019 (COVID-19) caused by Severe Acute Respiratory Syndrome Coronavirus 2 (SARS-CoV-2) in individuals 16 years of age and older. The BLA is supported by safety, efficacy, and immunogenicity data from two ongoing studies (C4591001 and BNT-162-01). This statistical review focuses on safety data from subjects aged 16 years and above in the Phase 2/3 part of Study C4591001 collected up to the March 13, 2021 data cut-off.
|
129 |
+
Study C4591001 is an ongoing, randomized, placebo-controlled, observer-blinded Phase 1/2/3 study being conducted in the United States, Argentina, Brazil, Germany, South Africa, and Turkey. In the Phase 2/3 portion of the study, 44,165 subjects aged 16 and above were randomized 1:1 to receive two doses of BNT16262 or placebo 21 days apart.
|
130 |
+
Randomization was stratified by age group (younger adults 18 through 55 years of age and older adults >55 years of age; adolescents 16 to 17 were later added via a protocol amendment) with 40.6% of the final study population being older adults. Since December 14, 2020, following issuance of the EUA, participants 16 years of age and older were systematically unblinded when eligible per local recommendations and offered
|
131 |
+
BNT1622 vaccination if they had been randomized to placebo.
|
132 |
+
For all 44,047 randomized participants who received at least one dose of the study intervention, unsolicited adverse events (AEs) and serious AEs (SAEs) were collected from Dose 1 up to the March 13, 2021 data cut-off. A reactogenicity subset of approximately 4,900 participants per arm who received at least one dose of the study intervention recorded local reactions, systemic events, and antipyretic/pain medication usage from Day 1 through Day 7 after each dose.
|
133 |
+
No major statistical issues were identified for the safety data during review. A higher percentage of subjects in the BNT16262 group reported solicited local and systemic reactions than placebo recipients in both the younger (16 to 55 years) and older (>55 years) adult age groups after both doses. There was an imbalance in the frequencies of unsolicited AEs in the vaccine group, driven largely by increased reactogenicity. In addition, one report of pericarditis was identified in a 66-year-old male participant 28 days after receiving Dose 2 of BNT16262. There were no reports of myocarditis in the vaccine arm up to the data cut-off. There were no major imbalances in reported SAEs, AEs leading to withdrawal, or deaths between the treatment groups at one month and up to six months after the second dose or unblinding/data cut-off.
|
134 |
+
2. Clinical and Regulatory Background
|
135 |
+
The Pfizer-BioNTech COVID-19 Vaccine (BNT1622) was granted Fast Track
|
136 |
+
Designation for individuals ≥18 years of age on July 7, 2020, and was authorized under an Emergency Use Authorization (EUA) on December 11, 2020 for individuals ≥16 years of age. The EUA was amended to include individuals ≥12 years of age on May 10, 2021.
|
137 |
+
Pfizer submitted a BLA on May 18, 2021 to seek licensure of the vaccine for active
|
138 |
+
Page 4
|
139 |
+
|
140 |
+
Statistical Review
|
141 |
+
STN: 125742/0
|
142 |
+
immunization to prevent COVID-19 caused by SARS-CoV-2 in individuals 16 years of age and older.
|
143 |
+
3. SUBMISSION QUALITY AND GOOD CLINICAL PRACTICES
|
144 |
+
3.1 Submission Quality and Completeness
|
145 |
+
The submission was adequately organized for conducting a complete statistical review without unreasonable difficulty.
|
146 |
+
3.2 Compliance With Good Clinical Practices And Data Integrity
|
147 |
+
Please refer to Haecin Chun's Bioresearch Monitoring inspections review memo.
|
148 |
+
4. SIGNIFICANT EFFICACY/SAFETY ISSUES RELATED TO OTHER REVIEW
|
149 |
+
DISCIPLINES
|
150 |
+
Please refer to reviews of other review disciplines.
|
151 |
+
5. SOURCES OF CLINICAL DATA AND OTHER INFORMATION CONSIDERED IN THE REVIEW
|
152 |
+
5.1 Review Strategy
|
153 |
+
This statistical review focuses on safety data from subiects aged 16 years and above in the Phase 2/3 part of Study C4591001 collected up to the March 13, 2021 data cut-off.
|
154 |
+
5.2 BLA/IND Documents That Serve as the Basis for the Statistical Review
|
155 |
+
The following documents submitted to the BLA are reviewed:
|
156 |
+
125742/0 (submitted on 5/6/2021)
|
157 |
+
Module 2. Common Technical Document Summaries
|
158 |
+
• Clinical Overview
|
159 |
+
• Summary of Clinical Safety
|
160 |
+
Module 5. Clinical Study Reports
|
161 |
+
125742/0/1 (submitted on 5/18/2021)
|
162 |
+
Module 1. Administrative Information and Prescribing Information
|
163 |
+
125742/0/3 (submitted on 5/19/2021)
|
164 |
+
Module 1. Administrative Information and Prescribing Information
|
165 |
+
• Response to May 18, 2021 Information Request
|
166 |
+
125742/0/26 (submitted on 8/2/2021)
|
167 |
+
Module 1. Administrative Information and Prescribing Information
|
168 |
+
• Response to July 29, 2021 Information Request
|
169 |
+
125742/0/37 (submitted on 8/9/2021)
|
170 |
+
Page 5
|
171 |
+
|
172 |
+
Statistical Review
|
173 |
+
STN: 125742/0
|
174 |
+
Module 5. Clinical Study Reports
|
175 |
+
• C4591001 - 508 Safety Tables
|
176 |
+
5.3 Table of Studies/Clinical Trials
|
177 |
+
Data from two ongoing clinical studies were submitted to support the BLA for BNT162b2 and are summarized in Table 1 below. Study C4591001 is a multi-center, Phase 1/2/3, randomized, double-blinded, placebo-controlled safety, immunogenicity, and efficacy study and Study BNT162-01 is a Phase 1 safety and immunogenicity study evaluating various vaccine candidates and dose levels.
|
178 |
+
Table 1. Clinical Trials Supporting Licensure of the Pfizer-BioNTech COVID-19 Vaccine
|
179 |
+
Study Number/ Country
|
180 |
+
Description
|
181 |
+
BNT162b2 (30 Mg)
|
182 |
+
participants (N)
|
183 |
+
Placebo participants (N)
|
184 |
+
C4591001
|
185 |
+
Argentina, Brazil, Germany, S.
|
186 |
+
Africa, Turkey, U.S.A.
|
187 |
+
Phase 1/2/3 randomized, placebo-controlled, observer-blind; to evaluate safety, immunogenicity and efficacy of COVID-19 vaccine
|
188 |
+
Phase 1: 24 (U.S.A.)
|
189 |
+
Phase 2/3: 22085
|
190 |
+
Argentina: 2887
|
191 |
+
Brazil: 1452
|
192 |
+
Germany: 250
|
193 |
+
South Africa: 401
|
194 |
+
Turkey: 251
|
195 |
+
U.S.A: 16844
|
196 |
+
Phase 1: 24 (Germany)
|
197 |
+
Phase 1: 6 (U.S.A.)
|
198 |
+
Phase 2/3: 22080
|
199 |
+
Argentina: 2889
|
200 |
+
Brazil: 1448
|
201 |
+
Germany: 250
|
202 |
+
South Africa: 399
|
203 |
+
Turkey: 249
|
204 |
+
U.S.A.: 16845
|
205 |
+
0
|
206 |
+
BNT162-01
|
207 |
+
Germany
|
208 |
+
Phase 1/2 randomized, open-label: to evaluate safety and immunogenicity,
|
209 |
+
Source: Summarized by the reviewer based on information provided in Module 2. Clinical Overview.
|
210 |
+
6. DISCUSSION OF INDIVIDUAL STUDIES/CLINICAL TRIALS
|
211 |
+
Study
|
212 |
+
Status
|
213 |
+
Ongoing
|
214 |
+
Ongoing
|
215 |
+
6.1 Study C4591001
|
216 |
+
Title of Study: A Phase 1/2/3, Placebo-Controlled, Randomized, Observer-Blind, Dose-Finding Study to Evaluate the Safety, Tolerability, Immunogenicity, and Efficacy of SARS-COV-2 RNA Vaccine Candidates Against COVID-19 in Healthy Individuals
|
217 |
+
First Subject First Visit: April 29, 2020
|
218 |
+
Data Cut-off: Mach 13, 2021
|
219 |
+
6.1.1 Obiectives
|
220 |
+
Primary Safety Objective (Phase 2/3):
|
221 |
+
• To characterize the safety profile of prophylactic BNT16262 in all participants randomized in Phase 2/3
|
222 |
+
6.1.2 Design Overview
|
223 |
+
Study C4591001 is an ongoing, randomized, placebo-controlled, observer-blinded Phase 1/2/3 study being conducted in the United States, Argentina, Brazil, Germany, South Africa, and Turkey. In the Phase 2/3 portion of the study, 43,998 subjects were planned
|
224 |
+
Page 6
|
225 |
+
|
226 |
+
Statistical Review
|
227 |
+
STN: 125742/0
|
228 |
+
to be randomized 1:1 to receive two doses of BNT162b2 or placebo 21 days apart.
|
229 |
+
Randomization was stratified by age group (younger adults 18 through 55 years of age, older adults >55 years of age) with a goal of 40% enrollment among older adults.
|
230 |
+
Eligibility was later expanded to include adolescents 16 to 17 years of age.
|
231 |
+
Efficacy was assessed throughout the study via surveillance for potential cases of
|
232 |
+
COVID-19. Participants who developed acute respiratory illness were tested for SARS-CoV-2 infection using reverse transcription-polymerase chain reaction (RT-PCR) in an illness visit. The study included planned interim analyses of the primary efficacy endpoint at 62, 92, and 120 cases, and a final analysis of all primary and secondary efficacy endpoints after at least 164 COVID-19 cases were accrued. Participants were to be followed for a maximum of 26 months. Efficacy assessments and results are covered in detail in Dr. Lei Huang's statistical review memo.
|
233 |
+
Since December 14, 2020 following issuance of the EUA, participants 16 years of age and older were systematically unblinded and, when eligible per local recommendations, offered BNT1622 vaccination no later than the 6-month timepoint after the second study vaccination if they had been randomized to placebo.
|
234 |
+
A subset of at least 6,000 participants (the reactogenicity subset, planned to be the first 6,000 or more patients randomized) were to record local reactions, systemic events, and antipyretic/pain medication usage from Day 1 through Day 7 after each dose. For all participants, unsolicited adverse events (AEs) and serious AEs (SAEs) were collected from Dose 1 up to the March 13, 2021 data cut-off.
|
235 |
+
6.1.3 Population
|
236 |
+
The Phase 2/3 study population consisted of participants 12 years of age and older at higher risk for acquiring COVID-19 (including, but not limited to, use of mass transportation, relevant demographics, and frontline essential workers).
|
237 |
+
6.1.4 Study Treatments or Agents Mandated by the Protocol
|
238 |
+
The study interventions were 30ug of BNT1622 and saline placebo.
|
239 |
+
6.1.6 Sites and Centers
|
240 |
+
A total of 153 sites across the United States (131), Turkey (9), Germany (6), South Africa, (4), Brazil (2) and Argentina (1) participated in the study.
|
241 |
+
6.1.7 Surveillance/Monitoring
|
242 |
+
Please refer to Drs. Susan Wollersheim and Ann Schwartz's clinical review memo.
|
243 |
+
6.1.8 Endpoints and Criteria for Study Success
|
244 |
+
The safety endpoints for all subiects include the occurrence of As and SAEs from Dose 1 up to one month post Dose 2 or unblinding (whichever is earlier), and from Dose 1 up to six months post Dose 2 or unblinding. For the reactogenicity subset, safety endpoints additionally include the occurrence of local reactions (redness, swelling, and injection
|
245 |
+
Page 7
|
246 |
+
|
247 |
+
Statistical Review
|
248 |
+
STN: 125742/0
|
249 |
+
site pain) and systemic reactions (fever, fatigue, headache, chills, vomiting, diarrhea, and muscle and joint pain) within seven days of each dose.
|
250 |
+
6.1.9 Statistical Considerations & Statistical Analysis Plan
|
251 |
+
Solicited safety analyses were based on subiects in the reactogenicity subset who received at least one dose of the study intervention and responded yes or no to any reaction within seven days of each dose. Unsolicited safety analyses were based the Safety Population, which consisted of all subjects randomized in the Phase 2/3 study who received at least one dose of study intervention, analyzed according to the intervention received. Safety endpoints were summarized descriptively by computing the number and percentage of participants within the analysis set who reported at least one event
|
252 |
+
6.1.10 Study Population and Disposition
|
253 |
+
6.1.10.1 Populations Enrolled/Analyzed
|
254 |
+
Table 2 shows the disposition of randomized subjects >16 years of age in the Phase 2/3 portion of the study. A total of 44,165 subjects were randomized. The percentages of subiects who received each dose were similar between the vaccine and placebo groups.
|
255 |
+
More subjects withdrew from the study in the placebo group than in the vaccine group.
|
256 |
+
Table 2. Subiect Disposition
|
257 |
+
BNT162b2
|
258 |
+
Placebo
|
259 |
+
Total
|
260 |
+
N=22085
|
261 |
+
N=22080
|
262 |
+
N=44165
|
263 |
+
n (%)
|
264 |
+
n (%)
|
265 |
+
n (%)
|
266 |
+
Randomized
|
267 |
+
Not vaccinated
|
268 |
+
Vaccinated
|
269 |
+
Dose 1
|
270 |
+
Dose 2
|
271 |
+
Withdrawn from the study
|
272 |
+
Lost to follow-up
|
273 |
+
Withdrawal by subiect
|
274 |
+
Protocol deviation
|
275 |
+
Death
|
276 |
+
Adverse event
|
277 |
+
Physician decision
|
278 |
+
No longer meets eligibility criteria
|
279 |
+
Pregnancy
|
280 |
+
Medication error without AE
|
281 |
+
Withdrawal by parent/guardian
|
282 |
+
Other
|
283 |
+
22085 (100.0) 22080 (100.0) 44165 (100.0)
|
284 |
+
55 (0 2)
|
285 |
+
50 (0 2)
|
286 |
+
105 (0 2)
|
287 |
+
22030 (99.8)
|
288 |
+
22030 (99.8)
|
289 |
+
44060 (99.8)
|
290 |
+
22030 (99.8)
|
291 |
+
22030 (99.8)
|
292 |
+
44060 (99.8)
|
293 |
+
21675 (98.1)
|
294 |
+
21650 (98.1)
|
295 |
+
43325 (98.1)
|
296 |
+
343 (1.6)
|
297 |
+
484 (2.2)
|
298 |
+
827 (1.9)
|
299 |
+
174 (0.8)
|
300 |
+
191 (0 9)
|
301 |
+
365 (0 8)
|
302 |
+
122 (0.6)
|
303 |
+
226 (1.0)
|
304 |
+
348 (0.8)
|
305 |
+
11(<0.1)
|
306 |
+
24 (0.1)
|
307 |
+
35 (0.1)
|
308 |
+
16 (0.1)
|
309 |
+
15 (0.1)
|
310 |
+
31 (0.1)
|
311 |
+
9 (<0.1)
|
312 |
+
8 (<0.1)
|
313 |
+
17(<0.1)
|
314 |
+
3 (<0.1)
|
315 |
+
6 (<0.1)
|
316 |
+
9 (<0.1)
|
317 |
+
1 (<0 1)
|
318 |
+
4 (<0.1)
|
319 |
+
5 (<0.11
|
320 |
+
0
|
321 |
+
1 (<0.1)
|
322 |
+
1 (<0.1)
|
323 |
+
1 (<0.1)
|
324 |
+
1<0.1)
|
325 |
+
1 (<0.1)
|
326 |
+
1 (<0.1)
|
327 |
+
5 (<0.1)
|
328 |
+
9 (<0.1)
|
329 |
+
14(<0.1)
|
330 |
+
Source: Adapted from Table 31 of Summary of Clinical Safetv.
|
331 |
+
6.1.10.1.1 Demographics
|
332 |
+
Table 3 presents demographic characteristics for the Safety Population. Demographic characteristics were generally similar with regard to age, gender, race, and ethnicity
|
333 |
+
Page 8
|
334 |
+
|
335 |
+
Statistical Review
|
336 |
+
STN: 125742/0
|
337 |
+
among participants who received BNT162b2 and those who received placebo. Overall, among all the participants who received either BNT162b2 or placebo, 50.9% were male and 49.1% were female, 82.0% were White, 9.6% were Black or African American, 4.3% were Asian, and 1.0% were American Indian or Alaska Native.
|
338 |
+
Table 3. Demographics Characteristics of the Safety Population
|
339 |
+
BNT162b2
|
340 |
+
N=22026 n (%)
|
341 |
+
Placebo
|
342 |
+
N=22021 n (%)
|
343 |
+
Total
|
344 |
+
N=44047 n (%)
|
345 |
+
Sex
|
346 |
+
Male
|
347 |
+
Female
|
348 |
+
Race
|
349 |
+
White
|
350 |
+
Black/African-American
|
351 |
+
American Indian/Alaskan Native
|
352 |
+
Asian
|
353 |
+
Native Hawaiian/Other Pacific Islander
|
354 |
+
Multiracial
|
355 |
+
Not Reported
|
356 |
+
Ethnicity
|
357 |
+
Hispanic/Latino
|
358 |
+
Non-Hispanic/Non-Latino
|
359 |
+
Not Reported
|
360 |
+
Country
|
361 |
+
Argentina
|
362 |
+
Brazil
|
363 |
+
Germany
|
364 |
+
South Africa
|
365 |
+
Turkey
|
366 |
+
USA
|
367 |
+
Age Group
|
368 |
+
16-55 Years
|
369 |
+
>55 Years
|
370 |
+
Age
|
371 |
+
Mean (Standard Deviation)
|
372 |
+
Median
|
373 |
+
Minimum. Maximum
|
374 |
+
Source: Table 4 of Summary of Clinical Safetv.
|
375 |
+
11322 (51.4)
|
376 |
+
11098 (50.4)
|
377 |
+
22420 (50.9)
|
378 |
+
10704 (48.6)
|
379 |
+
10923 (49.6)
|
380 |
+
21627 (49.1'
|
381 |
+
18056 (82.0)
|
382 |
+
18064 (82.0)
|
383 |
+
36120 (82.0)
|
384 |
+
2098 (9.5)
|
385 |
+
2118 (9.6)
|
386 |
+
4216 (9.6)
|
387 |
+
221 (1.0)
|
388 |
+
217 (1.0)
|
389 |
+
438 (1.0)
|
390 |
+
952 (4.3)
|
391 |
+
942 (4.3)
|
392 |
+
1894 (4.3)
|
393 |
+
58 (0.3)
|
394 |
+
32 (0.1)
|
395 |
+
90 (0.2)
|
396 |
+
550 (2.5)
|
397 |
+
533 (2.4)
|
398 |
+
1083 (2.5)
|
399 |
+
91 (0.4)
|
400 |
+
115 (0.5)
|
401 |
+
206 (0.5)
|
402 |
+
5704 (25.9)
|
403 |
+
5695 (25.9)
|
404 |
+
11399 (25.9)
|
405 |
+
16211 (73.6) 16212 (73.6)
|
406 |
+
32423 (73.6)
|
407 |
+
111 (0.5)
|
408 |
+
114 (0.5)
|
409 |
+
225 (0.5)
|
410 |
+
2883 (13.1)
|
411 |
+
2881 (13.1)
|
412 |
+
1452 (6.6)
|
413 |
+
1448 (6.6)
|
414 |
+
249 (1.1)
|
415 |
+
250 (1.1)
|
416 |
+
401 (1.8)
|
417 |
+
399 (1.8)
|
418 |
+
249 (1.1)
|
419 |
+
249 (1_1)
|
420 |
+
16792 (76.2)
|
421 |
+
16794 (76.3)
|
422 |
+
5764 (13.1)
|
423 |
+
2900 (6.6)
|
424 |
+
499 (1.1)
|
425 |
+
800 (1.8)
|
426 |
+
498 (1.1)
|
427 |
+
33586 (76.3)
|
428 |
+
13069 (59.3)
|
429 |
+
8957 (40.7)
|
430 |
+
13095 (59.5)
|
431 |
+
8926 (40.5)
|
432 |
+
26164 (59.4)
|
433 |
+
17883 (40.6)
|
434 |
+
49.7 (16.0)
|
435 |
+
51.0
|
436 |
+
(16, 89)
|
437 |
+
49.6 (16.1)
|
438 |
+
51.0
|
439 |
+
(16, 91)
|
440 |
+
49.7 (16.0)
|
441 |
+
51.0
|
442 |
+
(16, 91)
|
443 |
+
6.1.11 Efficacy Analyses
|
444 |
+
Please refer to Dr. Lei Huang's statistical review memo.
|
445 |
+
6.1.12 Safety Analyses
|
446 |
+
Solicited Local and Systemic Reactions
|
447 |
+
Tables 4 and 5 present the frequency by severity of each solicited local and systemic reaction within seven days of each dose for the 16-to-55 and 56-and-above vear-old age
|
448 |
+
Page 9
|
449 |
+
|
450 |
+
Statistical Review
|
451 |
+
STN: 125742/0
|
452 |
+
groups, respectively. In general, incidence of any redness, swelling, injection site pain, fever, fatigue, headache, chills, new or worse muscle pain, and new or worse joint pain was higher among vaccine recipients than among placebo recipients. There were no notable differences between vaccine and placebo recipients or between vaccine Dose 1 and Dose 2 for vomiting or diarrhea.
|
453 |
+
For both age groups, injection site pain was the most frequent solicited local adverse reaction. After Dose 2, the younger age group reported any pain more frequently than the older age group (78.3% vs 66.1%). A similar pattern was observed after Dose 1.
|
454 |
+
Frequencies of any injection site redness and swelling were generally similar after each dose and for both age groups.
|
455 |
+
Among BNT16262 recipients 16 to 55 years of age, the mean duration (not shown in tables) of pain at the injection site after Dose 2 was 2.5 days (range 1 to 70 days), 2.2 days for redness (range 1 to 9 days), and 2.1 days for swelling (range 1 to 8 days).
|
456 |
+
Among BNT16262 recipients 56 years of age and older the mean duration of pain at the injection site after Dose 2 was 2.4 days (range 1 to 36 days), 3.0 days for redness (range 1 to 34 days), and 2.6 days for swelling (range 1 to 34 days).
|
457 |
+
The frequency and severity of systemic AEs were generally higher in the younger age group. Within each age group, the frequency and severity of systemic AEs were higher after Dose 2 than Dose 1, except for vomiting and diarrhea, which were generally similar regardless of dose. For both age groups, fatigue, headache and new/worsened muscle pain were the most common reactions after Dose 2.
|
458 |
+
Table 4. Frequency of Solicited Reactions Within Seven Days of each Dose (16 to 55 Years)
|
459 |
+
BNT162b2
|
460 |
+
Placebo
|
461 |
+
BNT162b2
|
462 |
+
Dose 1
|
463 |
+
Dose 1
|
464 |
+
Dose 2
|
465 |
+
N=2899
|
466 |
+
N=2908
|
467 |
+
N=2682
|
468 |
+
n (%)
|
469 |
+
n (%)
|
470 |
+
n (%)
|
471 |
+
Placebo
|
472 |
+
Dose 2
|
473 |
+
N=2684 n (%)
|
474 |
+
Redness
|
475 |
+
Any (>2.0 cm)
|
476 |
+
Mild
|
477 |
+
Moderate
|
478 |
+
Severe
|
479 |
+
Swelling
|
480 |
+
Anv (>2.0 cm)
|
481 |
+
Mild
|
482 |
+
Moderate
|
483 |
+
Severe
|
484 |
+
Pain at the iniection site
|
485 |
+
Anv
|
486 |
+
Mild
|
487 |
+
Moderate
|
488 |
+
Severe
|
489 |
+
156 (5.4)
|
490 |
+
113 (3.9)
|
491 |
+
36 (1.2)
|
492 |
+
7 (0.2)
|
493 |
+
-
|
494 |
+
184 (6.3)
|
495 |
+
124(4.3)
|
496 |
+
54(1.9)
|
497 |
+
6 (0.2)
|
498 |
+
28 (1.0)
|
499 |
+
19 (0.7)
|
500 |
+
6 (0.2)
|
501 |
+
3 (0.1)
|
502 |
+
-
|
503 |
+
16 (0.6)
|
504 |
+
6 (0.2)
|
505 |
+
8 (0.3)
|
506 |
+
2 (0.1)
|
507 |
+
Fever
|
508 |
+
>38.0°C
|
509 |
+
>38 0°C to 38 4°C
|
510 |
+
2426 (83.7)
|
511 |
+
1464 (50.5)
|
512 |
+
923 (31.8)
|
513 |
+
39 (1.3)
|
514 |
+
-
|
515 |
+
119 (4.1)
|
516 |
+
86 (3.0)
|
517 |
+
414(14.2)
|
518 |
+
391 (13.4)
|
519 |
+
20 (0.7)
|
520 |
+
3 (0.1)
|
521 |
+
-
|
522 |
+
25 (0.9)
|
523 |
+
16 (0.6)
|
524 |
+
151 (5.6)
|
525 |
+
90 (3.4)
|
526 |
+
50 (1.9)
|
527 |
+
11 (0 4)
|
528 |
+
-
|
529 |
+
183 (6.8)
|
530 |
+
110 (4.1)
|
531 |
+
66 (2.5)
|
532 |
+
7 (0.3)
|
533 |
+
-
|
534 |
+
2101 (78.3)
|
535 |
+
1274 (47.5)
|
536 |
+
788 (29.4)
|
537 |
+
39 (1.5)
|
538 |
+
-
|
539 |
+
440 (16.4)
|
540 |
+
254 (9.5)
|
541 |
+
18 (0.7)
|
542 |
+
12 (0.4)
|
543 |
+
6 (0.2)
|
544 |
+
0
|
545 |
+
5 (0.2)
|
546 |
+
3 (0.1)
|
547 |
+
2 (0.1)
|
548 |
+
312 (11.6)
|
549 |
+
284 (10.6)
|
550 |
+
28 (1.0)
|
551 |
+
0
|
552 |
+
11 (0.4)
|
553 |
+
5 (0.2)
|
554 |
+
Page 10
|
555 |
+
|
556 |
+
>38.4°C to 38.9°C
|
557 |
+
>38 9°C to 40 0°C
|
558 |
+
>40 0°C
|
559 |
+
BNT162b2
|
560 |
+
Dose 1
|
561 |
+
N=2899 n (%)
|
562 |
+
25 (0.9)
|
563 |
+
8 (0.3)
|
564 |
+
0
|
565 |
+
Placebo
|
566 |
+
Dose 1
|
567 |
+
N=2908 n (%)
|
568 |
+
5 (0.2)
|
569 |
+
4 (0.1)
|
570 |
+
Fatigue
|
571 |
+
Any
|
572 |
+
Mild
|
573 |
+
Moderate
|
574 |
+
Severe
|
575 |
+
BNT162b2
|
576 |
+
Dose 2
|
577 |
+
N=2682 n (%)
|
578 |
+
146 (5.4)
|
579 |
+
39 (1.5)
|
580 |
+
1 (0.0)
|
581 |
+
-
|
582 |
+
1649 (61.5)
|
583 |
+
558 (20.8)
|
584 |
+
949 (35.4)
|
585 |
+
142 (5.3)
|
586 |
+
Headache
|
587 |
+
Anv
|
588 |
+
Mild
|
589 |
+
Moderate
|
590 |
+
Severe
|
591 |
+
1431 (49.4)
|
592 |
+
760 (26.2)
|
593 |
+
630 (21.7)
|
594 |
+
41(1.4)
|
595 |
+
-
|
596 |
+
1262 (43.5)
|
597 |
+
785 (27.1)
|
598 |
+
444(15.3)
|
599 |
+
33(1.1)
|
600 |
+
960 (33.0)
|
601 |
+
570 (19.6)
|
602 |
+
372 (12.8)
|
603 |
+
18 (0.6)
|
604 |
+
-
|
605 |
+
975 (33.5)
|
606 |
+
633 (21.8)
|
607 |
+
318 (10.9)
|
608 |
+
24 (0.8)
|
609 |
+
1448 (54.0)
|
610 |
+
699 (26.1)
|
611 |
+
658 (24.5)
|
612 |
+
91 (3.4)
|
613 |
+
Chills
|
614 |
+
Any
|
615 |
+
Mild
|
616 |
+
Moderate
|
617 |
+
Severe
|
618 |
+
479 (16.5)
|
619 |
+
338 (11.7)
|
620 |
+
126 (4.3)
|
621 |
+
15 (0.5)
|
622 |
+
Vomiting
|
623 |
+
Any
|
624 |
+
Mild
|
625 |
+
Moderate
|
626 |
+
34 (1.2)
|
627 |
+
29 (1.0)
|
628 |
+
5 (0.2)
|
629 |
+
Severe
|
630 |
+
199 (6.8)
|
631 |
+
148 (5.1)
|
632 |
+
49 (1.7)
|
633 |
+
2 (0.1)
|
634 |
+
-
|
635 |
+
36 (1.2)
|
636 |
+
30 (1.0)
|
637 |
+
5 (0.2)
|
638 |
+
1 (0.0)
|
639 |
+
Placebo
|
640 |
+
Dose 2
|
641 |
+
N=2684 n (%)
|
642 |
+
4 (0.1)
|
643 |
+
2 (0.1)
|
644 |
+
0
|
645 |
+
-
|
646 |
+
614 (22.9)
|
647 |
+
317 (11.8)
|
648 |
+
283 (10.5)
|
649 |
+
14 (0.5)
|
650 |
+
-
|
651 |
+
652 (24.3)
|
652 |
+
404 (15.1)
|
653 |
+
230 (8.6)
|
654 |
+
18 (0.7)
|
655 |
+
-
|
656 |
+
114 (4.2)
|
657 |
+
89 (3 3)
|
658 |
+
23 (0.9)
|
659 |
+
2 (0.1)
|
660 |
+
-
|
661 |
+
30 (1.1)
|
662 |
+
20 (0.7)
|
663 |
+
10 (0.4)
|
664 |
+
0
|
665 |
+
Diarrhea
|
666 |
+
Any
|
667 |
+
Mild
|
668 |
+
Moderate
|
669 |
+
Severe
|
670 |
+
New or worsened muscle vain
|
671 |
+
Anv
|
672 |
+
Mild
|
673 |
+
Moderate
|
674 |
+
Severe
|
675 |
+
309 (10.7)
|
676 |
+
251 (8.7)
|
677 |
+
55 (1.9)
|
678 |
+
3 (0.1)
|
679 |
+
-
|
680 |
+
664 (22.9)
|
681 |
+
353 (12.2)
|
682 |
+
296 (10.2)
|
683 |
+
15 (0.5)
|
684 |
+
323 (11.1)
|
685 |
+
264 (9.1)
|
686 |
+
58 (2.0)
|
687 |
+
1 (0.0)
|
688 |
+
-
|
689 |
+
329 (11.3)
|
690 |
+
231 (7.9)
|
691 |
+
96 (3.3)
|
692 |
+
2 (0.1)
|
693 |
+
1015 (37.8)
|
694 |
+
477 (17 8)
|
695 |
+
469 (17.5)
|
696 |
+
69 (2.6)
|
697 |
+
-
|
698 |
+
58 (2.2)
|
699 |
+
42 (1 6)
|
700 |
+
12 (0.4)
|
701 |
+
4 (0.1)
|
702 |
+
-
|
703 |
+
269 (10.0)
|
704 |
+
219 (8.2)
|
705 |
+
44 (1.6)
|
706 |
+
6 (0.2)
|
707 |
+
-
|
708 |
+
1055 (39.3)
|
709 |
+
441 (16.4)
|
710 |
+
552 (20.6)
|
711 |
+
62 (2.3)
|
712 |
+
205 (7.6)
|
713 |
+
169 (6.3)
|
714 |
+
35 (1.3)
|
715 |
+
1 (0.0)
|
716 |
+
-
|
717 |
+
237 (8.8)
|
718 |
+
150 (5.6)
|
719 |
+
84 (3.1)
|
720 |
+
3 (0.1)
|
721 |
+
New or worsened joint pain
|
722 |
+
Anv
|
723 |
+
Mild
|
724 |
+
Moderate
|
725 |
+
Severe
|
726 |
+
342 (11.8)
|
727 |
+
200 (6.9)
|
728 |
+
137 (4.7)
|
729 |
+
5 (0.2)
|
730 |
+
168 (5.8)
|
731 |
+
112 (3.9)
|
732 |
+
55 (1.9)
|
733 |
+
1 (0.0)
|
734 |
+
638 (23.8)
|
735 |
+
291 (10 9)
|
736 |
+
320 (11.9)
|
737 |
+
27 (1.0)
|
738 |
+
147 (5.5)
|
739 |
+
82 (3.1)
|
740 |
+
61 (2.3)
|
741 |
+
4 (0.1)
|
742 |
+
Use of antipvretic or pain medication
|
743 |
+
805 (27.8)
|
744 |
+
398 (13.7)
|
745 |
+
1213 (45.2)
|
746 |
+
320 (11.9)
|
747 |
+
N=number of subjects responding yes or no for any reaction within seven days of dosing. n=number of subiects with the specified reaction.
|
748 |
+
Source: Adapted from Table 14.68 of C4591001 Interim Clinical Study Report.
|
749 |
+
Statistical Review
|
750 |
+
STN: 125742/0
|
751 |
+
Page 11
|
752 |
+
|
753 |
+
Statistical Review
|
754 |
+
STN: 125742/0
|
755 |
+
Table 5. Frequency of Solicited Reactions Within Seven Days of each Dose (>55 Years)
|
756 |
+
BNT162b2
|
757 |
+
Placebo
|
758 |
+
BNT162b2
|
759 |
+
Placebo
|
760 |
+
Dose 1
|
761 |
+
Dose 1
|
762 |
+
Dose 2
|
763 |
+
Dose 2
|
764 |
+
N=2008
|
765 |
+
N=1989
|
766 |
+
N=1860
|
767 |
+
N=1833
|
768 |
+
n (%)
|
769 |
+
n (%)
|
770 |
+
n (%)
|
771 |
+
n (%)
|
772 |
+
Redness
|
773 |
+
-
|
774 |
+
-
|
775 |
+
-
|
776 |
+
-
|
777 |
+
Any (>2.0 cm)
|
778 |
+
106 (5.3)
|
779 |
+
20 (1.0)
|
780 |
+
133 (7.2)
|
781 |
+
14 (0.8)
|
782 |
+
Mild
|
783 |
+
71 (3.5)
|
784 |
+
13 (0.7)
|
785 |
+
65 (3.5)
|
786 |
+
10 (0.5)
|
787 |
+
Moderate
|
788 |
+
30 (1.5)
|
789 |
+
5 (0.3)
|
790 |
+
58 (3.1)
|
791 |
+
3 (0.2)
|
792 |
+
Severe
|
793 |
+
5 (0.2)
|
794 |
+
2 (0.1)
|
795 |
+
10 (0.5)
|
796 |
+
1 (0.1)
|
797 |
+
Swelling
|
798 |
+
-
|
799 |
+
-
|
800 |
+
-
|
801 |
+
Any (>2.0 cm)
|
802 |
+
141 (7.0)
|
803 |
+
23 (1.2)
|
804 |
+
145 (7.8)
|
805 |
+
13 (0.7)
|
806 |
+
Mild
|
807 |
+
87 (4.3)
|
808 |
+
11 (0.6)
|
809 |
+
80 (4.3)
|
810 |
+
5 (0.3)
|
811 |
+
Moderate
|
812 |
+
52 (2.6)
|
813 |
+
12 (0.6)
|
814 |
+
61 (3.3)
|
815 |
+
7 (0.4)
|
816 |
+
Severe
|
817 |
+
2 (0.1)
|
818 |
+
0
|
819 |
+
4 (0.2)
|
820 |
+
1 (0.1)
|
821 |
+
Pain at the injection site
|
822 |
+
-
|
823 |
+
-
|
824 |
+
-
|
825 |
+
Any
|
826 |
+
1408 (70.1)
|
827 |
+
185 (9.3)
|
828 |
+
1230 (66.1)
|
829 |
+
143 (7.8)
|
830 |
+
Mild
|
831 |
+
1108 (55.2)
|
832 |
+
177 (8.9)
|
833 |
+
873 (46.9)
|
834 |
+
138 (7.5)
|
835 |
+
Moderate
|
836 |
+
296 (14.7)
|
837 |
+
8 (0.4)
|
838 |
+
347 (18.7)
|
839 |
+
5 (0.3)
|
840 |
+
Severe
|
841 |
+
4 (0.2)
|
842 |
+
10 (0.5)
|
843 |
+
O
|
844 |
+
Fever
|
845 |
+
>38.0°C
|
846 |
+
26 (1.3)
|
847 |
+
8 (0.4)
|
848 |
+
219 (11.8)
|
849 |
+
4 (0.2)
|
850 |
+
>38.0°C to 38.4°C
|
851 |
+
23 (1.1)
|
852 |
+
3 (0.2)
|
853 |
+
158 (8.5)
|
854 |
+
2 (0.1)
|
855 |
+
>38.4°C to 38.9°C
|
856 |
+
2 (0.1)
|
857 |
+
3 (0.2)
|
858 |
+
54 (2.9)
|
859 |
+
1 (0.1)
|
860 |
+
>38.9°C to 40.0°C
|
861 |
+
1 (0.0)
|
862 |
+
2 (0.1)
|
863 |
+
7 (0.4)
|
864 |
+
1 (0.1)
|
865 |
+
>40.0°C
|
866 |
+
0
|
867 |
+
0
|
868 |
+
Fatigue
|
869 |
+
Any
|
870 |
+
Mild
|
871 |
+
Moderate
|
872 |
+
Severe
|
873 |
+
677 (33.7)
|
874 |
+
415 (20.7)
|
875 |
+
259 (12.9)
|
876 |
+
3 (0.1)
|
877 |
+
Grade 4
|
878 |
+
Headache
|
879 |
+
Anv
|
880 |
+
Mild
|
881 |
+
Moderate
|
882 |
+
Severe
|
883 |
+
-
|
884 |
+
503 (25.0)
|
885 |
+
381 (19.0)
|
886 |
+
120 (6.0)
|
887 |
+
2 (0.1)
|
888 |
+
447 (22.5)
|
889 |
+
281 (14.1)
|
890 |
+
163 (8.2)
|
891 |
+
3 (0.2)
|
892 |
+
-
|
893 |
+
363 (18.3)
|
894 |
+
267 (13.4)
|
895 |
+
93 (4.7)
|
896 |
+
3 (0.2)
|
897 |
+
Chills
|
898 |
+
Anv
|
899 |
+
Mild
|
900 |
+
Moderate
|
901 |
+
Severe
|
902 |
+
Vomiting
|
903 |
+
Any
|
904 |
+
Mild
|
905 |
+
Moderate
|
906 |
+
130 (6.5)
|
907 |
+
102 (5.1)
|
908 |
+
28 (1.4)
|
909 |
+
0
|
910 |
+
-
|
911 |
+
10 (0.5)
|
912 |
+
9 (0.4)
|
913 |
+
1 (0.0)
|
914 |
+
69 (3.5)
|
915 |
+
49 (2.5)
|
916 |
+
19 (1.0)
|
917 |
+
1 (0.1)
|
918 |
+
9 (0.5)
|
919 |
+
9 (0.5)
|
920 |
+
0
|
921 |
+
Severe
|
922 |
+
-
|
923 |
+
949 (51.0)
|
924 |
+
391 (21.0)
|
925 |
+
497 (26.7)
|
926 |
+
60 (3.2)
|
927 |
+
1 (0.1)
|
928 |
+
-
|
929 |
+
733 (39.4)
|
930 |
+
464 (24.9)
|
931 |
+
256 (13.8)
|
932 |
+
13 (0 7\
|
933 |
+
-
|
934 |
+
435 (23 4)
|
935 |
+
229 (12.3)
|
936 |
+
185 (9.9)
|
937 |
+
21 (1.1)
|
938 |
+
-
|
939 |
+
13 (0.7)
|
940 |
+
10 (0.5)
|
941 |
+
1 (0.1)
|
942 |
+
2 (0.1)
|
943 |
+
306 (16.7)
|
944 |
+
183 (10.0)
|
945 |
+
121 (6.6)
|
946 |
+
2 (0.1)
|
947 |
+
259 (14.1)
|
948 |
+
189 (10.3)
|
949 |
+
65 (3.5)
|
950 |
+
5 (0.3)
|
951 |
+
57 (3.1)
|
952 |
+
45 (2.5)
|
953 |
+
12 (0.7)
|
954 |
+
0
|
955 |
+
5 (0.3)
|
956 |
+
5 (0.3)
|
957 |
+
0
|
958 |
+
Page 12
|
959 |
+
|
960 |
+
Statistical Review
|
961 |
+
STN: 125742/0
|
962 |
+
Diarrhea
|
963 |
+
Anv
|
964 |
+
Mild
|
965 |
+
Moderate
|
966 |
+
Severe
|
967 |
+
BNT162b2
|
968 |
+
Dose 1
|
969 |
+
N=2008 n (%)
|
970 |
+
-
|
971 |
+
168 (8.4)
|
972 |
+
137 (6.8)
|
973 |
+
27 (1.3)
|
974 |
+
4 (0.2)
|
975 |
+
Placebo
|
976 |
+
Dose 1
|
977 |
+
N=1989 n (%)
|
978 |
+
BNT162b2
|
979 |
+
Dose 2
|
980 |
+
N=1860 n (%)
|
981 |
+
Placebo
|
982 |
+
Dose 2
|
983 |
+
N=1833 n (%)
|
984 |
+
130 (6 5)
|
985 |
+
109 (5.5)
|
986 |
+
20 (1.0)
|
987 |
+
1 (0.1)
|
988 |
+
152 (8.2)
|
989 |
+
125 (6.7)
|
990 |
+
25 (1.3)
|
991 |
+
2 (0.1)
|
992 |
+
102 (5.6)
|
993 |
+
76 (4.1)
|
994 |
+
22 (1.2)
|
995 |
+
4 (0.2)
|
996 |
+
New or worsened muscle pain
|
997 |
+
Any
|
998 |
+
Mild
|
999 |
+
Moderate
|
1000 |
+
Severe
|
1001 |
+
New or worsened joint pain
|
1002 |
+
Anv
|
1003 |
+
Mild
|
1004 |
+
Moderate
|
1005 |
+
Severe
|
1006 |
+
274 (13.6)
|
1007 |
+
183 (9.1)
|
1008 |
+
90 (4.5)
|
1009 |
+
1 (0.0)
|
1010 |
+
-
|
1011 |
+
175 (8.7)
|
1012 |
+
119 (5.9)
|
1013 |
+
53 (2.6)
|
1014 |
+
3 (0.1)
|
1015 |
+
165 (8.3)
|
1016 |
+
111 (5.6)
|
1017 |
+
51 (2.6)
|
1018 |
+
3 (0.2)
|
1019 |
+
124 (6.2)
|
1020 |
+
78 (3.9)
|
1021 |
+
45 (2.3)
|
1022 |
+
1 (0.1)
|
1023 |
+
537 (28.9)
|
1024 |
+
229 (12.3)
|
1025 |
+
288 (15.5)
|
1026 |
+
20 (1.1)
|
1027 |
+
-
|
1028 |
+
353 (19.0)
|
1029 |
+
183 (9.8)
|
1030 |
+
161 (8.7)
|
1031 |
+
9 (0.5)
|
1032 |
+
99 (5.4)
|
1033 |
+
65 (3.5)
|
1034 |
+
33 (1.8)
|
1035 |
+
1 (0.1)
|
1036 |
+
-
|
1037 |
+
72 (3.9)
|
1038 |
+
44 (2.4)
|
1039 |
+
27 (1.5)
|
1040 |
+
1 (0.1)
|
1041 |
+
Use of antipyretic or pain medication
|
1042 |
+
382 (19.0)
|
1043 |
+
224 (11.3)
|
1044 |
+
688 (37.0)
|
1045 |
+
170 (9 3)
|
1046 |
+
N=number of subjects responding yes or no for any reaction within seven days of dosing. n=number of subjects with the specified reaction.
|
1047 |
+
Source: Adapted from Table 14.68 of C4591001 Interim Clinical Study Report.
|
1048 |
+
Reviewer Comment:
|
1049 |
+
• Three placebo recipients 16 to 55 years of age who reported fever of >42°C within seven days of the first or second dose were excluded from the analysis. As the subjects received placebo and these measurements were likely due to error, this is unlikely to affect safety conclusions.
|
1050 |
+
Unsolicited Safety
|
1051 |
+
Table 6 presents the numbers and percentages of subjects ≥16 years of age who reported any unsolicited AE, SAE, AE leading to withdrawal, or death after the first dose. These numbers are reported for three separate risk windows: a) Dose 1 to one month post Dose 2 or unblinding (whichever is first), b) Dose 1 to six months post Dose 2 or unblinding (whichever is first), and c (for placebo patients who received crossover vaccination) from crossover to March 13, 2021. The percentages of subjects reporting any SAE, AE leading to withdrawal, or death were generally similar between the vaccine and placebo groups from Dose 1 to one month after Dose 2 and from Dose 1 to six months after Dose 2 regardless of severity. A higher percentage of vaccine recipients reported any unsolicited AE after Dose 1 than placebo recipients. Four vaccine recipients reported SAEs up to six months post Dose 2 that were considered by the investigator to be related to the study intervention. In these analyses, 58.2% of study participants had at least four months of blinded follow-up after Dose 2.
|
1052 |
+
Page 13
|
1053 |
+
|
1054 |
+
Statistical Review
|
1055 |
+
STN: 125742/0
|
1056 |
+
A total of 19,525 subiects originally randomized to placebo received at least one dose of
|
1057 |
+
BNT1622 after unblinding (Dose 3 and Dose 4) and before the March 13, 2021 data cutoff. Among these subjects, one (<0.1%) subject reported an SAE of anaphylactoid reaction after Dose 3 that was considered by the investigator to be related to the study intervention. Two subjects (<0.1%) died after receiving Dose 3, but neither were considered by the investigator to be related to the intervention.
|
1058 |
+
Table 6. Number of Subjects ≥16 Years of Age Reporting at Least One AE by Time Period
|
1059 |
+
BNT162b2
|
1060 |
+
Placebo
|
1061 |
+
BNT16262
|
1062 |
+
1MPD2a
|
1063 |
+
1MPD2a
|
1064 |
+
6MPD2®
|
1065 |
+
N=21926
|
1066 |
+
N=21921
|
1067 |
+
N=21926
|
1068 |
+
n (%)
|
1069 |
+
n (%)
|
1070 |
+
n (%)
|
1071 |
+
Anv AE
|
1072 |
+
6617 (30.2)
|
1073 |
+
3048 (13.9)
|
1074 |
+
6947 (31.7)
|
1075 |
+
Related
|
1076 |
+
5241 (23.9)
|
1077 |
+
1311 (6.0)
|
1078 |
+
5246 (23.9)
|
1079 |
+
Severe
|
1080 |
+
262 (1.2)
|
1081 |
+
150 (0.7)
|
1082 |
+
356 (1.6)
|
1083 |
+
Life-Threatening
|
1084 |
+
21 (0.1)
|
1085 |
+
26 (0.1)
|
1086 |
+
48 (0.2)
|
1087 |
+
Any SAE
|
1088 |
+
127 (0.6)
|
1089 |
+
116 (0.5)
|
1090 |
+
268 (1.2)
|
1091 |
+
Related
|
1092 |
+
3 (<0.1)
|
1093 |
+
4 (<0 1)
|
1094 |
+
Severe
|
1095 |
+
71 (0.3)
|
1096 |
+
66 (0 3)
|
1097 |
+
148(0.7)
|
1098 |
+
Life-Threatening
|
1099 |
+
21 (0.1)
|
1100 |
+
26 (0.1)
|
1101 |
+
48 (0.2)
|
1102 |
+
Any AE leading to withdrawal
|
1103 |
+
32 (0.1)
|
1104 |
+
36 (0.2)
|
1105 |
+
45 (0.2)
|
1106 |
+
Related
|
1107 |
+
13 (0.1)
|
1108 |
+
11 (0.1)
|
1109 |
+
13 (0.1)
|
1110 |
+
Severe
|
1111 |
+
10 (<0.1)
|
1112 |
+
10 (<0.1)
|
1113 |
+
10 (<0.1)
|
1114 |
+
Life-Threatening
|
1115 |
+
3 (<0.1)
|
1116 |
+
7 (<0.1)
|
1117 |
+
15 (0.1)
|
1118 |
+
Death
|
1119 |
+
3 (<0 1)
|
1120 |
+
5 (<0.1)
|
1121 |
+
15 (0.1)
|
1122 |
+
N=number of subjects who received at least one dose of the study intervention. n=number of subjects reporting at least one event.
|
1123 |
+
"Includes all events from Dose I up to the earlier of one month post Dose 2 or unblinding.
|
1124 |
+
Includes all events from Dose I up to the earlier of six months post Dose 2 or unblinding.
|
1125 |
+
Includes all events from crossover vaccination (Dose 3) to March 13, 2021.
|
1126 |
+
Includes all subiects randomized to placebo who received BNT1622 after unblinding.
|
1127 |
+
Source: Adapted from Tables 5, 7, and 14 of Summary of Clinical Safety.
|
1128 |
+
Placebo
|
1129 |
+
BNT162b2
|
1130 |
+
6MPD2b
|
1131 |
+
PD3C
|
1132 |
+
N=21921
|
1133 |
+
N=19525d
|
1134 |
+
n (%)
|
1135 |
+
_n (%)
|
1136 |
+
3568 (16.3) 4885 (25.0)
|
1137 |
+
1313 (6.0)
|
1138 |
+
4508 (23.1)
|
1139 |
+
256 (1.2)
|
1140 |
+
142 (0.7)
|
1141 |
+
54 (0.2)
|
1142 |
+
11 (0.1)
|
1143 |
+
268 (1.2)
|
1144 |
+
65 (0.3)
|
1145 |
+
1 (<0 1)
|
1146 |
+
1 (<0.1)
|
1147 |
+
156 (0.7)
|
1148 |
+
37 (0.2)
|
1149 |
+
54 (0.2)
|
1150 |
+
11 (0.1)
|
1151 |
+
51 (0.2)
|
1152 |
+
19(0.1)
|
1153 |
+
12 (0.1)
|
1154 |
+
12 (0.1)
|
1155 |
+
12 (0.1)
|
1156 |
+
2 (<0.1)
|
1157 |
+
16 (0.1)
|
1158 |
+
4 (<0.1)
|
1159 |
+
14 (0.1)
|
1160 |
+
2 (<0.1)
|
1161 |
+
Reviewer Comments:
|
1162 |
+
• The solicited and unsolicited AEs reported in the clinical study report were consistent with the Study Data Tabulation Model (SDTM) data.
|
1163 |
+
• The solicited and unsolicited AE analyses presented do not include the 200
|
1164 |
+
Human Immunodeficiency Virus (HIV)-positive participants. Similar safety results were observed in HIV-positive subjects.
|
1165 |
+
• The imbalance in the frequencies of unsolicited AEs is driven largely by increased reactogenicity in the vaccine arm, in that many events associated with reactogenicity (e.g. injection site pain, fatigue, etc.) occurring within days of vaccination were reported as unsolicited AEs.
|
1166 |
+
• Two subjects who received BNT162b2 and experienced an AE or SAE were not reported in the blinded follow-up safety analysis:
|
1167 |
+
1. One subject (C4591001 (b) (6)
|
1168 |
+
) received two doses of BNTI62b2
|
1169 |
+
and reported an SAE of acute hepatic failure on Day 100 that was not considered by the investigator to be related to the study intervention. The
|
1170 |
+
Page 14
|
1171 |
+
|
1172 |
+
Statistical Review
|
1173 |
+
STN: 125742/0
|
1174 |
+
subject was unblinded and withdrew from the study on the same day that the SAE was reported. As the safety analyses included only events up to the day before unblinding (regardless of the reason for unblinding), this event was not considered to have occurred during blinded follow-up.
|
1175 |
+
2. One subject (C4591001 (b) (6)
|
1176 |
+
) received one dose of BNT162b2
|
1177 |
+
and reported a case of tinnitus with unknown start and end dates.
|
1178 |
+
I defer to the clinical reviewer regarding the interpretation of these events.
|
1179 |
+
• The applicant stated that 58.2% of subjects in the unsolicited safety analysis completed at least four months of follow-up post Dose 2. Of note, it appears that the applicant considered a month to be equivalent to 28 days. The median follow-up from Dose 2 to six months post Dose 2 or unblinding among ≥16-year-old participants in the Safety Population was approximately 120 days.
|
1180 |
+
Ten subjects (six vaccine and four placebo) who received at least one dose of the study intervention were excluded from the Safety Set due to "lack of PI [Principal Investigator] oversight," which was not documented in the Statistical Analvsis
|
1181 |
+
Plan. Among the six vaccine recipients, one non-serious AE of "excessive cerumen production" was reported that was not considered by the investigator to be related to the study intervention, and no SAEs were reported.
|
1182 |
+
Myocarditis and Pericarditis
|
1183 |
+
One report of pericarditis was identified in a 66-year-old male participant 28 days after receiving Dose 2 of BNT1622. One report of myocarditis was identified in a 25-year-old male participant in the placebo group five days after the second placebo dose.
|
1184 |
+
7. INTEGRATED OVERVIEW OF EFFICACY
|
1185 |
+
No integrated analysis of efficacy was performed.
|
1186 |
+
8. INTEGRATED OVERVIEW OF SAFETY
|
1187 |
+
No integrated analysis of safety was performed.
|
1188 |
+
9. ADDITIONAL STATISTICAL ISSUES
|
1189 |
+
There are no additional statistical issues.
|
1190 |
+
10. CONCLUSIONS
|
1191 |
+
10.1 Statistical Issues and Collective Evidence
|
1192 |
+
No major statistical issues were identified for the safety data during review. A higher percentage of subiects in the BNT16262 group reported solicited local and systemic reactions than placebo recipients in both the younger (16 to 55 years) and older (>55 years) adult age groups after each dose. There were no major imbalances in reported SAEs, AEs leading to withdrawal, or deaths between the treatment groups at one month and up to six months after the second dose or unblinding/data cut-off.
|
1193 |
+
Page 15
|
1194 |
+
|
1195 |
+
Statistical Review
|
1196 |
+
STN: 125742/0
|
1197 |
+
10.2 Conclusions and Recommendations
|
1198 |
+
There is evidence of reactogenicity associated with BNT162b2; the overwhelming majority of events were of mild or moderate severity and short duration. There was no evidence of increased risk of unsolicited SAE or death associated with BNT162b2 in Study C4591001. I defer to Drs. Susan Wollersheim and Ann Schwartz's clinical review memo on the overall safety conclusion for BNT16262.
|
1199 |
+
Page 16
|
1200 |
+
|
docs/Statistical-Review-COMIRNATY.txt
ADDED
@@ -0,0 +1,1111 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Statistical Review
|
2 |
+
STN: 125742/45
|
3 |
+
Application Type
|
4 |
+
BLA Supplement
|
5 |
+
STN
|
6 |
+
125742/45
|
7 |
+
CBER Received Date
|
8 |
+
December 16, 2021
|
9 |
+
PDUFA Goal Date
|
10 |
+
June 17, 2022
|
11 |
+
Division/ Office
|
12 |
+
DVRPA/OVRR
|
13 |
+
Committee Chair
|
14 |
+
Ramachandra Naik
|
15 |
+
Clinical Reviewers)
|
16 |
+
Susan Wollersheim
|
17 |
+
Project Manager
|
18 |
+
Michael Smith; Laura Gottschalk
|
19 |
+
Priority Review
|
20 |
+
Yes
|
21 |
+
Reviewer Name
|
22 |
+
Ye Yang, Mathematical Statistician, DB/VEB
|
23 |
+
Review Completion Date /
|
24 |
+
Stamped Date
|
25 |
+
Concurrence
|
26 |
+
Lei Huang, Concurring Reviewer, DB/VEB
|
27 |
+
Supervisory Concurrence
|
28 |
+
Tsai-Lien Lin, Branch Chief, DB/VEB
|
29 |
+
Applicant
|
30 |
+
Established Name
|
31 |
+
(Proposed) Trade Name
|
32 |
+
Dosage Form(s) and Route(s) of
|
33 |
+
Administration
|
34 |
+
Dosing Regimen
|
35 |
+
Indication(s) and Intended
|
36 |
+
Population(s)
|
37 |
+
BioNTech Manufacturing GmbH (in partnership with Pfizer, Inc.)
|
38 |
+
COVID-19 Vaccine, mRNA
|
39 |
+
COMIRNATY
|
40 |
+
Injectable Suspension, Intramuscular
|
41 |
+
Two 0.3 mL doses, three weeks apart
|
42 |
+
Active immunization to prevent coronavirus disease 2019 (COVID-19) caused by severe acute respiratory syndrome coronavirus 2
|
43 |
+
(SARS-CoV-2) in individuals 12 through 15 years of age
|
44 |
+
Page i
|
45 |
+
|
46 |
+
Statistical Review
|
47 |
+
STN: 125742/45
|
48 |
+
Table of Contents
|
49 |
+
Glossary....
|
50 |
+
3
|
51 |
+
1. Executive Summary..
|
52 |
+
2. Clinical and Regulatory Background
|
53 |
+
5
|
54 |
+
3. Submission Ouality and Good Clinical Practices ..............
|
55 |
+
5
|
56 |
+
3.1 Submission Quality and Completeness ....
|
57 |
+
3.2 Compliance With Good Clinical Practices And Data Integrity
|
58 |
+
4. Significant Efficacy/Safety Issues Related to Other Review Disciplines............
|
59 |
+
5
|
60 |
+
5. Sources of Clinical Data and Other Information Considered in the Review...........
|
61 |
+
5
|
62 |
+
5.1 Review Strategy .........
|
63 |
+
5.2 BLA/IND Documents That Serve as the Basis for the Statistical Review ......
|
64 |
+
5.3 Table of Studies/Clinical Trials...
|
65 |
+
6. Discussion of Individual Studies/Clinical Trials ..
|
66 |
+
6.1 Study C4591001......
|
67 |
+
6.1.1 Objectives.
|
68 |
+
6.1.2 Design Overview.
|
69 |
+
6.1.3 Population
|
70 |
+
6.1.4 Study Treatments or Agents Mandated by the Protocol
|
71 |
+
6.1.6 Sites and Centers
|
72 |
+
6.1.7 Surveillance/Monitoring.
|
73 |
+
6.1.8 Endpoints and Criteria for Study Success
|
74 |
+
6.1.9 Statistical Considerations & Statistical Analysis Plan
|
75 |
+
6.1.10 Study Population and Disposition
|
76 |
+
6.1.11 Efficacy Analyses.....
|
77 |
+
6.1.12 Safety Analyses.
|
78 |
+
7. Integrated Overview of Efficacy...........
|
79 |
+
10
|
80 |
+
17
|
81 |
+
8. Integrated Overview of Safety.......
|
82 |
+
17
|
83 |
+
9. Additional Statistical Issues...........
|
84 |
+
.............. 17
|
85 |
+
10. Conclusions..........
|
86 |
+
10.1 Statistical Issues and Collective Evidence..............
|
87 |
+
10.2 Conclusions and Recommendations..
|
88 |
+
17
|
89 |
+
17
|
90 |
+
........ Id
|
91 |
+
Page ii
|
92 |
+
|
93 |
+
Statistical Review
|
94 |
+
STN: 125742/45
|
95 |
+
GLOSSARY
|
96 |
+
ADaM
|
97 |
+
AE
|
98 |
+
BIMO
|
99 |
+
BLA
|
100 |
+
BNT16262
|
101 |
+
CI
|
102 |
+
COVID-19
|
103 |
+
EUA
|
104 |
+
GMT
|
105 |
+
GMR
|
106 |
+
NAAT
|
107 |
+
RT-PCR
|
108 |
+
SAE
|
109 |
+
SAP
|
110 |
+
SARS-CoV-2
|
111 |
+
SDTM
|
112 |
+
SRR
|
113 |
+
VE
|
114 |
+
Analysis Data Model
|
115 |
+
Adverse Event
|
116 |
+
Bioresearch Monitoring
|
117 |
+
Biologics License Application
|
118 |
+
Pfizer-BioNTech COVID-19 Vaccine
|
119 |
+
Confidence Interval
|
120 |
+
Coronavirus Disease 2019
|
121 |
+
Emergency Use Authorization
|
122 |
+
Geometric Mean Titer
|
123 |
+
Geometric Mean Titer Ratio
|
124 |
+
Nucleic Acid Amplification Test
|
125 |
+
Reverse Transcription-Polymerase Chain Reaction
|
126 |
+
Serious Adverse Event
|
127 |
+
Statistical Analysis Plan
|
128 |
+
Severe Acute Respiratory Syndrome Coronavirus 2
|
129 |
+
Study Data Tabulation model
|
130 |
+
Seroresponse Rate
|
131 |
+
Vaccine Efficacy
|
132 |
+
Page 3
|
133 |
+
|
134 |
+
Statistical Review
|
135 |
+
STN: 125742/45
|
136 |
+
1. Executive Summary
|
137 |
+
The Pfizer-BioNTech COVID-19 Vaccine (BNT162b2, COMIRNATY) was licensed on August 23, 2021 for active immunization to prevent Coronavirus Disease 2019 (COVID-
|
138 |
+
19) caused by Severe Acute Respiratory Syndrome Coronavirus 2 (SARS-CoV-2) in individuals ≥16 years of age. Pfizer submitted a Biologics License Application Supplement (BLA; STN 125742/45) on December 16, 2021 to seek licensure of COMIRNATY for use in individuals 12 through 15 years of age. The BLA is supported by data from Study C4591001. This statistical review focuses on the efficacy, immunogenicity, and safety data from adolescents 12 through 15 years of age in the Phase 3 part of Study C4591001 collected up to the September 2, 2021 data cutoff.
|
139 |
+
Study C4591001 is an ongoing, randomized, placebo-controlled, observer-blinded Phase 1/2/3 study being conducted in the United States, Argentina, Brazil, Germany, South Africa, and Turkey among participants ≥12 years of age. Adolescents 12 through 15 years of age, included in the Phase 3 portion of the study under a protocol amendment, were enrolled at selected sites in the United States, where 2,264 participants were randomized 1:1 to receive two doses of BNT16262 or placebo 21 days apart.
|
140 |
+
Immunogenicity was assessed at 1 month after Dose 2. A random sample of 280 adolescents was selected to support immunobridging to a random sample of 280 young adults 16 to 25 years of age from the same study. Supplementary to immunobridging, adolescents were surveilled for potential cases of COVID-19.
|
141 |
+
The prespecified immunobridging success criterion comparing 12 to 15 year-old geometric mean neutralizing titers (GMTs) to 16 to 25 year-old GMTs from Study
|
142 |
+
C4591001 was met (GMT ratio [GMR]=1.77; 95% Confidence Interval [CI]: 1.50 to
|
143 |
+
2.09). High efficacy against protocol-defined COVID-19 was observed among participants in the Evaluable Efficacy Population without evidence of prior SARS-CoV-2 infection starting at 7 days post Dose 2 (Vaccine Efficacy [VE]=100%; 95% CI: 86.8% to 100%) and among participants in the Dose 1 All-Available Efficacy Population starting after Dose 1 (VE=94.0%; 95% CI: 81.3% to 98.8%). The lack of severe COVID-19 cases observed precludes assessment of efficacy against severe disease in this population.
|
144 |
+
The frequency and severity of local and systemic reactions were generally higher among
|
145 |
+
BNT162b2 recipients than among placebo recipients after either dose. The most commonly reported adverse reactions were injection site pain, fatigue, and headache.
|
146 |
+
There was no notable difference in the frequency of any unsolicited adverse event (AE)
|
147 |
+
between arms during blinded follow-up, while a higher percentage of BNT162b2 recipients reported any serious AE (SAE; 0.9%) compared to placebo recipients (0.2%).
|
148 |
+
Of note, no SAE reported during blinded follow-up was considered by the investigator to be related to the study intervention. No participants died as of the September 2, 2021 cutoff. One SAE of myocarditis was reported in a 15-year-old male participant 2 days after receiving the second crossover dose of BNT162b2. One SAE of appendicitis in a
|
149 |
+
12-year-old female participant was reported 3 days after the second crossover dose and was considered by the investigator to be related to the study vaccination.
|
150 |
+
Page 4
|
151 |
+
|
152 |
+
Statistical Review
|
153 |
+
STN: 125742/45
|
154 |
+
Overall, the clinical data support the effectiveness of BNT1622. While there is some reactogenicity associated with BNT162b2, the majority of solicited adverse reactions were mild or moderate in severity and of short duration. I defer to the clinical reviewer, Dr. Susan Wollersheim, on the overall safety conclusion for BNT162b2.
|
155 |
+
2. Clinical and Regulatory Background
|
156 |
+
The Pfizer-BioNTech COVID-19 Vaccine (BNT16262, COMIRNATY) was authorized under an Emergency Use Authorization (EUA) on December 11, 2020 for active immunization to prevent COVID-19 caused by SARS-CoV-2 in individuals ≥16 years of age, which was amended to include individuals 12 through 15 years of age on May 10,
|
157 |
+
2021. COMIRNATY was licensed for use in individuals ≥16 years of age on August 23,
|
158 |
+
2021. Pfizer submitted an BLA (STN 125742/45) on December 16, 2021 to seek licensure of COMIRNATY for use in individuals 12 through 15 years of age.
|
159 |
+
3. SUBMISSION QUALITY AND GOOD CLINICAL PRACTICES
|
160 |
+
3.1 Submission Quality and Completeness
|
161 |
+
The submission was adequately organized for conducting a complete statistical review without unreasonable difficulty.
|
162 |
+
3.2 Compliance With Good Clinical Practices And Data Integrity
|
163 |
+
Please refer to Kanaeko Ravenell's Bioresearch Monitoring inspections review memo.
|
164 |
+
4. SIGNIFICANT EFFICACY/SAFETY ISSUES RELATED TO OTHER REVIEW
|
165 |
+
DISCIPLINES
|
166 |
+
Please refer to reviews of other review disciplines.
|
167 |
+
5. SOURCES OF CLINICAL DATA AND OTHER INFORMATION CONSIDERED IN THE REVIEW
|
168 |
+
5.1 Review Strategy
|
169 |
+
This statistical review focuses on the efficacy, immunogenicity, and safety data from adolescents 12 to 15 years of age in the Phase 3 part of Study C4591001 collected up to the September 2, 2021 data cutoff.
|
170 |
+
5.2 BLA/IND Documents That Serve as the Basis for the Statistical Review
|
171 |
+
The following documents submitted to the BLA are reviewed:
|
172 |
+
STN 125742/45:
|
173 |
+
1. Amendment 0 (submitted on 12/16/2021)
|
174 |
+
• Module 2. Common Technical Document Summaries
|
175 |
+
• Module 5. Clinical Study Reports
|
176 |
+
2. Amendment 2 (submitted on 2/2/2022)
|
177 |
+
Page 5
|
178 |
+
|
179 |
+
Statistical Review
|
180 |
+
STN: 125742/45
|
181 |
+
• Module 1. Administrative Information and Prescribing Information
|
182 |
+
3. Amendment 4 (submitted on 3/11/2021)
|
183 |
+
• Module 1. Administrative Information and Prescribing Information
|
184 |
+
4. Amendment 7 (submitted on 3/18/2021)
|
185 |
+
• Module 1. Administrative Information and Prescribing Information
|
186 |
+
5.3 Table of Studies/Clinical Trials
|
187 |
+
Data from one ongoing clinical study were submitted to support licensure in adolescents (Table 1). Study C4591001 is a multi-center, Phase 1/2/3, randomized, double-blinded, placebo-controlled study to evaluate safety, immunogenicity, and efficacy of BNT16262.
|
188 |
+
Table 1. Clinical Study Supporting Licensure in Adolescents 12 Through 15 Years of Age
|
189 |
+
Study
|
190 |
+
Description
|
191 |
+
BNT162b2 (N)
|
192 |
+
Placebo (N)
|
193 |
+
C4591001 Phase 1/2/3, randomized, 1134 (Phase 3
|
194 |
+
1130 (Phase 3
|
195 |
+
Status
|
196 |
+
Ongoing
|
197 |
+
placebo-controlled, observer- adolescents
|
198 |
+
adolescents
|
199 |
+
blind study to evaluate the only)
|
200 |
+
only)
|
201 |
+
safety, immunogenicity, and efficacy of BNT16262
|
202 |
+
N=number of randomized participants.
|
203 |
+
Source: Summarized by the reviewer based on information provided in Clinical Overview.
|
204 |
+
6. DISCUSSION OF INDIVIDUAL STUDIES/CLINICAL TRIALS
|
205 |
+
6.1 Study C4591001 (Phase 3)
|
206 |
+
6.1.1 Obiectives
|
207 |
+
Primary Safety Objective:
|
208 |
+
• To define the safety profile of BNT16262 in participants 12 to 15 years of age.
|
209 |
+
Secondary Immunogenicity Objective:
|
210 |
+
• To demonstrate the noninferiority of the immune response to BNT1622 in participants 12 to 15 years of age compared to participants 16 to 25 years of age.
|
211 |
+
Exploratory Efficacy Obiective:
|
212 |
+
• To describe the efficacy of prophylactic BNT16262 against confirmed COVID-19 occurring from 7 days after the second dose through the blinded follow-up period in participants without, and with and without, evidence of infection before vaccination.
|
213 |
+
Reviewer comment:
|
214 |
+
• Demonstration of efficacy was listed as an exploratory objective as immunobridging was the basis for inferring effectiveness of BNT162b2 among adolescents.
|
215 |
+
Page 6
|
216 |
+
|
217 |
+
Statistical Review
|
218 |
+
STN: 125742/45
|
219 |
+
6.1.2 Design Overview
|
220 |
+
Study C4591001 is an ongoing, randomized, placebo-controlled, observer-blinded Phase 1/2/3 study being conducted in the United States, Argentina, Brazil, Germany, South Africa, and Turkey among participants ≥12 years of age. Adolescents 12 through 15 years of age, included in the Phase 3 portion of the study under a protocol amendment, were enrolled at selected sites in the United States, where 2,264 participants were randomized 1:1 to receive two doses of BNT16262 or placebo 21 days apart.
|
221 |
+
Immunogenicity was assessed at 1 month after Dose 2. A sample of 280 participants was randomly selected from each age group (12 to 15 years and 16 to 25 years) to support immunobridging. Supplementary to immunobridging analyses, adolescents were surveilled for potential cases of COVID-19. Those who developed acute respiratory illness were tested for SARS-CoV-2 infection using reverse transcription-polymerase chain reaction (RT-PCR) in an illness visit. Participants originally randomized to placebo who became eligible to receive BNT1622 were offered the opportunity to receive
|
222 |
+
BNT16262 no later than 6 months post Dose 2.
|
223 |
+
All adolescents were to record local reactions, systemic events, and antipyretic/pain medication usage from Day 1 through Day 7 after each dose. Unsolicited As and SAEs were collected starting from Dose 1.
|
224 |
+
6.1.3 Population
|
225 |
+
The study enrolled participants >12 years of age who, in the judgement of the investigator, were at higher risk for acquiring COVID-19, including but not limited to use of mass transportation, relevant demographics, and frontline essential workers. The age groups considered in this review are adolescents 12 to 15 years of age and young adults 16 to 25 years of age randomly sampled to support immunobridging.
|
226 |
+
6.1.4 Study Treatments or Agents Mandated by the Protocol
|
227 |
+
The study interventions were 30ug of BNT16262 and saline placebo.
|
228 |
+
6.1.6 Sites and Centers
|
229 |
+
A total of 29 sites in the United States enrolled adolescents in the study.
|
230 |
+
6.1.7 Surveillance/Monitoring
|
231 |
+
Please refer to Dr. Susan Wollersheim's clinical review memo.
|
232 |
+
6.1.8 Endpoints and Criteria for Study Success
|
233 |
+
The immunobridging endpoint was the neutralizing antibody titer at 28 days after Dose 2.
|
234 |
+
Effectiveness of BNT1622 among adolescents was inferred by bridging their GMT of neutralizing antibodies to the GMT from a random subset of young adults 16 to 25 years of age from the same study. Success would be declared if the lower bound of the two-sided 95% CI for the GMR, where GMR is defined as GMT of adolescents divided by GMT of young adults, was >0.67. Difference in seroresponse rates (SRRs) was evaluated
|
235 |
+
Page 7
|
236 |
+
|
237 |
+
Statistical Review
|
238 |
+
STN: 125742/45
|
239 |
+
descriptively. Seroresponse was defined as a change from a baseline (pre-Dose 1) titer below the LLOQ to ≥4*LLOQ 28 days after Dose 2, or a ≥4-fold rise in titer from baseline when the baseline titer is ›LLOQ.
|
240 |
+
Efficacy was assessed descriptively based on cases of confirmed COVID-19, defined as having a positive nuclei acid amplification test (NAAT) plus at least one of the following symptoms: fever, cough, shortness of breath, chills, muscle pain, new loss of taste or smell, sore throat, diarrhea, or vomiting. Severe COVID-19 was defined as a confirmed COVID-19 plus at least one of the following:
|
241 |
+
• Clinical signs at rest indicative of severe systemic illness (respiratory rate >30 breaths per minute, heart rate ≥125 beats per minute, SpOz <93% on room air at sea level, or Pa02/FiO2 <300 mm Hg);
|
242 |
+
• Respiratory failure (defined as needing high-flow oxygen, noninvasive ventilation, mechanical ventilation, or CMO);
|
243 |
+
• Evidence of shock (systolic blood pressure <90 mm Hg, diastolic blood pressure <60 mm Hg, or requiring vasopressors);
|
244 |
+
• Significant acute renal, hepatic, or neurologic dysfunction;
|
245 |
+
Admission to an ICU;
|
246 |
+
• Death.
|
247 |
+
Solicited safety endpoints included the occurrence of local (redness, swelling, injection site pain) and systemic (fever, fatigue, headache, chills, vomiting, diarrhea, muscle pain, joint pain) reactions within 7 days of each dose. Unsolicited safety endpoints included the occurrence of AEs and SAEs within three different risk windows: 1) Dose 1 to 1 month post Dose 2, 2) Dose 1 to 6 months post Dose 2, unblinding, or the September 2, 2021 data cutoff, whichever was earlier, and 3) unblinding to the cutoff.
|
248 |
+
6.1.9 Statistical Considerations & Statistical Analysis Plan
|
249 |
+
GMR and 95% CIs were obtained by exponentiating the difference and associated 95% CIs of the mean log-titers based on the t-distribution. The confidence interval for the SRR difference was estimated via the Miettinen-Nurminen method. The primary immunobridging analysis was based on the Evaluable Immunogenicity Population, defined as participants who: 1) received both doses of the randomized vaccine, with Dose 2 within 19 to 42 days after Dose 1, 2) had at least 1 valid and determinate immunogenicity result collected within 28 to 42 days after Dose 2, and 3) had no other important protocol deviations. In addition, for the primary analysis, participants must not have any evidence of SARS-CoV-2 infection up to 1 month after Dose 2.
|
250 |
+
VE was estimated as 1 minus the incidence rate ratio of COVID-19 relative to placebo, with associated 95% CI calculated by the Clopper-Pearson method adiusted for surveillance time. Analysis was based on the Evaluable Efficacy Population, defined as participants who received the randomized intervention within the predefined window and had no major protocol deviations up to 7 days post Dose 2, and the Dose 1 All-Available Efficacy Population, defined as all randomized participants who received at least 1 dose of the intervention. Participants were analyzed according to the intervention randomized.
|
251 |
+
Page 8
|
252 |
+
|
253 |
+
Statistical Review
|
254 |
+
STN: 125742/45
|
255 |
+
VE in the Evaluable Efficacy Population was descriptively presented among participants:
|
256 |
+
1) without evidence of SARS-CoV-2 infection up to 7 days post Dose 2, and 2) with or without evidence of prior infection.
|
257 |
+
Solicited safety analyses were based on participants who received at least one dose of the study intervention and responded yes or no to any reaction within 7 days of each dose.
|
258 |
+
Unsolicited safety analyses were based the Safety Population, defined as all participants who received at least 1 dose of study intervention, analyzed according to the intervention received. Safety endpoints were summarized descriptively.
|
259 |
+
6.1.10 Study Population and Disposition
|
260 |
+
6.1.10.1 Populations Enrolled/Analyzed
|
261 |
+
Table 2 shows the disposition of randomized adolescents 12 to 15 years of age. A total of 2,264 adolescents were randomized. The percentages of participants who received each dose were similar between the vaccine and placebo groups. In addition, 280 participants 12 to 15 years old and 280 participants 16 to 25 years old were selected for immunobridging, of which 208 (74%) and 190 (68%), respectively, had a determinate immunogenicity result available after Dose 2. The lower number of participants with an available immunogenicity result, noted by the Applicant on March 15, 2021, was due to an insufficient supply of a critical assay reagent leading to a halt to laboratory testing. A total of 190 (68%) and 170 (61%) participants, respectively, were included in the Evaluable Immunogenicity Population without evidence of infection.
|
262 |
+
Table 2. Subject Disposition
|
263 |
+
BNT162b2 n (%)
|
264 |
+
Randomized
|
265 |
+
1134 (100)
|
266 |
+
Not vaccinated
|
267 |
+
3 (0.3)
|
268 |
+
Vaccinated
|
269 |
+
1131 (99.7)
|
270 |
+
Dose 1
|
271 |
+
1131 (99.7)
|
272 |
+
Dose 2
|
273 |
+
1124 (99.1)
|
274 |
+
Withdrawn from the stud
|
275 |
+
5 (0.4)
|
276 |
+
Lost to follow-up
|
277 |
+
3 (0.3)
|
278 |
+
Withdrawal by subject
|
279 |
+
1 (0.1)
|
280 |
+
Withdrawal by parent/guardian
|
281 |
+
1 (0.1)
|
282 |
+
Dose 1 All-Available Efficacy Population
|
283 |
+
1131 (99.7)
|
284 |
+
Evaluable Efficacy Population
|
285 |
+
1119 (98.7)
|
286 |
+
Without evidence of infection
|
287 |
+
1057 (93.2)
|
288 |
+
Source: Adapted from Tables 4 and 10 of Interim Clinical Study Report.
|
289 |
+
Placebo
|
290 |
+
Total
|
291 |
+
n (%)
|
292 |
+
n (%)
|
293 |
+
1130 (100)
|
294 |
+
2264 (100)
|
295 |
+
1 (0.1)
|
296 |
+
4 (0.2)
|
297 |
+
1129 (99 9)
|
298 |
+
2260 (99.8)
|
299 |
+
1129 (99 9)
|
300 |
+
2260 (99 8)
|
301 |
+
1117 (98.8)
|
302 |
+
2241 (99.0)
|
303 |
+
14 (1.2)
|
304 |
+
19 (0.8)
|
305 |
+
2 (0.2)
|
306 |
+
5 (0.2)
|
307 |
+
7 (0.6)
|
308 |
+
8 (0.4)
|
309 |
+
5 (0.4)
|
310 |
+
6 (0.3)
|
311 |
+
1129 (99 9)
|
312 |
+
2260 (99.8)
|
313 |
+
1109 (98.1)
|
314 |
+
2228 (98 4)
|
315 |
+
1030 (91.2)
|
316 |
+
2087 (92.2)
|
317 |
+
6.1.10.1.1 Demographics
|
318 |
+
Table 3 presents the demographic characteristics of the adolescent Safety Population.
|
319 |
+
Demographic characteristics were generally similar with regard to age, sex, race, ethnicity, and baseline SARS-CoV-2 serostatus between participants who received BNT16262 and those who received placebo. Among all participants who received either
|
320 |
+
Page 9
|
321 |
+
|
322 |
+
Statistical Review
|
323 |
+
STN: 125742/45
|
324 |
+
intervention, 51.0% were male, 85.5% were White, 4.8% were Black or African American, 6.3% were Asian, and 0.3% were American Indian or Alaska Native.
|
325 |
+
Demographic characteristics in the Evaluable Efficacy Population were generally similar to those in the Safety Population.
|
326 |
+
Table 3. Demographics Characteristics of the Safety Population
|
327 |
+
BNT162b2
|
328 |
+
N=1131 n (%)
|
329 |
+
Sex
|
330 |
+
-
|
331 |
+
Male
|
332 |
+
567 (50.1)
|
333 |
+
Female
|
334 |
+
564 (49.9)
|
335 |
+
Race
|
336 |
+
-
|
337 |
+
White
|
338 |
+
970 (85.8)
|
339 |
+
Black/African-American
|
340 |
+
52 (4.6)
|
341 |
+
American Indian/Alaskan Native
|
342 |
+
4 (0.4)
|
343 |
+
Asian
|
344 |
+
72 (6.4)
|
345 |
+
Native Hawaiian/Other Pacific Islander
|
346 |
+
3 (0.3)
|
347 |
+
Multiracial
|
348 |
+
24 (2.1)
|
349 |
+
Not Reported
|
350 |
+
6 (0.5)
|
351 |
+
Ethnicity
|
352 |
+
Hispanic/Latino
|
353 |
+
132 (11.7)
|
354 |
+
Non-Hispanic/Non-Latino
|
355 |
+
997 (88.2)
|
356 |
+
Not Reported
|
357 |
+
2 (0.2)
|
358 |
+
Age (years)
|
359 |
+
Mean (Standard Deviation)
|
360 |
+
13.6 (1.1)
|
361 |
+
Median (Minimum, Maximum)
|
362 |
+
14.0 (12. 15)
|
363 |
+
Baseline SARS-CoV-2 status
|
364 |
+
Positive
|
365 |
+
46 (4 1)
|
366 |
+
Negative
|
367 |
+
1083 (95.8)
|
368 |
+
Missing
|
369 |
+
2 (0.2)
|
370 |
+
Source: Table 11 of Interim Clinical Stud Report.
|
371 |
+
Placebo
|
372 |
+
N=1129 n (%)
|
373 |
+
-
|
374 |
+
585 (51.8)
|
375 |
+
544 (48.2)
|
376 |
+
-
|
377 |
+
962 (85.2)
|
378 |
+
57 (5.0)
|
379 |
+
3 (0.3)
|
380 |
+
71 (6.3)
|
381 |
+
0
|
382 |
+
29 (2.6)
|
383 |
+
7 (0.6)
|
384 |
+
-
|
385 |
+
130 (11.5)
|
386 |
+
996 (88.2)
|
387 |
+
3 (0.3)
|
388 |
+
Total
|
389 |
+
N=2260 n (%)
|
390 |
+
-
|
391 |
+
1152 (51.0)
|
392 |
+
1108 (49.0)
|
393 |
+
-
|
394 |
+
1932 (85.5)
|
395 |
+
109 (4.8)
|
396 |
+
7 (0.3)
|
397 |
+
143 (6.3)
|
398 |
+
3 (0.1)
|
399 |
+
53 (2.3)
|
400 |
+
13 (0.6)
|
401 |
+
13.6 (1.1)
|
402 |
+
14.0 (12, 15)
|
403 |
+
262 (11.6)
|
404 |
+
1993 (88.2)
|
405 |
+
5 (0.2)
|
406 |
+
-
|
407 |
+
13.6 (1.1)
|
408 |
+
14.0 (12, 15)
|
409 |
+
50 (4.4)
|
410 |
+
1078 (95.5)
|
411 |
+
1 (0.1)
|
412 |
+
96 (4.2)
|
413 |
+
2161 (95.6)
|
414 |
+
3 (0.1)
|
415 |
+
6.1.11 Efficacy Analyses
|
416 |
+
6.1.11.1 Analyses of Immunogenicity Endpoints
|
417 |
+
Table 4 presents the immunobridging analysis of GMR at 28 days after Dose 2 in the Evaluable Immunogenicity Population without evidence of SARS-CoV-2 infection up to 1 month post Dose 2. The GMR comparing 12 to 15 year-old GMTs to 16 to 25 year-old
|
418 |
+
GMTs was 1.77 (95% CI: 1.50 to 2.09), meeting the prespecified success criterion.
|
419 |
+
Table 4. Geometric Mean Titer Ratio - Evaluable Immunogenicity Population
|
420 |
+
Group
|
421 |
+
GMT (95% CI)
|
422 |
+
GMT (95% CI)
|
423 |
+
12-15 Years of Age
|
424 |
+
16-25 Years of Age
|
425 |
+
N=190
|
426 |
+
N=170
|
427 |
+
BNT16262
|
428 |
+
1253.6 (1117.7, 1406.1)
|
429 |
+
708.1 (625.9, 801.1)
|
430 |
+
GMR (95% CI)
|
431 |
+
12-15 Years/16-
|
432 |
+
25 Years
|
433 |
+
1.77 (1.50, 2.09)
|
434 |
+
N=number of participants with available titer at I month after Dose 2.
|
435 |
+
Source: Summarized by the reviewer based on response to March 7, 2022 information request.
|
436 |
+
Page 10
|
437 |
+
|
438 |
+
Statistical Review
|
439 |
+
STN: 125742/45
|
440 |
+
Table 5 presents descriptive analysis results for the SR difference. Overall, 97.2% and 96.8% of adolescents and young adults, respectively, in the Evaluable Immunogenicity Population without evidence of SARS-CoV-2 infection achieved seroresponse, resulting in an SRR difference of 0.4% (95% CI: -4.2% to 5.5%).
|
441 |
+
Table 5. Seroresponse Rate Difference - Evaluable Immunogenicity Population
|
442 |
+
Group
|
443 |
+
Seroresponse
|
444 |
+
Seroresponse
|
445 |
+
n (%, 95% CI)
|
446 |
+
n (%,95% CI)
|
447 |
+
12-15 Years of Age
|
448 |
+
16-25 Years of Age
|
449 |
+
N=143
|
450 |
+
N=124
|
451 |
+
BNT16262
|
452 |
+
139 (97.2)
|
453 |
+
120 (96.8)
|
454 |
+
Seroresponse %
|
455 |
+
Difference (95% CI)
|
456 |
+
12-15 Years Minus 16-25
|
457 |
+
Years
|
458 |
+
0.4(-4.2,5.5)
|
459 |
+
(93.0, 99.2)
|
460 |
+
(91.9, 99.1)
|
461 |
+
N=number of participants with available titer before vaccination and at I month after Dose 2. n=number of participants achieving seroresponse at I month after Dose 2.
|
462 |
+
Source: Summarized by the reviewer based on response to March 7, 2022 information request.
|
463 |
+
Reviewer comment:
|
464 |
+
Analyses of GMR and SRR difference based on the same population were used to support the May 10, 2021 EUA. Of note, the applicant discovered that the assay LLO9 should have been 41 instead of in the submitted datasets. The results presented in Tables 4 and 5 reflect the updated LLOQ.
|
465 |
+
6.1.11.2 Analyses of Efficacy Endpoints
|
466 |
+
In the Evaluable Efficacy Population without evidence of SARS-CoV-2 infection, 28
|
467 |
+
COVID-19 cases among placebo recipients and none among BNT16262 recipients were observed during blinded follow-up from 7 days post Dose 2 to the September 2, 2021
|
468 |
+
cutoff (Table 6), resulting in a VE point estimate of 100% (95% CI: 86.8% to 100%). A similar VE was observed among participants with or without evidence of infection (VE=100%; 95% CI: 87.5% to 100%). These analyses were based on a median follow-up of 4.4 months post Dose 2.
|
469 |
+
Figure 1 shows the cumulative incidence of COVID-19 in the Dose 1 All-Available
|
470 |
+
Efficacy Population, where 48 cases in the placebo group and 3 cases in the BNT162b2 group were observed during blinded follow-up starting after Dose 1 (VE=94.0%; 95% CI: 81.3% to 98.8%). All 3 cases from BNT16262 recipients occurred prior to Dose 2.
|
471 |
+
No protocol-defined severe COVID-19 was observed in either group as of the cutoff.
|
472 |
+
Page 11
|
473 |
+
|
474 |
+
Statistical Review
|
475 |
+
STN: 125742/45
|
476 |
+
Table 6. Efficacy by Population and Time Period
|
477 |
+
Population/Surveillance Period
|
478 |
+
BNT162b2 n (1000-py)
|
479 |
+
N=1057
|
480 |
+
Placebo n (1000-py)
|
481 |
+
N=1030
|
482 |
+
VE (95% CI)
|
483 |
+
Evaluable Efficacy Population without evidence of infection
|
484 |
+
>7 davs after Dose 2
|
485 |
+
>7 davs to <2 months after Dose 2
|
486 |
+
>2 months to <4 months after Dose 2
|
487 |
+
>4 months after Dose 2
|
488 |
+
Evaluable Efficacy Population with or
|
489 |
+
0 (0 343)
|
490 |
+
0 (0.138)
|
491 |
+
0 (0.148)
|
492 |
+
0 (0.057)
|
493 |
+
N=1119
|
494 |
+
28 (0.322)
|
495 |
+
15 (0.133)
|
496 |
+
10 (0.139)
|
497 |
+
3 (0.050)
|
498 |
+
N=1109
|
499 |
+
100.0 (86.8, 100.0)
|
500 |
+
100.0 (73.2, 100.0)
|
501 |
+
100.0 (58.0, 100.0)
|
502 |
+
100.0 (-112.1, 100.0)
|
503 |
+
-
|
504 |
+
without evidence of infection
|
505 |
+
>7 davs after Dose 2
|
506 |
+
>7 days to <2 months after Dose 2
|
507 |
+
>2 months to <4 months after Dose 2
|
508 |
+
>4 months after Dose 2
|
509 |
+
Dose 1 All-Available Efficacy
|
510 |
+
0 (0.362)
|
511 |
+
0 (0.146)
|
512 |
+
0 (0.155)
|
513 |
+
0 (0.061)
|
514 |
+
N=1131
|
515 |
+
30 (0.345)
|
516 |
+
17 (0.142)
|
517 |
+
10 (0.148)
|
518 |
+
3 (0.055)
|
519 |
+
N=1129
|
520 |
+
100.0 (87.5, 100.0)
|
521 |
+
100.0 (76.4, 100.0)
|
522 |
+
100.0 (57.4, 100.0)
|
523 |
+
100.0 (-117.8, 100.0)
|
524 |
+
Population
|
525 |
+
After Dose 1
|
526 |
+
3 (0.450)
|
527 |
+
48 (0.434)
|
528 |
+
Dose 1 to before Dose 2
|
529 |
+
3 (0.065)
|
530 |
+
12 (0.065)
|
531 |
+
Dose 2 to <7 davs after Dose 2
|
532 |
+
0 (0.021)
|
533 |
+
5 (0.021)
|
534 |
+
≥7 days after Dose 2
|
535 |
+
0 (0.364)
|
536 |
+
31 (0.348)
|
537 |
+
94.0 (81.3, 98.8)
|
538 |
+
75.1 (7.6, 95.5)
|
539 |
+
100.0 (-8.7, 100.0)
|
540 |
+
100.0 (87.9, 100.0)
|
541 |
+
N=number of participants in the population; n=number of participants meeting the primary endpoint definition: py=person-vears of surveillance.
|
542 |
+
Source: Tables 12, 13, and 15 of Interim Clinical Study Report.
|
543 |
+
Fioure 1 Cumulative Incidence of COVTD-19 - Dose 1 All-Availahle Efficacy Penulation
|
544 |
+
060
|
545 |
+
0.055
|
546 |
+
0.050
|
547 |
+
0.045
|
548 |
+
Cumulative Incidence of COVID-19 Occ
|
549 |
+
0.030
|
550 |
+
0.020
|
551 |
+
0.010
|
552 |
+
0.005
|
553 |
+
0.000
|
554 |
+
thieere at rick
|
555 |
+
Dave After Dose 1
|
556 |
+
Cumulative Number of Events
|
557 |
+
A: BNT16262 (30 mg)
|
558 |
+
R. Parenc
|
559 |
+
Source: Figure I of Interim Clinical Study Report.
|
560 |
+
Page 12
|
561 |
+
|
562 |
+
Statistical Review
|
563 |
+
STN: 125742/45
|
564 |
+
6.1.11.3 Subpopulation Analyses
|
565 |
+
Table 7 presents the subgroup efficacy analysis results for the Dose 1 All-Available Efficacy Population. Overall, high efficacy was observed regardless of sex or ethnicity and among White participants. The limited number of cases observed among non- White participants precludes meaningful interpretation of efficacy within this subgroup.
|
566 |
+
Table 7. Efficacy Starting at Dose 1 by Subgroup - Dose 1 All-Available Efficacy Population
|
567 |
+
Population/Surveillance Period
|
568 |
+
BNT162b2
|
569 |
+
-
|
570 |
+
Male
|
571 |
+
3 (0.227)
|
572 |
+
Female
|
573 |
+
0 (0.223)
|
574 |
+
Race
|
575 |
+
-
|
576 |
+
White
|
577 |
+
2 (0.384)
|
578 |
+
Black or African American
|
579 |
+
0 (0.024)
|
580 |
+
Other
|
581 |
+
1 (0.042)
|
582 |
+
Ethnicity
|
583 |
+
-
|
584 |
+
Hispanic/Latino
|
585 |
+
1 (0.055)
|
586 |
+
Non-Hispanic/Non-Latino
|
587 |
+
2 (0 394)
|
588 |
+
Placebo
|
589 |
+
I (1000-py)
|
590 |
+
48 (0.434)
|
591 |
+
-
|
592 |
+
26 (0.223)
|
593 |
+
22 (0.211)
|
594 |
+
-
|
595 |
+
45 (0.367)
|
596 |
+
2 (0.026)
|
597 |
+
1 (0.042)
|
598 |
+
-
|
599 |
+
11 (0.051)
|
600 |
+
37 (0.382)
|
601 |
+
VE (95% CI)
|
602 |
+
n (1000-py)
|
603 |
+
Overall
|
604 |
+
3 (0.450)
|
605 |
+
Sex
|
606 |
+
94.0 (81.3, 98.8)
|
607 |
+
-
|
608 |
+
88.7 (63.0, 97.8)
|
609 |
+
100.0 (82.7. 100.0'
|
610 |
+
-
|
611 |
+
95.8 (83.8, 99.5)
|
612 |
+
100.0 (-479.7, 100.0)
|
613 |
+
1.4 (-7638.0, 98.7)
|
614 |
+
-
|
615 |
+
91.6 (42.3, 99.8)
|
616 |
+
94.8 (79.7, 99.4)
|
617 |
+
n=number of participants meeting the primary endpoint definition. py=person-vears of surveillance.
|
618 |
+
Source: Table 14.13 of Interim Clinical Study Report.
|
619 |
+
Reviewer Comment:
|
620 |
+
• The immunogenicity and efficacy data reported by the applicant were consistent with the Study Data Tabulation Model (SDTM) data.
|
621 |
+
6.1.12 Safety Analyses
|
622 |
+
Solicited Local and Systemic Reactions
|
623 |
+
Table 8 shows the frequency by severity of each solicited local and systemic reaction within 7 days of each dose among adolescents. In general, incidence of any redness, swelling, injection site pain, fever, fatigue, headache, chills, vomiting, new or worsened muscle pain, and new or worsened joint pain was higher among BNT1622 recipients than among placebo recipients after either dose.
|
624 |
+
Injection site pain, fatigue, and headache were the most frequently reported solicited adverse reactions. The incidences of solicited local reactions were slightly higher after Dose 1 than after Dose 2, while the incidences of solicited systemic reactions were generally higher after Dose 2 with the exception of vomiting and diarrhea.
|
625 |
+
Among BNT162b2 recipients, the median onset day of solicited local reactions was Day 1 (i.e. day of vaccination) to Day 2 after either dose, with a median duration of 2 days.
|
626 |
+
The median onset day of solicited systemic reactions was Day 2 to Day 3 after either dose, with a median duration of 1 to 2 days.
|
627 |
+
Page 13
|
628 |
+
|
629 |
+
Table 8. Frequency of Solicited Reactions Within 7 Days of each Dose
|
630 |
+
BNT162b2
|
631 |
+
Placebo
|
632 |
+
Dose 1
|
633 |
+
Dose 1
|
634 |
+
N=1127
|
635 |
+
N=1127
|
636 |
+
n (%)
|
637 |
+
n (%)
|
638 |
+
Redness
|
639 |
+
-
|
640 |
+
-
|
641 |
+
Any (>2.0 cm)
|
642 |
+
65 (5.8)
|
643 |
+
12 (1.1)
|
644 |
+
Mild
|
645 |
+
44 (3.9)
|
646 |
+
11 (1.0)
|
647 |
+
Moderate
|
648 |
+
20 (1.8)
|
649 |
+
1 (0.1)
|
650 |
+
Severe
|
651 |
+
1 (0.1)
|
652 |
+
0 (0.0)
|
653 |
+
Swelling
|
654 |
+
Any (>2.0 cm)
|
655 |
+
78 (6.9)
|
656 |
+
11 (1.0)
|
657 |
+
Mild
|
658 |
+
55 (4.9)
|
659 |
+
9 (0.8)
|
660 |
+
Moderate
|
661 |
+
23 (2.0)
|
662 |
+
2 (0.2)
|
663 |
+
Severe
|
664 |
+
0 (0.0)
|
665 |
+
0 (0.0)
|
666 |
+
Pain at the injection site
|
667 |
+
-
|
668 |
+
-
|
669 |
+
Any
|
670 |
+
971 (86.2)
|
671 |
+
263 (23.3)
|
672 |
+
Mild
|
673 |
+
467 (41.4)
|
674 |
+
227 (20.1)
|
675 |
+
Moderate
|
676 |
+
493 (43.7)
|
677 |
+
36 (3.2)
|
678 |
+
Severe
|
679 |
+
11 (1.0)
|
680 |
+
0 (0.0)
|
681 |
+
Fever
|
682 |
+
-
|
683 |
+
>38.0°C
|
684 |
+
114 (10.1)
|
685 |
+
12 (1.1)
|
686 |
+
>38.0°C to 38.4°C
|
687 |
+
74 (6.6)
|
688 |
+
8 (0.7)
|
689 |
+
>38 4°C to 38 9°C
|
690 |
+
29 (2.6)
|
691 |
+
2 (0.2)
|
692 |
+
>38.9°C to 40.0°C
|
693 |
+
10 (0.9)
|
694 |
+
2 (0.2)
|
695 |
+
>40.0°C
|
696 |
+
1 (0.1)
|
697 |
+
0 (0.0)
|
698 |
+
Fatigue
|
699 |
+
Any
|
700 |
+
Mild
|
701 |
+
Moderate
|
702 |
+
Severe
|
703 |
+
Headache
|
704 |
+
Anv
|
705 |
+
Mild
|
706 |
+
Moderate
|
707 |
+
Severe
|
708 |
+
677(60.1)
|
709 |
+
278 (24.7)
|
710 |
+
384 (34.1)
|
711 |
+
15 (1.3)
|
712 |
+
-
|
713 |
+
623 (55.3)
|
714 |
+
361 (32.0)
|
715 |
+
251 (22.3)
|
716 |
+
11 (1.0)
|
717 |
+
457 (40.6)
|
718 |
+
250 (22.2)
|
719 |
+
199 (17.7)
|
720 |
+
8 (0.7)
|
721 |
+
396 (35.1)
|
722 |
+
256 (22.7)
|
723 |
+
131 (11.6)
|
724 |
+
9 (0.8)
|
725 |
+
Chills
|
726 |
+
Any
|
727 |
+
Mild
|
728 |
+
Moderate
|
729 |
+
Severe
|
730 |
+
Vomiting
|
731 |
+
Any
|
732 |
+
Mild
|
733 |
+
Moderate
|
734 |
+
Severe
|
735 |
+
Diarrhea
|
736 |
+
Anv
|
737 |
+
Mild
|
738 |
+
311 (27.6)
|
739 |
+
195 (17.3)
|
740 |
+
111 (9.8)
|
741 |
+
5 (0.4)
|
742 |
+
-
|
743 |
+
31 (2.8)
|
744 |
+
30 (2.7)
|
745 |
+
0 (0.0)
|
746 |
+
1 (0.1)
|
747 |
+
-
|
748 |
+
90 (8.0)
|
749 |
+
77 (6.8)
|
750 |
+
109 (9.7)
|
751 |
+
82 (7.3)
|
752 |
+
25 (2.2)
|
753 |
+
2 (0.2)
|
754 |
+
-
|
755 |
+
10 (0.9)
|
756 |
+
8 (0.7)
|
757 |
+
2 (0.2)
|
758 |
+
0 (0.0)
|
759 |
+
-
|
760 |
+
82 (7.3)
|
761 |
+
72 (6.4)
|
762 |
+
BNT162b2
|
763 |
+
Dose 2
|
764 |
+
N=1097 n (%)
|
765 |
+
-
|
766 |
+
55 (5.0)
|
767 |
+
29 (2.6)
|
768 |
+
26 (2.4)
|
769 |
+
0 (0.0)
|
770 |
+
54 (4.9)
|
771 |
+
36 (3.3)
|
772 |
+
18 (1.6)
|
773 |
+
0 (0.0)
|
774 |
+
-
|
775 |
+
866 (78.9)
|
776 |
+
466 (42.5)
|
777 |
+
393 (35.8)
|
778 |
+
7 (0.6)
|
779 |
+
-
|
780 |
+
215 (19.6)
|
781 |
+
107 (9 8)
|
782 |
+
83 (7.6)
|
783 |
+
25 (2.3)
|
784 |
+
0 (0.0)
|
785 |
+
-
|
786 |
+
726 (66.2)
|
787 |
+
232 (21.1)
|
788 |
+
468 (42.7)
|
789 |
+
26 (2.4)
|
790 |
+
-
|
791 |
+
708 (64.5)
|
792 |
+
302 (27.5)
|
793 |
+
384 (35.0)
|
794 |
+
22 (2.0)
|
795 |
+
455 (41.5)
|
796 |
+
221 (20 1)
|
797 |
+
214 (19.5)
|
798 |
+
20 (1.8)
|
799 |
+
-
|
800 |
+
29 (2.6)
|
801 |
+
25 (2.3)
|
802 |
+
4 (0.4)
|
803 |
+
0 (0 0)
|
804 |
+
-
|
805 |
+
65 (5.9)
|
806 |
+
59 (5.4)
|
807 |
+
Statistical Review
|
808 |
+
STN: 125742/45
|
809 |
+
Placebo
|
810 |
+
Dose 2
|
811 |
+
N=1078 n (%)
|
812 |
+
-
|
813 |
+
10 (0.9)
|
814 |
+
8 (0.7)
|
815 |
+
2 (0.2)
|
816 |
+
0 (0.0)
|
817 |
+
-
|
818 |
+
6 (0.6)
|
819 |
+
4 (0.4)
|
820 |
+
2 (0.2)
|
821 |
+
0 (0.0)
|
822 |
+
-
|
823 |
+
193 (17.9)
|
824 |
+
164 (15.2)
|
825 |
+
29 (2.7)
|
826 |
+
0 (0.0)
|
827 |
+
7 (0.6)
|
828 |
+
5 (0.5)
|
829 |
+
1 (0.1)
|
830 |
+
1 (0.1)
|
831 |
+
0 (0.0)
|
832 |
+
-
|
833 |
+
264 (24.5)
|
834 |
+
133 (12.3)
|
835 |
+
127 (11.8)
|
836 |
+
4 (0.4)
|
837 |
+
-
|
838 |
+
264 (24.5)
|
839 |
+
170 (15.8)
|
840 |
+
93 (8.6)
|
841 |
+
1 (0.1)
|
842 |
+
74 (6.9)
|
843 |
+
53 (4.9)
|
844 |
+
21 (1.9)
|
845 |
+
0 (0.0)
|
846 |
+
-
|
847 |
+
12 (1.1)
|
848 |
+
11 (1.0)
|
849 |
+
1 (0.1)
|
850 |
+
0 (0.0)
|
851 |
+
44(4.1)
|
852 |
+
39 (3.6)
|
853 |
+
Page 14
|
854 |
+
|
855 |
+
Statistical Review
|
856 |
+
STN: 125742/45
|
857 |
+
BNT162b2
|
858 |
+
Dose 1
|
859 |
+
N=1127 n (%)
|
860 |
+
Moderate
|
861 |
+
13 (1.2)
|
862 |
+
Severe
|
863 |
+
0 (0.0)
|
864 |
+
Placebo
|
865 |
+
Dose 1
|
866 |
+
N=1127 n (%)
|
867 |
+
10 (0.9)
|
868 |
+
0 (0.0)
|
869 |
+
BNT162b2
|
870 |
+
Dose 2
|
871 |
+
N=1097 n (%)
|
872 |
+
6 (0.5)
|
873 |
+
0 (0 0)
|
874 |
+
New or worsened muscle pain
|
875 |
+
-
|
876 |
+
-
|
877 |
+
Any
|
878 |
+
272 (24.1)
|
879 |
+
148 (13.1)
|
880 |
+
355 (32.4)
|
881 |
+
Mild
|
882 |
+
125 (11.1)
|
883 |
+
88 (7.8)
|
884 |
+
152 (13.9)
|
885 |
+
Moderate
|
886 |
+
145 (12.9)
|
887 |
+
60 (5.3)
|
888 |
+
197 (18.0)
|
889 |
+
Severe
|
890 |
+
2 (0.2)
|
891 |
+
0 (0.0)
|
892 |
+
6 (0.5)
|
893 |
+
New or worsened joint pain
|
894 |
+
-
|
895 |
+
-
|
896 |
+
-
|
897 |
+
Any
|
898 |
+
109 (9.7)
|
899 |
+
77 (6.8)
|
900 |
+
173 (15.8)
|
901 |
+
Mild
|
902 |
+
66 (5.9)
|
903 |
+
50 (4.4)
|
904 |
+
91 (8.3)
|
905 |
+
Moderate
|
906 |
+
42 (3.7)
|
907 |
+
27 (2.4)
|
908 |
+
78 (7.1)
|
909 |
+
Severe
|
910 |
+
1 (0.1)
|
911 |
+
0 (0.0)
|
912 |
+
4 (0.4)
|
913 |
+
Antipyretic use
|
914 |
+
413 (36.6)
|
915 |
+
111 (9.8)
|
916 |
+
557 (50 .8)
|
917 |
+
Placebo
|
918 |
+
Dose 2
|
919 |
+
N=1078 n (%)
|
920 |
+
5 (0.5)
|
921 |
+
0 (0.0)
|
922 |
+
-
|
923 |
+
90 (8.3)
|
924 |
+
51 (4.7)
|
925 |
+
37 (3.4)
|
926 |
+
2 (0.2)
|
927 |
+
-
|
928 |
+
51(4.7)
|
929 |
+
30 (2.8)
|
930 |
+
21 (1.9)
|
931 |
+
0 (0.0)
|
932 |
+
95 (8.8)
|
933 |
+
N=number of subjects responding yes or no for any reaction within 7 days of dosing. n=number of subiects with the specified reaction.
|
934 |
+
Source: Summarized by the reviewer based on response to March 14, 2022 information request.
|
935 |
+
Unsolicited Adverse Events
|
936 |
+
Tables 9 and 10 present the numbers and percentages of adolescent participants who reported any unsolicited AE, SAE, nonserious AE, or AE leading to withdrawal after Dose 1. These numbers are reported for three separate risk windows: 1) Dose 1 to 1 month post Dose 2, 2) Dose 1 to 6 months post Dose 2, unblinding, or the September 2, 2021 data cutoff, whichever was earlier, and 3) unblinding to the cutoff.
|
937 |
+
The percentages of subjects who reported any AE were similar between BNT1622 and placebo recipients from Dose 1 to 1 month after Dose 2, while a slightly higher percentage of placebo recipients reported any AE from Dose 1 to 6 months after Dose 2.
|
938 |
+
A higher percentage of BNT162b2 recipients reported any A considered by the investigator to be related to the study intervention in both risk windows. A total of 10
|
939 |
+
(0.9%) BNT16262 recipients and 2 (0.2%) placebo recipients reported any SAE up to 6 months post Dose 2, none of which was considered by the investigator to be related to the study intervention. No participants died as of the cutoff. The median duration of blinded follow-up after Dose 2 was approximately 4.4 months among all participants.
|
940 |
+
A total of 1,010 subjects who originally received placebo received at least 1 dose of BNT162b2 after unblinding prior to the September 2, 2021 cutoff. Among these subjects, 6 (0.6%) reported any SAE, of whom a 12 year-old female participant reported an SAE of appendicitis 3 days after the second crossover dose that was considered by the investigator to be related to vaccination. The median duration of follow-up after unblinding was approximately 4 months among all unblinded participants.
|
941 |
+
Page 15
|
942 |
+
|
943 |
+
Statistical Review
|
944 |
+
STN: 125742/45
|
945 |
+
Table 9. Number of Subjects Reporting at Least 1 A by Time Period - Safety Population
|
946 |
+
BNT162b2
|
947 |
+
Placebo
|
948 |
+
BNT162b2
|
949 |
+
1 Month Post
|
950 |
+
1 Month Post
|
951 |
+
6 Months Post
|
952 |
+
Dose 2 or
|
953 |
+
Dose 2 or
|
954 |
+
Dose 2 or
|
955 |
+
Unblinding
|
956 |
+
Unblinding
|
957 |
+
Unblinding
|
958 |
+
N=1131
|
959 |
+
N=1129
|
960 |
+
N=1131
|
961 |
+
n (%)
|
962 |
+
n (%)
|
963 |
+
n (%)
|
964 |
+
Any AE
|
965 |
+
74 (6.5)
|
966 |
+
77 (6.8)
|
967 |
+
95 (8.4)
|
968 |
+
Related
|
969 |
+
36 (3.2)
|
970 |
+
24 (2.1)
|
971 |
+
36 (3.2)
|
972 |
+
Severe
|
973 |
+
7 (0.6)
|
974 |
+
2 (0.2)
|
975 |
+
13 (1.1)
|
976 |
+
Life-Threatening
|
977 |
+
1 (0.1)
|
978 |
+
1 (0.1)
|
979 |
+
2 (0.2)
|
980 |
+
Anv SAE
|
981 |
+
4 (0.4)
|
982 |
+
1 (0.1)
|
983 |
+
10 (0.9)
|
984 |
+
Related
|
985 |
+
O
|
986 |
+
O
|
987 |
+
0
|
988 |
+
Severe
|
989 |
+
2 (0.2)
|
990 |
+
O
|
991 |
+
7 (0.6)
|
992 |
+
Life-Threatening
|
993 |
+
0
|
994 |
+
1 (0.1)
|
995 |
+
1 (0.1)
|
996 |
+
Any nonserious AE
|
997 |
+
72 (6.4)
|
998 |
+
76 (6.7)
|
999 |
+
89 (7.9)
|
1000 |
+
Related
|
1001 |
+
36 (3.2)
|
1002 |
+
24 (2.1)
|
1003 |
+
36 (3.2)
|
1004 |
+
Severe
|
1005 |
+
5 (0.4)
|
1006 |
+
2 (0.2)
|
1007 |
+
6 (0.5)
|
1008 |
+
Life-Threatening
|
1009 |
+
1 (0.1)
|
1010 |
+
O
|
1011 |
+
1 (0.1)
|
1012 |
+
Any AE leading to withdrawal
|
1013 |
+
1 (0.1)
|
1014 |
+
0
|
1015 |
+
1 (0.1)
|
1016 |
+
N=number of subjects who received at least I dose of the study intervention. n=number of subjects reporting at least I event.
|
1017 |
+
Source: Adapted from Table P of 508 Tables and Table 18 of Interim Clinical Study Report.
|
1018 |
+
Placebo
|
1019 |
+
6 Months Post
|
1020 |
+
Dose 2 or
|
1021 |
+
Unblinding
|
1022 |
+
N=1129 n (%)
|
1023 |
+
113 (10.0)
|
1024 |
+
24 (2.1)
|
1025 |
+
5 (0.4)
|
1026 |
+
1 (0.1)
|
1027 |
+
2 (0.2)
|
1028 |
+
O
|
1029 |
+
1 (0.1)
|
1030 |
+
1 (0.1)
|
1031 |
+
111 (9.8)
|
1032 |
+
24 (2.1)
|
1033 |
+
4 (0.4)
|
1034 |
+
0
|
1035 |
+
O
|
1036 |
+
Table 10. Number of Subjects Reporting at Least 1 A After Unblinding - Safety Population
|
1037 |
+
BNT16262
|
1038 |
+
Placebo - BNT162b2
|
1039 |
+
Unblinding to Cutoff
|
1040 |
+
Crossover to Cutoff
|
1041 |
+
N=1107
|
1042 |
+
N=1010
|
1043 |
+
n (%)
|
1044 |
+
n (%)
|
1045 |
+
Any AE
|
1046 |
+
18 (1.6)
|
1047 |
+
265 (26.2)
|
1048 |
+
Related
|
1049 |
+
4 (0.4)
|
1050 |
+
242 (24.0)
|
1051 |
+
Severe
|
1052 |
+
3 (0.3)
|
1053 |
+
12 (1.2)
|
1054 |
+
Life-Threatening
|
1055 |
+
0
|
1056 |
+
Any SAE
|
1057 |
+
4 (0.4)
|
1058 |
+
Related
|
1059 |
+
O
|
1060 |
+
Severe
|
1061 |
+
1 (0.1)
|
1062 |
+
6 (0.6)
|
1063 |
+
1 (0.1)
|
1064 |
+
3 (0.3)
|
1065 |
+
Life-Threatening
|
1066 |
+
0
|
1067 |
+
An nonserious AE
|
1068 |
+
14 (1.3)
|
1069 |
+
Related
|
1070 |
+
4 (0.4)
|
1071 |
+
Severe
|
1072 |
+
2 (0.2)
|
1073 |
+
Life-Threatening
|
1074 |
+
0
|
1075 |
+
Any AE leading to withdrawal
|
1076 |
+
0
|
1077 |
+
262 (25 9)
|
1078 |
+
241 (23.9)
|
1079 |
+
9 (0.9)
|
1080 |
+
0
|
1081 |
+
0
|
1082 |
+
N=number of subjects who received at least I dose of the study intervention. n=number of subjects reporting at least I event.
|
1083 |
+
Source: Tables 25 and 35 of Interim Clinical Study Report.
|
1084 |
+
Reviewer Comments:
|
1085 |
+
• The solicited and unsolicited AEs reported in the interim clinical study report were consistent with the SDTM data.
|
1086 |
+
Page 16
|
1087 |
+
|
1088 |
+
Statistical Review
|
1089 |
+
STN: 125742/45
|
1090 |
+
Myocarditis and Pericarditis
|
1091 |
+
No myocarditis or pericarditis was reported during blinded follow-up. One SAE of myocarditis was identified in a 15-year-old male participant 2 days after receiving the second crossover vaccination dose of BNT16262.
|
1092 |
+
7. INTEGRATED OVERVIEW OF EFFICACY
|
1093 |
+
No integrated analysis of efficacy was performed.
|
1094 |
+
8. INTEGRATED OVERVIEW OF SAFETY
|
1095 |
+
No integrated analysis of safety was performed.
|
1096 |
+
9. ADDITIONAL STATISTICAL ISSUEs
|
1097 |
+
There are no additional statistical issues.
|
1098 |
+
10. CONCLUSIONS
|
1099 |
+
10.1 Statistical Issues and Collective Evidence
|
1100 |
+
No major statistical issues affecting study conclusions were identified for the immunogenicity, efficacy and safety data. The prespecified immunobridging success criterion comparing 12 to 15 year-old neutralizing GMTs to 16 to 25 year-old GMTs from Study C4591001 was met (GMR=1.77; 95% CI: 1.50 to 2.09). High efficacy against protocol-defined COVID-19 was observed among participants in the Evaluable Efficacy Population without evidence of prior SARS-CoV-2 infection starting at 7 days post Dose 2 (VE=100%; 95% CI: 86.8% to 100%) and among participants in the Dose 1 All-Available Efficacy Population starting after Dose 1 (VE=94.0%; 95% CI: 81.3% to 98.8%). The lack of observed severe COVID-19 precludes assessment of efficacy against severe disease in this population.
|
1101 |
+
The frequency and severity of local and systemic reactions were generally higher among
|
1102 |
+
BNT16262 recipients than among placebo recipients after either dose. The most commonly reported adverse reactions were injection site pain, fatigue, and headache.
|
1103 |
+
There was no notable difference in the frequencies of any unsolicited A between arms during blinded follow-up, while a higher percentage of BNT162b2 recipients reported any SAE (0.9%) compared to placebo recipients (0.2%). Of note, no SAE reported during blinded follow-up was considered by the investigator to be related to the study intervention. No participants died as of the cutoff. One SAE of myocarditis was reported in a 15-year-old male participant 2 days after receiving the second crossover vaccination dose of BNT16262. One SAE of appendicitis in a 12-year-old female participant was reported 3 days after the second crossover dose and was considered by the investigator to be related to the study vaccination.
|
1104 |
+
Page 17
|
1105 |
+
|
1106 |
+
Statistical Review
|
1107 |
+
STN: 125742/45
|
1108 |
+
10.2 Conclusions and Recommendations
|
1109 |
+
Overall, the clinical data support the effectiveness of BNT162b2. While there is some reactogenicity associated with BNT16262, the majority of solicited adverse reactions were mild or moderate in severity and of short duration. I defer to the clinical reviewer, Dr. Susan Wollersheim, on the overall safety conclusion for BNT162b2.
|
1110 |
+
Page 18
|
1111 |
+
|
docs/Toxicology Review - COMIRNATY.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
requirements.txt
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
openai
|
2 |
+
gradio
|
3 |
+
langchain
|
4 |
+
chromadb
|
5 |
+
tiktoken
|