From 4c12aef7172fdf8670b135f07c1b2435dcc61430 Mon Sep 17 00:00:00 2001 From: Gianfranco Rossi Date: Fri, 25 Oct 2024 08:14:35 -0500 Subject: [PATCH] fix(uscfc, uscfc_vaccine): improve parsing - parse full judge names - implement extract_from_text for uscfc_vaccine - improve docket number for uscfc_vaccine --- .../united_states/federal_special/uscfc.py | 54 +- .../federal_special/uscfc_vaccine.py | 14 + .../united_states/uscfc_example.compare.json | 1788 +- .../uscfc_vaccine_example.compare.json | 16698 ++++++++-------- .../local/test_ScraperExtractFromTextTest.py | 16 + 5 files changed, 9308 insertions(+), 9262 deletions(-) diff --git a/juriscraper/opinions/united_states/federal_special/uscfc.py b/juriscraper/opinions/united_states/federal_special/uscfc.py index 9c690b26e..4b0154e40 100644 --- a/juriscraper/opinions/united_states/federal_special/uscfc.py +++ b/juriscraper/opinions/united_states/federal_special/uscfc.py @@ -8,12 +8,15 @@ """ import json +import re from juriscraper.lib.string_utils import titlecase from juriscraper.OpinionSiteLinear import OpinionSiteLinear class Site(OpinionSiteLinear): + judge_regex = re.compile(r"Signed by[\w\s]+(Master|Judge)(?P.+?)\(") + def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.url = "https://ecf.cofc.uscourts.gov/cgi-bin/CFC_RecentOpinionsOfTheCourt.pl" @@ -43,25 +46,38 @@ def _process_html(self): for opinion in json.loads(raw_data): docket, name = opinion["title"].split(" • ", 1) + summary = opinion["text"] + if judge_match := self.judge_regex.search(summary): + judge = judge_match.group("judge").strip(" .()") + # Remove: "Signed by ... . Service on parties made" + summary = summary[: judge_match.start()].strip(", .()") + else: + judge = judges_mapper.get(opinion["judge"], "") + + match opinion["criteria"]: + case "unreported": + status = "Unpublished" + case "reported": + status = "Published" + case _: + status = "Unknown" + + parsed_case = { + "url": opinion["link"], + "date": opinion["date"], + "status": status, + "summary": summary, + "judge": judge, + "name": titlecase(name), + "docket": docket, + } + # Append a "V" as seen in the opinions PDF for the vaccine # claims. This will help disambiguation, in case docket - # number collide - if self.is_vaccine and not docket.lower().endswith("v"): - docket += "V" + # numbers collide + if self.is_vaccine: + if not docket.lower().endswith("v"): + yy, number = docket.split("-") + parsed_case["docket"] = f"{yy}-{number.zfill(4)}V" - judge = judges_mapper.get(opinion["judge"], "") - self.cases.append( - { - "url": opinion["link"], - "summary": opinion["text"], - "date": opinion["date"], - "status": ( - "Unpublished" - if opinion["criteria"] == "unreported" - else "Published" - ), - "judge": judge, - "name": titlecase(name), - "docket": docket, - } - ) + self.cases.append(parsed_case) diff --git a/juriscraper/opinions/united_states/federal_special/uscfc_vaccine.py b/juriscraper/opinions/united_states/federal_special/uscfc_vaccine.py index 4927e45de..d8c6153f8 100644 --- a/juriscraper/opinions/united_states/federal_special/uscfc_vaccine.py +++ b/juriscraper/opinions/united_states/federal_special/uscfc_vaccine.py @@ -9,3 +9,17 @@ class Site(uscfc.Site): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.url = "https://ecf.cofc.uscourts.gov/cgi-bin/CFC_RecentDecisionsOfTheSpecialMasters.pl" + + def extract_from_text(self, scraped_text: str) -> dict: + """Extract 'status' from text, if possible + + On the first page of the opinion, after the parties and attorneys names + the decision title may point to it being published. + + The scraped site itself marks all `uscfc_vaccine` opinions as + unreported + """ + if "PUBLISHED DECISION" in scraped_text[:1500]: + return {"OpinionCluster": {"precedential_status": "Published"}} + + return {} diff --git a/tests/examples/opinions/united_states/uscfc_example.compare.json b/tests/examples/opinions/united_states/uscfc_example.compare.json index 710e53b87..44af3c81b 100644 --- a/tests/examples/opinions/united_states/uscfc_example.compare.json +++ b/tests/examples/opinions/united_states/uscfc_example.compare.json @@ -7,8 +7,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-1253", - "judges": "S. Schwartz", - "summaries": "UNREPORTED ORDER denying [8] Motion for Leave to Proceed in forma pauperis filed by KAYLIN E JOHNSON; Staying the case until 12/23/2024; The Government is ordered to serve this Order on Plaintiff if the Government is aware of his address and to file a Status Report by no later than 11/1/2024 certifying either that it has served Plaintiff or that it has been unable to locate him. Signed by Judge Stephen S. Schwartz. (Attachments: (1) 8.19.2024 Order (ECF 5), (2) IFP Application, (3) Prisoner Authorization Form)(cmc) Service on parties made. Plaintiff served via first class mail on 10/22/2024", + "judges": "Stephen S. Schwartz", + "summaries": "UNREPORTED ORDER denying [8] Motion for Leave to Proceed in forma pauperis filed by KAYLIN E JOHNSON; Staying the case until 12/23/2024; The Government is ordered to serve this Order on Plaintiff if the Government is aware of his address and to file a Status Report by no later than 11/1/2024 certifying either that it has served Plaintiff or that it has been unable to locate him", "case_name_shorts": "" }, { @@ -19,8 +19,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-103", - "judges": "S. Schwartz", - "summaries": "UNREPORTED OPINION AND ORDER granting [9] Motion to Dismiss - Rule 12(b)(1) filed by USA. If Plaintiffs wish to plead additional facts in support of the legal theories within this Court&039;s jurisdiction, they may move for leave to file an amended complaint - in a single filing that includes all necessary attachments - no later than 11/21/2024. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made.", + "judges": "Stephen S. Schwartz", + "summaries": "UNREPORTED OPINION AND ORDER granting [9] Motion to Dismiss - Rule 12(b)(1) filed by USA. If Plaintiffs wish to plead additional facts in support of the legal theories within this Court&039;s jurisdiction, they may move for leave to file an amended complaint - in a single filing that includes all necessary attachments - no later than 11/21/2024", "case_name_shorts": "HALL" }, { @@ -31,8 +31,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-1246", - "judges": "S. Schwartz", - "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: denying [2] Motion for Leave to Proceed in forma pauperis filed by DERRICK M. ALLEN, SR.; granting [7] Defendant&039;s Motion for Summary Dismissal; given that similar claims by the same Plaintiff have been rejected by the Federal Circuit before, I certify that any appeal from the judgment would not be taken in good faith; filing by my leave, under seal, Plaintiff&039;s Response in Opposition to Motion to Proceed In Forma Pauperis and Motion for Summary Judgment, received by the Court on 9/9/2024, and construed as Plaintiff&039;s Reply to [7] Defendants Response in Opposition to [2] Motion to Proceed In Forma Pauperis and Motion for Summary Dismissal. The Clerk is directed to enter judgment. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made. Plaintiff served via certified mail no. 9589 0710 5270 1208 1188 60 on this day. Modified on 10/23/2024 (vds).", + "judges": "Stephen S. Schwartz", + "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: denying [2] Motion for Leave to Proceed in forma pauperis filed by DERRICK M. ALLEN, SR.; granting [7] Defendant&039;s Motion for Summary Dismissal; given that similar claims by the same Plaintiff have been rejected by the Federal Circuit before, I certify that any appeal from the judgment would not be taken in good faith; filing by my leave, under seal, Plaintiff&039;s Response in Opposition to Motion to Proceed In Forma Pauperis and Motion for Summary Judgment, received by the Court on 9/9/2024, and construed as Plaintiff&039;s Reply to [7] Defendants Response in Opposition to [2] Motion to Proceed In Forma Pauperis and Motion for Summary Dismissal. The Clerk is directed to enter judgment", "case_name_shorts": "Allen" }, { @@ -43,8 +43,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-1007", - "judges": "E. Meyers", - "summaries": "ORDER GRANTING [6] MOTION to Dismiss pursuant to Rule 12(b)(1) filed by USA. The Clerk is directed to enter judgment. Signed by Judge Edward H. Meyers. (jc) Service on parties made. Plaintiff served at 100 Hartle Court, Napa CA 94558 via certified mail no. 9589 0710 5270 1208 1188 91 on this day. Plaintiff also served at General Delivery, Napa CA 94559 via certified mail no. 9589 0710 5270 1208 1188 84 on this day. Modified on 10/23/2024 (vds).", + "judges": "Edward H. Meyers", + "summaries": "ORDER GRANTING [6] MOTION to Dismiss pursuant to Rule 12(b)(1) filed by USA. The Clerk is directed to enter judgment", "case_name_shorts": "Lofton" }, { @@ -55,8 +55,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-935", - "judges": "R. Hertling", - "summaries": "REPORTED OPINION: Reissued Public Opinion of the [43] Sealed Opinion issued on 10/15/2024 denying the plaintiff&039;s [29] motion for judgement on the administrative record, and granting defendant&039;s [36] and defendant-intervenor&039;s [35] motions for judgment on the administrative record. Signed by Judge Richard A. Hertling. (iab) Service on parties made.", + "judges": "Richard A. Hertling", + "summaries": "REPORTED OPINION: Reissued Public Opinion of the [43] Sealed Opinion issued on 10/15/2024 denying the plaintiff&039;s [29] motion for judgement on the administrative record, and granting defendant&039;s [36] and defendant-intervenor&039;s [35] motions for judgment on the administrative record", "case_name_shorts": "" }, { @@ -67,8 +67,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-53", - "judges": "E. Roumel", - "summaries": "REPORTED OPINION (reissued for publication of [70] SEALED ORDER granting [65] Plaintiff&039;s Motion for Leave to File Amended Complaint.) Signed by Judge Eleni M. Roumel. (rs) Service on parties made.", + "judges": "Eleni M. Roumel", + "summaries": "REPORTED OPINION (reissued for publication of [70] SEALED ORDER granting [65] Plaintiff&039;s Motion for Leave to File Amended Complaint", "case_name_shorts": "" }, { @@ -79,8 +79,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1965", - "judges": "E. Kaplan", - "summaries": "UNREPORTED OPINION denying [13] Plaintiff&039;s Motion for Judgment on the Administrative Record and granting [17] Defendant&039;s Cross-Motion for Judgment on the Administrative Record. The Clerk is directed to enter judgment. Signed by Chief Judge Elaine D. Kaplan. (aa) Service on parties made.", + "judges": "Elaine D. Kaplan", + "summaries": "UNREPORTED OPINION denying [13] Plaintiff&039;s Motion for Judgment on the Administrative Record and granting [17] Defendant&039;s Cross-Motion for Judgment on the Administrative Record. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -91,8 +91,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-792", - "judges": "C. Lerner", - "summaries": "JUDGE VACCINE UNREPORTED OPINION (PUBLIC VERSION) denying 76 Motion for Review of 74 DECISION of Special Master. Signed by Judge Carolyn N. Lerner. (lb) Service on parties made.", + "judges": "Carolyn N. Lerner", + "summaries": "JUDGE VACCINE UNREPORTED OPINION (PUBLIC VERSION) denying 76 Motion for Review of 74 DECISION of Special Master", "case_name_shorts": "KALAJDZIC" }, { @@ -103,8 +103,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1415", - "judges": "L. Smith", - "summaries": "REPORTED ORDER denying [30] Defendant&039;s Motion to Strike Plaintiff&039;s [27] Second Amended Complaint. Signed by Senior Judge Loren A. Smith. (ajd) Service on parties made.", + "judges": "Loren A. Smith", + "summaries": "REPORTED ORDER denying [30] Defendant&039;s Motion to Strike Plaintiff&039;s [27] Second Amended Complaint", "case_name_shorts": "" }, { @@ -115,8 +115,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-1150", - "judges": "E. Meyers", - "summaries": "UNREPORTED OPINION DISMISSING CASE on [6] MOTION to Dismiss pursuant to Rules 12 (b)(1) and (6) filed by USA. GRANTING[6] Motion to Dismiss. The Clerk is directed to enter judgment. Signed by Judge Edward H. Meyers. (dmc) Service on parties made; plaintiff served via first class mail. (dls)", + "judges": "Edward H. Meyers", + "summaries": "UNREPORTED OPINION DISMISSING CASE on [6] MOTION to Dismiss pursuant to Rules 12 (b)(1) and (6) filed by USA. GRANTING[6] Motion to Dismiss. The Clerk is directed to enter judgment", "case_name_shorts": "Fuller" }, { @@ -127,8 +127,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-335", - "judges": "M. Silfen", - "summaries": "REPORTED OPINION DISMISSING CASE. Granting the government&039;s [13] motion to dismiss pursuant to Rules 12 (b)(1) and (6), and denying [2] defendant&039;s motion to stay. The Clerk is directed to enter judgment. Signed by Judge Molly R. Silfen. (ck) Service on parties made.", + "judges": "Molly R. Silfen", + "summaries": "REPORTED OPINION DISMISSING CASE. Granting the government&039;s [13] motion to dismiss pursuant to Rules 12 (b)(1) and (6), and denying [2] defendant&039;s motion to stay. The Clerk is directed to enter judgment", "case_name_shorts": "Wilson" }, { @@ -139,8 +139,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-1070", - "judges": "E. Kaplan", - "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: Order of dismissal granting [8] MOTION to Dismiss pursuant to Rule 12(b)(1). The Clerk is directed to enter judgment. Signed by Chief Judge Elaine D. Kaplan. (jy) Service on parties made.", + "judges": "Elaine D. Kaplan", + "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: Order of dismissal granting [8] MOTION to Dismiss pursuant to Rule 12(b)(1). The Clerk is directed to enter judgment", "case_name_shorts": "Jasperson" }, { @@ -151,8 +151,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-809", - "judges": "E. Roumel", - "summaries": "REPORTED OPINION granting [6] Defendant&039;s Motion to Dismiss and Denying [16] Plaintiff&039;s Motion for Declaratory Judgment as Moot. The Clerk is DIRECTED to enter judgment accordingly. Signed by Judge Eleni M. Roumel. (jfr) Service on Parties Made.", + "judges": "Eleni M. Roumel", + "summaries": "REPORTED OPINION granting [6] Defendant&039;s Motion to Dismiss and Denying [16] Plaintiff&039;s Motion for Declaratory Judgment as Moot. The Clerk is DIRECTED to enter judgment accordingly", "case_name_shorts": "Doiban" }, { @@ -163,8 +163,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-949", - "judges": "M. Silfen", - "summaries": "REPORTED OPINION DISMISSING CASE. Granting the government&039;s [6] motion to dismiss pursuant to Rule 12(b)(1), granting plaintiff&039;s [2] motion to proceed in forma pauperis, and denying plaintiff&039;s [11] motion to amend the complaint. The Clerk is directed to enter judgment. Signed by Judge Molly R. Silfen. (ck) Service on parties made. Plaintiff served via Certified mail No. 9589 0710 5270 1513 1290 63 . Modified on 10/17/2024 (sh).", + "judges": "Molly R. Silfen", + "summaries": "REPORTED OPINION DISMISSING CASE. Granting the government&039;s [6] motion to dismiss pursuant to Rule 12(b)(1), granting plaintiff&039;s [2] motion to proceed in forma pauperis, and denying plaintiff&039;s [11] motion to amend the complaint. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -175,8 +175,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-1009", - "judges": "K. Davis", - "summaries": "REPORTED OPINION of the Court&039;s [32] Sealed Opinion. Signed by Judge Kathryn C. Davis. (wsj) Service on parties made.", + "judges": "Kathryn C. Davis", + "summaries": "REPORTED OPINION of the Court&039;s [32] Sealed Opinion", "case_name_shorts": "" }, { @@ -187,8 +187,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-451", - "judges": "M. Silfen", - "summaries": "REPORTED OPINION and ORDER. Public version of [417]. Signed by Judge Molly R. Silfen. (asw) Service on parties made.", + "judges": "Molly R. Silfen", + "summaries": "REPORTED OPINION and ORDER. Public version of [417]", "case_name_shorts": "" }, { @@ -199,8 +199,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-259", - "judges": "K. Davis", - "summaries": "REPORTED OPINION and ORDER on [192] MOTION for Attorney Fees filed by HEALTH REPUBLIC INSURANCE COMPANY granting [192] Motion for Attorney Fees subject to a reduction of the requested fee to 2.5&037;. The Clerk is directed to enter judgment pursuant to Rule 54(b), there being no just reason for delay. Signed by Judge Kathryn C. Davis. (ek) Service on parties made. (Main Document 224 replaced and docket text edited on 10/18/2024 to add Rule 54(b) language) (dls).", + "judges": "Kathryn C. Davis", + "summaries": "REPORTED OPINION and ORDER on [192] MOTION for Attorney Fees filed by HEALTH REPUBLIC INSURANCE COMPANY granting [192] Motion for Attorney Fees subject to a reduction of the requested fee to 2.5&037;. The Clerk is directed to enter judgment pursuant to Rule 54(b), there being no just reason for delay", "case_name_shorts": "" }, { @@ -211,8 +211,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-877", - "judges": "K. Davis", - "summaries": "REPORTED OPINION and ORDER on [185] MOTION for Attorney Fees filed by COMMON GROUND HEALTHCARE COOPERATIVE granting [185] Motion for Attorney Fees subject to a reduction of the requested fee to 2.5&037;. The Clerk is directed to enter judgment pursuant to Rule 54(b), there being no just reason for delay. Signed by Judge Kathryn C. Davis. (ek) Service on parties made. (Docket Text edited and Main Document 229 replaced on 10/18/2024 to add Rule 54(b) language.) (dls).", + "judges": "Kathryn C. Davis", + "summaries": "REPORTED OPINION and ORDER on [185] MOTION for Attorney Fees filed by COMMON GROUND HEALTHCARE COOPERATIVE granting [185] Motion for Attorney Fees subject to a reduction of the requested fee to 2.5&037;. The Clerk is directed to enter judgment pursuant to Rule 54(b), there being no just reason for delay", "case_name_shorts": "" }, { @@ -223,8 +223,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1585", - "judges": "T. Dietz", - "summaries": "REPORTED OPINION AND ORDER granting [16] Motion to Dismiss pursuant to Rule 12(b)(1). The Clerk is directed to enter judgment. Signed by Judge Thompson M. Dietz. (sbp) Service on parties made.", + "judges": "Thompson M. Dietz", + "summaries": "REPORTED OPINION AND ORDER granting [16] Motion to Dismiss pursuant to Rule 12(b)(1). The Clerk is directed to enter judgment", "case_name_shorts": "Nyberg" }, { @@ -235,8 +235,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1201", - "judges": "M. Silfen", - "summaries": "REPORTED OPINION AND ORDER granting in part and denying in part government&039;s [20] motion to dismiss, and ordering Mr. Wixson to file an amended complaint by 12/9/2024. Signed by Judge Molly R. Silfen. (rf) Service on parties made.", + "judges": "Molly R. Silfen", + "summaries": "REPORTED OPINION AND ORDER granting in part and denying in part government&039;s [20] motion to dismiss, and ordering Mr. Wixson to file an amended complaint by 12/9/2024", "case_name_shorts": "Wixson" }, { @@ -247,8 +247,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1633", - "judges": "M. Solomson", - "summaries": "REPORTED OPINION denying [5] MOTION to Dismiss pursuant to Rules 12 (b)(1) and (6) filed by USA (Status Report due by 11/7/2024). The parties shall meet and confer, and the government shall file a status report, as directed herein. Signed by Judge Matthew H. Solomson. (ags) Service on parties made. (Main Document 11 replaced on 10/8/2024) (vds).", + "judges": "Matthew H. Solomson", + "summaries": "REPORTED OPINION denying [5] MOTION to Dismiss pursuant to Rules 12 (b)(1) and (6) filed by USA (Status Report due by 11/7/2024). The parties shall meet and confer, and the government shall file a status report, as directed herein", "case_name_shorts": "Wheless" }, { @@ -259,8 +259,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-477", - "judges": "M. Silfen", - "summaries": "RE-DOCKETED FOR ADMINISTRATIVE PURPOSES JUDGE VACCINE REPORTED OPINION (PUBLIC VERSION) (originally filed 09/20/2024) granting 42 motion for review of 41 decision of Special Master and remanding. Signed by Judge Molly R. Silfen. (jt1) Service on parties made.", + "judges": "Molly R. Silfen", + "summaries": "RE-DOCKETED FOR ADMINISTRATIVE PURPOSES JUDGE VACCINE REPORTED OPINION (PUBLIC VERSION) (originally filed 09/20/2024) granting 42 motion for review of 41 decision of Special Master and remanding", "case_name_shorts": "Stewart-Robinson" }, { @@ -271,8 +271,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-688", - "judges": "T. Dietz", - "summaries": "PUBLIC OPINION and ORDER denying [70] Rotair&039;s Motion for Judgment on the Administrative Record; granting [74] Government&039;s Cross Motion for Judgment on the Administrative Record; granting [75] Boeing&039;s Motion for Judgment on the Administrative Record. The Clerk is directed to enter judgment. Signed by Judge Thompson M. Dietz. (sbp) Service on parties made.", + "judges": "Thompson M. Dietz", + "summaries": "PUBLIC OPINION and ORDER denying [70] Rotair&039;s Motion for Judgment on the Administrative Record; granting [74] Government&039;s Cross Motion for Judgment on the Administrative Record; granting [75] Boeing&039;s Motion for Judgment on the Administrative Record. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -283,8 +283,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-440", - "judges": "M. Horn", - "summaries": "REPORTED OPINION. Signed by Senior Judge Marian Blank Horn. (jm5) Service on parties made.", + "judges": "Marian Blank Horn", + "summaries": "REPORTED OPINION", "case_name_shorts": "" }, { @@ -295,8 +295,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-890", - "judges": "R. Hertling", - "summaries": "UNREPORTED ORDER: The plaintiff&039;s [9] motion to seal her complaint and the exhibits supporting her complaint is DENIED. The Clerk is DIRECTED to unseal the complaint and exhibits promptly. The defendant&039;s answer to the complaint remains due by October 11, 2024. The joint preliminary status report is due within 49 days of the defendant&039;s answer, as required by paragraph 4, Appendix A, of the Rules of the Court of Federal Claims. Signed by Judge Richard A. Hertling. (lw) Service on parties made.", + "judges": "Richard A. Hertling", + "summaries": "UNREPORTED ORDER: The plaintiff&039;s [9] motion to seal her complaint and the exhibits supporting her complaint is DENIED. The Clerk is DIRECTED to unseal the complaint and exhibits promptly. The defendant&039;s answer to the complaint remains due by October 11, 2024. The joint preliminary status report is due within 49 days of the defendant&039;s answer, as required by paragraph 4, Appendix A, of the Rules of the Court of Federal Claims", "case_name_shorts": "Monbo" }, { @@ -307,8 +307,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-670", - "judges": "C. Lerner", - "summaries": "UNREPORTED OPINION. Signed by Judge Carolyn N. Lerner. (tsr) Service on parties made.", + "judges": "Carolyn N. Lerner", + "summaries": "UNREPORTED OPINION", "case_name_shorts": "" }, { @@ -319,8 +319,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-295", - "judges": "S. Schwartz", - "summaries": "JUDGE VACCINE REPORTED OPINION AND ORDER (PUBLIC VERSION) reissuing [134] Opinion and Order on Motion for Review. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made.", + "judges": "Stephen S. Schwartz", + "summaries": "JUDGE VACCINE REPORTED OPINION AND ORDER (PUBLIC VERSION) reissuing [134] Opinion and Order on Motion for Review", "case_name_shorts": "SPARROW" }, { @@ -331,8 +331,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-1087", - "judges": "M. Solomson", - "summaries": "RE-DOCKETED TO CORRECT FILING ERROR. UNREPORTED OPINION and ORDER DISMISSING CASE and denying [6] MOTION for Reconsideration re [5] Order Staying Case, filed by COLLEEN LASHAM, DAVID HOROWITZ. The Clerk is directed to enter judgment dismissing plaintiffs&039; complaint for lack of subject-matter jurisdiction. Signed by Judge Matthew H. Solomson. (dls) Service on parties made.", + "judges": "Matthew H. Solomson", + "summaries": "RE-DOCKETED TO CORRECT FILING ERROR. UNREPORTED OPINION and ORDER DISMISSING CASE and denying [6] MOTION for Reconsideration re [5] Order Staying Case, filed by COLLEEN LASHAM, DAVID HOROWITZ. The Clerk is directed to enter judgment dismissing plaintiffs&039; complaint for lack of subject-matter jurisdiction", "case_name_shorts": "HOROWITZ" }, { @@ -343,8 +343,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1569", - "judges": "E. Bruggink", - "summaries": "REPORTED OPINION on denying [9] Motion to Dismiss - Rule 12(b)(1) and (6). Signed by Senior Judge Eric G. Bruggink. (jpk1) Service on parties made.", + "judges": "Eric G. Bruggink", + "summaries": "REPORTED OPINION on denying [9] Motion to Dismiss - Rule 12(b)(1) and (6", "case_name_shorts": "ALLARD" }, { @@ -355,8 +355,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-750", - "judges": "R. Holte", - "summaries": "REPORTED OPINION AND ORDER denying [30] plaintiff&039;s Motion for Judgment on the Administrative Record; granting [32] Five Stones&039; Cross-Motion for Judgment on the Administrative Record; granting [33] the government&039;s Cross-Motion for Judgment on the Administrative Record; and finding as moot [2] plaintiff&039;s Motion for Preliminary Injunction. Signed by Judge Ryan T. Holte. (mc) Service on parties made.", + "judges": "Ryan T. Holte", + "summaries": "REPORTED OPINION AND ORDER denying [30] plaintiff&039;s Motion for Judgment on the Administrative Record; granting [32] Five Stones&039; Cross-Motion for Judgment on the Administrative Record; granting [33] the government&039;s Cross-Motion for Judgment on the Administrative Record; and finding as moot [2] plaintiff&039;s Motion for Preliminary Injunction", "case_name_shorts": "" }, { @@ -367,8 +367,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-867", - "judges": "K. Davis", - "summaries": "REPORTED OPINION. Signed by Judge Kathryn C. Davis. (ek) Service on parties made.", + "judges": "Kathryn C. Davis", + "summaries": "REPORTED OPINION", "case_name_shorts": "" }, { @@ -379,8 +379,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-364", - "judges": "E. Bruggink", - "summaries": "REPORTED OPINION granting in part and denying in part [10] MOTION to Dismiss pursuant to Rule 12(b)(1). Joint Status Report due by 10/18/2024. Signed by Senior Judge Eric G. Bruggink. (de) Service on parties made.", + "judges": "Eric G. Bruggink", + "summaries": "REPORTED OPINION granting in part and denying in part [10] MOTION to Dismiss pursuant to Rule 12(b)(1). Joint Status Report due by 10/18/2024", "case_name_shorts": "DAVIS" }, { @@ -391,8 +391,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-498", - "judges": "E. Kaplan", - "summaries": "RE-DOCKETED FOR POSTING TO THE COURT&039;S WEBSITE. UNREPORTED OPINION AND ORDER DISMISSING CASE: Order of Dismissal granting [9] Motion to Dismiss - Rule 12(b)(1); granting [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment. Signed by Chief Judge Elaine D. Kaplan. (ah) Service on parties made. (aoc)", + "judges": "Elaine D. Kaplan", + "summaries": "RE-DOCKETED FOR POSTING TO THE COURT&039;S WEBSITE. UNREPORTED OPINION AND ORDER DISMISSING CASE: Order of Dismissal granting [9] Motion to Dismiss - Rule 12(b)(1); granting [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment", "case_name_shorts": "Freshwadda" }, { @@ -403,8 +403,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1901", - "judges": "S. Schwartz", - "summaries": "REPORTED OPINION AND ORDER denying in part and deferring ruling on [9] Motion to Dismiss - Rule 12(b)(1) filed by USA as it relates to the statute of limitations pending jurisdictional discovery; granting Plaintiff&039;s request for jurisdictional discovery. Joint Status Report due by 10/28/2024. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made.", + "judges": "Stephen S. Schwartz", + "summaries": "REPORTED OPINION AND ORDER denying in part and deferring ruling on [9] Motion to Dismiss - Rule 12(b)(1) filed by USA as it relates to the statute of limitations pending jurisdictional discovery; granting Plaintiff&039;s request for jurisdictional discovery. Joint Status Report due by 10/28/2024", "case_name_shorts": "Didley" }, { @@ -415,8 +415,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-1290", - "judges": "C. Lerner", - "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE and GRANTING [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment. Signed by Judge Carolyn N. Lerner. (tsr) Service on parties made.", + "judges": "Carolyn N. Lerner", + "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE and GRANTING [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment", "case_name_shorts": "Campbell" }, { @@ -427,8 +427,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-1175", - "judges": "L. Smith", - "summaries": "REPORTED ORDER DISMISSING CASE. The Clerk is directed to enter judgment. Signed by Senior Judge Loren A. Smith. (ajd) Service on parties made. (Main Document 15 replaced on 9/26/2024 to correct a typographical error) (aoc). Modified on 9/26/2024 (aoc). Plaintiff served via first class mail on 9/26/2024. Plaintiff served via first class mail on 10/17/2024 to updated address on docket.", + "judges": "Loren A. Smith", + "summaries": "REPORTED ORDER DISMISSING CASE. The Clerk is directed to enter judgment", "case_name_shorts": "Marcum" }, { @@ -439,8 +439,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-639", - "judges": "D. Tapp", - "summaries": "REPORTED OPINION: ECF No. [37] reissued. Signed by Judge David A. Tapp. (emc) Service on parties made.", + "judges": "David A. Tapp", + "summaries": "REPORTED OPINION: ECF No. [37] reissued", "case_name_shorts": "Comet" }, { @@ -451,8 +451,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-125", - "judges": "D. Tapp", - "summaries": "REPORTED ORDER denying [32] Defendant&039;s MOTION to Dismiss Amended Complaint; (Response to amended complaint due by 10/15/2024., Joint Preliminary Status Report due by 11/12/2024). Signed by Judge David A. Tapp. (jjg) Service on parties made.", + "judges": "David A. Tapp", + "summaries": "REPORTED ORDER denying [32] Defendant&039;s MOTION to Dismiss Amended Complaint; (Response to amended complaint due by 10/15/2024., Joint Preliminary Status Report due by 11/12/2024", "case_name_shorts": "" }, { @@ -463,8 +463,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-327", - "judges": "E. Roumel", - "summaries": "JUDGE VACCINE REPORTED OPINION (reissued for publication of [128] JUDGE VACCINE ORDER/OPINION denying [125] Petitioner&039;s Motion for Review and sustaining [123] DECISION of Special Master). Signed by Judge Eleni M. Roumel. (cj) Service on parties made.", + "judges": "Eleni M. Roumel", + "summaries": "JUDGE VACCINE REPORTED OPINION (reissued for publication of [128] JUDGE VACCINE ORDER/OPINION denying [125] Petitioner&039;s Motion for Review and sustaining [123] DECISION of Special Master", "case_name_shorts": "" }, { @@ -475,8 +475,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1411", - "judges": "R. Hertling", - "summaries": "JUDGE VACCINE UNREPORTED OPINION. Reissued public opinion of the Court&039;s sealed Opinion and Order [59] of 9/4/2024. Signed by Judge Richard A. Hertling. (agg) Service on parties made.", + "judges": "Richard A. Hertling", + "summaries": "JUDGE VACCINE UNREPORTED OPINION. Reissued public opinion of the Court&039;s sealed Opinion and Order [59] of 9/4/2024", "case_name_shorts": "Shanes" }, { @@ -487,8 +487,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-67", - "judges": "E. Meyers", - "summaries": "UNREPORTED ORDER dismissing Plaintiff&039;s Petition for a Writ of Habeas Corpus. Signed by Judge Edward H. Meyers. (th) Service on parties made. Plaintiff served via First Class mail on 9/23/24.", + "judges": "Edward H. Meyers", + "summaries": "UNREPORTED ORDER dismissing Plaintiff&039;s Petition for a Writ of Habeas Corpus", "case_name_shorts": "Chisum" }, { @@ -499,8 +499,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-1193", - "judges": "M. Solomson", - "summaries": "REPORTED OPINION (public version): denying [4] Motion for Preliminary Injunction and TRO; and directing the Clerk to enter JUDGMENT for Defendant and Defendant-Intervenor. Signed by Judge Matthew H. Solomson. (si) Service on parties made.", + "judges": "Matthew H. Solomson", + "summaries": "REPORTED OPINION (public version): denying [4] Motion for Preliminary Injunction and TRO; and directing the Clerk to enter JUDGMENT for Defendant and Defendant-Intervenor", "case_name_shorts": "" }, { @@ -511,8 +511,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1233", - "judges": "M. Horn", - "summaries": "UNREPORTED ORDER Notice of Compliance due by 9/20/2024. Signed by Senior Judge Marian Blank Horn. (jch) Service on parties made.", + "judges": "Marian Blank Horn", + "summaries": "UNREPORTED ORDER Notice of Compliance due by 9/20/2024", "case_name_shorts": "" }, { @@ -523,8 +523,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-297", - "judges": "L. Smith", - "summaries": "REPORTED ORDER denying [92] Plaintiff&039;s Motion to Compel. Joint Status Report due by 10/18/2024. Signed by Senior Judge Loren A. Smith. (am) Service on parties made.", + "judges": "Loren A. Smith", + "summaries": "REPORTED ORDER denying [92] Plaintiff&039;s Motion to Compel. Joint Status Report due by 10/18/2024", "case_name_shorts": "Jain" }, { @@ -535,8 +535,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-1314", - "judges": "E. Meyers", - "summaries": "UNREPORTED OPINION DISMISSING CASE and granting [4] REQUEST for Filing Fee Pay.gov Refund. The Clerk is directed to enter judgment. Signed by Judge Edward H. Meyers. (th) Service on parties made.", + "judges": "Edward H. Meyers", + "summaries": "UNREPORTED OPINION DISMISSING CASE and granting [4] REQUEST for Filing Fee Pay.gov Refund. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -547,8 +547,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-231", - "judges": "E. Kaplan", - "summaries": "RREPORTED OPINION AND ORDER granting [194] Defendant&039;s CROSS-MOTION for Summary Judgment, which the Court is treating as a motion to dismiss under RCFC 12(b)(1); and denying as moot [184] Plaintiffs&039; MOTION for Partial Summary Judgment. Joint status report proposing further proceedings due by 10/17/2024. Signed by Chief Judge Elaine D. Kaplan. (tbs) Service on parties made.", + "judges": "Elaine D. Kaplan", + "summaries": "RREPORTED OPINION AND ORDER granting [194] Defendant&039;s CROSS-MOTION for Summary Judgment, which the Court is treating as a motion to dismiss under RCFC 12(b)(1); and denying as moot [184] Plaintiffs&039; MOTION for Partial Summary Judgment. Joint status report proposing further proceedings due by 10/17/2024", "case_name_shorts": "" }, { @@ -559,8 +559,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-1180", - "judges": "D. Tapp", - "summaries": "UNREPORTED OPINION DISMISSING CASE: The Clerk is directed to enter judgment. The Clerk shall reject the noncompliant document received on 9/5/2024. The Clerk shall reject any future submissions in this case unless they comply with this Court&039;s rules regarding post-dismissal submissions. Signed by Judge David A. Tapp. (emc) Service on parties made. Plaintiff served via First Class Mail on 09/13/2024 (km1).", + "judges": "David A. Tapp", + "summaries": "UNREPORTED OPINION DISMISSING CASE: The Clerk is directed to enter judgment. The Clerk shall reject the noncompliant document received on 9/5/2024. The Clerk shall reject any future submissions in this case unless they comply with this Court&039;s rules regarding post-dismissal submissions", "case_name_shorts": "Wilson" }, { @@ -571,8 +571,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-500", - "judges": "S. Schwartz", - "summaries": "REPORTED OPINION AND ORDER (re-issuance of August 20, 2024 Sealed Opinion and Order for Publication (ECF No. 38). Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made.", + "judges": "Stephen S. Schwartz", + "summaries": "REPORTED OPINION AND ORDER (re-issuance of August 20, 2024 Sealed Opinion and Order for Publication (ECF No. 38", "case_name_shorts": "" }, { @@ -583,8 +583,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1420", - "judges": "K. Davis", - "summaries": "REPORTED OPINION of the Court&039;s [98] Sealed Opinion. Signed by Judge Kathryn C. Davis. (ks) Service on parties made.", + "judges": "Kathryn C. Davis", + "summaries": "REPORTED OPINION of the Court&039;s [98] Sealed Opinion", "case_name_shorts": "" }, { @@ -595,8 +595,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-1384", - "judges": "R. Hertling", - "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: The [2] Motion for Leave to Proceed in forma pauperis is GRANTED. The Complaint fails to state a plausible claim for relief within the limited jurisdiction of the Court of Federal Claims and is DISMISSED without prejudice pursuant to RCFC 12(b)(1) and 12(h)(3). The Clerk is directed to enter judgment. Signed by Judge Richard A. Hertling. (tbss) Service on parties made. Plaintiff served via certified mail no. 7017 0190 0000 4739 5801 on this day Modified on 9/11/2024 (vds).", + "judges": "Richard A. Hertling", + "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: The [2] Motion for Leave to Proceed in forma pauperis is GRANTED. The Complaint fails to state a plausible claim for relief within the limited jurisdiction of the Court of Federal Claims and is DISMISSED without prejudice pursuant to RCFC 12(b)(1) and 12(h)(3). The Clerk is directed to enter judgment", "case_name_shorts": "Wall" }, { @@ -607,8 +607,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-1120", - "judges": "A. Bonilla", - "summaries": "REPORTED OPINION AND ORDER reissued [37] SEALED OPINION AND ORDER: Plaintiff&039;s motion for a preliminary injunction (ECF [4]) is DENIED and defendant&039;s cross-motion to dismiss (ECF [24]) is DENIED. The parties shall file a joint status report on or before September 16, 2024, proposing a schedule of further proceedings in this case. Signed by Judge Armando O. Bonilla. (ead) Service on parties made.", + "judges": "Armando O. Bonilla", + "summaries": "REPORTED OPINION AND ORDER reissued [37] SEALED OPINION AND ORDER: Plaintiff&039;s motion for a preliminary injunction (ECF [4]) is DENIED and defendant&039;s cross-motion to dismiss (ECF [24]) is DENIED. The parties shall file a joint status report on or before September 16, 2024, proposing a schedule of further proceedings in this case", "case_name_shorts": "" }, { @@ -619,8 +619,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1407", - "judges": "T. Dietz", - "summaries": "MEMORANDUM OPINION and ORDER. Unsealed public version of [113] MEMORANDUM OPINION and ORDER denying [102] Motion to Compel. Signed by Judge Thompson M. Dietz. (sbp) Service on parties made.", + "judges": "Thompson M. Dietz", + "summaries": "MEMORANDUM OPINION and ORDER. Unsealed public version of [113] MEMORANDUM OPINION and ORDER denying [102] Motion to Compel", "case_name_shorts": "ARNHOLD" }, { @@ -631,8 +631,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-245", - "judges": "C. Lettow", - "summaries": "REPORTED OPINION granting [5] MOTION to Dismiss pursuant to Rule 12(b)(1). The Clerk is directed to enter judgment. Signed by Senior Judge Charles F. Lettow. (khp)", + "judges": "Charles F. Lettow", + "summaries": "REPORTED OPINION granting [5] MOTION to Dismiss pursuant to Rule 12(b)(1). The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -643,8 +643,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1025", - "judges": "T. Dietz", - "summaries": "REPORTED OPINION and ORDER granting [6] the Government&039;s Motion to Dismiss pursuant to Rules 12(b)(1) and 12(b)(6). The Clerk is directed to enter judgment. Signed by Judge Thompson M. Dietz. (ktl) Service on parties made.", + "judges": "Thompson M. Dietz", + "summaries": "REPORTED OPINION and ORDER granting [6] the Government&039;s Motion to Dismiss pursuant to Rules 12(b)(1) and 12(b)(6). The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -655,8 +655,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1208", - "judges": "L. Smith", - "summaries": "REPORTED ORDER granting [17] Defendant&039;s Motion for Partial Dismissal; granting [17] Defendant&039;s Cross-Motion for Judgment on the Administrative Record; and denying [12] Plaintiff&039;s Motion for Judgment on the Administrative Record. The Clerk is directed to enter judgment. Signed by Senior Judge Loren A. Smith. (ajd) Service on parties made.", + "judges": "Loren A. Smith", + "summaries": "REPORTED ORDER granting [17] Defendant&039;s Motion for Partial Dismissal; granting [17] Defendant&039;s Cross-Motion for Judgment on the Administrative Record; and denying [12] Plaintiff&039;s Motion for Judgment on the Administrative Record. The Clerk is directed to enter judgment", "case_name_shorts": "Snyder" }, { @@ -667,8 +667,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-554", - "judges": "D. Tapp", - "summaries": "REPORTED OPINION: Public version of ECF No. [34]. Signed by Judge David A. Tapp. (emc) Service on parties made.", + "judges": "David A. Tapp", + "summaries": "REPORTED OPINION: Public version of ECF No. [34]", "case_name_shorts": "" }, { @@ -679,8 +679,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1685", - "judges": "M. Solomson", - "summaries": "REPORTED OPINION granting [52] Motion for Summary Judgment filed by USA and denying [51] Motion for Summary Judgment filed by Sergent&039;s Mechanical Systems, Inc. The Clerk is directed to enter judgment for the United States. Signed by Judge Matthew H. Solomson. (tf) Service on parties made.", + "judges": "Matthew H. Solomson", + "summaries": "REPORTED OPINION granting [52] Motion for Summary Judgment filed by USA and denying [51] Motion for Summary Judgment filed by Sergent&039;s Mechanical Systems, Inc. The Clerk is directed to enter judgment for the United States", "case_name_shorts": "" }, { @@ -691,8 +691,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-667", - "judges": "A. Bonilla", - "summaries": "OPINION AND ORDER reissued [101] VACCINE OPINION AND ORDER: Respondent&039;s motion for review (ECF [95]) is GRANTED-IN-PART and DENIED-IN-PART, petitioner&039;s cross-motion for review (ECF [97]) is DENIED, OSM&039;s remand decision awarding attorney&039;s fees and costs (ECF [94]) is AFFIRMED-IN-PART and VACATED-IN-PART, and petitioner is AWARDED &036;41,044.29 in reasonable attorney&039;s fees and costs. Signed by Judge Armando O. Bonilla. (ead) Service on parties made.", + "judges": "Armando O. Bonilla", + "summaries": "OPINION AND ORDER reissued [101] VACCINE OPINION AND ORDER: Respondent&039;s motion for review (ECF [95]) is GRANTED-IN-PART and DENIED-IN-PART, petitioner&039;s cross-motion for review (ECF [97]) is DENIED, OSM&039;s remand decision awarding attorney&039;s fees and costs (ECF [94]) is AFFIRMED-IN-PART and VACATED-IN-PART, and petitioner is AWARDED &036;41,044.29 in reasonable attorney&039;s fees and costs", "case_name_shorts": "Mead" }, { @@ -703,8 +703,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1485", - "judges": "L. Smith", - "summaries": "JUDGE VACCINE REPORTED OPINION reissuing [74] Judge Vaccine Order/Opinion. Signed by Senior Judge Loren A. Smith. (am) Service on parties made.", + "judges": "Loren A. Smith", + "summaries": "JUDGE VACCINE REPORTED OPINION reissuing [74] Judge Vaccine Order/Opinion", "case_name_shorts": "Deleon" }, { @@ -715,8 +715,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-1357", - "judges": "R. Hertling", - "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: The [2] Motion for Leave to Proceed in forma pauperis is GRANTED. The Complaint fails to state a plausible claim for relief within the limited jurisdiction of the Court of Federal Claims and is DISMISSED without prejudice pursuant to RCFC 12(b)(1) and 12(h)(3). The Clerk is directed to enter judgment. Signed by Judge Richard A. Hertling. (tbss) Service on parties made. Plaintiff served via certified mail 7017-1450-0000-1346-3486 on 9/3/2024.", + "judges": "Richard A. Hertling", + "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: The [2] Motion for Leave to Proceed in forma pauperis is GRANTED. The Complaint fails to state a plausible claim for relief within the limited jurisdiction of the Court of Federal Claims and is DISMISSED without prejudice pursuant to RCFC 12(b)(1) and 12(h)(3). The Clerk is directed to enter judgment", "case_name_shorts": "McKnight" }, { @@ -727,8 +727,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-81", - "judges": "T. Dietz", - "summaries": "UNREPORTED OPINION DISMISSING CASE on [7] MOTION to Dismiss pursuant to Rule 12(b)(1) filed by USA, [2] MOTION for Leave to Proceed in forma pauperis filed by NAILA M. QURESHI. Granting [7] Motion to Dismiss - Rule 12(b)(1); Granting [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment. Signed by Judge Thompson M. Dietz. (amd) Service on parties made.", + "judges": "Thompson M. Dietz", + "summaries": "UNREPORTED OPINION DISMISSING CASE on [7] MOTION to Dismiss pursuant to Rule 12(b)(1) filed by USA, [2] MOTION for Leave to Proceed in forma pauperis filed by NAILA M. QURESHI. Granting [7] Motion to Dismiss - Rule 12(b)(1); Granting [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment", "case_name_shorts": "Qureshi" }, { @@ -739,8 +739,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-996", - "judges": "S. Schwartz", - "summaries": "UNREPORTED ORDER DISMISSING CASE; denying as moot [7] Motion to Dismiss - Rule 12(b)(1) filed by USA. The Clerk is directed to enter judgment. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made. Plaintiff served via first class mail on 8/29/2024.", + "judges": "Stephen S. Schwartz", + "summaries": "UNREPORTED ORDER DISMISSING CASE; denying as moot [7] Motion to Dismiss - Rule 12(b)(1) filed by USA. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -751,8 +751,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2135", - "judges": "K. Davis", - "summaries": "REPORTED OPINION of the Court&039;s [30] Sealed Opinion. Signed by Judge Kathryn C. Davis. (sbw) Service on parties made.", + "judges": "Kathryn C. Davis", + "summaries": "REPORTED OPINION of the Court&039;s [30] Sealed Opinion", "case_name_shorts": "" }, { @@ -763,8 +763,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-619", - "judges": "K. Davis", - "summaries": "REPORTED OPINION of the Court&039;s [38] Sealed Opinion. Signed by Judge Kathryn C. Davis. (sbw) Service on parties made.", + "judges": "Kathryn C. Davis", + "summaries": "REPORTED OPINION of the Court&039;s [38] Sealed Opinion", "case_name_shorts": "" }, { @@ -775,8 +775,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2016", - "judges": "R. Hertling", - "summaries": "UNREPORTED OPINION AND ORDER: The plaintiff has not shown that the [46] Decision dismissing the plaintiff&039;s complaint suffers from clear error. The plaintiff&039;s [49] Motion for Reconsideration is DENIED. Signed by Judge Richard A. Hertling. (tbss) Service on parties made. Plaintiff served via certified mail no. 7017 0190 0000 4739 5764 Modified on 8/27/2024 (vds).", + "judges": "Richard A. Hertling", + "summaries": "UNREPORTED OPINION AND ORDER: The plaintiff has not shown that the [46] Decision dismissing the plaintiff&039;s complaint suffers from clear error. The plaintiff&039;s [49] Motion for Reconsideration is DENIED", "case_name_shorts": "Dillon" }, { @@ -787,8 +787,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1899", - "judges": "E. Kaplan", - "summaries": "REPORTED OPINION granting [48] Defendant&039;s MOTION to Dismiss pursuant to Rule 12 (b)(1); granting [48] Defendant&039;s MOTION for Judgment on the Administrative Record; and denying [45] Plaintiff&039;s MOTION for Judgment on the Administrative Record. The Clerk is directed to enter judgment. Signed by Chief Judge Elaine D. Kaplan. (tbs) Service on parties made. Modified on 8/28/2024 - corrected typographical error (jt1).", + "judges": "Elaine D. Kaplan", + "summaries": "REPORTED OPINION granting [48] Defendant&039;s MOTION to Dismiss pursuant to Rule 12 (b)(1); granting [48] Defendant&039;s MOTION for Judgment on the Administrative Record; and denying [45] Plaintiff&039;s MOTION for Judgment on the Administrative Record. The Clerk is directed to enter judgment", "case_name_shorts": "Henrikson" }, { @@ -799,8 +799,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1899", - "judges": "E. Kaplan", - "summaries": "REPORTED OPINION granting [48] Defendant&039;s MOTION to Dismiss pursuant to Rule 12 (b)(1); granting [48] Defendant&039;s MOTION for Judgment on the Administrative Record; and denying [45] Plaintiff&039;s MOTION for Judgment on the Administrative Record. The Clerk is directed to enter judgment. Signed by Chief Judge Elaine D. Kaplan. (tbs) Service on parties made. Modified on 8/28/2024 - corrected typographical error (jt1).", + "judges": "Elaine D. Kaplan", + "summaries": "REPORTED OPINION granting [48] Defendant&039;s MOTION to Dismiss pursuant to Rule 12 (b)(1); granting [48] Defendant&039;s MOTION for Judgment on the Administrative Record; and denying [45] Plaintiff&039;s MOTION for Judgment on the Administrative Record. The Clerk is directed to enter judgment", "case_name_shorts": "Henrikson" }, { @@ -811,8 +811,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2136", - "judges": "T. Dietz", - "summaries": "REPORTED OPINION and ORDER. Unsealed public version of [26] the Court&039;s August 12, 2024, Opinion and Order denying [13] BCG&039;s Motion for Judgment on the Administrative Record; granting in part and denying in part [18] the Government&039;s Motion to Dismiss pursuant to Rules 12 (b)(1) and (6) or, in the alternative, Cross-Motion for Judgment on the Administrative Record. Signed by Judge Thompson M. Dietz. (sbp) Service on parties made.", + "judges": "Thompson M. Dietz", + "summaries": "REPORTED OPINION and ORDER. Unsealed public version of [26] the Court&039;s August 12, 2024, Opinion and Order denying [13] BCG&039;s Motion for Judgment on the Administrative Record; granting in part and denying in part [18] the Government&039;s Motion to Dismiss pursuant to Rules 12 (b)(1) and (6) or, in the alternative, Cross-Motion for Judgment on the Administrative Record", "case_name_shorts": "" }, { @@ -823,8 +823,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1970", - "judges": "P. Hadji", - "summaries": "OPINION granting the Government&039;s [54] Motion for Judgment on the Administrative Record; denying Plaintiff&039;s [47] Motion for Judgment on the Administrative Record; and denying the Government&039;s [54] Motion to Dismiss. The Clerk of Court is directed to enter judgment accordingly. Signed by Judge Philip S. Hadji. (idb) Service on parties made.", + "judges": "Philip S. Hadji", + "summaries": "OPINION granting the Government&039;s [54] Motion for Judgment on the Administrative Record; denying Plaintiff&039;s [47] Motion for Judgment on the Administrative Record; and denying the Government&039;s [54] Motion to Dismiss. The Clerk of Court is directed to enter judgment accordingly", "case_name_shorts": "Bee" }, { @@ -835,8 +835,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1070", - "judges": "R. Holte", - "summaries": "REPORTED OPINION AND ORDER granting in part and denying in part [97] plaintiffs&039; Motion for Attorney Fees; and lifting the stay on [112] plaintiffs&039; Supplemental Motion and Memorandum for an Award of Reasonable Attorneys Fees and Costs. The parties shall meet and confer and shall file a joint status report (JSR) on or before 8/29/2024 at 12:00 p.m. (ET). After the filing of the 8/29/2024 JSR, the parties again shall meet and confer and shall file a JSR on or before 9/5/2024 at 12:00 p.m. (ET). Signed by Judge Ryan T. Holte. (mbn) Service on parties made.", + "judges": "Ryan T. Holte", + "summaries": "REPORTED OPINION AND ORDER granting in part and denying in part [97] plaintiffs&039; Motion for Attorney Fees; and lifting the stay on [112] plaintiffs&039; Supplemental Motion and Memorandum for an Award of Reasonable Attorneys Fees and Costs. The parties shall meet and confer and shall file a joint status report (JSR) on or before 8/29/2024 at 12:00 p.m. (ET). After the filing of the 8/29/2024 JSR, the parties again shall meet and confer and shall file a JSR on or before 9/5/2024 at 12:00 p.m. (ET", "case_name_shorts": "HIPPELY" }, { @@ -847,8 +847,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-174", - "judges": "T. Dietz", - "summaries": "REPORTED OPINION AND ORDER granting in part and denying in part [23] Motion to Dismiss filed by USA. Signed by Judge Thompson M. Dietz. (sbp) Service on parties made.", + "judges": "Thompson M. Dietz", + "summaries": "REPORTED OPINION AND ORDER granting in part and denying in part [23] Motion to Dismiss filed by USA", "case_name_shorts": "BOTELLO" }, { @@ -859,8 +859,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1789", - "judges": "M. Silfen", - "summaries": "REPORTED OPINION DISMISSING CASE. ORDER granting [12] government&039;s motion to dismiss. The Clerk is directed to enter judgment.Signed by Judge Molly R. Silfen. (rf) Service on parties made.", + "judges": "Molly R. Silfen", + "summaries": "REPORTED OPINION DISMISSING CASE. ORDER granting [12] government&039;s motion to dismiss. The Clerk is directed to enter judgment", "case_name_shorts": "Petlechkov" }, { @@ -871,8 +871,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-362", - "judges": "S. Schwartz", - "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: granting [29] Motion to Dismiss - Rule 12(b)(1); denying as moot [7] Motion to Transfer; denying [10] Motion; denying [13] Motion; denying [14] Motion; denying [15] Motion; denying as moot [21] Motion; denying as moot [22] Motion; denying [24] Motion; denying [25] Motion; denying as moot [31] Motion for Summary Judgment; denying as moot [32] Motion; denying [40] Motion; denying as moot [43] Motion; denying as moot [45] Motion; denying [49] Motion; denying [50] Motion; denying as moot [51] Motion. The Clerk is directed to enter judgment. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made. Plaintiff served via first class mail on 8/21/2024.", + "judges": "Stephen S. Schwartz", + "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: granting [29] Motion to Dismiss - Rule 12(b)(1); denying as moot [7] Motion to Transfer; denying [10] Motion; denying [13] Motion; denying [14] Motion; denying [15] Motion; denying as moot [21] Motion; denying as moot [22] Motion; denying [24] Motion; denying [25] Motion; denying as moot [31] Motion for Summary Judgment; denying as moot [32] Motion; denying [40] Motion; denying as moot [43] Motion; denying as moot [45] Motion; denying [49] Motion; denying [50] Motion; denying as moot [51] Motion. The Clerk is directed to enter judgment", "case_name_shorts": "Howell" }, { @@ -883,8 +883,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1427", - "judges": "C. Lerner", - "summaries": "UNREPORTED OPINION AND ORDER granting [25] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment. Signed by Judge Carolyn N. Lerner. (ak) Service on parties made. Plaintiff served via certified mail 70182290000051836880 on 8/21/24. (tb).", + "judges": "Carolyn N. Lerner", + "summaries": "UNREPORTED OPINION AND ORDER granting [25] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment", "case_name_shorts": "Cooper" }, { @@ -895,8 +895,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-223", - "judges": "E. Roumel", - "summaries": "REPORTED OPINION (reissued for publication of [110] SEALED MEMORANDUM AND ORDER DENYING [102] Plaintiff&039;s Corrected Motion for Partial Summary Judgment and DENYING [105] Defendant&039;s Cross-Motion for Partial Summary Judgment). Signed by Judge Eleni M. Roumel. (ms) Service on parties made.", + "judges": "Eleni M. Roumel", + "summaries": "REPORTED OPINION (reissued for publication of [110] SEALED MEMORANDUM AND ORDER DENYING [102] Plaintiff&039;s Corrected Motion for Partial Summary Judgment and DENYING [105] Defendant&039;s Cross-Motion for Partial Summary Judgment", "case_name_shorts": "" }, { @@ -907,8 +907,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1964", - "judges": "B. Futey", - "summaries": "UNREPORTED OPINION The Court SETS ASIDE the Board for Correction of Naval Records decision as arbitrary and capricious. To the extent it challenges that decision as arbitrary and capricious for failure to apply liberal consideration, Plaintiff&039;s motion for judgment on the administrative record, [49], is GRANTED-IN-PART. To the extent it argues remand is an appropriate remedy under such circumstances, the Government&039;s cross-motion, [52], is also GRANTED-IN-PART. The Court REMANDS this matter to the BCNR pursuant to RCFC 52.2. The remand period shall be 60 days, subject to extension on motion. All proceedings in this case before this Court are STAYED for the duration of the remand period. The Government shall report on the status of the remand proceedings every 30 days, with status reports due on 9/18/2024 and 10/18/2024. Signed by Senior Judge Bohdan A. Futey. (agg) Service on parties made. (Main Document 68 replaced on 8/19/2024 to correct a typo.) (rp) (Main Document 68 replaced on 8/23/2024 to correct a clerical error.) (dls). (Main Document 68 replaced on 8/23/2024 to correct case number.) (dls)", + "judges": "Bohdan A. Futey", + "summaries": "UNREPORTED OPINION The Court SETS ASIDE the Board for Correction of Naval Records decision as arbitrary and capricious. To the extent it challenges that decision as arbitrary and capricious for failure to apply liberal consideration, Plaintiff&039;s motion for judgment on the administrative record, [49], is GRANTED-IN-PART. To the extent it argues remand is an appropriate remedy under such circumstances, the Government&039;s cross-motion, [52], is also GRANTED-IN-PART. The Court REMANDS this matter to the BCNR pursuant to RCFC 52.2. The remand period shall be 60 days, subject to extension on motion. All proceedings in this case before this Court are STAYED for the duration of the remand period. The Government shall report on the status of the remand proceedings every 30 days, with status reports due on 9/18/2024 and 10/18/2024", "case_name_shorts": "Doyon" }, { @@ -919,8 +919,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-1260", - "judges": "D. Tapp", - "summaries": "UNREPORTED OPINION DISMISSING CASE; granting [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment. The Clerk shall reject any future submissions in this case unless they comply with this Court&039;s rules regarding post-dismissal submissions. Signed by Judge David A. Tapp. (emc) Service on parties made. Plaintiff served via certified mail 7017-1450-0000-1346-3479 on 8/21/2024.", + "judges": "David A. Tapp", + "summaries": "UNREPORTED OPINION DISMISSING CASE; granting [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment. The Clerk shall reject any future submissions in this case unless they comply with this Court&039;s rules regarding post-dismissal submissions", "case_name_shorts": "BOWLES" }, { @@ -931,8 +931,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-237", - "judges": "L. Smith", - "summaries": "REPORTED OPINION DISMISSING CASE: granting [13] Defendant&039;s Motion to Dismiss pursuant to Rule 12(b)(6). The Clerk is directed to enter judgment. Signed by Senior Judge Loren A. Smith. (ajd) Service on parties made.", + "judges": "Loren A. Smith", + "summaries": "REPORTED OPINION DISMISSING CASE: granting [13] Defendant&039;s Motion to Dismiss pursuant to Rule 12(b)(6). The Clerk is directed to enter judgment", "case_name_shorts": "Engen" }, { @@ -943,8 +943,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-70", - "judges": "C. Lettow", - "summaries": "JUDGE VACCINE REPORTED OPINION (PUBLIC VERSION) re: [150] Order on Motion for Review, Judge Vaccine Order/Opinion. Signed by Senior Judge Charles F. Lettow. (vas)", + "judges": "Charles F. Lettow", + "summaries": "JUDGE VACCINE REPORTED OPINION (PUBLIC VERSION) re: [150] Order on Motion for Review, Judge Vaccine Order/Opinion", "case_name_shorts": "Herms" }, { @@ -955,8 +955,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-1234", - "judges": "R. Hertling", - "summaries": "UNREPORTED OPINION DISMISSING CASE: The Complaint is DISMISSED without prejudice pursuant to RCFC 12(b)(1) and 12(h)(3). Pursuant to 28 U.S.C. &167; 1915(a)(3), the Court certifies that any appeal filed by the plaintiff would not be taken in good faith. The Clerk is directed to enter judgment. Signed by Judge Richard A. Hertling. (tbss) Service on parties made. Plaintiff served via certified mail 7017-2680-0001-1159-8611 on 8/15/2024.", + "judges": "Richard A. Hertling", + "summaries": "UNREPORTED OPINION DISMISSING CASE: The Complaint is DISMISSED without prejudice pursuant to RCFC 12(b)(1) and 12(h)(3). Pursuant to 28 U.S.C. &167; 1915(a)(3), the Court certifies that any appeal filed by the plaintiff would not be taken in good faith. The Clerk is directed to enter judgment", "case_name_shorts": "Wright" }, { @@ -967,8 +967,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-16", - "judges": "Z. Somers", - "summaries": "REPORTED OPINION. Signed by Judge Zachary N. Somers. (taw) Service on parties made.", + "judges": "Zachary N. Somers", + "summaries": "REPORTED OPINION", "case_name_shorts": "" }, { @@ -979,8 +979,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1728", - "judges": "A. Bonilla", - "summaries": "VACCINE REPORTED OPINION AND ORDER re: [47] VACCINE OPINION AND ORDER: Petitioners&039; motion for review (ECF [43]) is DENIED and the OSM decision (ECF [42]) is SUSTAINED. The Clerk of Court is directed to ENTER Judgment accordingly. Signed by Judge Armando O. Bonilla. (ead) Service on parties made.", + "judges": "Armando O. Bonilla", + "summaries": "VACCINE REPORTED OPINION AND ORDER re: [47] VACCINE OPINION AND ORDER: Petitioners&039; motion for review (ECF [43]) is DENIED and the OSM decision (ECF [42]) is SUSTAINED. The Clerk of Court is directed to ENTER Judgment accordingly", "case_name_shorts": "FELIX" }, { @@ -991,8 +991,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-126", - "judges": "D. Tapp", - "summaries": "REPORTED POST-TRIAL OPINION: The Clerk is directed to enter judgment in favor of United States. Signed by Judge David A. Tapp. (smr) Service on parties made.", + "judges": "David A. Tapp", + "summaries": "REPORTED POST-TRIAL OPINION: The Clerk is directed to enter judgment in favor of United States", "case_name_shorts": "" }, { @@ -1003,8 +1003,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-462", - "judges": "Z. Somers", - "summaries": "REPORTED OPINION. Signed by Judge Zachary N. Somers. (mss) Service on parties made. Modified on 8/14/2024 - updated PDF (jt1).", + "judges": "Zachary N. Somers", + "summaries": "REPORTED OPINION", "case_name_shorts": "" }, { @@ -1015,8 +1015,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-346", - "judges": "E. Bruggink", - "summaries": "UNREPORTED ORDER denying [402] Motion in Limine; granting in part and denying in part [404] Motion in Limine; finding as moot [405] Motion in Limine; denying [408] Motion in Limine; granting in part and denying in part [409] Motion in Limine; finding as moot [410] Motion in Limine; granting [411] Motion in Limine; finding as moot [412].Directing the clerk&039;s office to strike and remove from the docket [442]; [443]; and [466-1]. (Plaintiff&039;s revised memorandum and proffer due by 9/12/2024, Defendant&039;s Response due by 10/3/2024.). Signed by Senior Judge Eric G. Bruggink. (jpk1) Service on parties made.", + "judges": "Eric G. Bruggink", + "summaries": "UNREPORTED ORDER denying [402] Motion in Limine; granting in part and denying in part [404] Motion in Limine; finding as moot [405] Motion in Limine; denying [408] Motion in Limine; granting in part and denying in part [409] Motion in Limine; finding as moot [410] Motion in Limine; granting [411] Motion in Limine; finding as moot [412].Directing the clerk&039;s office to strike and remove from the docket [442]; [443]; and [466-1]. (Plaintiff&039;s revised memorandum and proffer due by 9/12/2024, Defendant&039;s Response due by 10/3/2024", "case_name_shorts": "" }, { @@ -1027,8 +1027,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-1047", - "judges": "E. Bruggink", - "summaries": "UNREPORTED Order Dismissing Case and finding as moot [7] Motion to Dismiss - Rule 12(b)(1) The Clerk is directed to enter judgment. Signed by Senior Judge Eric G. Bruggink. (jpk1) Service on parties made.", + "judges": "Eric G. Bruggink", + "summaries": "UNREPORTED Order Dismissing Case and finding as moot [7] Motion to Dismiss - Rule 12(b)(1) The Clerk is directed to enter judgment", "case_name_shorts": "Baldwin" }, { @@ -1039,8 +1039,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-641", - "judges": "E. Roumel", - "summaries": "REPORTED OPINION granting [8] Defendant&039;s Motion to Dismiss pursuant to Rules 12(b)(1) and 12(h)(3). The Clerk of Court is DIRECTED to enter Judgment accordingly. Signed by Judge Eleni M. Roumel. (lew) Service on parties made.", + "judges": "Eleni M. Roumel", + "summaries": "REPORTED OPINION granting [8] Defendant&039;s Motion to Dismiss pursuant to Rules 12(b)(1) and 12(h)(3). The Clerk of Court is DIRECTED to enter Judgment accordingly", "case_name_shorts": "" }, { @@ -1051,8 +1051,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2201", - "judges": "M. Silfen", - "summaries": "REPORTED OPINION (reissuance of [52] opinion for publication). Signed by Judge Molly R. Silfen. (bp) Service on parties made.", + "judges": "Molly R. Silfen", + "summaries": "REPORTED OPINION (reissuance of [52] opinion for publication", "case_name_shorts": "" }, { @@ -1063,8 +1063,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-135", - "judges": "E. Meyers", - "summaries": "UNREPORTED OPINION AND ORDER denying [31] Motion for Attorney Fees. Signed by Judge Edward H. Meyers. (db) Service on parties made.", + "judges": "Edward H. Meyers", + "summaries": "UNREPORTED OPINION AND ORDER denying [31] Motion for Attorney Fees", "case_name_shorts": "Norager" }, { @@ -1075,8 +1075,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2087", - "judges": "E. Bruggink", - "summaries": "REPORTED OPINION. Signed by Senior Judge Eric G. Bruggink. (jpk1) Service on parties made.", + "judges": "Eric G. Bruggink", + "summaries": "REPORTED OPINION", "case_name_shorts": "" }, { @@ -1087,8 +1087,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-1021", - "judges": "M. Solomson", - "summaries": "UNREPORTED OPINION DISMISSING CASE for lack of subject-matter jurisdiction pursuant to RCFC 12(h)(3). The Clerk of the Court is directed to enter JUDGMENT for the government. Signed by Judge Matthew H. Solomson. (tf) Service on parties made. Plaintiff served via certified mail no. 7018 2290 0000 5183 5654 on this day Modified on 8/7/2024 (vds).", + "judges": "Matthew H. Solomson", + "summaries": "UNREPORTED OPINION DISMISSING CASE for lack of subject-matter jurisdiction pursuant to RCFC 12(h)(3). The Clerk of the Court is directed to enter JUDGMENT for the government", "case_name_shorts": "Ryan" }, { @@ -1099,8 +1099,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-929", - "judges": "M. Silfen", - "summaries": "REPORTED ORDER denying [7] plaintiffs&039; motion for relief from judgment pursuant to Rule 60(b). Signed by Judge Molly R. Silfen. (asw) Service on parties made. Plaintiffs (Richard L. Wagner and Raymond P. Mikolajczyk served via First Class mail on 8/8/24. (tb).", + "judges": "Molly R. Silfen", + "summaries": "REPORTED ORDER denying [7] plaintiffs&039; motion for relief from judgment pursuant to Rule 60(b", "case_name_shorts": "MIKOLAJCZYK" }, { @@ -1111,8 +1111,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-111", - "judges": "R. Holte", - "summaries": "JUDGE VACCINE REPORTED OPINION (PUBLIC VERSION) re: [101] Unreported Judge Vaccine Opinion granting [91] Motion for Review and remanding this case. Signed by Judge Ryan T. Holte. (jf) Service on parties made.", + "judges": "Ryan T. Holte", + "summaries": "JUDGE VACCINE REPORTED OPINION (PUBLIC VERSION) re: [101] Unreported Judge Vaccine Opinion granting [91] Motion for Review and remanding this case", "case_name_shorts": "Hoffman" }, { @@ -1123,8 +1123,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1896", - "judges": "E. Roumel", - "summaries": "UNREPORTED OPINION granting [10] Defendant&039;s Motion to Dismiss pursuant to Rules 12(b)(1), 12(b)(6), and 12(h)(3). Plaintiff&039;s Complaint is dismissed without leave to replead. The Clerk of Court is DIRECTED to enter Judgment accordingly. Signed by Judge Eleni M. Roumel. (cj) Service on parties made.", + "judges": "Eleni M. Roumel", + "summaries": "UNREPORTED OPINION granting [10] Defendant&039;s Motion to Dismiss pursuant to Rules 12(b)(1), 12(b)(6), and 12(h)(3). Plaintiff&039;s Complaint is dismissed without leave to replead. The Clerk of Court is DIRECTED to enter Judgment accordingly", "case_name_shorts": "" }, { @@ -1135,8 +1135,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-372", - "judges": "E. Roumel", - "summaries": "REPORTED OPINION granting [9] Defendant&039;s Motion to Dismiss pursuant to Rule 12(b)(1) and 12(h)(3), and alternatively pursuant to Rule 12(b)(6). The Clerk of Court is directed to enter Judgment accordingly. Signed by Judge Eleni M. Roumel. (lew) Service on parties made. Plaintiff served via Certified Mail 7018 0710 5270 1208 1191 64. Modified on 8/8/2024 (sh).", + "judges": "Eleni M. Roumel", + "summaries": "REPORTED OPINION granting [9] Defendant&039;s Motion to Dismiss pursuant to Rule 12(b)(1) and 12(h)(3), and alternatively pursuant to Rule 12(b)(6). The Clerk of Court is directed to enter Judgment accordingly", "case_name_shorts": "Kicinski" }, { @@ -1147,8 +1147,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1168", - "judges": "E. Meyers", - "summaries": "REPORTED ORDER. [112] Order as Amended on Reconsideration. See also contemporaneously filed [122] Order on Government&039;s motion for reconsideration. Signed by Judge Edward H. Meyers. (cmh) Service on parties made.", + "judges": "Edward H. Meyers", + "summaries": "REPORTED ORDER. [112] Order as Amended on Reconsideration. See also contemporaneously filed [122] Order on Government&039;s motion for reconsideration", "case_name_shorts": "Ford" }, { @@ -1159,8 +1159,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1168", - "judges": "E. Meyers", - "summaries": "UNREPORTED ORDER granting-in-part and denying-in-part [114] Motion for Reconsideration. The court extends the remand of this case until September 30, 2024. Signed by Judge Edward H. Meyers. (cmh) Service on parties made.", + "judges": "Edward H. Meyers", + "summaries": "UNREPORTED ORDER granting-in-part and denying-in-part [114] Motion for Reconsideration. The court extends the remand of this case until September 30, 2024", "case_name_shorts": "Ford" }, { @@ -1171,8 +1171,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-44", - "judges": "R. Holte", - "summaries": "REPORTED OPINION denying [67] Motion for Reconsideration. Signed by Judge Ryan T. Holte. (jf) Service on parties made.", + "judges": "Ryan T. Holte", + "summaries": "REPORTED OPINION denying [67] Motion for Reconsideration", "case_name_shorts": "CAMPO" }, { @@ -1183,8 +1183,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-995", - "judges": "B. Futey", - "summaries": "REPORTED OPINION granting [113] Motion ; on [113] MOTION to Revise Interlocutory Orders Under Rule 54(b) Certain Plaintiffs Motion To Revise Interlocutory Orders Under Rule 54(b) filed by TAMI LUEHR MORTON, HENRY C. KIDWELL, CAROL A. HOUCHENS, DUANE OMAR BURNETT, NOLAN L. SOUSLEY, DARLENE E. BURNETT, RAY E. SOUSLEY, SAMANTHA J. KIDWELL, CATHERINE RACKERS, STANLEY R. DILLON Status Report due by 9/6/2024. Signed by Senior Judge Bohdan A. Futey. (at) Service on parties made. Modified on 8/5/2024 to edit docket text(vds).", + "judges": "Bohdan A. Futey", + "summaries": "REPORTED OPINION granting [113] Motion ; on [113] MOTION to Revise Interlocutory Orders Under Rule 54(b) Certain Plaintiffs Motion To Revise Interlocutory Orders Under Rule 54(b) filed by TAMI LUEHR MORTON, HENRY C. KIDWELL, CAROL A. HOUCHENS, DUANE OMAR BURNETT, NOLAN L. SOUSLEY, DARLENE E. BURNETT, RAY E. SOUSLEY, SAMANTHA J. KIDWELL, CATHERINE RACKERS, STANLEY R. DILLON Status Report due by 9/6/2024", "case_name_shorts": "" }, { @@ -1195,8 +1195,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1168", - "judges": "E. Roumel", - "summaries": "MEMORANDUM AND ORDER denying [35] Plaintiff&039;s Motion for Relief from a Judgment and Order pursuant to Rules 60(b)(1), 60(b)(2), and 60(b)(6). Signed by Judge Eleni M. Roumel. (cj) Service on parties made.", + "judges": "Eleni M. Roumel", + "summaries": "MEMORANDUM AND ORDER denying [35] Plaintiff&039;s Motion for Relief from a Judgment and Order pursuant to Rules 60(b)(1), 60(b)(2), and 60(b)(6", "case_name_shorts": "Starrett" }, { @@ -1207,8 +1207,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-873", - "judges": "Z. Somers", - "summaries": "Order of Dismissal. UNREPORTED OPINION DISMISSING CASE. The Clerk is directed to enter judgment. Signed by Judge Zachary N. Somers. (cas) Service on parties made. Plaintiff served via certified mail 7018-3090-0000-7414-1144 on 8/1/2024.", + "judges": "Zachary N. Somers", + "summaries": "Order of Dismissal. UNREPORTED OPINION DISMISSING CASE. The Clerk is directed to enter judgment", "case_name_shorts": "Santini" }, { @@ -1219,8 +1219,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1471", - "judges": "S. Schwartz", - "summaries": "UNREPORTED OPINION AND ORDER granting [2] Motion for Leave to Proceed in forma pauperis filed by MICHAEL A. ROBINSON; denying without prejudice [8] Motion to Dismiss - Rule 12(b)(1) and (6) filed by USA; filing by my leave Plaintiff&039;s Motion for Leave to File a Sur-Reply received by the Court on July 1, 2024. The Motion is hereby DENIED AS MOOT; Mr. Robinson is ORDERED to file a notice by no later than 10/30/2024 indicating whether he consents to a referral to the Court of Federal Claims Bar Association&039;s program for pro bono representation; staying the case until 10/30/2024. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made. Plaintiff served via first class mail on 8/2/2024.", + "judges": "Stephen S. Schwartz", + "summaries": "UNREPORTED OPINION AND ORDER granting [2] Motion for Leave to Proceed in forma pauperis filed by MICHAEL A. ROBINSON; denying without prejudice [8] Motion to Dismiss - Rule 12(b)(1) and (6) filed by USA; filing by my leave Plaintiff&039;s Motion for Leave to File a Sur-Reply received by the Court on July 1, 2024. The Motion is hereby DENIED AS MOOT; Mr. Robinson is ORDERED to file a notice by no later than 10/30/2024 indicating whether he consents to a referral to the Court of Federal Claims Bar Association&039;s program for pro bono representation; staying the case until 10/30/2024", "case_name_shorts": "Robinson" }, { @@ -1231,8 +1231,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1099", - "judges": "R. Hertling", - "summaries": "REPORTED OPINION on [135] MOTION to Dismiss: The plaintiffs shall move for leave to file a third amended complaint no later than 9/30/2024. If the plaintiffs file a motion for leave to file a third amended complaint, the defendant shall file its response by 10/28/2024, and the plaintiffs shall file any reply by 11/12/2024. The grant of the defendant&039;s [135] motion to dismiss the second amended complaint is DEFERRED pending the filing and resolution of any timely motion the plaintiffs file for leave to amend the complaint. The plaintiffs&039; [136] motion for leave to amend the second amended complaint is DENIED as moot. Signed by Judge Richard A. Hertling. (lw) Service on parties made.", + "judges": "Richard A. Hertling", + "summaries": "REPORTED OPINION on [135] MOTION to Dismiss: The plaintiffs shall move for leave to file a third amended complaint no later than 9/30/2024. If the plaintiffs file a motion for leave to file a third amended complaint, the defendant shall file its response by 10/28/2024, and the plaintiffs shall file any reply by 11/12/2024. The grant of the defendant&039;s [135] motion to dismiss the second amended complaint is DEFERRED pending the filing and resolution of any timely motion the plaintiffs file for leave to amend the complaint. The plaintiffs&039; [136] motion for leave to amend the second amended complaint is DENIED as moot", "case_name_shorts": "" }, { @@ -1243,8 +1243,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-919", - "judges": "M. Solomson", - "summaries": "UNREPORTED ORDER DISMISSING IN PART Plaintiff&039;s complaint. All claims except the potential illegal exaction claim are dismissed for lack of subject matter jurisdiction pursuant to RCFC 12(h)(3). Plaintiff may file an amended complaint on or before September 30, 2024, addressing only the illegal exaction claim, and shall include copies of any utility bills or other evidence directly related to this claim. Signed by Judge Matthew H. Solomson. (tf) Service on parties made. Plaintiff served via Certified mail 7018 2290 0000 5183 4770 on 08.02.2024 (mjk). Modified on 8/2/2024 (mjk).", + "judges": "Matthew H. Solomson", + "summaries": "UNREPORTED ORDER DISMISSING IN PART Plaintiff&039;s complaint. All claims except the potential illegal exaction claim are dismissed for lack of subject matter jurisdiction pursuant to RCFC 12(h)(3). Plaintiff may file an amended complaint on or before September 30, 2024, addressing only the illegal exaction claim, and shall include copies of any utility bills or other evidence directly related to this claim", "case_name_shorts": "" }, { @@ -1255,8 +1255,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-723", - "judges": "M. Solomson", - "summaries": "UNREPORTED OPINION DISMISSING CASE for lack of subject-matter jurisdiction pursuant to RCFC 12(h)(3). The Clerk of the Court is directed to enter judgment for the government, dismissing this case. Signed by Judge Matthew H. Solomson. (tf) Service on parties made. Plaintiff served certified mail 7018 2290 0000 5183 6866 on 8/1/24. (tb).", + "judges": "Matthew H. Solomson", + "summaries": "UNREPORTED OPINION DISMISSING CASE for lack of subject-matter jurisdiction pursuant to RCFC 12(h)(3). The Clerk of the Court is directed to enter judgment for the government, dismissing this case", "case_name_shorts": "Housey-Neville" }, { @@ -1267,8 +1267,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-819", - "judges": "E. Bruggink", - "summaries": "UNREPORTED Order on [9] MOTION to Dismiss pursuant to Rule 12(b)(1) for Lack of Subject Matter Jurisdiction filed by USA, [2] MOTION to Seal Document [1] Complaint, filed by BRIAN LEE ROLAND finding as moot [9] Motion to Dismiss The Clerk is directed to enter judgment. Signed by Senior Judge Eric G. Bruggink. (jpk1) Service on parties made. Plaintiff served via certified mail no. 7017 0190 0000 4739 5740 Modified on 7/31/2024 (vds).", + "judges": "Eric G. Bruggink", + "summaries": "UNREPORTED Order on [9] MOTION to Dismiss pursuant to Rule 12(b)(1) for Lack of Subject Matter Jurisdiction filed by USA, [2] MOTION to Seal Document [1] Complaint, filed by BRIAN LEE ROLAND finding as moot [9] Motion to Dismiss The Clerk is directed to enter judgment", "case_name_shorts": "Roland" }, { @@ -1279,8 +1279,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-811", - "judges": "E. Bruggink", - "summaries": "UNREPORTED ORDER denying [30] Motion for Reconsideration filed by LARRY GOLDEN and allowing filed motion for status update (received on 7/17/2024), and denying it as moot.. Signed by Senior Judge Eric G. Bruggink. (jpk1) Service on parties made. Plaintiff served via First Class Mail on 08/02/2024 (km1).", + "judges": "Eric G. Bruggink", + "summaries": "UNREPORTED ORDER denying [30] Motion for Reconsideration filed by LARRY GOLDEN and allowing filed motion for status update (received on 7/17/2024), and denying it as moot", "case_name_shorts": "Golden" }, { @@ -1291,8 +1291,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1209", - "judges": "K. Davis", - "summaries": "REPORTED OPINION AND ORDER. The parties shall file a joint notice by no later than 8/5/2024 setting forth the total amount that should be awarded on Plaintiff&039;s disputed damages claim consistent with this opinion and the parties&039; Joint Stipulation [81]. Signed by Judge Kathryn C. Davis. (ks) Service on parties made.", + "judges": "Kathryn C. Davis", + "summaries": "REPORTED OPINION AND ORDER. The parties shall file a joint notice by no later than 8/5/2024 setting forth the total amount that should be awarded on Plaintiff&039;s disputed damages claim consistent with this opinion and the parties&039; Joint Stipulation [81]", "case_name_shorts": "" }, { @@ -1303,8 +1303,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "15-501", - "judges": "C. Lettow", - "summaries": "REPORTED OPINION, granting [650] Motion to Stay, deferring ruling on [644] Motion for Partial Summary Judgment. The parties shall file a joint status report within ten business days after the final determination in the ex parte proceedings. Signed by Senior Judge Charles F. Lettow. (khp)", + "judges": "Charles F. Lettow", + "summaries": "REPORTED OPINION, granting [650] Motion to Stay, deferring ruling on [644] Motion for Partial Summary Judgment. The parties shall file a joint status report within ten business days after the final determination in the ex parte proceedings", "case_name_shorts": "" }, { @@ -1315,8 +1315,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-511", - "judges": "P. Hadji", - "summaries": "UNREPORTED OPINION: The Government&039;s Motion for Summary Dismissal [8] is GRANTED. Plaintiff&039;s Motion to Proceed in Forma Pauperis [2] and remaining pending motions [13] and [14] are thus DENIED as moot. Due to the inclusion of personally identifiable information, the Clerk of Court is DIRECTED to seal Plaintiff&039;s Motion for Leave to File Motion to Produce [13] pursuant to Rule 5.2. The Clerk is further directed to enter judgment accordingly. Signed by Judge Philip S. Hadji. (mcb) Service on parties made.", + "judges": "Philip S. Hadji", + "summaries": "UNREPORTED OPINION: The Government&039;s Motion for Summary Dismissal [8] is GRANTED. Plaintiff&039;s Motion to Proceed in Forma Pauperis [2] and remaining pending motions [13] and [14] are thus DENIED as moot. Due to the inclusion of personally identifiable information, the Clerk of Court is DIRECTED to seal Plaintiff&039;s Motion for Leave to File Motion to Produce [13] pursuant to Rule 5.2. The Clerk is further directed to enter judgment accordingly", "case_name_shorts": "" }, { @@ -1327,8 +1327,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-1020", - "judges": "C. Lerner", - "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE and DENYING [6] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment. Signed by Judge Carolyn N. Lerner. (tsr) Service on parties made. Plaintiff served via certified mail no. 7017 0190 0000 4739 5733 Modified on 7/30/2024 (vds). Plaintiff re-served at SCI Mahanoy 301 Grey Line Drive, Frackville, PA address on this day. Modified on 7/31/2024 (vds).", + "judges": "Carolyn N. Lerner", + "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE and DENYING [6] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment", "case_name_shorts": "Muhammad" }, { @@ -1339,8 +1339,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2035", - "judges": "K. Davis", - "summaries": "RE-DOCKETED [15] FOR POSTING TO THE COURT&039;S WEBSITE ORDER granting [8] Motion to Dismiss - Rule 12(b)(1); granting [12] Plaintiff&039;s Surreply; granting [13] Plaintiff&039;s Motion for Leave to File Surreply. Signed by Judge Kathryn C. Davis.(sh) Service on parties made.", + "judges": "Kathryn C. Davis", + "summaries": "RE-DOCKETED [15] FOR POSTING TO THE COURT&039;S WEBSITE ORDER granting [8] Motion to Dismiss - Rule 12(b)(1); granting [12] Plaintiff&039;s Surreply; granting [13] Plaintiff&039;s Motion for Leave to File Surreply", "case_name_shorts": "Gordon" }, { @@ -1351,8 +1351,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1061", - "judges": "K. Davis", - "summaries": "REPORTED OPINION AND ORDER DISMISSING CASE. [6] MOTION to Dismiss pursuant to Rule 12(b)(6) is GRANTED. The Clerk is directed to enter judgment. Signed by Judge Kathryn C. Davis. (ebl) Service on parties made.", + "judges": "Kathryn C. Davis", + "summaries": "REPORTED OPINION AND ORDER DISMISSING CASE. [6] MOTION to Dismiss pursuant to Rule 12(b)(6) is GRANTED. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -1363,8 +1363,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1876", - "judges": "R. Hertling", - "summaries": "REPORTED OPINION denying [7] Defendant&039;s Motion to Dismiss - Rule 12(b)(1). Signed by Judge Richard A. Hertling. (tbss) Service on parties made. (Main Document 18 replaced on 7/24/2024 to correct a typographical error) (aoc). Modified on 7/24/2024 (aoc).", + "judges": "Richard A. Hertling", + "summaries": "REPORTED OPINION denying [7] Defendant&039;s Motion to Dismiss - Rule 12(b)(1", "case_name_shorts": "" }, { @@ -1375,8 +1375,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-290", - "judges": "C. Lerner", - "summaries": "UNREPORTED OPINION DISMISSING CASE and GRANTING [7] Motion to Dismiss - Rule 12(b)(1) and (6). The Clerk is directed to enter judgment. Signed by Judge Carolyn N. Lerner. (btd) Service on parties made.", + "judges": "Carolyn N. Lerner", + "summaries": "UNREPORTED OPINION DISMISSING CASE and GRANTING [7] Motion to Dismiss - Rule 12(b)(1) and (6). The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -1387,8 +1387,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-357", - "judges": "D. Tapp", - "summaries": "REPORTED OPINION. ECF No. 54 reissued. Signed by Judge David A. Tapp. (smr) Service on parties made.", + "judges": "David A. Tapp", + "summaries": "REPORTED OPINION. ECF No. 54 reissued", "case_name_shorts": "" }, { @@ -1399,8 +1399,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-698", - "judges": "D. Tapp", - "summaries": "REPORTED OPINION: ECF No. [27] reissued. Signed by Judge David A. Tapp. (emc) Service on parties made.", + "judges": "David A. Tapp", + "summaries": "REPORTED OPINION: ECF No. [27] reissued", "case_name_shorts": "" }, { @@ -1411,8 +1411,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-63", - "judges": "T. Dietz", - "summaries": "REPORTED OPINION and ORDER. Unsealed public redacted version of [67] OPINION AND ORDER denying [56] Plaintiff&039;s Motion for Judgment on the Administrative Record ("MJAR"); granting [58] Defendant-Intervenor&039;s Cross-MJAR; granting [59] Defendant&039;s Cross-MJAR. Signed by Judge Thompson M. Dietz. (ktl) Service on parties made.", + "judges": "Thompson M. Dietz", + "summaries": "REPORTED OPINION and ORDER. Unsealed public redacted version of [67] OPINION AND ORDER denying [56] Plaintiff&039;s Motion for Judgment on the Administrative Record ("MJAR"); granting [58] Defendant-Intervenor&039;s Cross-MJAR; granting [59] Defendant&039;s Cross-MJAR", "case_name_shorts": "" }, { @@ -1423,8 +1423,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-520", - "judges": "S. Schwartz", - "summaries": "REPORTED FINDINGS OF FACT AND CONCLUSIONS OF LAW (re-issuance of redacted version of the May 23, 2024 Sealed Findings of Fact and Conclusions of Law for Publication (ECF No. 136). Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made.", + "judges": "Stephen S. Schwartz", + "summaries": "REPORTED FINDINGS OF FACT AND CONCLUSIONS OF LAW (re-issuance of redacted version of the May 23, 2024 Sealed Findings of Fact and Conclusions of Law for Publication (ECF No. 136", "case_name_shorts": "AITKEN" }, { @@ -1435,8 +1435,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-932", - "judges": "R. Holte", - "summaries": "REPORTED OPINION AND ORDER finding as moot [115] Motion for Partial Summary Judgment; granting [146] Motion for Partial Summary Judgment. The Court dismisses plaintiff&039;s request for any lost profits damages, as inlcuded in counts III and IV. Joint Status Report due on or before 8/16/2024. Signed by Judge Ryan T. Holte. (AJK) Service on parties made.", + "judges": "Ryan T. Holte", + "summaries": "REPORTED OPINION AND ORDER finding as moot [115] Motion for Partial Summary Judgment; granting [146] Motion for Partial Summary Judgment. The Court dismisses plaintiff&039;s request for any lost profits damages, as inlcuded in counts III and IV. Joint Status Report due on or before 8/16/2024", "case_name_shorts": "" }, { @@ -1447,8 +1447,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-968", - "judges": "D. Tapp", - "summaries": "UNREPORTED OPINION: granting [2] Motion for Leave to Proceed in forma pauperis. The Clerk is Directed to Reject any future submissions in this case unless they comply with this Courts rules regarding post-dismissal submissions. The Clerk is directed to ENTER judgment DISMISSING Plaintiff&039;s [1] Complaint for lack of subject-matter jurisdiction, pursuant to RCFC 12(h)(3). Signed by Judge David A. Tapp. (smr) Service on parties made. Modified on 7/31/2024 (aoc).", + "judges": "David A. Tapp", + "summaries": "UNREPORTED OPINION: granting [2] Motion for Leave to Proceed in forma pauperis. The Clerk is Directed to Reject any future submissions in this case unless they comply with this Courts rules regarding post-dismissal submissions. The Clerk is directed to ENTER judgment DISMISSING Plaintiff&039;s [1] Complaint for lack of subject-matter jurisdiction, pursuant to RCFC 12(h)(3", "case_name_shorts": "Rouzard" }, { @@ -1459,8 +1459,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-160", - "judges": "K. Davis", - "summaries": "REPORTED OPINION of the Court&039;s [35] Sealed Opinion. Signed by Judge Kathryn C. Davis. (ks) Service on parties made.", + "judges": "Kathryn C. Davis", + "summaries": "REPORTED OPINION of the Court&039;s [35] Sealed Opinion", "case_name_shorts": "" }, { @@ -1471,8 +1471,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-77", - "judges": "D. Tapp", - "summaries": "RE-DOCKETED FOR PUBLICATION. MEMORANDUM OPINION AND ORDER denying [32] MOTION to Dismiss pursuant to Rule 12(b)(1); SCHEDULING ORDER: Answer due 8/13/2024. Joint Preliminary Status Report due 9/10/2024. Discovery closes 11/8/2024. Joint Status Report due 11/12/2024. Status Conference scheduled for 11/14/2024 at 1:00 p.m. ET in Chambers (Telephonic). Signed by Judge David A. Tapp. (emc) (jt1) Service on parties made.", + "judges": "David A. Tapp", + "summaries": "RE-DOCKETED FOR PUBLICATION. MEMORANDUM OPINION AND ORDER denying [32] MOTION to Dismiss pursuant to Rule 12(b)(1); SCHEDULING ORDER: Answer due 8/13/2024. Joint Preliminary Status Report due 9/10/2024. Discovery closes 11/8/2024. Joint Status Report due 11/12/2024. Status Conference scheduled for 11/14/2024 at 1:00 p.m. ET in Chambers (Telephonic", "case_name_shorts": "" }, { @@ -1483,8 +1483,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-365", - "judges": "C. Lettow", - "summaries": "REPORTED OPINION (Reissued as Public Version of June 27, 2024 Opinion). Signed by Senior Judge Charles F. Lettow. (vas)", + "judges": "Charles F. Lettow", + "summaries": "REPORTED OPINION (Reissued as Public Version of June 27, 2024 Opinion", "case_name_shorts": "" }, { @@ -1495,8 +1495,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-860", - "judges": "M. Solomson", - "summaries": "UNREPORTED OPINION AND ORDER TO SHOW CAUSE denying [34] MOTION to Compel Utility&039;s equipment records filed by USA, granting in part and denying in part [35] MOTION to Compel filed by UTILITY CONSTRUCTION COMPANY, INC. Supplemental discovery responses as described herein due July 19, 2024. Supplemental response as described herein due July 25, 2024. Furthermore, the government is ordered to SHOW CAUSE for why it should not be sanctioned pursuant to: (1) RCFC 26(g)(3) for withholding documents without any basis in law or fact; (2) RCFC 11 for the governments explanation for invoking the privilege as represented to the Court in the governments response to Utility&039;s motion to compel; or (3) 28 U.S.C. &167; 1927 for the totality of the government&039;s conduct surrounding its invocation of the deliberative process privilege. Show cause filing due August 2, 2024. Utility may file a response to the government&039;s show cause filing on or before August 9, 2024. Signed by Judge Matthew H. Solomson. (tf) Service on parties made.", + "judges": "Matthew H. Solomson", + "summaries": "UNREPORTED OPINION AND ORDER TO SHOW CAUSE denying [34] MOTION to Compel Utility&039;s equipment records filed by USA, granting in part and denying in part [35] MOTION to Compel filed by UTILITY CONSTRUCTION COMPANY, INC. Supplemental discovery responses as described herein due July 19, 2024. Supplemental response as described herein due July 25, 2024. Furthermore, the government is ordered to SHOW CAUSE for why it should not be sanctioned pursuant to: (1) RCFC 26(g)(3) for withholding documents without any basis in law or fact; (2) RCFC 11 for the governments explanation for invoking the privilege as represented to the Court in the governments response to Utility&039;s motion to compel; or (3) 28 U.S.C. &167; 1927 for the totality of the government&039;s conduct surrounding its invocation of the deliberative process privilege. Show cause filing due August 2, 2024. Utility may file a response to the government&039;s show cause filing on or before August 9, 2024", "case_name_shorts": "" }, { @@ -1507,8 +1507,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-368", - "judges": "E. Kaplan", - "summaries": "REPORTED ORDER denying [46] Def&039;s Motion for Summary Judgment. Joint proposed pretrial scheduling order due by 7/26/2024. Signed by Chief Judge Elaine D. Kaplan. (tbs) Service on parties made.", + "judges": "Elaine D. Kaplan", + "summaries": "REPORTED ORDER denying [46] Def&039;s Motion for Summary Judgment. Joint proposed pretrial scheduling order due by 7/26/2024", "case_name_shorts": "" }, { @@ -1519,8 +1519,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-529", - "judges": "K. Davis", - "summaries": "REPORTED OPINION of the Court&039;s [29] Sealed Opinion. Joint Status Report due by 8/15/2024. Signed by Judge Kathryn C. Davis. (ks) Service on parties made.", + "judges": "Kathryn C. Davis", + "summaries": "REPORTED OPINION of the Court&039;s [29] Sealed Opinion. Joint Status Report due by 8/15/2024", "case_name_shorts": "" }, { @@ -1531,8 +1531,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1812", - "judges": "R. Holte", - "summaries": "OPINION AND ORDER. Unsealed public version of [342] Sealed Order denying [299] Motion to Compel. Signed by Judge Ryan T. Holte. (jf) Service on parties made.", + "judges": "Ryan T. Holte", + "summaries": "OPINION AND ORDER. Unsealed public version of [342] Sealed Order denying [299] Motion to Compel", "case_name_shorts": "" }, { @@ -1543,8 +1543,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-693", - "judges": "M. Solomson", - "summaries": "OPINION AND ORDER. With respect to SLICOM, Case No. 24-493C, the Court GRANTS [103] the government&039;s and [101] ISI-Markon&039;s cross-MJARs and, accordingly, DENIES [97] SLICOM&039;s MJAR. The Clerk is directed to enter JUDGMENT for the government and ISI-Markon, dismissing [98] SLICOM&039;s amended complaint. The Court STAYS AccelGov&039;s case, Case No. 23-693C, until and including September 25, 2024. Pursuant to RCFC 52.2, the Court remands Case No. 23-693C to the Agency in accordance with this opinion and order. The [96][102] pending MJARs in that case are DENIED as MOOT. The parties shall file a joint status report on or before October 9, 2024, indicating how they wish to proceed. Signed by Judge Matthew H. Solomson. (ab) Service on parties made. The United States is directed to provide a copy of this order to Agency counsel and the contracting officer, which shall constitute service pursuant to that rule. Modified on 8/14/2024 (vds).", + "judges": "Matthew H. Solomson", + "summaries": "OPINION AND ORDER. With respect to SLICOM, Case No. 24-493C, the Court GRANTS [103] the government&039;s and [101] ISI-Markon&039;s cross-MJARs and, accordingly, DENIES [97] SLICOM&039;s MJAR. The Clerk is directed to enter JUDGMENT for the government and ISI-Markon, dismissing [98] SLICOM&039;s amended complaint. The Court STAYS AccelGov&039;s case, Case No. 23-693C, until and including September 25, 2024. Pursuant to RCFC 52.2, the Court remands Case No. 23-693C to the Agency in accordance with this opinion and order. The [96][102] pending MJARs in that case are DENIED as MOOT. The parties shall file a joint status report on or before October 9, 2024, indicating how they wish to proceed", "case_name_shorts": "" }, { @@ -1555,8 +1555,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1539", - "judges": "E. Bruggink", - "summaries": "UNREPORTED ORDER denying [93] Motion for Attorney Fees; on [93] MOTION for Attorney Fees filed by PLATINUM SERVICES, INC.. Signed by Senior Judge Eric G. Bruggink. (jpk1) Service on parties made.", + "judges": "Eric G. Bruggink", + "summaries": "UNREPORTED ORDER denying [93] Motion for Attorney Fees; on [93] MOTION for Attorney Fees filed by PLATINUM SERVICES, INC", "case_name_shorts": "" }, { @@ -1567,8 +1567,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-476", - "judges": "K. Davis", - "summaries": "UNREPORTED ORDER DISMISSING CASE, granting [9] MOTION to Dismiss, and granting [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment. Signed by Judge Kathryn C. Davis. (ebl) Service on parties made. (Main Document 12 replaced on 7/10/2024 to correct typo in PDF) (ar). Plaintiff served via First Class mail on 7/11/24. (tb).", + "judges": "Kathryn C. Davis", + "summaries": "UNREPORTED ORDER DISMISSING CASE, granting [9] MOTION to Dismiss, and granting [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment", "case_name_shorts": "Gaddis" }, { @@ -1579,8 +1579,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-676", - "judges": "S. Schwartz", - "summaries": "REDOCKETED FOR PUBLICATION [76] REPORTED OPINION AND ORDER (Unclassified). Signed by Judge Stephen S. Schwartz. (jwg) Service on parties made.", + "judges": "Stephen S. Schwartz", + "summaries": "REDOCKETED FOR PUBLICATION [76] REPORTED OPINION AND ORDER (Unclassified", "case_name_shorts": "" }, { @@ -1591,8 +1591,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1937", - "judges": "E. Meyers", - "summaries": "UNREPORTED OPINION DISMISSING CASE; ORDER granting [7] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment. Signed by Judge Edward H. Meyers. (cmh) Service on parties made. Plaintiff served via First Class mail on 7/10/24. (tb).", + "judges": "Edward H. Meyers", + "summaries": "UNREPORTED OPINION DISMISSING CASE; ORDER granting [7] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment", "case_name_shorts": "Abdush-Shakur" }, { @@ -1603,8 +1603,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-40", - "judges": "P. Hadji", - "summaries": "UNREPORTED OPINION DISMISSING CASE. The Government&039;s [75] Motion to Dismiss is GRANTED. Plaintiff&039;s [49] Motion for Judgment on Remand is DENIED as moot. The Clerk is directed to enter judgment. Signed by Judge Philip S. Hadji. (lrf) Service on parties made. Mailed via first class mail on 7/3/24.", + "judges": "Philip S. Hadji", + "summaries": "UNREPORTED OPINION DISMISSING CASE. The Government&039;s [75] Motion to Dismiss is GRANTED. Plaintiff&039;s [49] Motion for Judgment on Remand is DENIED as moot. The Clerk is directed to enter judgment", "case_name_shorts": "Roman" }, { @@ -1615,8 +1615,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1586", - "judges": "P. Hadji", - "summaries": "UNREPORTED OPINION: Plaintiff District of Columbia Water and Sewer Authority is awarded damages in the amount of &036;633,150.91. The Clerk is directed to enter judgment accordingly. Signed by Judge Philip S. Hadji. (mcb) Service on parties made.", + "judges": "Philip S. Hadji", + "summaries": "UNREPORTED OPINION: Plaintiff District of Columbia Water and Sewer Authority is awarded damages in the amount of &036;633,150.91. The Clerk is directed to enter judgment accordingly", "case_name_shorts": "" }, { @@ -1627,8 +1627,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2047", - "judges": "L. Smith", - "summaries": "REPORTED OPINION reissuing [49] SEALED OPINION. Signed by Senior Judge Loren A. Smith. (ajd) Service on parties made.", + "judges": "Loren A. Smith", + "summaries": "REPORTED OPINION reissuing [49] SEALED OPINION", "case_name_shorts": "" }, { @@ -1639,8 +1639,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2016", - "judges": "R. Hertling", - "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: The defendant&039;s [10] Motion to Dismiss pursuant to Rules 12 (b)(1) and (6) is GRANTED. The Clerk is DIRECTED to enter judgment accordingly. Signed by Judge Richard A. Hertling. (tbss) Service on parties made. Plaintiff served via certified mail 7017-2680-0001-1159-8468 on 07/02/2024.", + "judges": "Richard A. Hertling", + "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: The defendant&039;s [10] Motion to Dismiss pursuant to Rules 12 (b)(1) and (6) is GRANTED. The Clerk is DIRECTED to enter judgment accordingly", "case_name_shorts": "Dillon" }, { @@ -1651,8 +1651,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-563", - "judges": "E. Meyers", - "summaries": "REPORTED ORDER. OPINION AND ORDER [45] AS AMENDED ON RECONSIDERATION granting-in-part [29] Motion to Dismiss; denying [19] Motion to Dismiss; granting-in-part [22] Cross-Motion for Judgment on the Administrative Record; and remanding to the BCNR. See also [61] Order on Motion for Reconsideration. The Clerk is DIRECTED to serve a copy of this Order along with [61] Order on the BCNR. Signed by Judge Edward H. Meyers. (cmh) Service on parties made.", + "judges": "Edward H. Meyers", + "summaries": "REPORTED ORDER. OPINION AND ORDER [45] AS AMENDED ON RECONSIDERATION granting-in-part [29] Motion to Dismiss; denying [19] Motion to Dismiss; granting-in-part [22] Cross-Motion for Judgment on the Administrative Record; and remanding to the BCNR. See also [61] Order on Motion for Reconsideration. The Clerk is DIRECTED to serve a copy of this Order along with [61] Order on the BCNR", "case_name_shorts": "Pope" }, { @@ -1663,8 +1663,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-563", - "judges": "E. Meyers", - "summaries": "REPORTED ORDER granting-in-part and denying-in-part [48] Motion for Reconsideration; ORDER Remanding Case to the BCNR for a period of no more than 75 days; ORDER Vacating-in-part the court&039;s prior [45] Order. The Clerk is DIRECTED to serve this Order on the BCNR. See Order for Full Text. (Remand ends by 9/11/2024; Government Status Report due by 8/28/2024). Signed by Judge Edward H. Meyers. (cmh) Service on parties made.", + "judges": "Edward H. Meyers", + "summaries": "REPORTED ORDER granting-in-part and denying-in-part [48] Motion for Reconsideration; ORDER Remanding Case to the BCNR for a period of no more than 75 days; ORDER Vacating-in-part the court&039;s prior [45] Order. The Clerk is DIRECTED to serve this Order on the BCNR. See Order for Full Text. (Remand ends by 9/11/2024; Government Status Report due by 8/28/2024", "case_name_shorts": "Pope" }, { @@ -1675,8 +1675,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "13-834", - "judges": "E. Bruggink", - "summaries": "REPORTED OPINION DISMISSING CASE. finding as moot [205] Motion to Dismiss - Rule 12(b)(1); finding as moot [242] Motion for Leave to File; finding as moot [243] Motion to Strike; granting [295] MOTION for Entry of Judgment Pursuant to Mandate of the Court of Appeals. Signed by Senior Judge Eric G. Bruggink. (cc) Service on parties made.", + "judges": "Eric G. Bruggink", + "summaries": "REPORTED OPINION DISMISSING CASE. finding as moot [205] Motion to Dismiss - Rule 12(b)(1); finding as moot [242] Motion for Leave to File; finding as moot [243] Motion to Strike; granting [295] MOTION for Entry of Judgment Pursuant to Mandate of the Court of Appeals", "case_name_shorts": "MARTIN" }, { @@ -1687,8 +1687,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1701", - "judges": "E. Meyers", - "summaries": "UNREPORTED ORDER. ORDER STAYING CASE; ORDER granting-in-part [11] Motion to Dismiss. Signed by Judge Edward H. Meyers. (cmh) Service on parties made.", + "judges": "Edward H. Meyers", + "summaries": "UNREPORTED ORDER. ORDER STAYING CASE; ORDER granting-in-part [11] Motion to Dismiss", "case_name_shorts": "Feinsod" }, { @@ -1699,8 +1699,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-940", - "judges": "M. Silfen", - "summaries": "REPORTED OPINION DISMISSING CASE. Plaintiff&039;s complaint is dismissed sua sponte for lack of subject matter jurisdiction pursuant to RCFC 12(h)(3). The Clerk is directed to enter judgment. Signed by Judge Molly R. Silfen. (bp). Service on parties made. Plaintiff served via certified mail, 7018 0040 0001 1393 3765. (rp)", + "judges": "Molly R. Silfen", + "summaries": "REPORTED OPINION DISMISSING CASE. Plaintiff&039;s complaint is dismissed sua sponte for lack of subject matter jurisdiction pursuant to RCFC 12(h)(3). The Clerk is directed to enter judgment", "case_name_shorts": "Clisbee" }, { @@ -1711,8 +1711,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1884", - "judges": "E. Meyers", - "summaries": "UNREPORTED Opinion/Order granting [7] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment. Signed by Judge Edward H. Meyers. (db) Service on parties made.", + "judges": "Edward H. Meyers", + "summaries": "UNREPORTED Opinion/Order granting [7] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment", "case_name_shorts": "Boultbee" }, { @@ -1723,8 +1723,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-929", - "judges": "M. Silfen", - "summaries": "REPORTED OPINION. Plaintiffs&039; complaint is dismissed sua sponte for lack of subject matter jurisdiction pursuant to RCFC 12(h)(3). The Clerk is directed to enter judgment. Signed by Judge Molly R. Silfen. (asw) Service on parties made. Plaintiffs Raymond P. Mikolajczyk 7018 0040 0001 1393 3413 and Richard L. Wagner 7018 2290 0000 5183 4084, served via certified mail on this day. Modified on 6/26/2024 (vds). Plaintiff Richard L. Wagner re-served via certified mail no. 7018 2290 0000 5183 5630 on this day to P.O. Box 72836, Fairbanks, AK 99707 Modified on 8/6/2024 (vds).", + "judges": "Molly R. Silfen", + "summaries": "REPORTED OPINION. Plaintiffs&039; complaint is dismissed sua sponte for lack of subject matter jurisdiction pursuant to RCFC 12(h)(3). The Clerk is directed to enter judgment", "case_name_shorts": "MIKOLAJCZYK" }, { @@ -1735,8 +1735,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1964", - "judges": "M. Sweeney", - "summaries": "REPORTED OPINION and ORDER denying [161] Motion for Partial Summary Judgment filed by USA. Signed by Senior Judge Margaret M. Sweeney. (jb2) Service on parties made.", + "judges": "Margaret M. Sweeney", + "summaries": "REPORTED OPINION and ORDER denying [161] Motion for Partial Summary Judgment filed by USA", "case_name_shorts": "PRESSLY" }, { @@ -1747,8 +1747,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-308", - "judges": "A. Bonilla", - "summaries": "REPORTED OPINION AND ORDER: Defendant&039;s motion to dismiss plaintiffs&039; complaint for lack of subject matter jurisdiction (ECF [9]) is GRANTED and plaintiffs&039; complaint is hereby DISMISSED. The Clerk of Court is directed to ENTER judgment accordingly. No costs. Signed by Judge Armando O. Bonilla. (ead) Service on parties made. Plaintiff served certified mail 7018 0040 0001 1393 2706", + "judges": "Armando O. Bonilla", + "summaries": "REPORTED OPINION AND ORDER: Defendant&039;s motion to dismiss plaintiffs&039; complaint for lack of subject matter jurisdiction (ECF [9]) is GRANTED and plaintiffs&039; complaint is hereby DISMISSED. The Clerk of Court is directed to ENTER judgment accordingly. No costs", "case_name_shorts": "PEDROZA" }, { @@ -1759,8 +1759,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-549", - "judges": "K. Davis", - "summaries": "REPORTED OPINION denying [75] Motion for Attorney&039;s Fees. Signed by Judge Kathryn C. Davis. (sbw) Service on parties made. Plaintiff served via first class mail on 06.26.2024 (mjk). Modified on 6/26/2024 (mjk).", + "judges": "Kathryn C. Davis", + "summaries": "REPORTED OPINION denying [75] Motion for Attorney&039;s Fees", "case_name_shorts": "Marshall" }, { @@ -1771,8 +1771,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-800", - "judges": "M. Sweeney", - "summaries": "REPORTED OPINION DISMISSING CASE. on [15] MOTION to Dismiss pursuant to Rules 12 (b)(1) and (6) filed by USA, granting [15] Motion to Dismiss - Rule 12(b)(1) and (6). The court DISMISSES Counts I, II, and V of Mr. Angel&039;s complaint for lack of subject-matter jurisdiction, WITHOUT PREJUDICE, or, in the alternative, under RCFC 12(b)(6) for failure to state a claim upon which relief can be granted. The court DISMISSES Count III of Mr. Angel&039;s complaint for lack of subject-matter jurisdiction, WITHOUT PREJUDICE. The court DISMISSES Count IV of Mr. Angel&039;s complaint for failure to state a claim upon which relief can be granted, WITH PREJUDICE. The Clerk is directed to enter judgment. Signed by Senior Judge Margaret M. Sweeney. (jb2) Service on parties made.", + "judges": "Margaret M. Sweeney", + "summaries": "REPORTED OPINION DISMISSING CASE. on [15] MOTION to Dismiss pursuant to Rules 12 (b)(1) and (6) filed by USA, granting [15] Motion to Dismiss - Rule 12(b)(1) and (6). The court DISMISSES Counts I, II, and V of Mr. Angel&039;s complaint for lack of subject-matter jurisdiction, WITHOUT PREJUDICE, or, in the alternative, under RCFC 12(b)(6) for failure to state a claim upon which relief can be granted. The court DISMISSES Count III of Mr. Angel&039;s complaint for lack of subject-matter jurisdiction, WITHOUT PREJUDICE. The court DISMISSES Count IV of Mr. Angel&039;s complaint for failure to state a claim upon which relief can be granted, WITH PREJUDICE. The Clerk is directed to enter judgment", "case_name_shorts": "Angel" }, { @@ -1783,8 +1783,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-79", - "judges": "C. Lettow", - "summaries": "REPORTED OPINION AND ORDER. Unsealed public redacted version of [33] ORDER granting in part and denying in part [24] plaintiff&039;s Motion for Judgment on the Record; granting in part and denying in part [27] defendant&039;s Cross Motion; REMANDING case to USAID. This case is STAYED during the remand period. Agency decision on remand due by 8/8/2024. Status Report due by 8/13/2024. Signed by Senior Judge Charles F. Lettow. (khp)", + "judges": "Charles F. Lettow", + "summaries": "REPORTED OPINION AND ORDER. Unsealed public redacted version of [33] ORDER granting in part and denying in part [24] plaintiff&039;s Motion for Judgment on the Record; granting in part and denying in part [27] defendant&039;s Cross Motion; REMANDING case to USAID. This case is STAYED during the remand period. Agency decision on remand due by 8/8/2024. Status Report due by 8/13/2024", "case_name_shorts": "" }, { @@ -1795,8 +1795,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-815", - "judges": "D. Tapp", - "summaries": "OPINION DISMISSING CASE; ORDER granting [7] MOTION for Leave to Proceed in forma pauperis; ORDER to SHOW CAUSE by 7/9/2024 as to why an anti-filing injunction should not be issued. The Clerk is directed to enter judgment. The Clerk is DIRECTED TO REJECT any future submissions in this case unless they comply with this Courts rules regarding post-dismissal submissions. Signed by Judge David A. Tapp. (emc) Service on parties made. Plaintiff served via Certified mail No. 7018 2290 0000 5183 8624 . Modified on 6/25/2024 (sh).", + "judges": "David A. Tapp", + "summaries": "OPINION DISMISSING CASE; ORDER granting [7] MOTION for Leave to Proceed in forma pauperis; ORDER to SHOW CAUSE by 7/9/2024 as to why an anti-filing injunction should not be issued. The Clerk is directed to enter judgment. The Clerk is DIRECTED TO REJECT any future submissions in this case unless they comply with this Courts rules regarding post-dismissal submissions", "case_name_shorts": "Lofton" }, { @@ -1807,8 +1807,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-715", - "judges": "C. Lerner", - "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE and DENYING AS MOOT [7] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment. Signed by Judge Carolyn N. Lerner. (btd) Service on parties made. Plaintiffs served via Certified mail 7018 2290 0000 5183 8617. Modified on 6/25/2024 (sh).", + "judges": "Carolyn N. Lerner", + "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE and DENYING AS MOOT [7] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment", "case_name_shorts": "HILL" }, { @@ -1819,8 +1819,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1407", - "judges": "T. Dietz", - "summaries": "REPORTED MEMORANDUM OPINION and ORDER. Unsealed public version of [95] MEMORANDUM OPINION and ORDER denying [85] Motion to Compel. Signed by Judge Thompson M. Dietz. (sbp) Service on parties made.", + "judges": "Thompson M. Dietz", + "summaries": "REPORTED MEMORANDUM OPINION and ORDER. Unsealed public version of [95] MEMORANDUM OPINION and ORDER denying [85] Motion to Compel", "case_name_shorts": "ARNHOLD" }, { @@ -1831,8 +1831,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-755", - "judges": "E. Meyers", - "summaries": "UNREPORTED ORDER denying [9] Motion for Reconsideration filed by EFRAIN MARTINEZ CASTILLO. Signed by Judge Edward H. Meyers. (cah) Service on parties made. (Main Document 10 replaced on 6/21/2024 to add signature) (py).Plaintiff served via first class mail on 6/24/2024.(py).", + "judges": "Edward H. Meyers", + "summaries": "UNREPORTED ORDER denying [9] Motion for Reconsideration filed by EFRAIN MARTINEZ CASTILLO", "case_name_shorts": "Castillo" }, { @@ -1843,8 +1843,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1592", - "judges": "S. Schwartz", - "summaries": "REPORTED OPINION AND ORDER granting [52] Motion for Attorneys&039; Fees filed by ACCURA ENGINEERING AND CONSULTING SERVICES, INC. The Clerk is directed to enter judgment. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made.", + "judges": "Stephen S. Schwartz", + "summaries": "REPORTED OPINION AND ORDER granting [52] Motion for Attorneys&039; Fees filed by ACCURA ENGINEERING AND CONSULTING SERVICES, INC. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -1855,8 +1855,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-874", - "judges": "D. Tapp", - "summaries": "UNREPORTED OPINION DISMISSING CASE: granting [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment. The Clerk shall reject any future submissions in this case unless they comply with this Court&039;s rules regarding post-dismissal submissions. Signed by Judge David A. Tapp. (jjg) Service on parties made. Plaintiff served via certified mail no. 7018 0040 0001 1393 3390 Modified on 6/25/2024 (vds).", + "judges": "David A. Tapp", + "summaries": "UNREPORTED OPINION DISMISSING CASE: granting [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment. The Clerk shall reject any future submissions in this case unless they comply with this Court&039;s rules regarding post-dismissal submissions", "case_name_shorts": "Hill" }, { @@ -1867,8 +1867,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-352", - "judges": "C. Lerner", - "summaries": "REPORTED OPINION and ORDER denying [28] Plaintiff&039;s Motion for Judgment on the Administrative Record; granting [32] Defendant-Intervenor&039;s Cross Motion; granting [33] Defendant&039;s Cross Motion. Re-issued for public release. Signed by Judge Carolyn N. Lerner. (btd) Service on parties made.", + "judges": "Carolyn N. Lerner", + "summaries": "REPORTED OPINION and ORDER denying [28] Plaintiff&039;s Motion for Judgment on the Administrative Record; granting [32] Defendant-Intervenor&039;s Cross Motion; granting [33] Defendant&039;s Cross Motion. Re-issued for public release", "case_name_shorts": "" }, { @@ -1879,8 +1879,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1029", - "judges": "R. Hertling", - "summaries": "RE-DOCKETED FOR POSTING TO THE COURT&039;S WEBSITE. UNREPORTED ORDER denying [32] Motion to Stay. Signed by Judge Richard A. Hertling. (lw) Service on parties made. (Entered: 06/18/2024). Signed by Judge Richard A. Hertling. (aoc)", + "judges": "Richard A. Hertling", + "summaries": "RE-DOCKETED FOR POSTING TO THE COURT&039;S WEBSITE. UNREPORTED ORDER denying [32] Motion to Stay", "case_name_shorts": "" }, { @@ -1891,8 +1891,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-242", - "judges": "D. Tapp", - "summaries": "UNREPORTED OPINION: granting [22] Motion to Dismiss - Rule 12(b)(1) and (6); denying as moot [4] Motion for Summary Judgment; granting [3] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment. The Clerk also is DIRECTED TO REJECT any future submissions in this case unless they comply with this Courts rules regarding post-dismissal submissions. Signed by Judge David A. Tapp. (smr) Service on parties made.", + "judges": "David A. Tapp", + "summaries": "UNREPORTED OPINION: granting [22] Motion to Dismiss - Rule 12(b)(1) and (6); denying as moot [4] Motion for Summary Judgment; granting [3] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment. The Clerk also is DIRECTED TO REJECT any future submissions in this case unless they comply with this Courts rules regarding post-dismissal submissions", "case_name_shorts": "Aljindi" }, { @@ -1903,8 +1903,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1048", - "judges": "Z. Somers", - "summaries": "UNREPORTED OPINION DISMISSING CASE: Granting [23] Motion to Dismiss - Rule 12(b)(1) and (6). The Clerk is directed to enter judgment. Signed by Judge Zachary N. Somers. (taw) Service on parties made. Plaintiff served via certified mail 7017-2680-0001-1159-8581 on 6/14/2024.", + "judges": "Zachary N. Somers", + "summaries": "UNREPORTED OPINION DISMISSING CASE: Granting [23] Motion to Dismiss - Rule 12(b)(1) and (6). The Clerk is directed to enter judgment", "case_name_shorts": "Salcida" }, { @@ -1915,8 +1915,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-60", - "judges": "A. Bonilla", - "summaries": "REPORTED OPINION AND ORDER: For the reasons set forth in the order, the Clerk of Court is directed to: a. REVISE the CM/ECF docket in this matter by updating the case caption to reflect the plaintiff as: Cristobal Ramos-Quiroz (a/k/a Cristobal Varela); b. TRANSMIT a copy of this opinion and order to the Federal Circuit for the appellate court&039;s consideration whether Ramos-Quiroz v. United States, No. 24-1851 (Fed. Cir.), was improvidently docketed on May 22, 2024; c. FILE Mr. Ramos-Quiroz&039;s May 13, 2024 filing (ECF [13]) as a new (directly related) case nunc pro tunc, reflecting a May 13, 2024 filing date; d. The CM/ECF docket in the newly docketed case shall REFLECT the plaintiff as: Cristobal Ramos-Quiroz (a/k/a Cristobal Varela); e. ASSIGN the newly docketed directly related case to the undersigned as contemplated under RCFC 40.2(a)(4)(A); f. FILE Mr. Ramos-Quiroz&039;s May 22, 2024 motion for an enlargement of time in the newly docketed case; g. FILE Mr. Ramos-Quiroz&039;s May 24, 2024 application to proceed in forma pauperis in the newly docketed case; and h. FILE this Opinion and Order in the newly docketed case. All future filings shall REFLECT the updated case caption. Mr. Ramos-Quiroz&039;s May 24, 2024 application to proceed in forma pauperis is GRANTED. Mr. Ramos-Quiroz&039;s May 22, 2024 motion for an enlargement of time is DENIED as MOOT; and the Clerk of Court is directed to TRANSFER the newly docketed case to the United States District Court for the Eastern District of California in accordance with 28 U.S.C. &167; 1631. Signed by Judge Armando O. Bonilla. (ead) Service on parties made. Plaintiff served via certified mail 7017-2680-0001-1159-8543 on 6/14/2024. Plaintiff served certified again on 6/17/2024 at updated address 7018 0040 0001 1393 2829 (py).", + "judges": "Armando O. Bonilla", + "summaries": "REPORTED OPINION AND ORDER: For the reasons set forth in the order, the Clerk of Court is directed to: a. REVISE the CM/ECF docket in this matter by updating the case caption to reflect the plaintiff as: Cristobal Ramos-Quiroz (a/k/a Cristobal Varela); b. TRANSMIT a copy of this opinion and order to the Federal Circuit for the appellate court&039;s consideration whether Ramos-Quiroz v. United States, No. 24-1851 (Fed. Cir.), was improvidently docketed on May 22, 2024; c. FILE Mr. Ramos-Quiroz&039;s May 13, 2024 filing (ECF [13]) as a new (directly related) case nunc pro tunc, reflecting a May 13, 2024 filing date; d. The CM/ECF docket in the newly docketed case shall REFLECT the plaintiff as: Cristobal Ramos-Quiroz (a/k/a Cristobal Varela); e. ASSIGN the newly docketed directly related case to the undersigned as contemplated under RCFC 40.2(a)(4)(A); f. FILE Mr. Ramos-Quiroz&039;s May 22, 2024 motion for an enlargement of time in the newly docketed case; g. FILE Mr. Ramos-Quiroz&039;s May 24, 2024 application to proceed in forma pauperis in the newly docketed case; and h. FILE this Opinion and Order in the newly docketed case. All future filings shall REFLECT the updated case caption. Mr. Ramos-Quiroz&039;s May 24, 2024 application to proceed in forma pauperis is GRANTED. Mr. Ramos-Quiroz&039;s May 22, 2024 motion for an enlargement of time is DENIED as MOOT; and the Clerk of Court is directed to TRANSFER the newly docketed case to the United States District Court for the Eastern District of California in accordance with 28 U.S.C. &167; 1631", "case_name_shorts": "Ramos-Quiroz" }, { @@ -1927,8 +1927,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-855", - "judges": "K. Davis", - "summaries": "JUDGE VACCINE REPORTED OPINION [75] Order on Motion for Review, Judge Vaccine Order/Opinion. Signed by Judge Kathryn C. Davis. (KS) Service on parties made.", + "judges": "Kathryn C. Davis", + "summaries": "JUDGE VACCINE REPORTED OPINION [75] Order on Motion for Review, Judge Vaccine Order/Opinion", "case_name_shorts": "Fisher" }, { @@ -1939,8 +1939,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-164", - "judges": "M. Silfen", - "summaries": "REPORTED OPINION (reissuance of [44] Opinion for publication). Signed by Judge Molly R. Silfen. (ck) Service on parties made.", + "judges": "Molly R. Silfen", + "summaries": "REPORTED OPINION (reissuance of [44] Opinion for publication", "case_name_shorts": "" }, { @@ -1951,8 +1951,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1928", - "judges": "A. Bonilla", - "summaries": "OPINION AND ORDER: Plaintiff&039;s motion for judgment on theadministrative record (ECF [10]) is DENIED and defendant&039;s cross-motion for judgment on the administrative record (ECF [11]) is GRANTED. The Clerk of Court is directed to ENTER Judgment accordingly. No costs. Signed by Judge Armando O. Bonilla. (ead) Service on parties made.", + "judges": "Armando O. Bonilla", + "summaries": "OPINION AND ORDER: Plaintiff&039;s motion for judgment on theadministrative record (ECF [10]) is DENIED and defendant&039;s cross-motion for judgment on the administrative record (ECF [11]) is GRANTED. The Clerk of Court is directed to ENTER Judgment accordingly. No costs", "case_name_shorts": "Martinez" }, { @@ -1963,8 +1963,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "06-872", - "judges": "D. Tapp", - "summaries": "REPORTED OPINION denying [461] MOTION for Attorney Fees filed by FEDERICO A. MAURA, ROBERT E. KNOPES, RONALD M. MARTINEZ, STANLEY A. ZUCKERMAN, GERALD K. KANDEL. Signed by Judge David A. Tapp. (emc) Service on parties made.", + "judges": "David A. Tapp", + "summaries": "REPORTED OPINION denying [461] MOTION for Attorney Fees filed by FEDERICO A. MAURA, ROBERT E. KNOPES, RONALD M. MARTINEZ, STANLEY A. ZUCKERMAN, GERALD K. KANDEL", "case_name_shorts": "" }, { @@ -1975,8 +1975,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1075", - "judges": "L. Smith", - "summaries": "REPORTED OPINION and ORDER granting [58] Defendant&039;s Motion for Summary Judgment. The Clerk is directed to enter judgment. Signed by Senior Judge Loren A. Smith. (mp) Service on parties made.", + "judges": "Loren A. Smith", + "summaries": "REPORTED OPINION and ORDER granting [58] Defendant&039;s Motion for Summary Judgment. The Clerk is directed to enter judgment", "case_name_shorts": "Blackwell" }, { @@ -1987,8 +1987,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1075", - "judges": "L. Smith", - "summaries": "REPORTED OPINION and ORDER granting [58] Defendant&039;s Motion for Summary Judgment. The Clerk is directed to enter judgment. Signed by Senior Judge Loren A. Smith. (mp) Service on parties made.", + "judges": "Loren A. Smith", + "summaries": "REPORTED OPINION and ORDER granting [58] Defendant&039;s Motion for Summary Judgment. The Clerk is directed to enter judgment", "case_name_shorts": "Blackwell" }, { @@ -1999,8 +1999,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-371", - "judges": "E. Damich", - "summaries": "UNREPORTED OPINION granting [10] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment. Signed by Senior Judge Edward J. Damich. (hem) Service on parties made. Plaintiff served via certified mail ( 7018 0040 0001 1393 2638) on 6/11/2024 (py). Modified on 6/11/2024 (py).", + "judges": "Edward J. Damich", + "summaries": "UNREPORTED OPINION granting [10] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment", "case_name_shorts": "Snyder" }, { @@ -2011,8 +2011,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-351", - "judges": "R. Hertling", - "summaries": "REPORTED OPINION: Reissued public opinion of the [42] sealed opinion issued on 5/30/2024 granting the [32] defendant&039;s and [33] defendant-intervenor&039;s motions for judgment on the administrative record, denying the plaintiff&039;s [27] motion for judgment on the administrative record, denying the defendant-intervenor&039;s [33] motion to dismiss, and granting the defendant&039;s [31] motion to strike. Signed by Judge Richard A. Hertling. (lw) Service on parties made.", + "judges": "Richard A. Hertling", + "summaries": "REPORTED OPINION: Reissued public opinion of the [42] sealed opinion issued on 5/30/2024 granting the [32] defendant&039;s and [33] defendant-intervenor&039;s motions for judgment on the administrative record, denying the plaintiff&039;s [27] motion for judgment on the administrative record, denying the defendant-intervenor&039;s [33] motion to dismiss, and granting the defendant&039;s [31] motion to strike", "case_name_shorts": "" }, { @@ -2023,8 +2023,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-895", - "judges": "Z. Somers", - "summaries": "REPORTED OPINION denying [111] Motion for Reconsideration. Signed by Judge Zachary N. Somers. (mss) Service on parties made.", + "judges": "Zachary N. Somers", + "summaries": "REPORTED OPINION denying [111] Motion for Reconsideration", "case_name_shorts": "Hutchinson" }, { @@ -2035,8 +2035,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1948", - "judges": "S. Schwartz", - "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: granting [5] Motion to Dismiss - Rule 12(b)(1) and (6) filed by USA. The Clerk is directed to enter judgment. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made. Plaintiff served via Certified mail on 6/5/2024; Article Number 7017 1450 0000 1346 3370 (sw).", + "judges": "Stephen S. Schwartz", + "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: granting [5] Motion to Dismiss - Rule 12(b)(1) and (6) filed by USA. The Clerk is directed to enter judgment", "case_name_shorts": "McLellan" }, { @@ -2047,8 +2047,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-455", - "judges": "Z. Somers", - "summaries": "UNREPORTED OPINION denying [8] Motion for Reconsideration. Signed by Judge Zachary N. Somers. (mss) Service on parties made. Plaintiff served via Certified mail on 6/5/2024; Article Number 7017 1450 0000 1346 3387 (sw).", + "judges": "Zachary N. Somers", + "summaries": "UNREPORTED OPINION denying [8] Motion for Reconsideration", "case_name_shorts": "KELLETT" }, { @@ -2059,8 +2059,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-727", - "judges": "E. Kaplan", - "summaries": "UNREPORTED OPINION DISMISSING CASE for lack of subject-matter jurisdiction and granting [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment. Signed by Chief Judge Elaine D. Kaplan. (ap) Service on parties made. Plaintiff served via certified on 6/3/24, article no. 7018 2290 0000 5183 5708 (ypb).", + "judges": "Elaine D. Kaplan", + "summaries": "UNREPORTED OPINION DISMISSING CASE for lack of subject-matter jurisdiction and granting [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment", "case_name_shorts": "Lofton" }, { @@ -2071,8 +2071,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1527", - "judges": "R. Holte", - "summaries": "REPORTED OPINION AND ORDER granting in part and denying in part [41] Renewed Motion to Dismiss. Joint Status Report due by 7/3/2024. Signed by Judge Ryan T. Holte. (nd) Service on parties made.", + "judges": "Ryan T. Holte", + "summaries": "REPORTED OPINION AND ORDER granting in part and denying in part [41] Renewed Motion to Dismiss. Joint Status Report due by 7/3/2024", "case_name_shorts": "" }, { @@ -2083,8 +2083,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-549", - "judges": "T. Dietz", - "summaries": "JUDGE VACCINE REPORTED OPINION (PUBLIC VERSION) re: [40] Judge Vaccine Order/Opinion. Signed by Judge Thompson M. Dietz. (sbp) Service on parties made.", + "judges": "Thompson M. Dietz", + "summaries": "JUDGE VACCINE REPORTED OPINION (PUBLIC VERSION) re: [40] Judge Vaccine Order/Opinion", "case_name_shorts": "Trinnaman" }, { @@ -2095,8 +2095,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1548", - "judges": "Z. Somers", - "summaries": "UNREPORTED OPINION denying [13] Motion for Preliminary Injunction; granting [16] Motion to Dismiss - Rule 12(b)(1) and (6); finding as moot [21] Motion for mediation. The Clerk is directed to enter judgment. Signed by Judge Zachary N. Somers. (taw) Service on parties made; plaintiff served via first class mail. (dls)", + "judges": "Zachary N. Somers", + "summaries": "UNREPORTED OPINION denying [13] Motion for Preliminary Injunction; granting [16] Motion to Dismiss - Rule 12(b)(1) and (6); finding as moot [21] Motion for mediation. The Clerk is directed to enter judgment", "case_name_shorts": "Majersky" }, { @@ -2107,8 +2107,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-215", - "judges": "M. Horn", - "summaries": "REPORTED OPINION granting [6] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment. Signed by Senior Judge Marian Blank Horn. (jm5) Service on parties made. Plaintiff served via first class mail.", + "judges": "Marian Blank Horn", + "summaries": "REPORTED OPINION granting [6] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment", "case_name_shorts": "Liu" }, { @@ -2119,8 +2119,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1395", - "judges": "E. Meyers", - "summaries": "REPORTED OPINION AND ORDER granting [85] MOTION for Summary Judgment and Appendix filed by USA; denying [86] MOTION for Summary Judgment filed by FOX LOGISTICS AND CONSTRUCTION COMPANY. The Clerk is directed to enter judgment. Signed by Judge Edward H. Meyers. (cah) Service on parties made.", + "judges": "Edward H. Meyers", + "summaries": "REPORTED OPINION AND ORDER granting [85] MOTION for Summary Judgment and Appendix filed by USA; denying [86] MOTION for Summary Judgment filed by FOX LOGISTICS AND CONSTRUCTION COMPANY. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -2131,8 +2131,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1395", - "judges": "E. Meyers", - "summaries": "REPORTED OPINION AND ORDER granting [85] MOTION for Summary Judgment and Appendix filed by USA; denying [86] MOTION for Summary Judgment filed by FOX LOGISTICS AND CONSTRUCTION COMPANY. The Clerk is directed to enter judgment. Signed by Judge Edward H. Meyers. (cah) Service on parties made.", + "judges": "Edward H. Meyers", + "summaries": "REPORTED OPINION AND ORDER granting [85] MOTION for Summary Judgment and Appendix filed by USA; denying [86] MOTION for Summary Judgment filed by FOX LOGISTICS AND CONSTRUCTION COMPANY. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -2143,8 +2143,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-308", - "judges": "K. Davis", - "summaries": "REPORTED OPINION DISMISSING CASE on [9] MOTION to Dismiss pursuant to Rule 12(b)(1). The Clerk is directed to enter judgment. Signed by Judge Kathryn C. Davis. (sbw) Service on parties made.", + "judges": "Kathryn C. Davis", + "summaries": "REPORTED OPINION DISMISSING CASE on [9] MOTION to Dismiss pursuant to Rule 12(b)(1). The Clerk is directed to enter judgment", "case_name_shorts": "CUMMINS" }, { @@ -2155,8 +2155,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1664", - "judges": "E. Meyers", - "summaries": "REPORTED OPINION/ORDER granting in part and denying in part [7] Motion to Dismiss pursuant Rule 12(b)(1) and (6). Signed by Judge Edward H. Meyers. (db) Service on parties made. (Main Document 23 replaced on 5/30/2024 to attach corrected PDF) (ypb).", + "judges": "Edward H. Meyers", + "summaries": "REPORTED OPINION/ORDER granting in part and denying in part [7] Motion to Dismiss pursuant Rule 12(b)(1) and (6", "case_name_shorts": "" }, { @@ -2167,8 +2167,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1071", - "judges": "K. Davis", - "summaries": "REPORTED OPINION granting [9] Motion to Dismiss. The Clerk is directed to enter judgment. Signed by Judge Kathryn C. Davis. (ebl) Service on parties made.", + "judges": "Kathryn C. Davis", + "summaries": "REPORTED OPINION granting [9] Motion to Dismiss. The Clerk is directed to enter judgment", "case_name_shorts": "Strand" }, { @@ -2179,8 +2179,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-172", - "judges": "C. Lettow", - "summaries": "JUDGE VACCINE REPORTED OPINION reissuing for publication [131] Order and Opinion denying [122] Motion for Review and affirming [89] Ruling on Entitlement. Signed by Senior Judge Charles F. Lettow. (khp)", + "judges": "Charles F. Lettow", + "summaries": "JUDGE VACCINE REPORTED OPINION reissuing for publication [131] Order and Opinion denying [122] Motion for Review and affirming [89] Ruling on Entitlement", "case_name_shorts": "Sturdevant" }, { @@ -2191,8 +2191,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-793", - "judges": "D. Tapp", - "summaries": "ORDER and OPINION: GRANTING [11] MOTION to Dismiss pursuant to RCFC 12 (b)(1) and (6). The Clerk is DIRECTED to enter judgment. Signed by Judge David A. Tapp. (krm) Service on parties made.", + "judges": "David A. Tapp", + "summaries": "ORDER and OPINION: GRANTING [11] MOTION to Dismiss pursuant to RCFC 12 (b)(1) and (6). The Clerk is DIRECTED to enter judgment", "case_name_shorts": "McCarthy" }, { @@ -2203,8 +2203,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2172", - "judges": "D. Tapp", - "summaries": "REPORTED OPINION. Public version of ECF [34]. Signed by Judge David A. Tapp. (emc) Service on parties made.", + "judges": "David A. Tapp", + "summaries": "REPORTED OPINION. Public version of ECF [34]", "case_name_shorts": "" }, { @@ -2215,8 +2215,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-13", - "judges": "P. Hadji", - "summaries": "UNREPORTED OPINION and ORDER on [40] Government&039;s MOTION for Summary Judgment DENYING the Motion with respect to the breach of contract allegations (Counts 2 and 3 of the Complaint) and GRANTING the Motion with respect to the breach of the duty of good faith and fair dealing (Count 1 of the Complaint). Status Report due by 6/13/2024. Signed by Judge Philip S. Hadji. (mcb) Service on parties made.", + "judges": "Philip S. Hadji", + "summaries": "UNREPORTED OPINION and ORDER on [40] Government&039;s MOTION for Summary Judgment DENYING the Motion with respect to the breach of contract allegations (Counts 2 and 3 of the Complaint) and GRANTING the Motion with respect to the breach of the duty of good faith and fair dealing (Count 1 of the Complaint). Status Report due by 6/13/2024", "case_name_shorts": "" }, { @@ -2227,8 +2227,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1292", - "judges": "V. Wolski", - "summaries": "RE-DOCKETED FOR PUBLICATION. REPORTED OPINION AND ORDER granting in part and denying in part [12] Motion for Partial Summary Judgment; granting in part and denying in part [14] Cross Motion. Signed by Senior Judge Victor J. Wolski. (jad) Service on parties made. (Main Document 48 replaced on 5/28/2024) (vds).", + "judges": "Victor J. Wolski", + "summaries": "RE-DOCKETED FOR PUBLICATION. REPORTED OPINION AND ORDER granting in part and denying in part [12] Motion for Partial Summary Judgment; granting in part and denying in part [14] Cross Motion", "case_name_shorts": "YSLA" }, { @@ -2239,8 +2239,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2327", - "judges": "C. Lettow", - "summaries": "REPORTED OPINION (Reissued as Public Version of May 17, 2024 Opinion). Signed by Senior Judge Charles F. Lettow. (vas)", + "judges": "Charles F. Lettow", + "summaries": "REPORTED OPINION (Reissued as Public Version of May 17, 2024 Opinion", "case_name_shorts": "" }, { @@ -2251,8 +2251,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-759", - "judges": "L. Smith", - "summaries": "REPORTED OPINION reissuing [33] SEALED OPINION and ORDER. Signed by Senior Judge Loren A. Smith. (ajd) Service on parties made.", + "judges": "Loren A. Smith", + "summaries": "REPORTED OPINION reissuing [33] SEALED OPINION and ORDER", "case_name_shorts": "" }, { @@ -2263,8 +2263,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-365", - "judges": "C. Lettow", - "summaries": "REPORTED OPINION (Reissued as Public Version of March 22, 2024 Opinion). Signed by Senior Judge Charles F. Lettow. (vas)", + "judges": "Charles F. Lettow", + "summaries": "REPORTED OPINION (Reissued as Public Version of March 22, 2024 Opinion", "case_name_shorts": "" }, { @@ -2275,8 +2275,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1520", - "judges": "M. Solomson", - "summaries": "UNREPORTED Supplemental Pre-Trial ORDER denying, without prejudice, [75] Motion for Protective Order. The parties are directed to review the order carefully for additional instructions and deadlines. Signed by Judge Matthew H. Solomson. (Solomson, Matthew) Service on parties made.", + "judges": "Matthew H. Solomson", + "summaries": "UNREPORTED Supplemental Pre-Trial ORDER denying, without prejudice, [75] Motion for Protective Order. The parties are directed to review the order carefully for additional instructions and deadlines", "case_name_shorts": "" }, { @@ -2287,8 +2287,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1786", - "judges": "A. Bonilla", - "summaries": "OPINION AND ORDER: Defendant&039;s motion for partial dismissal (ECF [86]) is GRANTED. Accordingly, the Clerk of Court is directed to DISMISS Count II of plaintiff&039;s amended complaint (ECF [67]). Defendant shall FILE an answer on or before June 4, 2024, pursuant to RCFC 12(a)(4)(A)(i). Signed by Judge Armando O. Bonilla. (ead) Service on parties made.", + "judges": "Armando O. Bonilla", + "summaries": "OPINION AND ORDER: Defendant&039;s motion for partial dismissal (ECF [86]) is GRANTED. Accordingly, the Clerk of Court is directed to DISMISS Count II of plaintiff&039;s amended complaint (ECF [67]). Defendant shall FILE an answer on or before June 4, 2024, pursuant to RCFC 12(a)(4)(A)(i", "case_name_shorts": "" }, { @@ -2299,8 +2299,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1298", - "judges": "M. Horn", - "summaries": "REPORTED OPINION denying [12] Motion for Judgment on the Administrative Record; granting [15] Cross Motion for Judgment on the Administrative Record. The Clerk is directed to enter judgment. Signed by Senior Judge Marian Blank Horn. (jm5) Service on parties made.", + "judges": "Marian Blank Horn", + "summaries": "REPORTED OPINION denying [12] Motion for Judgment on the Administrative Record; granting [15] Cross Motion for Judgment on the Administrative Record. The Clerk is directed to enter judgment", "case_name_shorts": "Reinhard" }, { @@ -2311,8 +2311,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-346", - "judges": "E. Bruggink", - "summaries": "REPORTED OPINION. Signed by Senior Judge Eric G. Bruggink. (eab) Service on parties made.", + "judges": "Eric G. Bruggink", + "summaries": "REPORTED OPINION", "case_name_shorts": "" }, { @@ -2323,8 +2323,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-1011", - "judges": "E. Meyers", - "summaries": "UNREPORTED OPINION/ORDER granting [46] Motion to Dismiss pursuant to Rule 12(b)(1); denying [50] Motion to Disqualify Counsel. The Clerk is directed to enter judgment accordingly. Signed by Judge Edward H. Meyers. (db) Service on parties made.", + "judges": "Edward H. Meyers", + "summaries": "UNREPORTED OPINION/ORDER granting [46] Motion to Dismiss pursuant to Rule 12(b)(1); denying [50] Motion to Disqualify Counsel. The Clerk is directed to enter judgment accordingly", "case_name_shorts": "" }, { @@ -2335,8 +2335,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-83", - "judges": "S. Schwartz", - "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: granting [4] Motion for Leave to Proceed in forma pauperis filed by NIKIE KING; granting [6] Motion to Dismiss pursuant to Rule 12(b)(1) filed by USA. The Clerk is directed to enter judgment. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made. Plaintiff served via certified mail 7018-0040-0001-1393-3604 on 05/17/2024.", + "judges": "Stephen S. Schwartz", + "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: granting [4] Motion for Leave to Proceed in forma pauperis filed by NIKIE KING; granting [6] Motion to Dismiss pursuant to Rule 12(b)(1) filed by USA. The Clerk is directed to enter judgment", "case_name_shorts": "King" }, { @@ -2347,8 +2347,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1536", - "judges": "S. Schwartz", - "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: denying as moot [9] Motion to Dismiss pursuant to Rules 7(b) and 83.1(a)(3) filed by USA; granting [22] Motion to Dismiss - Rule 12(b)(1) and (6) filed by USA. The Clerk is directed to enter judgment. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made.", + "judges": "Stephen S. Schwartz", + "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: denying as moot [9] Motion to Dismiss pursuant to Rules 7(b) and 83.1(a)(3) filed by USA; granting [22] Motion to Dismiss - Rule 12(b)(1) and (6) filed by USA. The Clerk is directed to enter judgment", "case_name_shorts": "Endres" }, { @@ -2359,8 +2359,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-550", - "judges": "D. Tapp", - "summaries": "UNREPORTED OPINION DISMISSING CASE. The Clerk is directed to enter judgment. Signed by Judge David A. Tapp. (smr) Service on parties made. The Clerk is DIRECTED TO REJECT any future submissions in this case unless they comply with this Courts rules regarding post-dismissal submissions. The Court CLARIFIES that this provision does not act as an anti-filing injunction or a sanction. Modified on 5/17/2024 to add anti-filing language to the docket (ypb). Plaintiff served via certified mail 7018-0040-0001-1393-3598 on 05/17/2024. Plaintiff re-served via first class mail on 5/20/2024 (ypb)", + "judges": "David A. Tapp", + "summaries": "UNREPORTED OPINION DISMISSING CASE. The Clerk is directed to enter judgment", "case_name_shorts": "Cassaday" }, { @@ -2371,8 +2371,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "15-945", - "judges": "E. Bruggink", - "summaries": "UNREPORTED (PUBLIC) ORDER Re motion for reconsideration and supplemental motion for fees and costs. Signed by Senior Judge Eric G. Bruggink. (jpk1) Service on parties made.", + "judges": "Eric G. Bruggink", + "summaries": "UNREPORTED (PUBLIC) ORDER Re motion for reconsideration and supplemental motion for fees and costs", "case_name_shorts": "" }, { @@ -2383,8 +2383,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2080", - "judges": "M. Silfen", - "summaries": "REPORTED OPINION denying [17] motion for reconsideration filed by Temetrius Richardson. Signed by Judge Molly R. Silfen. (bp) Service on parties made. Plaintiff served via Certified mail on 5/17/2024; Article Number 7017 0190 0000 4739 5627. (fm).", + "judges": "Molly R. Silfen", + "summaries": "REPORTED OPINION denying [17] motion for reconsideration filed by Temetrius Richardson", "case_name_shorts": "" }, { @@ -2395,8 +2395,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-162", - "judges": "E. Meyers", - "summaries": "UNREPORTED OPINION/ORDER. Re-issuing Public/Redacted Version of [32] SEALED OPINION and ORDER denying [28] Government&039;s Cross Motion; denying [26] Deloitte&039;s Motion for Judgment on the Administrative Record; granting [27] Kearney&039;s Motion for Judgment on the Administrative Record. Signed by Judge Edward H. Meyers. (cmh) Service on parties made. (Main Document 35 replaced on 5/21/2024) (hw1).", + "judges": "Edward H. Meyers", + "summaries": "UNREPORTED OPINION/ORDER. Re-issuing Public/Redacted Version of [32] SEALED OPINION and ORDER denying [28] Government&039;s Cross Motion; denying [26] Deloitte&039;s Motion for Judgment on the Administrative Record; granting [27] Kearney&039;s Motion for Judgment on the Administrative Record", "case_name_shorts": "" }, { @@ -2407,8 +2407,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1296", - "judges": "M. Horn", - "summaries": "REPORTED OPINION DISMISSING CASE. The Clerk is directed to enter judgment. Signed by Senior Judge Marian Blank Horn. (jm5) Service on parties made.", + "judges": "Marian Blank Horn", + "summaries": "REPORTED OPINION DISMISSING CASE. The Clerk is directed to enter judgment", "case_name_shorts": "Frank" }, { @@ -2419,8 +2419,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-353", - "judges": "E. Roumel", - "summaries": "REPORTED OPINION GRANTING [144] Plaintiffs&039; Motion for Final Approval of Settlement and Plan for Allocating Net Settlement Fund to Exaction Class Members and GRANTING [145] Class Counsel&039;s Motion for an Award of Attorneys&039; Fees, Expenses, and Case Contribution Award to Class Representative. The Court DIRECTS the Clerk of Court to enter judgment dismissing the case. Signed by Judge Eleni M. Roumel. (lew) Service on parties made.", + "judges": "Eleni M. Roumel", + "summaries": "REPORTED OPINION GRANTING [144] Plaintiffs&039; Motion for Final Approval of Settlement and Plan for Allocating Net Settlement Fund to Exaction Class Members and GRANTING [145] Class Counsel&039;s Motion for an Award of Attorneys&039; Fees, Expenses, and Case Contribution Award to Class Representative. The Court DIRECTS the Clerk of Court to enter judgment dismissing the case", "case_name_shorts": "" }, { @@ -2431,8 +2431,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-34", - "judges": "A. Bonilla", - "summaries": "POST-TRIAL OPINION AND ORDER: For the reasons set forth above, defendant&039;s motion for reconsideration(ECF [172]) is DENIED, plaintiffs&039; motion for partial summary judgment (ECF [134]) is DENIED, defendant&039;s cross-motion for partial summary judgment (ECF [144]) is GRANTED, and plaintiffs are AWARDED just compensation in the aggregate amount of &036;17.859 million, plus interest. Pursuant to RCFC 54(b), there being no just reason for delay, the Clerk of Court shall ENTER partial Judgment pursuant to RCFC 54(b) in the principle amounts included in this order for each plaintiff, plus interest calculated using Moody&039;s index, compounded annually, beginning on January 10, 2020, and continuing through the date of payment. Plaintiffs shall FILE their application for reimbursement of reasonable attorney&039;s fees and litigation expenses under the Uniform Relocation Assistance and Real Property Acquisition Policies Act, 42 U.S.C. &167; 4654(c), on or before June 17, 2024. Signed by Judge Armando O. Bonilla. (ead) Service on parties made.", + "judges": "Armando O. Bonilla", + "summaries": "POST-TRIAL OPINION AND ORDER: For the reasons set forth above, defendant&039;s motion for reconsideration(ECF [172]) is DENIED, plaintiffs&039; motion for partial summary judgment (ECF [134]) is DENIED, defendant&039;s cross-motion for partial summary judgment (ECF [144]) is GRANTED, and plaintiffs are AWARDED just compensation in the aggregate amount of &036;17.859 million, plus interest. Pursuant to RCFC 54(b), there being no just reason for delay, the Clerk of Court shall ENTER partial Judgment pursuant to RCFC 54(b) in the principle amounts included in this order for each plaintiff, plus interest calculated using Moody&039;s index, compounded annually, beginning on January 10, 2020, and continuing through the date of payment. Plaintiffs shall FILE their application for reimbursement of reasonable attorney&039;s fees and litigation expenses under the Uniform Relocation Assistance and Real Property Acquisition Policies Act, 42 U.S.C. &167; 4654(c), on or before June 17, 2024", "case_name_shorts": "" }, { @@ -2443,8 +2443,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-499", - "judges": "C. Lettow", - "summaries": "REPORTED ORDER. Unsealed public redacted version of [196] ORDER granting [186] Motion to Compel. Signed by Senior Judge Charles F. Lettow. (vas)", + "judges": "Charles F. Lettow", + "summaries": "REPORTED ORDER. Unsealed public redacted version of [196] ORDER granting [186] Motion to Compel", "case_name_shorts": "" }, { @@ -2455,8 +2455,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-427", - "judges": "R. Holte", - "summaries": "REPORTED OPINION AND ORDER denying [7] Motion to Dismiss. Joint Status Report due by 6/5/2024. Signed by Judge Ryan T. Holte. (nd) Service on parties made.", + "judges": "Ryan T. Holte", + "summaries": "REPORTED OPINION AND ORDER denying [7] Motion to Dismiss. Joint Status Report due by 6/5/2024", "case_name_shorts": "Benitez" }, { @@ -2467,8 +2467,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2113", - "judges": "M. Solomson", - "summaries": "ORDER granting [48] defendant&039;s motion to compel discovery and granting [50] defendant&039;s motion for sanctions pursuant to Rule 37. The parties shall proceed in accordance with the instructions contained in this order. Discovery is reopened until July 12, 2024. Plaintiffs&039; brief in response to this order is due on or before May 27, 2024. The parties shall file a joint status report on or before August 12, 2024. Signed by Judge Matthew H. Solomson. (ab) Service on parties made.", + "judges": "Matthew H. Solomson", + "summaries": "ORDER granting [48] defendant&039;s motion to compel discovery and granting [50] defendant&039;s motion for sanctions pursuant to Rule 37. The parties shall proceed in accordance with the instructions contained in this order. Discovery is reopened until July 12, 2024. Plaintiffs&039; brief in response to this order is due on or before May 27, 2024. The parties shall file a joint status report on or before August 12, 2024", "case_name_shorts": "HALL" }, { @@ -2479,8 +2479,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1539", - "judges": "P. Hadji", - "summaries": "UNREPORTED OPINION AND ORDER denying [14] Motion to Dismiss - Rule 12(b)(1) and (6) filed by USA. Signed by Judge Philip S. Hadji. (idb) Service on parties made.", + "judges": "Philip S. Hadji", + "summaries": "UNREPORTED OPINION AND ORDER denying [14] Motion to Dismiss - Rule 12(b)(1) and (6) filed by USA", "case_name_shorts": "" }, { @@ -2491,8 +2491,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-66", - "judges": "Z. Somers", - "summaries": "UNREPORTED OPINION DISMISSING CASE. The Court grants the [7] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment. Signed by Judge Zachary N. Somers. (taw) Service on parties made; plaintiff served via first class mail. (dls)", + "judges": "Zachary N. Somers", + "summaries": "UNREPORTED OPINION DISMISSING CASE. The Court grants the [7] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment", "case_name_shorts": "Ebson" }, { @@ -2503,8 +2503,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1902", - "judges": "Z. Somers", - "summaries": "REPORTED OPINION. Granting in part and denying in part [71] MOTION to Approve Notice and Related Filings for Prospective Class Members. Status Report due by 5/31/2024. Signed by Judge Zachary N. Somers. (taw) Service on parties made.", + "judges": "Zachary N. Somers", + "summaries": "REPORTED OPINION. Granting in part and denying in part [71] MOTION to Approve Notice and Related Filings for Prospective Class Members. Status Report due by 5/31/2024", "case_name_shorts": "" }, { @@ -2515,8 +2515,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-717", - "judges": "Z. Somers", - "summaries": "UNREPORTED OPINION DISMISSING CASE. The Clerk is directed to enter judgment. Signed by Judge Zachary N. Somers. (mss) Service on parties made. Plaintiff served via First Class mail on 5/10/2024. (fm).", + "judges": "Zachary N. Somers", + "summaries": "UNREPORTED OPINION DISMISSING CASE. The Clerk is directed to enter judgment", "case_name_shorts": "Bomar" }, { @@ -2527,8 +2527,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-634", - "judges": "R. Hertling", - "summaries": "UNREPORTED OPINION DISMISSING CASE: The [2] Motion for Leave to Proceed in forma pauperis is granted for the limited purpose of dismissing the complaint. The complaint is DISMISSED without prejudice pursuant to 28 U.S.C. &167; 1915(e)(2)(B)(i) and RCFC 12(b)(1) and 12(h)(3). Pursuant to 28 U.S.C. &167; 1915(a)(3), any appeal filed by the plaintiff would not be taken in good faith. The Clerk is directed to enter judgment. Signed by Judge Richard A. Hertling. (tbss) Service on parties made. Plaintiff served via certified mail on this day. Article no. 7018 0040 0001 1393 3369Modified on 5/8/2024 (vds).", + "judges": "Richard A. Hertling", + "summaries": "UNREPORTED OPINION DISMISSING CASE: The [2] Motion for Leave to Proceed in forma pauperis is granted for the limited purpose of dismissing the complaint. The complaint is DISMISSED without prejudice pursuant to 28 U.S.C. &167; 1915(e)(2)(B)(i) and RCFC 12(b)(1) and 12(h)(3). Pursuant to 28 U.S.C. &167; 1915(a)(3), any appeal filed by the plaintiff would not be taken in good faith. The Clerk is directed to enter judgment", "case_name_shorts": "McMillan" }, { @@ -2539,8 +2539,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1949", - "judges": "M. Silfen", - "summaries": "REPORTED OPINION AND ORDER granting [31] the government&039;s motion to dismiss the amended complaint pursuant to Rules 12 (b)(1) and (6). The Clerk is directed to enter judgment. Signed by Judge Molly R. Silfen. (asw) Service on parties made.", + "judges": "Molly R. Silfen", + "summaries": "REPORTED OPINION AND ORDER granting [31] the government&039;s motion to dismiss the amended complaint pursuant to Rules 12 (b)(1) and (6). The Clerk is directed to enter judgment", "case_name_shorts": "KELLY" }, { @@ -2551,8 +2551,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1949", - "judges": "M. Silfen", - "summaries": "REPORTED OPINION AND ORDER granting [31] the government&039;s motion to dismiss the amended complaint pursuant to Rules 12 (b)(1) and (6). The Clerk is directed to enter judgment. Signed by Judge Molly R. Silfen. (asw) Service on parties made.", + "judges": "Molly R. Silfen", + "summaries": "REPORTED OPINION AND ORDER granting [31] the government&039;s motion to dismiss the amended complaint pursuant to Rules 12 (b)(1) and (6). The Clerk is directed to enter judgment", "case_name_shorts": "KELLY" }, { @@ -2563,8 +2563,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-620", - "judges": "S. Schwartz", - "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: granting [11] Motion to Dismiss pursuant to Rules 12 (b)(1) and (6) filed by USA; denying [9] Motion for Leave to Correct/Change Designation to Electronic Filing filed by ARTHUR LOPEZ; granting [2] Motion for Leave to Proceed in forma pauperis filed by ARTHUR LOPEZ; filing by my leave Plaintiff&039;s Motion to Certify received by the Court on 1/25/2024 and Denying as Moot; filing by my leave Plaintiff&039;s two Subpoena Requests received by the Court on 6/9/2023 and Plaintiff&039;s duplicate filings received on 6/27/2023 and 6/28/2023. To the extent they request any relief, the Requests are Denied. The Clerk is directed to enter judgment. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made. Plaintiff served via Certified mail 7018 2290 0000 5183 4510 on 05.08.2024 (mjk). Modified on 5/8/2024 (mjk).", + "judges": "Stephen S. Schwartz", + "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: granting [11] Motion to Dismiss pursuant to Rules 12 (b)(1) and (6) filed by USA; denying [9] Motion for Leave to Correct/Change Designation to Electronic Filing filed by ARTHUR LOPEZ; granting [2] Motion for Leave to Proceed in forma pauperis filed by ARTHUR LOPEZ; filing by my leave Plaintiff&039;s Motion to Certify received by the Court on 1/25/2024 and Denying as Moot; filing by my leave Plaintiff&039;s two Subpoena Requests received by the Court on 6/9/2023 and Plaintiff&039;s duplicate filings received on 6/27/2023 and 6/28/2023. To the extent they request any relief, the Requests are Denied. The Clerk is directed to enter judgment", "case_name_shorts": "Lopez" }, { @@ -2575,8 +2575,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-373", - "judges": "E. Meyers", - "summaries": "RE-DOCKETED FOR PUBLICATION. REPORTED OPINION granting [7] Motion to Dismiss. The Clerk is directed to enter judgment. Signed by Judge Edward H. Meyers. (py) Service on parties made.", + "judges": "Edward H. Meyers", + "summaries": "RE-DOCKETED FOR PUBLICATION. REPORTED OPINION granting [7] Motion to Dismiss. The Clerk is directed to enter judgment", "case_name_shorts": "Jacobson" }, { @@ -2587,8 +2587,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "13-227", - "judges": "R. Hertling", - "summaries": "REPORTED POST-TRIAL OPINION: The plaintiffs&039; claims fail either for insufficient evidence or as a matter of law. Judgment will be entered in favor of the defendant. Signed by Judge Richard A. Hertling. (tbss) Service on parties made. (Main Document 268 replaced on 5/7/2024 to correct a typographical error.) (aoc).", + "judges": "Richard A. Hertling", + "summaries": "REPORTED POST-TRIAL OPINION: The plaintiffs&039; claims fail either for insufficient evidence or as a matter of law. Judgment will be entered in favor of the defendant", "case_name_shorts": "JONES" }, { @@ -2599,8 +2599,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1185", - "judges": "E. Meyers", - "summaries": "REPORTED OPINION DISMISSING CASE. Order granting [20] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment. Signed by Judge Edward H. Meyers. (cmh) Service on parties made.", + "judges": "Edward H. Meyers", + "summaries": "REPORTED OPINION DISMISSING CASE. Order granting [20] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -2611,8 +2611,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1740", - "judges": "R. Holte", - "summaries": "REPORTED OPINION AND ORDER denying [5] Motion to Dismiss. The government&039;s Answer due by 5 July 2024. Signed by Judge Ryan T. Holte. (jf) Service on parties made.", + "judges": "Ryan T. Holte", + "summaries": "REPORTED OPINION AND ORDER denying [5] Motion to Dismiss. The government&039;s Answer due by 5 July 2024", "case_name_shorts": "" }, { @@ -2623,8 +2623,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1848", - "judges": "S. Schwartz", - "summaries": "UNREPORTED Order. On 2/12/2024, the Court received a submission from the Plaintiff purporting to be his Amended Complaint. I will construe the document as a Motion for Leave to Amend, and directing the Clerk to file it by my leave. The Motion is DENIED. On 2/21/2024, Plaintiff submitted a Letter to the Court. The Clerk is directed to file it by my leave. To the extent is seeks any relief, it is DENIED. The case is DISMISSED. The Clerk is directed to enter judgment. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made.", + "judges": "Stephen S. Schwartz", + "summaries": "UNREPORTED Order. On 2/12/2024, the Court received a submission from the Plaintiff purporting to be his Amended Complaint. I will construe the document as a Motion for Leave to Amend, and directing the Clerk to file it by my leave. The Motion is DENIED. On 2/21/2024, Plaintiff submitted a Letter to the Court. The Clerk is directed to file it by my leave. To the extent is seeks any relief, it is DENIED. The case is DISMISSED. The Clerk is directed to enter judgment", "case_name_shorts": "Alshara" }, { @@ -2635,8 +2635,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-14", - "judges": "M. Horn", - "summaries": "OPINION granting [10] Motion to Dismiss. The Clerk is directed to enter judgment. Signed by Senior Judge Marian Blank Horn. (jm5) Service on parties made.", + "judges": "Marian Blank Horn", + "summaries": "OPINION granting [10] Motion to Dismiss. The Clerk is directed to enter judgment", "case_name_shorts": "Deweese" }, { @@ -2647,8 +2647,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-211", - "judges": "T. Dietz", - "summaries": "REPORTED OPINION granting in part and denying in part [22] Motion to Dismiss - Rule 12(b)(1) and (6). Signed by Judge Thompson M. Dietz. (sbp) Service on parties made. (Main Document 32 replaced on 6/3/2024 to attach corrected PDF) (ypb).", + "judges": "Thompson M. Dietz", + "summaries": "REPORTED OPINION granting in part and denying in part [22] Motion to Dismiss - Rule 12(b)(1) and (6", "case_name_shorts": "BASSEN" }, { @@ -2659,8 +2659,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2194", - "judges": "K. Davis", - "summaries": "REPORTED OPINION of the Court&039;s [63] Sealed Opinion. Signed by Judge Kathryn C. Davis. (sbw) Service on parties made.", + "judges": "Kathryn C. Davis", + "summaries": "REPORTED OPINION of the Court&039;s [63] Sealed Opinion", "case_name_shorts": "" }, { @@ -2671,8 +2671,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1746", - "judges": "Z. Somers", - "summaries": "REPORTED OPINION granting in part and denying in part [7] Motion to Dismiss - Rule 12(b)(1) and (6).. Signed by Judge Zachary N. Somers. (taw) Service on parties made.", + "judges": "Zachary N. Somers", + "summaries": "REPORTED OPINION granting in part and denying in part [7] Motion to Dismiss - Rule 12(b)(1) and (6", "case_name_shorts": "" }, { @@ -2683,8 +2683,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1820", - "judges": "M. Silfen", - "summaries": "REPORTED OPINION DISMISSING CASE. Granting the government&039;s [10] motion to dismiss pursuant to Rule 12(b)(1). The Clerk is directed to enter judgment. Signed by Judge Molly R. Silfen. (bp) Service on parties made. Plaintiff served via Certified mail on 5/1/2024; Article Number 7014 1200 0000 9093 9065 (sw).", + "judges": "Molly R. Silfen", + "summaries": "REPORTED OPINION DISMISSING CASE. Granting the government&039;s [10] motion to dismiss pursuant to Rule 12(b)(1). The Clerk is directed to enter judgment", "case_name_shorts": "Hasan" }, { @@ -2695,8 +2695,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-994", - "judges": "K. Davis", - "summaries": "REPORTED ORDER denying [90] Motion for Attorney Fees. Signed by Judge Kathryn C. Davis. (ebl) Service on parties made.", + "judges": "Kathryn C. Davis", + "summaries": "REPORTED ORDER denying [90] Motion for Attorney Fees", "case_name_shorts": "LOHMAN" }, { @@ -2707,8 +2707,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-500", - "judges": "S. Schwartz", - "summaries": "REPORTED OPINION AND ORDER granting [12] MOTION to Intervene filed by PDS Optical. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made.", + "judges": "Stephen S. Schwartz", + "summaries": "REPORTED OPINION AND ORDER granting [12] MOTION to Intervene filed by PDS Optical", "case_name_shorts": "" }, { @@ -2719,8 +2719,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1689", - "judges": "A. Bonilla", - "summaries": "REPORTED OPINION AND ORDER: Plaintiff&039;s motion for judgment on the administrative record (ECF [20]) is DENIED and defendant&039; s cross-motion for judgment on the administrative record (ECF [23]) is GRANTED. All remaining deadlines included in the Court&039;s scheduling order dated October 27, 2023 (ECF 15), as clarified (ECF 17) and amended (ECF 22, 26), are VACATED. The Clerk of Court is directed to ENTER Judgment accordingly. No costs. Signed by Judge Armando O. Bonilla. (ead) Service on parties made.", + "judges": "Armando O. Bonilla", + "summaries": "REPORTED OPINION AND ORDER: Plaintiff&039;s motion for judgment on the administrative record (ECF [20]) is DENIED and defendant&039; s cross-motion for judgment on the administrative record (ECF [23]) is GRANTED. All remaining deadlines included in the Court&039;s scheduling order dated October 27, 2023 (ECF 15), as clarified (ECF 17) and amended (ECF 22, 26), are VACATED. The Clerk of Court is directed to ENTER Judgment accordingly. No costs", "case_name_shorts": "Osburn" }, { @@ -2731,8 +2731,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-129", - "judges": "C. Lerner", - "summaries": "UNREPORTED OPINION. Signed by Judge Carolyn N. Lerner. (ak) Service on parties made. (Main Document 75 replaced on 4/30/2024 to correct typo on page 8, third paragraph, "The Court also reviews claims of inadequate documentation . . ." ) (ac7).", + "judges": "Carolyn N. Lerner", + "summaries": "UNREPORTED OPINION", "case_name_shorts": "" }, { @@ -2743,8 +2743,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1120", - "judges": "E. Kaplan", - "summaries": "RE-DOCKETED FOR POSTING TO THE COURT&039;S WEBSITE UNREPORTED OPINION AND ORDER granting [13] Motion to Dismiss; denying as moot [13] Motion for Judgment on the Administrative Record; denying as moot [14] Motion to Supplement the Administrative Record; and denying as moot [27] Motion for Leave to Exceed Page Limit for Reply in Support of Motion to Supplement the Administrative Record. The Clerk is directed to enter judgment. Signed by Chief Judge Elaine D. Kaplan. (ap) Service on parties made. (vds)", + "judges": "Elaine D. Kaplan", + "summaries": "RE-DOCKETED FOR POSTING TO THE COURT&039;S WEBSITE UNREPORTED OPINION AND ORDER granting [13] Motion to Dismiss; denying as moot [13] Motion for Judgment on the Administrative Record; denying as moot [14] Motion to Supplement the Administrative Record; and denying as moot [27] Motion for Leave to Exceed Page Limit for Reply in Support of Motion to Supplement the Administrative Record. The Clerk is directed to enter judgment", "case_name_shorts": "Kehoe" }, { @@ -2755,8 +2755,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-811", - "judges": "E. Bruggink", - "summaries": "REPORTED Order granting [10] MOTION to Dismiss pursuant to Rule 12(b)(6) filed by USA, The Clerk is directed to enter judgment. Signed by Senior Judge Eric G. Bruggink. (jpk1) Service on parties made. Plaintiff served via certified mail on this day. Article no. 7018 0040 0001 1393 2942 Modified on 4/24/2024 (vds). (Main Document 28 replaced on 5/7/2024 to attach corrected PDF) (ypb).", + "judges": "Eric G. Bruggink", + "summaries": "REPORTED Order granting [10] MOTION to Dismiss pursuant to Rule 12(b)(6) filed by USA, The Clerk is directed to enter judgment", "case_name_shorts": "Golden" }, { @@ -2767,8 +2767,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-614", - "judges": "C. Lerner", - "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE and GRANTING [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment. Signed by Judge Carolyn N. Lerner. (btd) Service on parties made. Plaintiff served via Certified Mail (7018-0040-0001-1393-3475) on 04/24/2024.", + "judges": "Carolyn N. Lerner", + "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE and GRANTING [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment", "case_name_shorts": "Chester" }, { @@ -2779,8 +2779,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-24", - "judges": "M. Horn", - "summaries": "REPORTED OPINION granting [6] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment. Signed by Senior Judge Marian Blank Horn. (jm5) Service on parties made. Plaintiff served via certified mail 70180680000053104685 on 4/25/24. (tb).", + "judges": "Marian Blank Horn", + "summaries": "REPORTED OPINION granting [6] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment", "case_name_shorts": "Ash" }, { @@ -2791,8 +2791,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-322", - "judges": "L. Smith", - "summaries": "ORDER granting [26] Defendant&039;s Motion for Judgment on the Administrative Record; and denying [32] Plaintiff&039;s Cross-Motion for Judgment on the Administrative Record. All other Motions are found as moot. The Clerk is directed to enter judgment. Signed by Senior Judge Loren A. Smith. (mp) Service on parties made.", + "judges": "Loren A. Smith", + "summaries": "ORDER granting [26] Defendant&039;s Motion for Judgment on the Administrative Record; and denying [32] Plaintiff&039;s Cross-Motion for Judgment on the Administrative Record. All other Motions are found as moot. The Clerk is directed to enter judgment", "case_name_shorts": "Sims" }, { @@ -2803,8 +2803,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-523", - "judges": "E. Meyers", - "summaries": "UNREPORTED OPINION DISMISSING CASE. Order granting [2] Motion for Leave to Proceed in forma pauperis; Order dismissing case for lack of subject-matter jurisdiction. The Clerk is directed to enter judgment. Signed by Judge Edward H. Meyers. (cmh) Service on parties made. Plaintiff served via certified mail 7018 0040 0001 1393 3673 (rp).", + "judges": "Edward H. Meyers", + "summaries": "UNREPORTED OPINION DISMISSING CASE. Order granting [2] Motion for Leave to Proceed in forma pauperis; Order dismissing case for lack of subject-matter jurisdiction. The Clerk is directed to enter judgment", "case_name_shorts": "Lewis" }, { @@ -2815,8 +2815,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1182", - "judges": "L. Smith", - "summaries": "REPORTED ORDER AND OPINION granting in part and denying in part [7] Defendant&039;s Motion to Dismiss; and granting Plaintiff leave to amend Complaint. Plaintiff&039;s Amended Complaint due by 5/3/2024. Signed by Senior Judge Loren A. Smith. (ts) Service on parties made. (Main Document 10 replaced on 4/19/2024 to update order) (py).", + "judges": "Loren A. Smith", + "summaries": "REPORTED ORDER AND OPINION granting in part and denying in part [7] Defendant&039;s Motion to Dismiss; and granting Plaintiff leave to amend Complaint. Plaintiff&039;s Amended Complaint due by 5/3/2024", "case_name_shorts": "Landress" }, { @@ -2827,8 +2827,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-321", - "judges": "L. Smith", - "summaries": "OPINION and ORDER granting [25] Defendant&039;s Motion for Judgment on the Administrative Record; and denying [31] Plaintiff&039;s Cross-Motion for Judgment on the Administrative Record. All other Motions are found as moot. The Clerk is directed to enter judgment. Signed by Senior Judge Loren A. Smith. (mp) Service on parties made.", + "judges": "Loren A. Smith", + "summaries": "OPINION and ORDER granting [25] Defendant&039;s Motion for Judgment on the Administrative Record; and denying [31] Plaintiff&039;s Cross-Motion for Judgment on the Administrative Record. All other Motions are found as moot. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -2839,8 +2839,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2177", - "judges": "M. Solomson", - "summaries": "REPORTED OPINION AND ORDER. Defendant&039;s and Defendant-Intervenor&039;s motions to dismiss pursuant to RCFC 12(b)(1) are GRANTED with respect to the task order claims, including those contained in Counts I, III, and IV of FYI&039;s complaint. Regarding all claims, Defendant&039;s and Defendant-Intervenor&039;s respective cross-motions for judgment on the administrative record are GRANTED. In the alternative, the Court GRANTS the Defendant&039;s and Defendant-Intervenor&039;s cross-motions for judgment on the administrative record on the merits. FYI&039;s motion for judgment on the administrative record is DENIED. The Clerk is directed to enter judgment in favor of Defendant, the United States, and Defendant-Intervenor, LinkVisum, Inc. Signed by Judge Matthew H. Solomson. (tf) Service on parties made.", + "judges": "Matthew H. Solomson", + "summaries": "REPORTED OPINION AND ORDER. Defendant&039;s and Defendant-Intervenor&039;s motions to dismiss pursuant to RCFC 12(b)(1) are GRANTED with respect to the task order claims, including those contained in Counts I, III, and IV of FYI&039;s complaint. Regarding all claims, Defendant&039;s and Defendant-Intervenor&039;s respective cross-motions for judgment on the administrative record are GRANTED. In the alternative, the Court GRANTS the Defendant&039;s and Defendant-Intervenor&039;s cross-motions for judgment on the administrative record on the merits. FYI&039;s motion for judgment on the administrative record is DENIED. The Clerk is directed to enter judgment in favor of Defendant, the United States, and Defendant-Intervenor, LinkVisum, Inc", "case_name_shorts": "" }, { @@ -2851,8 +2851,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "99-4451", - "judges": "Z. Somers", - "summaries": "REPORTED OPINION and ORDER granting-in-part and denying-in-part [798], [799], [809], [810] Motions for Attorneys&039; Fees and Litigation Expenses, and denying [830] stipulation for the entry of partial judgment [see footnote 8.]. The Clerk is directed to enter judgment. Signed by Judge Zachary N. Somers. (cas) Service on parties made. Modified on 4/23/2024 to add language re: denial of stipulation for the entry of partial judgment. (dls).", + "judges": "Zachary N. Somers", + "summaries": "REPORTED OPINION and ORDER granting-in-part and denying-in-part [798], [799], [809], [810] Motions for Attorneys&039; Fees and Litigation Expenses, and denying [830] stipulation for the entry of partial judgment [see footnote 8.]. The Clerk is directed to enter judgment", "case_name_shorts": "BANKS" }, { @@ -2863,8 +2863,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "11-685", - "judges": "E. Kaplan", - "summaries": "JUDGE VACCINE UNREPORTED OPINION (PUBLIC VERSION) re: [470] Sealed Opinion and Order on Petitioners&039; Petition for a Writ of Mandamus; Petitioners&039; Motion Requesting Claims Court Entertain Respondents Motion to Reopen Judgment on Entitlement. Signed by Chief Judge Elaine D. Kaplan. (tbs) Service on parties made.", + "judges": "Elaine D. Kaplan", + "summaries": "JUDGE VACCINE UNREPORTED OPINION (PUBLIC VERSION) re: [470] Sealed Opinion and Order on Petitioners&039; Petition for a Writ of Mandamus; Petitioners&039; Motion Requesting Claims Court Entertain Respondents Motion to Reopen Judgment on Entitlement", "case_name_shorts": "SANCHEZ" }, { @@ -2875,8 +2875,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-116", - "judges": "K. Davis", - "summaries": "REPORTED ORDER denying [55] Motion for Summary Judgment; granting in part and denying in part [59] Motion for Summary Judgment; on [55] MOTION for Summary Judgment on Count I of the First Amended Complaint filed by GBA ASSOCIATES LIMITED PARTNERSHIP, [59] MOTION for Summary Judgment filed by USA. The parties shall submit a Joint Status Report due by 4/30/2024. Signed by Judge Kathryn C. Davis. (ks) Service on parties made.", + "judges": "Kathryn C. Davis", + "summaries": "REPORTED ORDER denying [55] Motion for Summary Judgment; granting in part and denying in part [59] Motion for Summary Judgment; on [55] MOTION for Summary Judgment on Count I of the First Amended Complaint filed by GBA ASSOCIATES LIMITED PARTNERSHIP, [59] MOTION for Summary Judgment filed by USA. The parties shall submit a Joint Status Report due by 4/30/2024", "case_name_shorts": "" }, { @@ -2887,8 +2887,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-391", - "judges": "C. Lerner", - "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE, GRANTING [8] and [9] Motions for Leave to Proceed in forma pauperis, and DENYING [12] Motion to Expedite as moot. The Clerk is directed to enter judgment. Signed by Judge Carolyn N. Lerner. (tsr) Service on parties made. RE: Docket 14-15 Plaintiff served via Certified Mail 7018 0680 0000 5310 4746 to Robert E. Crimo, III on 04/15/2024. (ac7).", + "judges": "Carolyn N. Lerner", + "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE, GRANTING [8] and [9] Motions for Leave to Proceed in forma pauperis, and DENYING [12] Motion to Expedite as moot. The Clerk is directed to enter judgment", "case_name_shorts": "PESINA" }, { @@ -2899,8 +2899,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1093", - "judges": "R. Holte", - "summaries": "UNREPORTED ORDER granting [7] the government&039;s Motion to Dismiss. The Clerk is directed to file plaintiff&039;s Surreply and enter judgment dismissing plaintiff&039;s Complaint. Signed by Judge Ryan T. Holte. (mbn) Service on parties made. Plaintiff served via Certified Mail on this day (7018-1130-0001-2453-5469). Modified on 4/12/2024 (aoc). Plaintiff served via certified mail on 5/20/24, no. 7017 0190 0000 4739 5719 (ypb). Plaintiff served via certified mail 7017-2680-0001-1159-8574 on 6/28/2024. (aoc).", + "judges": "Ryan T. Holte", + "summaries": "UNREPORTED ORDER granting [7] the government&039;s Motion to Dismiss. The Clerk is directed to file plaintiff&039;s Surreply and enter judgment dismissing plaintiff&039;s Complaint", "case_name_shorts": "Surface" }, { @@ -2911,8 +2911,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-581", - "judges": "K. Davis", - "summaries": "REPORTED OPINION of the Court&039;s [70] Sealed Opinion. Signed by Judge Kathryn C. Davis. (sbw) Service on parties made.", + "judges": "Kathryn C. Davis", + "summaries": "REPORTED OPINION of the Court&039;s [70] Sealed Opinion", "case_name_shorts": "" }, { @@ -2923,8 +2923,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-56", - "judges": "R. Hertling", - "summaries": "JUDGE VACCINE REPORTED OPINION (PUBLIC VERSION). Reissued public opinion of the Court&039;s sealed Opinion [161] filed on 3/27/2024. Signed by Judge Richard A. Hertling. (tbss) Service on parties made. Modified on 4/12/2024 - corrected minor typographical error (jt1).", + "judges": "Richard A. Hertling", + "summaries": "JUDGE VACCINE REPORTED OPINION (PUBLIC VERSION). Reissued public opinion of the Court&039;s sealed Opinion [161] filed on 3/27/2024", "case_name_shorts": "Stricker" }, { @@ -2935,8 +2935,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "13-1014", - "judges": "D. Tapp", - "summaries": "UNREPORTED OPINION: granting [80] Motion to Dismiss pursuant to Rule 12(b)(1) and 12(c); denying as moot [82] Cross Moption and Response. The Clerk is directed to enter judgment. The Clerk is directed to REJECT any future submissions in this case unless they comply with this Court&039;s rules regarding post-dismissal submissions. Signed by Judge David A. Tapp. (smr) Service on parties made. plaintiff served via first class mail. (dls) Modified on 4/29/2024 to add anti-filing language (ypb).", + "judges": "David A. Tapp", + "summaries": "UNREPORTED OPINION: granting [80] Motion to Dismiss pursuant to Rule 12(b)(1) and 12(c); denying as moot [82] Cross Moption and Response. The Clerk is directed to enter judgment. The Clerk is directed to REJECT any future submissions in this case unless they comply with this Court&039;s rules regarding post-dismissal submissions", "case_name_shorts": "Saltzman" }, { @@ -2947,8 +2947,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-210", - "judges": "R. Holte", - "summaries": "REPORTED OPINION finding as moot [80] K2&039;s Motion to Intervene; finding as moot [93] K2&039;s Amended Motion to Intervene; finding as moot [97] GK9&039;s Motion to Seal Document; granting [126] the government&039;s Unopposed Motion for Extension of Time; granting [127] the government&039;s Motion for Leave to File Supplement; finding as moot [130] K2&039;s Motion for Leave to File Surreply; and striking [92] GK9&039;s Objection as deficient. The Clerk is directed strike [92] and enter judgment. Signed by Judge Ryan T. Holte. (mbn) Service on parties made.", + "judges": "Ryan T. Holte", + "summaries": "REPORTED OPINION finding as moot [80] K2&039;s Motion to Intervene; finding as moot [93] K2&039;s Amended Motion to Intervene; finding as moot [97] GK9&039;s Motion to Seal Document; granting [126] the government&039;s Unopposed Motion for Extension of Time; granting [127] the government&039;s Motion for Leave to File Supplement; finding as moot [130] K2&039;s Motion for Leave to File Surreply; and striking [92] GK9&039;s Objection as deficient. The Clerk is directed strike [92] and enter judgment", "case_name_shorts": "" }, { @@ -2959,8 +2959,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1614", - "judges": "R. Holte", - "summaries": "REPORTED OPINION lifting the stay and finding as moot [21], [46], [132], [133], and [149]. The Clerk is directed enter judgment. Signed by Judge Ryan T. Holte. (mbn) Service on parties made. (Main Document 186 replaced on 4/15/2024 to add member case to caption) (ar).", + "judges": "Ryan T. Holte", + "summaries": "REPORTED OPINION lifting the stay and finding as moot [21], [46], [132], [133], and [149]. The Clerk is directed enter judgment", "case_name_shorts": "" }, { @@ -2971,8 +2971,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2080", - "judges": "M. Silfen", - "summaries": "REPORTED OPINION granting government&039;s [10] motion to dismiss pursuant to Rule 12(b)(1) and granting plaintiff&039;s [9] motion for reconsideration. The Clerk is directed to enter judgment. Signed by Judge Molly R. Silfen. (bp) Service on parties made; plaintiff served via first class mail. (dls) Plaintiff served via Certified mail on 4/9/2024; Article Number 7014 1200 0000 9093 9041 (sw).", + "judges": "Molly R. Silfen", + "summaries": "REPORTED OPINION granting government&039;s [10] motion to dismiss pursuant to Rule 12(b)(1) and granting plaintiff&039;s [9] motion for reconsideration. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -2983,8 +2983,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-49", - "judges": "E. Roumel", - "summaries": "UNREPORTED OPINION granting [10] Defendant&039;s Motion to Dismiss pursuant to Rules 12(b)(1), 12(b)(6), and 12(h)(3). Plaintiffs&039; Complaint is dismissed without leave to replead. The Clerk of Court is DIRECTED to enter Judgment accordingly. Signed by Judge Eleni M. Roumel. (ms) Service on parties made. Plaintiff served via Certified mail on 4/9/2024; Article Number 7014 1200 0000 9093 9058 (sw).", + "judges": "Eleni M. Roumel", + "summaries": "UNREPORTED OPINION granting [10] Defendant&039;s Motion to Dismiss pursuant to Rules 12(b)(1), 12(b)(6), and 12(h)(3). Plaintiffs&039; Complaint is dismissed without leave to replead. The Clerk of Court is DIRECTED to enter Judgment accordingly", "case_name_shorts": "FRANCIS" }, { @@ -2995,8 +2995,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-267", - "judges": "M. Silfen", - "summaries": "REPORTED OPINION granting the government&039;s [83] motion to dismiss, denying plaintiff&039;s [64] motion to expedite, plaintiff&039;s [77] motion to amend pleadings, and plaintiff&039;s [89] motion for status of case service. The Clerk is directed to enter judgment. Signed by Judge Molly R. Silfen. (bp) Service on parties made. Plaintiff served via Certified Mail 7018 2290 0000 5183 7221 on 4/8/24. (ac7).", + "judges": "Molly R. Silfen", + "summaries": "REPORTED OPINION granting the government&039;s [83] motion to dismiss, denying plaintiff&039;s [64] motion to expedite, plaintiff&039;s [77] motion to amend pleadings, and plaintiff&039;s [89] motion for status of case service. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -3007,8 +3007,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-241", - "judges": "P. Hadji", - "summaries": "UNREPORTED OPINION and ORDER denying [25] Plaintiff&039;s Motion for Judgment on the Administrative Record, granting [26] Defendant&039;s Motion for Judgment on the Administrative Record, and granting [27] Intervenor&039;s Motion for Judgment on the Administrative Record. Plaintiff&039;s Motion for Preliminary Injunction [2] is DENIED as moot. The Clerk of Court is DIRECTED to enter judgment in favor of the Government. Signed by Judge Philip S. Hadji. (lrf) Copy to parties.", + "judges": "Philip S. Hadji", + "summaries": "UNREPORTED OPINION and ORDER denying [25] Plaintiff&039;s Motion for Judgment on the Administrative Record, granting [26] Defendant&039;s Motion for Judgment on the Administrative Record, and granting [27] Intervenor&039;s Motion for Judgment on the Administrative Record. Plaintiff&039;s Motion for Preliminary Injunction [2] is DENIED as moot. The Clerk of Court is DIRECTED to enter judgment in favor of the Government", "case_name_shorts": "" }, { @@ -3019,8 +3019,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1756", - "judges": "D. Tapp", - "summaries": "REPORTED ORDER. ECF No. [71] reissued. Signed by Judge David A. Tapp. (smr) Service on parties made.", + "judges": "David A. Tapp", + "summaries": "REPORTED ORDER. ECF No. [71] reissued", "case_name_shorts": "" }, { @@ -3031,8 +3031,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1388", - "judges": "S. Schwartz", - "summaries": "UNREPORTED OPINION AND ORDER denying [46] Motion to Supplement the Administrative Record filed by YISHAI QOYE; granting [71] Motion to Dismiss - Rule 12(b)(1) filed by USA; granting [71] Motion for Judgment on the Administrative Record filed by USA; denying [72] Cross Motion for Judgment on the Administrative Record filed by YISHAI QOYE; denying [75] Motion for Order to Preserve Naval Engine Room Records filed by YISHAI QOYE. The Clerk is directed to enter judgment. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made.", + "judges": "Stephen S. Schwartz", + "summaries": "UNREPORTED OPINION AND ORDER denying [46] Motion to Supplement the Administrative Record filed by YISHAI QOYE; granting [71] Motion to Dismiss - Rule 12(b)(1) filed by USA; granting [71] Motion for Judgment on the Administrative Record filed by USA; denying [72] Cross Motion for Judgment on the Administrative Record filed by YISHAI QOYE; denying [75] Motion for Order to Preserve Naval Engine Room Records filed by YISHAI QOYE. The Clerk is directed to enter judgment", "case_name_shorts": "Qoye" }, { @@ -3043,8 +3043,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1686", - "judges": "T. Dietz", - "summaries": "REPORTED OPINION and ORDER granting [9] the Government&039;s Motion to Dismiss pursuant to Rules 12(b)(1) and 12(b)(6); denying as moot [6] Plaintiff&039;s Motion to Amend/Correct the Docket; denying as moot [7] the Government&039;s Motion for Extension of Time to File Response. The Clerk is directed to enter judgment. Signed by Judge Thompson M. Dietz. (ktl) Service on parties made.", + "judges": "Thompson M. Dietz", + "summaries": "REPORTED OPINION and ORDER granting [9] the Government&039;s Motion to Dismiss pursuant to Rules 12(b)(1) and 12(b)(6); denying as moot [6] Plaintiff&039;s Motion to Amend/Correct the Docket; denying as moot [7] the Government&039;s Motion for Extension of Time to File Response. The Clerk is directed to enter judgment", "case_name_shorts": "Kehmeier" }, { @@ -3055,8 +3055,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1313", - "judges": "C. Lerner", - "summaries": "REPORTED OPINION GRANTING [11] Motion to Dismiss. The Clerk is directed to enter judgment. Signed by Judge Carolyn N. Lerner. (tsr) Service on parties made.", + "judges": "Carolyn N. Lerner", + "summaries": "REPORTED OPINION GRANTING [11] Motion to Dismiss. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -3067,8 +3067,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1754", - "judges": "A. Bonilla", - "summaries": "REPORTED OPINION AND ORDER reissued [34] SEALED OPINION AND ORDER: Plaintiff&039;s motion to waive oral argument (ECF [31] )is GRANTED, plaintiff&039;s motion for judgment on the administrative record (ECF [24] ) is DENIED, and defendant&039;s cross-motion to dismiss and for judgment on the administrative record (ECF 27 ) is DENIED-IN-PART and GRANTED-IN-PART in that the motion to dismiss is DENIED and the motion for judgment on the administrative record is GRANTED. The Clerk of Court is directed to ENTER Judgment accordingly. No costs. Signed by Judge Armando O. Bonilla. (ead) Service on parties made.", + "judges": "Armando O. Bonilla", + "summaries": "REPORTED OPINION AND ORDER reissued [34] SEALED OPINION AND ORDER: Plaintiff&039;s motion to waive oral argument (ECF [31] )is GRANTED, plaintiff&039;s motion for judgment on the administrative record (ECF [24] ) is DENIED, and defendant&039;s cross-motion to dismiss and for judgment on the administrative record (ECF 27 ) is DENIED-IN-PART and GRANTED-IN-PART in that the motion to dismiss is DENIED and the motion for judgment on the administrative record is GRANTED. The Clerk of Court is directed to ENTER Judgment accordingly. No costs", "case_name_shorts": "" }, { @@ -3079,8 +3079,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1701", - "judges": "M. Solomson", - "summaries": "UNREPORTED OPINION DISMISSING CASE. The Court DISMISSES Plaintiff&039;s complaint for lack of subject-matter jurisdiction pursuant to RCFC 12(h)(3). The Clerk is directed to enter judgment for the government, dismissing the case. The Clerk is directed to enter judgment. Signed by Judge Matthew H. Solomson. (tf) Service on parties made. (Main Document 19 replaced on 4/5/2024 to correct title of document) (ar).", + "judges": "Matthew H. Solomson", + "summaries": "UNREPORTED OPINION DISMISSING CASE. The Court DISMISSES Plaintiff&039;s complaint for lack of subject-matter jurisdiction pursuant to RCFC 12(h)(3). The Clerk is directed to enter judgment for the government, dismissing the case. The Clerk is directed to enter judgment", "case_name_shorts": "Ball" }, { @@ -3091,8 +3091,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1116", - "judges": "T. Dietz", - "summaries": "MEMORANDUM OPINION AND ORDER: Unsealed version of the Court&039;s 3/13/2024 Memorandum Opinion and Order granting in part and denying in part [63] the Yankees&039; Motion to Compel; granting in part and denying in part [68] the Government&039;s Contingent Motion to Compel. Signed by Judge Thompson M. Dietz. (sbp) Service on parties made.", + "judges": "Thompson M. Dietz", + "summaries": "MEMORANDUM OPINION AND ORDER: Unsealed version of the Court&039;s 3/13/2024 Memorandum Opinion and Order granting in part and denying in part [63] the Yankees&039; Motion to Compel; granting in part and denying in part [68] the Government&039;s Contingent Motion to Compel", "case_name_shorts": "" }, { @@ -3103,8 +3103,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1657", - "judges": "M. Solomson", - "summaries": "REPORTED ORDER (public version) re: [67] OPINION and ORDER DENYING [46] MOTION for Judgment on the Administrative Record filed by RAYTHEON COMPANY, GRANTING [49] MOTION for Judgment on the Administrative Record filed by BAE SYSTEMS INFORMATION AND ELECTRONIC SYSTEMS INTEGRATION INC., and GRANTING [52] Motion for Judgment on the Administrative Record filed by USA. Signed by Judge Matthew H. Solomson. (tf) Service on parties made.", + "judges": "Matthew H. Solomson", + "summaries": "REPORTED ORDER (public version) re: [67] OPINION and ORDER DENYING [46] MOTION for Judgment on the Administrative Record filed by RAYTHEON COMPANY, GRANTING [49] MOTION for Judgment on the Administrative Record filed by BAE SYSTEMS INFORMATION AND ELECTRONIC SYSTEMS INTEGRATION INC., and GRANTING [52] Motion for Judgment on the Administrative Record filed by USA", "case_name_shorts": "" }, { @@ -3115,8 +3115,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-455", - "judges": "Z. Somers", - "summaries": "UNREPORTED OPINION DISMISSING CASE. The Clerk is directed to enter judgment. Signed by Judge Zachary N. Somers. (mss) Service on parties made. Modified on 4/4/2024 to correct case caption. (ac7). Plaintiff served via First Class mail on 4/4/24. (tb).", + "judges": "Zachary N. Somers", + "summaries": "UNREPORTED OPINION DISMISSING CASE. The Clerk is directed to enter judgment", "case_name_shorts": "KELLETT" }, { @@ -3127,8 +3127,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2089", - "judges": "Z. Somers", - "summaries": "UNREPORTED OPINION DISMISSING CASE. The Clerk is directed to enter judgment. Signed by Judge Zachary N. Somers. (taw) Service on parties made. Plaintiff served via First Class mail on 4/1/2024. (ac7).", + "judges": "Zachary N. Somers", + "summaries": "UNREPORTED OPINION DISMISSING CASE. The Clerk is directed to enter judgment", "case_name_shorts": "Dollen" }, { @@ -3139,8 +3139,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-179", - "judges": "E. Meyers", - "summaries": "UNREPORTED ORDER denying [68] Motion to Dismiss - Rule 12(b)(6). Signed by Judge Edward H. Meyers. (cmh) Service on parties made.", + "judges": "Edward H. Meyers", + "summaries": "UNREPORTED ORDER denying [68] Motion to Dismiss - Rule 12(b)(6", "case_name_shorts": "Beberman" }, { @@ -3151,8 +3151,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1029", - "judges": "R. Hertling", - "summaries": "REPORTED OPINION: The plaintiff&039;s motions for [15] judgment on the pleadings and [17] summary judgment are DENIED. The defendant&039;s [23] motion for summary judgment is GRANTED. Signed by Judge Richard A. Hertling. (lw) Service on parties made.", + "judges": "Richard A. Hertling", + "summaries": "REPORTED OPINION: The plaintiff&039;s motions for [15] judgment on the pleadings and [17] summary judgment are DENIED. The defendant&039;s [23] motion for summary judgment is GRANTED", "case_name_shorts": "" }, { @@ -3163,8 +3163,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2196", - "judges": "E. Damich", - "summaries": "UNREPORTED OPINION DISMISSING CASE: granting [7] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment. Signed by Senior Judge Edward J. Damich. (hem) Service on parties made. Plaintiff served via certified mail 70181130000124535629 on 3/28/24. (tb).", + "judges": "Edward J. Damich", + "summaries": "UNREPORTED OPINION DISMISSING CASE: granting [7] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment", "case_name_shorts": "Richardson-Henderson" }, { @@ -3175,8 +3175,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1736", - "judges": "Z. Somers", - "summaries": "REPORTED OPINION DISMISSING CASE and GRANTING [21] MOTION to Dismiss pursuant to Rules 12(b)(1) and 12(b)(6). The Clerk is directed to enter judgment. Signed by Judge Zachary N. Somers. (mss) Service on parties made.", + "judges": "Zachary N. Somers", + "summaries": "REPORTED OPINION DISMISSING CASE and GRANTING [21] MOTION to Dismiss pursuant to Rules 12(b)(1) and 12(b)(6). The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -3187,8 +3187,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-885", - "judges": "M. Silfen", - "summaries": "REPORTED OPINION AND ORDER denying [12] Mr. Ferrari&039;s motion for judgment on the administrative record and granting [17] the government&039;s motion for judgment on the administrative record. The Clerk is directed to enter judgment. Signed by Judge Molly R. Silfen. (asw) Service on parties made.", + "judges": "Molly R. Silfen", + "summaries": "REPORTED OPINION AND ORDER denying [12] Mr. Ferrari&039;s motion for judgment on the administrative record and granting [17] the government&039;s motion for judgment on the administrative record. The Clerk is directed to enter judgment", "case_name_shorts": "Ferrari" }, { @@ -3199,8 +3199,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-455", - "judges": "E. Kaplan", - "summaries": "UNREPORTED OPINION granting [11] Motion to Dismiss; granting [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment. Signed by Chief Judge Elaine D. Kaplan. (aa) Service on parties made. Plaintiff served via certified mail no. 7018 1130 0001 2453 5421 Modified on 4/3/2024 (vds).", + "judges": "Elaine D. Kaplan", + "summaries": "UNREPORTED OPINION granting [11] Motion to Dismiss; granting [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment", "case_name_shorts": "Barnes" }, { @@ -3211,8 +3211,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1368", - "judges": "E. Meyers", - "summaries": "UNREPORTED OPINION DISMISSING CASE. Order granting [6] Motion to Dismiss - Rule 12(b)(1); granting [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment. Signed by Judge Edward H. Meyers. (cmh) Service on parties made. Plaintiff served via certified mail 70181130000124535636 on 3/28/24. (tb).", + "judges": "Edward H. Meyers", + "summaries": "UNREPORTED OPINION DISMISSING CASE. Order granting [6] Motion to Dismiss - Rule 12(b)(1); granting [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment", "case_name_shorts": "Alford" }, { @@ -3223,8 +3223,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1819", - "judges": "E. Kaplan", - "summaries": "UNREPORTED OPINION AND ORDER granting [8] Def.&039;s Motion to Dismiss; dismissing [1] Pl.&039;s Complaint. The Clerk is directed to enter judgment. Signed by Chief Judge Elaine D. Kaplan. (tbs) Service on parties made. Plaintiff served via certified mail no. 7018 1130 0001 2453 5414 Modified on 4/3/2024 (vds).", + "judges": "Elaine D. Kaplan", + "summaries": "UNREPORTED OPINION AND ORDER granting [8] Def.&039;s Motion to Dismiss; dismissing [1] Pl.&039;s Complaint. The Clerk is directed to enter judgment", "case_name_shorts": "Piltan" }, { @@ -3235,8 +3235,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1684", - "judges": "C. Lerner", - "summaries": "UNREPORTED OPINION GRANTING [8] Motion to Dismiss - Rule 12(b)(1) and (6). The Clerk is directed to enter judgment. Signed by Judge Carolyn N. Lerner. (btd) Service on parties made.", + "judges": "Carolyn N. Lerner", + "summaries": "UNREPORTED OPINION GRANTING [8] Motion to Dismiss - Rule 12(b)(1) and (6). The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -3247,8 +3247,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1407", - "judges": "E. Meyers", - "summaries": "REPORTED OPINION/ORDER granting [7] MOTION to Dismiss pursuant to Rule 12(b)(6). The Clerk is directed to enter judgment accordingly. Signed by Judge Edward H. Meyers. (db) Service on parties made.", + "judges": "Edward H. Meyers", + "summaries": "REPORTED OPINION/ORDER granting [7] MOTION to Dismiss pursuant to Rule 12(b)(6). The Clerk is directed to enter judgment accordingly", "case_name_shorts": "" }, { @@ -3259,8 +3259,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1854", - "judges": "A. Bonilla", - "summaries": "TRANSFER ORDER: Granting plaintiff&039;s [9] motion to transfer; The remaining filing deadline included in the Court&039;s February 13, 2024 Scheduling Order (ECF [8]) is VACATED; This matter is TRANSFERRED to the Civilian Board of Contract Appeals pursuant to 41 U.S.C. &167; 7107(d); and the Clerk of Court is directed to TRANSFER this case to the Civilian Board of Contract Appeals by mailing a certified copy of this order and a copy of the docket sheet in this matter to the Civilian Board of Contract Appeals. Signed by Judge Armando O. Bonilla. (ead) Service on parties made.", + "judges": "Armando O. Bonilla", + "summaries": "TRANSFER ORDER: Granting plaintiff&039;s [9] motion to transfer; The remaining filing deadline included in the Court&039;s February 13, 2024 Scheduling Order (ECF [8]) is VACATED; This matter is TRANSFERRED to the Civilian Board of Contract Appeals pursuant to 41 U.S.C. &167; 7107(d); and the Clerk of Court is directed to TRANSFER this case to the Civilian Board of Contract Appeals by mailing a certified copy of this order and a copy of the docket sheet in this matter to the Civilian Board of Contract Appeals", "case_name_shorts": "" }, { @@ -3271,8 +3271,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-440", - "judges": "E. Kaplan", - "summaries": "JUDGE VACCINE REPORTED OPINION (PUBLIC VERSION) re: [147] Sealed Opinion/Order on Pet&039;rs&039; Corrected Motion for Review. Signed by Chief Judge Elaine D. Kaplan. (tbs) Service on parties made. (Main Document 149 replaced on 4/18/2024) (vds).", + "judges": "Elaine D. Kaplan", + "summaries": "JUDGE VACCINE REPORTED OPINION (PUBLIC VERSION) re: [147] Sealed Opinion/Order on Pet&039;rs&039; Corrected Motion for Review", "case_name_shorts": "VINESAR" }, { @@ -3283,8 +3283,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-711", - "judges": "T. Dietz", - "summaries": "REPORTED OPINION denying [20] Motion to Dismiss - Rule 12(b)(1); granting in part and denying in part [20] Motion for Summary Judgment. Joint Status Report due by 4/8/2024.Signed by Judge Thompson M. Dietz. (mlr) Service on parties made.", + "judges": "Thompson M. Dietz", + "summaries": "REPORTED OPINION denying [20] Motion to Dismiss - Rule 12(b)(1); granting in part and denying in part [20] Motion for Summary Judgment. Joint Status Report due by 4/8/2024", "case_name_shorts": "" }, { @@ -3295,8 +3295,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1168", - "judges": "E. Meyers", - "summaries": "REPORTED OPINION denying as moot [87] Motion to Amend/Correct; granting in part and denying in part [88] Motion for Judgment on the Administrative Record; denying [90] Cross Motion. The Court REMANDS this case to the BCNR for 4 months until July 23, 2024, for further consideration consistent with this opinion. This case will be STAYED during the remand. (Status Report due by 6/21/2024; Remand ends on 7/23/2024.) Signed by Judge Edward H. Meyers. (cmh) Service on parties made.", + "judges": "Edward H. Meyers", + "summaries": "REPORTED OPINION denying as moot [87] Motion to Amend/Correct; granting in part and denying in part [88] Motion for Judgment on the Administrative Record; denying [90] Cross Motion. The Court REMANDS this case to the BCNR for 4 months until July 23, 2024, for further consideration consistent with this opinion. This case will be STAYED during the remand. (Status Report due by 6/21/2024; Remand ends on 7/23/2024", "case_name_shorts": "Ford" }, { @@ -3307,8 +3307,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1452", - "judges": "M. Horn", - "summaries": "REPORTED OPINION. Signed by Senior Judge Marian Blank Horn. (jm5) Service on parties made.", + "judges": "Marian Blank Horn", + "summaries": "REPORTED OPINION", "case_name_shorts": "" }, { @@ -3319,8 +3319,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2327", - "judges": "C. Lettow", - "summaries": "REPORTED OPINION (Reissued as Public Version of March 15, 2024 Opinion). Signed by Senior Judge Charles F. Lettow. (vas)", + "judges": "Charles F. Lettow", + "summaries": "REPORTED OPINION (Reissued as Public Version of March 15, 2024 Opinion", "case_name_shorts": "" }, { @@ -3331,8 +3331,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "10-683", - "judges": "V. Wolski", - "summaries": "UNREPORTED ORDER granting in part and denying in part [115] Motion ; granting [118] Motion ; on [115] MOTION for a Status Hearing filed by KAY L. ROGERSON, [118] MOTION Request for a Status Hearing filed by KAY L. ROGERSON, [114] MOTION to Amend/Correct [113] Response filed by KAY L. ROGERSON (Defendant&039;s Brief due by 4/5/2024). Signed by Senior Judge Victor J. Wolski. (mvl) Service on parties made. plaintiff served via U.S. mail on 3.25.24 d (ac7).", + "judges": "Victor J. Wolski", + "summaries": "UNREPORTED ORDER granting in part and denying in part [115] Motion ; granting [118] Motion ; on [115] MOTION for a Status Hearing filed by KAY L. ROGERSON, [118] MOTION Request for a Status Hearing filed by KAY L. ROGERSON, [114] MOTION to Amend/Correct [113] Response filed by KAY L. ROGERSON (Defendant&039;s Brief due by 4/5/2024", "case_name_shorts": "Rogerson" }, { @@ -3343,8 +3343,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-48", - "judges": "M. Horn", - "summaries": "REPORTED OPINION. Signed by Senior Judge Marian Blank Horn. (jm5) Service on parties made.", + "judges": "Marian Blank Horn", + "summaries": "REPORTED OPINION", "case_name_shorts": "CHEUNG" }, { @@ -3355,8 +3355,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-399", - "judges": "P. Hadji", - "summaries": "UNREPORTED OPINION Denying [23] Motion for Judgment on the Pleadings filed by USA. Signed by Judge Philip S. Hadji. (mcb) Service on parties made.", + "judges": "Philip S. Hadji", + "summaries": "UNREPORTED OPINION Denying [23] Motion for Judgment on the Pleadings filed by USA", "case_name_shorts": "TADDEO" }, { @@ -3367,8 +3367,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-143", - "judges": "P. Hadji", - "summaries": "UNREPORTED OPINION GRANTING [18] MOTION to Dismiss pursuant to Rules 12 (b)(1) and (6) filed by USA. The Clerk is directed to enter judgment. Signed by Judge Philip S. Hadji. (mcb) Service on parties made.", + "judges": "Philip S. Hadji", + "summaries": "UNREPORTED OPINION GRANTING [18] MOTION to Dismiss pursuant to Rules 12 (b)(1) and (6) filed by USA. The Clerk is directed to enter judgment", "case_name_shorts": "Roig" }, { @@ -3379,8 +3379,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-131", - "judges": "D. Tapp", - "summaries": "UNREPORTED OPINION DISMISSING CASE. ORDER GRANTING [7] MOTION to Dismiss pursuant to Rules 12 (b)(1) and (6) filed by USA; TERMINATING [8] MOTION for Summary Judgment filed by HERNDON HUNT OUTLAW RIDDLE; DENYING [10] MOTION to Strike [9] Reply to Response to Motion filed by HERNDON HUNT OUTLAW RIDDLE; GRANTING [11] MOTION to rename [8] MOTION for Summary Judgment filed by HERNDON HUNT OUTLAW RIDDLE. The Clerk shall REJECT (1) Plaintiff&039;s attempted filings that are duplicates of documents already filed, and (2) any filings that do not comply with post-dismissal rules. The Clerk is directed to ACCEPT Plaintiff&039;s &036;3 filing fee and WAIVE remainder. The Clerk is directed to enter judgment for United States. Signed by Judge David A. Tapp. (emc) Service on parties made. Plaintiff served via First Class mail on 3/21/24. (tb).", + "judges": "David A. Tapp", + "summaries": "UNREPORTED OPINION DISMISSING CASE. ORDER GRANTING [7] MOTION to Dismiss pursuant to Rules 12 (b)(1) and (6) filed by USA; TERMINATING [8] MOTION for Summary Judgment filed by HERNDON HUNT OUTLAW RIDDLE; DENYING [10] MOTION to Strike [9] Reply to Response to Motion filed by HERNDON HUNT OUTLAW RIDDLE; GRANTING [11] MOTION to rename [8] MOTION for Summary Judgment filed by HERNDON HUNT OUTLAW RIDDLE. The Clerk shall REJECT (1) Plaintiff&039;s attempted filings that are duplicates of documents already filed, and (2) any filings that do not comply with post-dismissal rules. The Clerk is directed to ACCEPT Plaintiff&039;s &036;3 filing fee and WAIVE remainder. The Clerk is directed to enter judgment for United States", "case_name_shorts": "Riddle" }, { @@ -3391,8 +3391,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-667", - "judges": "A. Bonilla", - "summaries": "REPORTED OPINION AND ORDER reissued [87] OPINION AND ORDER: Petitioner&039;s [82] motion for review is GRANTED and the [80] decision denying attorney&039;s fees and costs issued by the Office of Special Masters is VACATED and this case is REMANDED for further proceedings consistent with this opinion. Signed by Judge Armando O. Bonilla. (ead) Service on parties made.", + "judges": "Armando O. Bonilla", + "summaries": "REPORTED OPINION AND ORDER reissued [87] OPINION AND ORDER: Petitioner&039;s [82] motion for review is GRANTED and the [80] decision denying attorney&039;s fees and costs issued by the Office of Special Masters is VACATED and this case is REMANDED for further proceedings consistent with this opinion", "case_name_shorts": "Mead" }, { @@ -3403,8 +3403,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-925", - "judges": "D. Tapp", - "summaries": "JUDGE VACCINE REPORTED OPINION (PUBLIC VERSION) re: [95] Order on Motion for Review, Judge Vaccine Order/Opinion. Signed by Judge David A. Tapp. (smr) Service on parties made.", + "judges": "David A. Tapp", + "summaries": "JUDGE VACCINE REPORTED OPINION (PUBLIC VERSION) re: [95] Order on Motion for Review, Judge Vaccine Order/Opinion", "case_name_shorts": "Gamboa-Avila" }, { @@ -3415,8 +3415,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-6", - "judges": "E. Meyers", - "summaries": "REPORTED OPINION/ORDER denying [7] Motion to Dismiss - Rule 12(b)(6). Signed by Judge Edward H. Meyers. (cmh) Service on parties made.", + "judges": "Edward H. Meyers", + "summaries": "REPORTED OPINION/ORDER denying [7] Motion to Dismiss - Rule 12(b)(6", "case_name_shorts": "" }, { @@ -3427,8 +3427,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1124", - "judges": "E. Kaplan", - "summaries": "REPORTED OPINION denying [63] Motion to Dismiss in Part; denying [95] Motion to Dismiss in Part; granting [87] Motion for Summary Judgment. The Clerk is directed to enter judgment. Signed by Chief Judge Elaine D. Kaplan. (aa) Service on parties made.", + "judges": "Elaine D. Kaplan", + "summaries": "REPORTED OPINION denying [63] Motion to Dismiss in Part; denying [95] Motion to Dismiss in Part; granting [87] Motion for Summary Judgment. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -3439,8 +3439,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1744", - "judges": "E. Roumel", - "summaries": "UNREPORTED OPINION granting [2] Plaintiff&039;s Motion for Leave to Proceed in forma pauperis and granting [6] Defendant&039;s Motion to Dismiss pursuant to Rules 12(b)(1), 12(b)(6), and 12(h)(3). Plaintiff&039;s Complaint is dismissed without leave to replead. The Clerk of Court is DIRECTED to enter Judgment accordingly. Signed by Judge Eleni M. Roumel. (ms) Service on parties made; plaintiff served via first class mail. (dls)", + "judges": "Eleni M. Roumel", + "summaries": "UNREPORTED OPINION granting [2] Plaintiff&039;s Motion for Leave to Proceed in forma pauperis and granting [6] Defendant&039;s Motion to Dismiss pursuant to Rules 12(b)(1), 12(b)(6), and 12(h)(3). Plaintiff&039;s Complaint is dismissed without leave to replead. The Clerk of Court is DIRECTED to enter Judgment accordingly", "case_name_shorts": "" }, { @@ -3451,8 +3451,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-408", - "judges": "C. Lerner", - "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE and GRANTING [2] Motion for Leave to Proceed in forma pauperis. Plaintiff&039;s Motion to Proceed Under Seal is also DENIED. The Clerk is directed to enter judgment. Signed by Judge Carolyn N. Lerner. (btd) Service on parties made; plaintiff served via first class mail. (dls)", + "judges": "Carolyn N. Lerner", + "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE and GRANTING [2] Motion for Leave to Proceed in forma pauperis. Plaintiff&039;s Motion to Proceed Under Seal is also DENIED. The Clerk is directed to enter judgment", "case_name_shorts": "Boe" }, { @@ -3463,8 +3463,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-85", - "judges": "S. Schwartz", - "summaries": "UNREPORTED ORDER granting [36] MOTION to Voluntarily Dismiss pursuant to Rule 41(a) filed by CESAR R. VAZQUEZ TORRES; denying as moot [29] MOTION for Mootness filed by CESAR R. VAZQUEZ TORRES. The Clerk is directed to enter judgment. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made.", + "judges": "Stephen S. Schwartz", + "summaries": "UNREPORTED ORDER granting [36] MOTION to Voluntarily Dismiss pursuant to Rule 41(a) filed by CESAR R. VAZQUEZ TORRES; denying as moot [29] MOTION for Mootness filed by CESAR R. VAZQUEZ TORRES. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -3475,8 +3475,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-192", - "judges": "M. Silfen", - "summaries": "REPORTED OPINION AND ORDER denying [6] motion to dismiss pursuant to rule 12(b)(1) and (6); denying [14] motion for leave to file a surreply. Preliminary joint status report due by 5/7/2024. Signed by Judge Molly R. Silfen. (asw). Service on parties made.", + "judges": "Molly R. Silfen", + "summaries": "REPORTED OPINION AND ORDER denying [6] motion to dismiss pursuant to rule 12(b)(1) and (6); denying [14] motion for leave to file a surreply. Preliminary joint status report due by 5/7/2024", "case_name_shorts": "" }, { @@ -3487,8 +3487,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-623", - "judges": "E. Kaplan", - "summaries": "REPORTED OPINION granting [7] Second Motion to Dismiss. The Clerk is directed to enter judgment. Signed by Chief Judge Elaine D. Kaplan. (ap) Service on parties made.", + "judges": "Elaine D. Kaplan", + "summaries": "REPORTED OPINION granting [7] Second Motion to Dismiss. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -3499,8 +3499,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1815", - "judges": "M. Silfen", - "summaries": "REPORTED OPINION granting in part and denying in part [9] motion for summary judgment filed by plaintiffs and [12] cross-motion and response to [9] motion for summary judgment filed by defendant; granting the [18] motion to exclude plaintiffs&039; [17] notice of additional authority filed by defendant. Status report due by 4/17/2024. Signed by Judge Molly R. Silfen. (bp) Service on parties made.", + "judges": "Molly R. Silfen", + "summaries": "REPORTED OPINION granting in part and denying in part [9] motion for summary judgment filed by plaintiffs and [12] cross-motion and response to [9] motion for summary judgment filed by defendant; granting the [18] motion to exclude plaintiffs&039; [17] notice of additional authority filed by defendant. Status report due by 4/17/2024", "case_name_shorts": "JU" }, { @@ -3511,8 +3511,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1390", - "judges": "T. Dietz", - "summaries": "REPORTED OPINION and ORDER denying [80] Plaintiff&039;s Motion for Partial Summary Judgment; granting-in-part and denying-in-part [81] Defendant&039;s Motion for Summary Judgment. Status Report due by 3/29/2024. Signed by Judge Thompson M. Dietz. (ktl) Service on parties made.", + "judges": "Thompson M. Dietz", + "summaries": "REPORTED OPINION and ORDER denying [80] Plaintiff&039;s Motion for Partial Summary Judgment; granting-in-part and denying-in-part [81] Defendant&039;s Motion for Summary Judgment. Status Report due by 3/29/2024", "case_name_shorts": "" }, { @@ -3523,8 +3523,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1138", - "judges": "E. Bruggink", - "summaries": "REPORTED OPINION DISMISSING CASE granting [6] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment. Signed by Senior Judge Eric G. Bruggink. (cc) Service on parties made.", + "judges": "Eric G. Bruggink", + "summaries": "REPORTED OPINION DISMISSING CASE granting [6] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment", "case_name_shorts": "Robinson" }, { @@ -3535,8 +3535,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-843", - "judges": "D. Tapp", - "summaries": "REPORTED OPINION denying [13] MOTION for Summary Judgment filed by USA, granting in part and denying in part [14] MOTION for Partial Summary Judgment filed by DANIEL S. NICHOLSON, PATRICIA E. MIDGETT. Status Report due by 3/28/2024. Signed by Judge David A. Tapp. (emc) Service on parties made. Modified on 3/18/2024 - corrected pdf (jt1).", + "judges": "David A. Tapp", + "summaries": "REPORTED OPINION denying [13] MOTION for Summary Judgment filed by USA, granting in part and denying in part [14] MOTION for Partial Summary Judgment filed by DANIEL S. NICHOLSON, PATRICIA E. MIDGETT. Status Report due by 3/28/2024", "case_name_shorts": "NICHOLSON" }, { @@ -3547,8 +3547,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-1647", - "judges": "R. Holte", - "summaries": "Public Version REPORTED OPINION AND ORDER denying [171] Motion for Reconsideration. Signed by Judge Ryan T. Holte. (nd) Service on parties made. Modified on 3/14/2024 to add Public Version (tb).", + "judges": "Ryan T. Holte", + "summaries": "Public Version REPORTED OPINION AND ORDER denying [171] Motion for Reconsideration", "case_name_shorts": "" }, { @@ -3559,8 +3559,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-499", - "judges": "D. Tapp", - "summaries": "REPORTED OPINION denying [18] MOTION for Summary Judgment filed by USA, granting in part and denying in part [19] MOTION for Partial Summary Judgment filed by RICKY A. HYATT, BARBARA HYATT. Status Report due by 3/28/2024. Signed by Judge David A. Tapp. (emc) Service on parties made. Modified on 3/18/2024 - corrected pdf (jt1).", + "judges": "David A. Tapp", + "summaries": "REPORTED OPINION denying [18] MOTION for Summary Judgment filed by USA, granting in part and denying in part [19] MOTION for Partial Summary Judgment filed by RICKY A. HYATT, BARBARA HYATT. Status Report due by 3/28/2024", "case_name_shorts": "HYATT" }, { @@ -3571,8 +3571,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-849", - "judges": "E. Bruggink", - "summaries": "UNREPORTED Order granting [193] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment. Signed by Senior Judge Eric G. Bruggink. (cc) Service on parties made.", + "judges": "Eric G. Bruggink", + "summaries": "UNREPORTED Order granting [193] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -3583,8 +3583,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "14-266", - "judges": "Z. Somers", - "summaries": "JUDGE VACCINE REPORTED OPINION (PUBLIC VERSION) re: [219] Order on Motion for Review. Signed by Judge Zachary N. Somers. (taw) Service on parties made.", + "judges": "Zachary N. Somers", + "summaries": "JUDGE VACCINE REPORTED OPINION (PUBLIC VERSION) re: [219] Order on Motion for Review", "case_name_shorts": "" }, { @@ -3595,8 +3595,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-63", - "judges": "T. Dietz", - "summaries": "REPORTED OPINION and ORDER. Unsealed public redacted version of [40] OPINION and ORDER denying [27] Plaintiff&039;s Motion for Preliminary Injunction; denying [27] Plaintiff&039;s Motion for Permanent Injunction; denying [30] Defendant&039;s Motion to Dismiss Rule 12(b)(1); denying [31] Defendant-Intervenor&039;s Motion to Dismiss - Rule 12(b)(6). Signed by Judge Thompson M. Dietz. (ktl) Service on parties made.", + "judges": "Thompson M. Dietz", + "summaries": "REPORTED OPINION and ORDER. Unsealed public redacted version of [40] OPINION and ORDER denying [27] Plaintiff&039;s Motion for Preliminary Injunction; denying [27] Plaintiff&039;s Motion for Permanent Injunction; denying [30] Defendant&039;s Motion to Dismiss Rule 12(b)(1); denying [31] Defendant-Intervenor&039;s Motion to Dismiss - Rule 12(b)(6", "case_name_shorts": "" }, { @@ -3607,8 +3607,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-82", - "judges": "R. Hertling", - "summaries": "UNREPORTED OPINION on [10] Motion for Relief from Judgment pursuant to Rule 60. The plaintiff has failed to state any plausible claim for which relief from judgment is appropriate. Accordingly, the [10] Motion for Relief from Judgment pursuant to Rule 60 is DENIED. Signed by Judge Richard A. Hertling. (tbss) Service on parties made. Plaintiff served via first class mail on 03.12.2024 (mjk). Modified on 3/12/2024 (mjk).", + "judges": "Richard A. Hertling", + "summaries": "UNREPORTED OPINION on [10] Motion for Relief from Judgment pursuant to Rule 60. The plaintiff has failed to state any plausible claim for which relief from judgment is appropriate. Accordingly, the [10] Motion for Relief from Judgment pursuant to Rule 60 is DENIED", "case_name_shorts": "Lamoureux" }, { @@ -3619,8 +3619,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1941", - "judges": "A. Bonilla", - "summaries": "OPINION AND ORDER: Plaintiff&039;s motion for partial summary judgment on the issue of liability (ECF [54]) is DENIED and defendant&039;s cross-motion for summary judgment (ECF [55]) is GRANTED. The Clerk of Court shall enter Judgment accordingly. No costs. Signed by Judge Armando O. Bonilla. (ead) Service on parties made.", + "judges": "Armando O. Bonilla", + "summaries": "OPINION AND ORDER: Plaintiff&039;s motion for partial summary judgment on the issue of liability (ECF [54]) is DENIED and defendant&039;s cross-motion for summary judgment (ECF [55]) is GRANTED. The Clerk of Court shall enter Judgment accordingly. No costs", "case_name_shorts": "" }, { @@ -3631,8 +3631,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1610", - "judges": "R. Holte", - "summaries": "REPORTED OPINION AND ORDER denying [74] Ekagra&039;s Motion for Judgment on the Administrative Record; finding as moot [2] Ekagra&039;s Motion for Preliminary Injunction; denying [77] Unissant&039;s Motion for Judgment on the Administrative Record; denying [68] AttainX&039;s Motion for Judgment on the Administrative Record; denying [80] LSI&039;s Motion for Judgment on the Administrative Record; denying [84] Arch&039;s Motion for Judgment on the Administrative Record; denying [81] AOI&039;s Motion for Judgment on the Administrative Record; finding as moot [112] AOI&039;s Motion to Strike; denying [82] GTS&039; Motion for Judgment on the Administrative Record; denying [83] Constellation&039;s Motion for Judgment on the Administrative Record; denying [75] CMCI&039;s Motion for Judgment on the Administrative Record; granting [93] and [106] the government&039;s Cross-Motions for Judgment on the Administrative Record; granting [92] and [104] Novilo&039;s Cross-Motions for Judgment on the Administrative Record; granting [91] CAN Softtech&039;s Cross-Motion for Judgment on the Administrative Record; granting [90] and [101] NiyamIT&039;s Cross-Motions for Judgment on the Administrative Record; granting [105] Catalina&039;s Cross-motion for Judgment on the Administrative Record; granting [103] Chevo&039;s Cross-Motion for Judgment on the Administrative Record; finding as moot [103] Chevo&039;s Motion to Dismiss; and denying [165] Catalina&039;s Motion for Leave to File Supplemental Briefing. Signed by Judge Ryan T. Holte. (mbn) Service on parties made.", + "judges": "Ryan T. Holte", + "summaries": "REPORTED OPINION AND ORDER denying [74] Ekagra&039;s Motion for Judgment on the Administrative Record; finding as moot [2] Ekagra&039;s Motion for Preliminary Injunction; denying [77] Unissant&039;s Motion for Judgment on the Administrative Record; denying [68] AttainX&039;s Motion for Judgment on the Administrative Record; denying [80] LSI&039;s Motion for Judgment on the Administrative Record; denying [84] Arch&039;s Motion for Judgment on the Administrative Record; denying [81] AOI&039;s Motion for Judgment on the Administrative Record; finding as moot [112] AOI&039;s Motion to Strike; denying [82] GTS&039; Motion for Judgment on the Administrative Record; denying [83] Constellation&039;s Motion for Judgment on the Administrative Record; denying [75] CMCI&039;s Motion for Judgment on the Administrative Record; granting [93] and [106] the government&039;s Cross-Motions for Judgment on the Administrative Record; granting [92] and [104] Novilo&039;s Cross-Motions for Judgment on the Administrative Record; granting [91] CAN Softtech&039;s Cross-Motion for Judgment on the Administrative Record; granting [90] and [101] NiyamIT&039;s Cross-Motions for Judgment on the Administrative Record; granting [105] Catalina&039;s Cross-motion for Judgment on the Administrative Record; granting [103] Chevo&039;s Cross-Motion for Judgment on the Administrative Record; finding as moot [103] Chevo&039;s Motion to Dismiss; and denying [165] Catalina&039;s Motion for Leave to File Supplemental Briefing", "case_name_shorts": "" }, { @@ -3643,8 +3643,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1278", - "judges": "L. Smith", - "summaries": "REPORTED OPINION reissuing [35] SEALED ORDER and OPINION. Signed by Senior Judge Loren A. Smith. (ts) Service on parties made.", + "judges": "Loren A. Smith", + "summaries": "REPORTED OPINION reissuing [35] SEALED ORDER and OPINION", "case_name_shorts": "" }, { @@ -3655,8 +3655,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1920", - "judges": "M. Solomson", - "summaries": "UNREPORTED OPINION DISMISSING CASE. The Court DISMISSES Plaintiff&039;s complaint for lack of subject-matter jurisdiction pursuant to RCFC 12(h)(3). The Clerk of the Court is directed to enter JUDGMENT for the government, dismissing the case. Signed by Judge Matthew H. Solomson. (tf) Service on parties made.", + "judges": "Matthew H. Solomson", + "summaries": "UNREPORTED OPINION DISMISSING CASE. The Court DISMISSES Plaintiff&039;s complaint for lack of subject-matter jurisdiction pursuant to RCFC 12(h)(3). The Clerk of the Court is directed to enter JUDGMENT for the government, dismissing the case", "case_name_shorts": "Taylor" }, { @@ -3667,8 +3667,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1629", - "judges": "M. Solomson", - "summaries": "UNREPORTED OPINION DISMISSING CASE. The Court DISMISSES Plaintiffs&039; complaint for lack of subject-matter jurisdiction pursuant to RCFC 12(h)(3). Plaintiffs&039; [9] motion for judgment is DENIED as MOOT. The Clerk of the Court is directed to enter JUDGMENT for the government, dismissing the case. Signed by Judge Matthew H. Solomson. (ab) Service on parties made. (Main Document 13 replaced on 3/7/2024) (vds).", + "judges": "Matthew H. Solomson", + "summaries": "UNREPORTED OPINION DISMISSING CASE. The Court DISMISSES Plaintiffs&039; complaint for lack of subject-matter jurisdiction pursuant to RCFC 12(h)(3). Plaintiffs&039; [9] motion for judgment is DENIED as MOOT. The Clerk of the Court is directed to enter JUDGMENT for the government, dismissing the case", "case_name_shorts": "MCCLAIN" }, { @@ -3679,8 +3679,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-151", - "judges": "P. Hadji", - "summaries": "UNREPORTED OPINION DISMISSING CASE for lack of jurisdiction. Plaintiff&039;s [2] Motion for Leave to Proceed in forma pauperis is denied as moot. The Clerk is directed to enter judgment. Signed by Judge Philip S. Hadji. (lrf) Service on parties made.", + "judges": "Philip S. Hadji", + "summaries": "UNREPORTED OPINION DISMISSING CASE for lack of jurisdiction. Plaintiff&039;s [2] Motion for Leave to Proceed in forma pauperis is denied as moot. The Clerk is directed to enter judgment", "case_name_shorts": "Hallmon" }, { @@ -3691,8 +3691,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-528", - "judges": "M. Horn", - "summaries": "REPORTED OPINION. Signed by Senior Judge Marian Blank Horn. (jm5) Service on parties made.", + "judges": "Marian Blank Horn", + "summaries": "REPORTED OPINION", "case_name_shorts": "" }, { @@ -3703,8 +3703,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-825", - "judges": "E. Roumel", - "summaries": "REPORTED OPINION (reissued for publication of [422] SEALED MEMORANDUM AND ORDER DENYING in part [352] Plaintiff SAIC&039;s Motion to Strike Untimely Non-Infringing Alternatives and Non-Infringement Theories, solely as it pertains to Microsoft&039;s non-infringement theory; GRANTING [377] Defendants&039; Joint Motion to Strike the Declaration of SAIC&039;s Infringement Expert, Dr. Bajaj, Expressing New Infringement Opinions; DENYING [339] Intervenor-Defendant Microsoft Corporation&039;s Motion for Summary Judgment of Invalidity Based on Indefiniteness; DENYING [342] Defendant the United States and Third-Party Defendant L3 Technologies, Inc.&039;s Joint Motion for Summary Judgment of Invalidity Based on Indefiniteness; GRANTING [343] Intervenor-Defendant Microsoft Corporation&039;s Motion for Summary Judgment of Non-Infringement; DENYING [341] Third-Party Defendant L3 Technologies, Inc.&039;s Motion for Summary Judgment of Non-Infringement; DENYING [340] Plaintiff SAIC&039;s Motion for Partial Summary Judgment of Infringement by the Government; and DENYING as MOOT [340] Plaintiff SAIC&039;s Motion for Summary Judgment regarding the Desert&039;s Edge Prior Art Status). Signed by Judge Eleni M. Roumel. (cj) Service on parties made.", + "judges": "Eleni M. Roumel", + "summaries": "REPORTED OPINION (reissued for publication of [422] SEALED MEMORANDUM AND ORDER DENYING in part [352] Plaintiff SAIC&039;s Motion to Strike Untimely Non-Infringing Alternatives and Non-Infringement Theories, solely as it pertains to Microsoft&039;s non-infringement theory; GRANTING [377] Defendants&039; Joint Motion to Strike the Declaration of SAIC&039;s Infringement Expert, Dr. Bajaj, Expressing New Infringement Opinions; DENYING [339] Intervenor-Defendant Microsoft Corporation&039;s Motion for Summary Judgment of Invalidity Based on Indefiniteness; DENYING [342] Defendant the United States and Third-Party Defendant L3 Technologies, Inc.&039;s Joint Motion for Summary Judgment of Invalidity Based on Indefiniteness; GRANTING [343] Intervenor-Defendant Microsoft Corporation&039;s Motion for Summary Judgment of Non-Infringement; DENYING [341] Third-Party Defendant L3 Technologies, Inc.&039;s Motion for Summary Judgment of Non-Infringement; DENYING [340] Plaintiff SAIC&039;s Motion for Partial Summary Judgment of Infringement by the Government; and DENYING as MOOT [340] Plaintiff SAIC&039;s Motion for Summary Judgment regarding the Desert&039;s Edge Prior Art Status", "case_name_shorts": "" }, { @@ -3715,8 +3715,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-859", - "judges": "R. Holte", - "summaries": "REPORTED CLAIM CONSTRUCTION OPINION AND ORDER. Joint Status Report due by 3/14/2024. The Clerk is directed to correct the caption in this case. Signed by Judge Ryan T. Holte. (nd) Service on parties made.", + "judges": "Ryan T. Holte", + "summaries": "REPORTED CLAIM CONSTRUCTION OPINION AND ORDER. Joint Status Report due by 3/14/2024. The Clerk is directed to correct the caption in this case", "case_name_shorts": "" }, { @@ -3727,8 +3727,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1213", - "judges": "M. Horn", - "summaries": "JUDGE VACCINE REPORTED OPINION re: [116] Opinion on Motion for Review. Signed by Senior Judge Marian Blank Horn. (jm5) Service on parties made.", + "judges": "Marian Blank Horn", + "summaries": "JUDGE VACCINE REPORTED OPINION re: [116] Opinion on Motion for Review", "case_name_shorts": "Druery" }, { @@ -3739,8 +3739,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2000", - "judges": "Z. Somers", - "summaries": "UNREPORTED OPINION DISMISSING CASE and granting [4] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment. Signed by Judge Zachary N. Somers. (mss) Service on parties made. Plaintiff served via Certified mail 70182290000051837122 on 2/29/24. (tb).", + "judges": "Zachary N. Somers", + "summaries": "UNREPORTED OPINION DISMISSING CASE and granting [4] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment", "case_name_shorts": "Xing" }, { @@ -3751,8 +3751,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1805", - "judges": "Z. Somers", - "summaries": "REPORTED OPINION. Signed by Judge Zachary N. Somers. (cas) Service on parties made.", + "judges": "Zachary N. Somers", + "summaries": "REPORTED OPINION", "case_name_shorts": "" }, { @@ -3763,8 +3763,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1066", - "judges": "K. Davis", - "summaries": "UNREPORTED OPINION DISMISSING CASE granting in part and denying in part [21] Motion to Dismiss. The Clerk is directed to enter judgment. Signed by Judge Kathryn C. Davis. (ebl) Service on parties made. Plaintiff served via First Class mail on 2/29/24. (tb).", + "judges": "Kathryn C. Davis", + "summaries": "UNREPORTED OPINION DISMISSING CASE granting in part and denying in part [21] Motion to Dismiss. The Clerk is directed to enter judgment", "case_name_shorts": "Middlebrook" }, { @@ -3775,8 +3775,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1341", - "judges": "P. Hadji", - "summaries": "UNREPORTED OPINION granting the Government&039;s [5] Motion to Dismiss pursuant to Rule 12(b)(1). The Government&039;s [5] Motion to Dismiss pursuant to Rule 12(b)(6) is DENIED as moot. The Clerk is directed to enter judgment in favor of the Government. Signed by Judge Philip S. Hadji. (idb) Service on parties made.", + "judges": "Philip S. Hadji", + "summaries": "UNREPORTED OPINION granting the Government&039;s [5] Motion to Dismiss pursuant to Rule 12(b)(1). The Government&039;s [5] Motion to Dismiss pursuant to Rule 12(b)(6) is DENIED as moot. The Clerk is directed to enter judgment in favor of the Government", "case_name_shorts": "" }, { @@ -3787,8 +3787,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1933", - "judges": "E. Roumel", - "summaries": "UNREPORTED OPINION granting [2] Plaintiff&039;s Motion for Leave to Proceed in forma pauperis and granting [6] Defendant&039;s Motion to Dismiss pursuant to Rule 12(b)(1) and 12(h)(3). The Clerk of Court is directed to enter Judgment accordingly. Signed by Judge Eleni M. Roumel. (lew) Service on parties made. Plaintiffs served via Certified mail 70182290000051837139 (Thompson) & 70182290000051836569 (Brannon) on 2/29/24. (tb).", + "judges": "Eleni M. Roumel", + "summaries": "UNREPORTED OPINION granting [2] Plaintiff&039;s Motion for Leave to Proceed in forma pauperis and granting [6] Defendant&039;s Motion to Dismiss pursuant to Rule 12(b)(1) and 12(h)(3). The Clerk of Court is directed to enter Judgment accordingly", "case_name_shorts": "THOMPSON" }, { @@ -3799,8 +3799,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1044", - "judges": "E. Roumel", - "summaries": "REPORTED OPINION granting [8] Defendant&039;s Motion to Dismiss pursuant to Rules 12(b)(1) and 12(h)(3). Plaintiff&039;s Complaint is dismissed without leave to replead. The Clerk of Court is DIRECTED to enter Judgment accordingly. Signed by Judge Eleni M. Roumel. (ms) Service on parties made.", + "judges": "Eleni M. Roumel", + "summaries": "REPORTED OPINION granting [8] Defendant&039;s Motion to Dismiss pursuant to Rules 12(b)(1) and 12(h)(3). Plaintiff&039;s Complaint is dismissed without leave to replead. The Clerk of Court is DIRECTED to enter Judgment accordingly", "case_name_shorts": "Ali-Bey" }, { @@ -3811,8 +3811,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1116", - "judges": "T. Dietz", - "summaries": "REPORTED ORDER: Unsealed version of the Court&039;s 2/7/2024 Order [110] denying Motion to Exclude [78]. Signed by Judge Thompson M. Dietz. (sbp) Service on parties made.", + "judges": "Thompson M. Dietz", + "summaries": "REPORTED ORDER: Unsealed version of the Court&039;s 2/7/2024 Order [110] denying Motion to Exclude [78]", "case_name_shorts": "" }, { @@ -3823,8 +3823,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1116", - "judges": "T. Dietz", - "summaries": "REPORTED OPINION AND ORDER: Unsealed version of the Court&039;s 2/7/2024 Opinion and Order [109] granting the Motion for Partial Summary Judgment [77]; denying the Motion for Summary Judgment [87]. Signed by Judge Thompson M. Dietz. (sbp) Service on parties made.", + "judges": "Thompson M. Dietz", + "summaries": "REPORTED OPINION AND ORDER: Unsealed version of the Court&039;s 2/7/2024 Opinion and Order [109] granting the Motion for Partial Summary Judgment [77]; denying the Motion for Summary Judgment [87]", "case_name_shorts": "" }, { @@ -3835,8 +3835,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-800", - "judges": "M. Sweeney", - "summaries": "REPORTED ORDER denying [23] Motion to Amend Pleadings - Rule 15 filed by JOSHUA J. ANGEL. The court LIFTS the stay of defendant&039;s motion to dismiss. (Plaintiff&039;s Response to [15] due by 3/22/2024.). Signed by Senior Judge Margaret M. Sweeney. (jb2) Service on parties made.", + "judges": "Margaret M. Sweeney", + "summaries": "REPORTED ORDER denying [23] Motion to Amend Pleadings - Rule 15 filed by JOSHUA J. ANGEL. The court LIFTS the stay of defendant&039;s motion to dismiss. (Plaintiff&039;s Response to [15] due by 3/22/2024", "case_name_shorts": "Angel" }, { @@ -3847,8 +3847,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "13-476", - "judges": "E. Meyers", - "summaries": "UNREPORTED ORDER granting [146] Motion for preliminary approval of class action settlement and approval of notices of class action settlement. (Notices mailed by 2/26/2024. Documents posted to website by Settlement Administrator by 2/26/2024. Objections from class members due by 21 days from above mailing and posting. Responses from the parties to any objections due by 10 days after receipt of the objection. Fairness Hearing set for 4/11/2024 10:00 AM Eastern in Courtroom 4 before Judge Edward H. Meyers. Within 180 days from mailing of the last settlement check, Settlement Administrator shall provide final accounting to all parties. Within 15 days of the date the accounting is sent, the parties shall confer on whether they are satisfied with the Administrator, and either work to resolve any dispute in good faith or stipulate case dismissal). Signed by Judge Edward H. Meyers. (cah) Service on parties made.", + "judges": "Edward H. Meyers", + "summaries": "UNREPORTED ORDER granting [146] Motion for preliminary approval of class action settlement and approval of notices of class action settlement. (Notices mailed by 2/26/2024. Documents posted to website by Settlement Administrator by 2/26/2024. Objections from class members due by 21 days from above mailing and posting. Responses from the parties to any objections due by 10 days after receipt of the objection. Fairness Hearing set for 4/11/2024 10:00 AM Eastern in Courtroom 4 before Judge Edward H. Meyers. Within 180 days from mailing of the last settlement check, Settlement Administrator shall provide final accounting to all parties. Within 15 days of the date the accounting is sent, the parties shall confer on whether they are satisfied with the Administrator, and either work to resolve any dispute in good faith or stipulate case dismissal", "case_name_shorts": "" }, { @@ -3859,8 +3859,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-176", - "judges": "M. Silfen", - "summaries": "REPORTED OPINION. Plaintiff&039;s complaint is dismissed sua sponte for lack of subject matter jurisdiction pursuant to RCFC 12(h)(3). [2] Motion for leave to proceed in forma pauperis is granted. The Clerk is directed to enter judgment. Signed by Judge Molly R. Silfen. (asw) Service on parties made. Plaintiff served via Certified mail on 2/20/2024; Article Number 7014 1200 0000 9093 9003", + "judges": "Molly R. Silfen", + "summaries": "REPORTED OPINION. Plaintiff&039;s complaint is dismissed sua sponte for lack of subject matter jurisdiction pursuant to RCFC 12(h)(3). [2] Motion for leave to proceed in forma pauperis is granted. The Clerk is directed to enter judgment", "case_name_shorts": "Okoro" }, { @@ -3871,8 +3871,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1943", - "judges": "E. Meyers", - "summaries": "UNREPORTED OPINION DISMISSING CASE. Order granting [7] Motion to Dismiss - Rule 12(b)(1); granting [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment. Signed by Judge Edward H. Meyers. (cmh) Service on parties made; plaintiff served via first class mail. (dls)", + "judges": "Edward H. Meyers", + "summaries": "UNREPORTED OPINION DISMISSING CASE. Order granting [7] Motion to Dismiss - Rule 12(b)(1); granting [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment", "case_name_shorts": "Quimby" }, { @@ -3883,8 +3883,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1966", - "judges": "M. Solomson", - "summaries": "RE-DOCKETED FOR POSTING TO THE COURT&039;S WEBSITE REPORTED ORDER denying [29] Motion to Remand. On or before Monday, February 19, 2024, the parties shall file a joint status report, proposing a schedule for resolving this case on the merits. Signed by Judge Matthew H. Solomson. (vds) Service on parties made.", + "judges": "Matthew H. Solomson", + "summaries": "RE-DOCKETED FOR POSTING TO THE COURT&039;S WEBSITE REPORTED ORDER denying [29] Motion to Remand. On or before Monday, February 19, 2024, the parties shall file a joint status report, proposing a schedule for resolving this case on the merits", "case_name_shorts": "" }, { @@ -3895,8 +3895,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1800", - "judges": "T. Dietz", - "summaries": "REPORTED OPINION and ORDER. Unsealed public redacted version of [37] OPINION AND ORDER granting [29] Plaintiff&039;s Motion for Judgment on the Administrative Record (MJAR); granting-in-part and denying-in-part [32] Defendant&039;s Partial Motion to Dismiss and Cross-MJAR; granting-in-part and denying-in-part [30] Plaintiff&039;s Motion to Complete and Supplement the Administrative Record. Signed by Judge Thompson M. Dietz. (ktl) Service on parties made.", + "judges": "Thompson M. Dietz", + "summaries": "REPORTED OPINION and ORDER. Unsealed public redacted version of [37] OPINION AND ORDER granting [29] Plaintiff&039;s Motion for Judgment on the Administrative Record (MJAR); granting-in-part and denying-in-part [32] Defendant&039;s Partial Motion to Dismiss and Cross-MJAR; granting-in-part and denying-in-part [30] Plaintiff&039;s Motion to Complete and Supplement the Administrative Record", "case_name_shorts": "" }, { @@ -3907,8 +3907,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-44", - "judges": "R. Holte", - "summaries": "REPORTED OPINION AND ORDER granting [43] Motion to Dismiss; finding as moot [43] Motion for Summary Judgment; finding as moot [35] Joint Motion for Discovery Protocol. The Clerk is directed to enter judgment. Signed by Judge Ryan T. Holte. (jf) Service on parties made.", + "judges": "Ryan T. Holte", + "summaries": "REPORTED OPINION AND ORDER granting [43] Motion to Dismiss; finding as moot [43] Motion for Summary Judgment; finding as moot [35] Joint Motion for Discovery Protocol. The Clerk is directed to enter judgment", "case_name_shorts": "CAMPO" }, { @@ -3919,8 +3919,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-694", - "judges": "E. Roumel", - "summaries": "REPORTED OPINION granting [12] Defendant&039;s Motion to Dismiss pursuant to Rules 12(b)(1), 12(h)(3), and 12(b)(6). The Clerk of Court is directed to enter Judgment accordingly. Signed by Judge Eleni M. Roumel. (cj) Service on parties made.", + "judges": "Eleni M. Roumel", + "summaries": "REPORTED OPINION granting [12] Defendant&039;s Motion to Dismiss pursuant to Rules 12(b)(1), 12(h)(3), and 12(b)(6). The Clerk of Court is directed to enter Judgment accordingly", "case_name_shorts": "Bennett" }, { @@ -3931,8 +3931,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1745", - "judges": "E. Meyers", - "summaries": "UNREPORTED OPINION DISMISSING CASE. Order granting [15] Motion to Dismiss - Rule 12(b)(1) and (6); denying [16] Cross Motion; granting [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment. Signed by Judge Edward H. Meyers. (cmh) Service on parties made.", + "judges": "Edward H. Meyers", + "summaries": "UNREPORTED OPINION DISMISSING CASE. Order granting [15] Motion to Dismiss - Rule 12(b)(1) and (6); denying [16] Cross Motion; granting [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -3943,8 +3943,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-40", - "judges": "R. Hertling", - "summaries": "UNREPORTED OPINION on [29] MOTION to Dismiss pursuant to Rule 12(b)(6) filed by USA. Pursuant to RCFC 12(a)(4)(A), the defendant shall file its answer to the amended complaint by February 21, 2024. Fact discovery will close on June 28, 2024; expert discovery will close on August 30, 2024. The parties will file a joint status report by September 12, 2024, proposing a schedule for further proceedings.The defendants motion to dismiss is GRANTED IN PART and DENIED IN PART. Claims I, II, and IV of the amended complaint are dismissed. The motion is denied with respect to Claim III of the amended complaint. Signed by Judge Richard A. Hertling. (lw) Service on parties made. Modified on 2/7/2024 to remove direction to enter judgment. (dls). (Main Document 35 replaced on 3/26/2024 to correct the date of filing) (rp).", + "judges": "Richard A. Hertling", + "summaries": "UNREPORTED OPINION on [29] MOTION to Dismiss pursuant to Rule 12(b)(6) filed by USA. Pursuant to RCFC 12(a)(4)(A), the defendant shall file its answer to the amended complaint by February 21, 2024. Fact discovery will close on June 28, 2024; expert discovery will close on August 30, 2024. The parties will file a joint status report by September 12, 2024, proposing a schedule for further proceedings.The defendants motion to dismiss is GRANTED IN PART and DENIED IN PART. Claims I, II, and IV of the amended complaint are dismissed. The motion is denied with respect to Claim III of the amended complaint", "case_name_shorts": "" }, { @@ -3955,8 +3955,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1268", - "judges": "R. Holte", - "summaries": "REPORTED OPINION AND ORDER denying [58] plaintiff&039;s Motion for Judgment on the Administrative Record; granting [61] the government&039;s Cross-Motion for Judgment on the Administrative Record; and granting [62] TriWest&039;s Cross-Motion for Judgment on the Administrative Record. Signed by Judge Ryan T. Holte. (mbn) Service on parties made.", + "judges": "Ryan T. Holte", + "summaries": "REPORTED OPINION AND ORDER denying [58] plaintiff&039;s Motion for Judgment on the Administrative Record; granting [61] the government&039;s Cross-Motion for Judgment on the Administrative Record; and granting [62] TriWest&039;s Cross-Motion for Judgment on the Administrative Record", "case_name_shorts": "" }, { @@ -3967,8 +3967,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-144", - "judges": "A. Bonilla", - "summaries": "ORDER: Plaintiff&039;s [1] Complaint is DISMISSED sua sponte for lack of jurisdiction in accordance with RCFC 12(h)(3), and plaintiff&039;s [2]motion for equitable tolling is DENIED as moot. The Clerk of Court is directed to ENTER final Judgment dismissing plaintiff&039;s complaint. Signed by Judge Armando O. Bonilla. (ead) Service on parties made. Modified on 2/6/2024 - Plaintiff served via U.S. Certified Mail [7018 2290 0000 5183 6163]. (hw1). Modified on 2/6/2024 (hw1).", + "judges": "Armando O. Bonilla", + "summaries": "ORDER: Plaintiff&039;s [1] Complaint is DISMISSED sua sponte for lack of jurisdiction in accordance with RCFC 12(h)(3), and plaintiff&039;s [2]motion for equitable tolling is DENIED as moot. The Clerk of Court is directed to ENTER final Judgment dismissing plaintiff&039;s complaint", "case_name_shorts": "Martin" }, { @@ -3979,8 +3979,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1811", - "judges": "Z. Somers", - "summaries": "UNREPORTED OPINION DISMISSING CASE on [5] Motion to Dismiss pursuant to Rules 12 (b)(1) and (6); denying [8] Motion for Protective Order. The Clerk is directed to enter judgment. Signed by Judge Zachary N. Somers. (mss) Service on parties made. Plaintiff served via first class mail on 01.31.2024 (mjk). Modified on 1/31/2024 (mjk).", + "judges": "Zachary N. Somers", + "summaries": "UNREPORTED OPINION DISMISSING CASE on [5] Motion to Dismiss pursuant to Rules 12 (b)(1) and (6); denying [8] Motion for Protective Order. The Clerk is directed to enter judgment", "case_name_shorts": "REID" }, { @@ -3991,8 +3991,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1848", - "judges": "S. Schwartz", - "summaries": "UNREPORTED OPINION AND ORDER granting [7] MOTION for Leave to Proceed in forma pauperis filed by MUTAZ ALSHARA; granting [11] MOTION to Dismiss pursuant to Rules 12 (b)(1) and (6) filed by USA; Plaintiff may move for leave to file an Amended Complaint no later than 3/1/2024. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made.", + "judges": "Stephen S. Schwartz", + "summaries": "UNREPORTED OPINION AND ORDER granting [7] MOTION for Leave to Proceed in forma pauperis filed by MUTAZ ALSHARA; granting [11] MOTION to Dismiss pursuant to Rules 12 (b)(1) and (6) filed by USA; Plaintiff may move for leave to file an Amended Complaint no later than 3/1/2024", "case_name_shorts": "Alshara" }, { @@ -4003,8 +4003,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-259", - "judges": "K. Davis", - "summaries": "REPORTED OPINION on [194] MOTION for Discovery filed by UNITEDHEALTHCARE OF NORTH CAROLINA, INC., UNITEDHEALTHCARE OF NEW ENGLAND, INC., UNITEDHEALTHCARE OF COLORADO, INC., UNITEDHEALTHCARE OF THE MIDWEST, INC., UNITEDHEALTHCARE OF THE MID-ATLANTIC, INC., UNITEDHEALTHCARE INSURANCE COMPANY INC., Kaiser Foundation Health Plan, Inc., UNITEDHEALTHCARE OF OKLAHOMA, INC., UNITEDHEALTHCARE OF THE MIDLANDS, INC., UNITEDHEALTHCARE LIFE INSURANCE COMPANY, Kaiser Foundation Health Plan of the Mid-Atlantic States, Inc., UNITEDHEALTHCARE OF NEW YORK, INC., UNITEDHEALTHCARE OF KENTUCKY, LTD., UNITEDHEALTHCARE OF LOUISIANA, INC., UNITEDHEALTHCARE COMMUNITY PLAN, INC., UNITEDHEALTHCARE OF ALABAMA, INC., UNITEDHEALTHCARE OF UTAH, INC., UNITEDHEALTHCARE OF FLORIDA, INC., UNITEDHEALTHCARE OF WASHINGTON, INC., Kaiser Foundation Health Plan Inc. of Colo., UNITEDHEALTHCARE OF GEORGIA, INC., UNITEDHEALTHCARE OF OHIO, INC., UNITEDHEALTHCARE BENEFITS PLAN OF CALIFORNIA, Kaiser Foundation Health Plan of Georgia, UNITEDHEALTHCARE OF MISSISSIPPI, INC., UNITEDHEALTHCARE OF PENNSYLVANIA, INC., Kaiser Foundation Healthplan of the NW, UNITEDHEALTHCARE INSURANCE COMPANY granting in part and denying in part [194] Motion for Discovery. Quinn Emanuel shall disclose JPI policy documents to Objectors by no later than 2/13/2024. Objectors shall file their response to Quinn Emanuel&039;s motion for attorney&039;s fees [192] by no later than 3/5/2024. Quinn Emanuel shall file their reply by no later than 3/19/2024. Signed by Judge Kathryn C. Davis. (ks) Service on parties made.", + "judges": "Kathryn C. Davis", + "summaries": "REPORTED OPINION on [194] MOTION for Discovery filed by UNITEDHEALTHCARE OF NORTH CAROLINA, INC., UNITEDHEALTHCARE OF NEW ENGLAND, INC., UNITEDHEALTHCARE OF COLORADO, INC., UNITEDHEALTHCARE OF THE MIDWEST, INC., UNITEDHEALTHCARE OF THE MID-ATLANTIC, INC., UNITEDHEALTHCARE INSURANCE COMPANY INC., Kaiser Foundation Health Plan, Inc., UNITEDHEALTHCARE OF OKLAHOMA, INC., UNITEDHEALTHCARE OF THE MIDLANDS, INC., UNITEDHEALTHCARE LIFE INSURANCE COMPANY, Kaiser Foundation Health Plan of the Mid-Atlantic States, Inc., UNITEDHEALTHCARE OF NEW YORK, INC., UNITEDHEALTHCARE OF KENTUCKY, LTD., UNITEDHEALTHCARE OF LOUISIANA, INC., UNITEDHEALTHCARE COMMUNITY PLAN, INC., UNITEDHEALTHCARE OF ALABAMA, INC., UNITEDHEALTHCARE OF UTAH, INC., UNITEDHEALTHCARE OF FLORIDA, INC., UNITEDHEALTHCARE OF WASHINGTON, INC., Kaiser Foundation Health Plan Inc. of Colo., UNITEDHEALTHCARE OF GEORGIA, INC., UNITEDHEALTHCARE OF OHIO, INC., UNITEDHEALTHCARE BENEFITS PLAN OF CALIFORNIA, Kaiser Foundation Health Plan of Georgia, UNITEDHEALTHCARE OF MISSISSIPPI, INC., UNITEDHEALTHCARE OF PENNSYLVANIA, INC., Kaiser Foundation Healthplan of the NW, UNITEDHEALTHCARE INSURANCE COMPANY granting in part and denying in part [194] Motion for Discovery. Quinn Emanuel shall disclose JPI policy documents to Objectors by no later than 2/13/2024. Objectors shall file their response to Quinn Emanuel&039;s motion for attorney&039;s fees [192] by no later than 3/5/2024. Quinn Emanuel shall file their reply by no later than 3/19/2024", "case_name_shorts": "" }, { @@ -4015,8 +4015,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-499", - "judges": "C. Lettow", - "summaries": "REPORTED OPINION (Reissued as Public Version of January 18, 2024 Opinion). Status Report due by 2/1/2024. Signed by Senior Judge Charles F. Lettow. (vas)", + "judges": "Charles F. Lettow", + "summaries": "REPORTED OPINION (Reissued as Public Version of January 18, 2024 Opinion). Status Report due by 2/1/2024", "case_name_shorts": "" }, { @@ -4027,8 +4027,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-877", - "judges": "K. Davis", - "summaries": "REPORTED OPINION on [187] MOTION for Discovery filed by UNITEDHEALTHCARE OF NORTH CAROLINA, INC., UNITEDHEALTHCARE OF NEW ENGLAND, INC., UNITEDHEALTHCARE OF COLORADO, INC., KAISER FOUNDATION HEALTHPLAN OF THE NW, UNITEDHEALTHCARE OF THE MIDWEST, INC., UNITEDHEALTHCARE OF THE MID-ATLANTIC, INC., UNITEDHEALTHCARE INSURANCE COMPANY INC., KAISER FOUNDATION HEALTH PLAN OF THE MID-ATLANTIC STATES, INC., UNITEDHEALTHCARE OF OKLAHOMA, INC., UNITEDHEALTHCARE OF THE MIDLANDS, INC., KAISER FOUNDATION HEALTH PLAN INC. OF COLO., KAISER FOUNDATION HEALTH PLAN, INC., UNITEDHEALTHCARE LIFE INSURANCE COMPANY, UNITEDHEALTHCARE OF NEW YORK, INC., UNITEDHEALTHCARE OF KENTUCKY, LTD., UNITEDHEALTHCARE OF LOUISIANA, INC., UNITEDHEALTHCARE COMMUNITY PLAN, INC., UNITEDHEALTHCARE OF ALABAMA, INC., UNITEDHEALTHCARE OF UTAH, INC., UNITEDHEALTHCARE OF FLORIDA, INC., UNITEDHEALTHCARE OF WASHINGTON, INC., UNITEDHEALTHCARE OF GEORGIA, INC., UNITEDHEALTHCARE OF OHIO, INC., KAISER FOUNDATION HEALTH PLAN OF GEORGIA, UNITEDHEALTHCARE BENEFITS PLAN OF CALIFORNIA, UNITEDHEALTHCARE OF MISSISSIPPI, INC., UNITEDHEALTHCARE OF PENNSYLVANIA, INC., UNITEDHEALTHCARE INSURANCE COMPANY granting in part and denying in part [187] Motion for Discovery. Quinn Emanuel shall disclose JPI policy documents to Objectors by no later than 2/13/2024. Objectors shall file their response to Quinn Emanuel&039;s motion for attorney&039;s fees [185] by no later than 3/5/2024. Quinn Emanuel shall file their reply by no later than 3/19/2024. Signed by Judge Kathryn C. Davis. (ks) Service on parties made.", + "judges": "Kathryn C. Davis", + "summaries": "REPORTED OPINION on [187] MOTION for Discovery filed by UNITEDHEALTHCARE OF NORTH CAROLINA, INC., UNITEDHEALTHCARE OF NEW ENGLAND, INC., UNITEDHEALTHCARE OF COLORADO, INC., KAISER FOUNDATION HEALTHPLAN OF THE NW, UNITEDHEALTHCARE OF THE MIDWEST, INC., UNITEDHEALTHCARE OF THE MID-ATLANTIC, INC., UNITEDHEALTHCARE INSURANCE COMPANY INC., KAISER FOUNDATION HEALTH PLAN OF THE MID-ATLANTIC STATES, INC., UNITEDHEALTHCARE OF OKLAHOMA, INC., UNITEDHEALTHCARE OF THE MIDLANDS, INC., KAISER FOUNDATION HEALTH PLAN INC. OF COLO., KAISER FOUNDATION HEALTH PLAN, INC., UNITEDHEALTHCARE LIFE INSURANCE COMPANY, UNITEDHEALTHCARE OF NEW YORK, INC., UNITEDHEALTHCARE OF KENTUCKY, LTD., UNITEDHEALTHCARE OF LOUISIANA, INC., UNITEDHEALTHCARE COMMUNITY PLAN, INC., UNITEDHEALTHCARE OF ALABAMA, INC., UNITEDHEALTHCARE OF UTAH, INC., UNITEDHEALTHCARE OF FLORIDA, INC., UNITEDHEALTHCARE OF WASHINGTON, INC., UNITEDHEALTHCARE OF GEORGIA, INC., UNITEDHEALTHCARE OF OHIO, INC., KAISER FOUNDATION HEALTH PLAN OF GEORGIA, UNITEDHEALTHCARE BENEFITS PLAN OF CALIFORNIA, UNITEDHEALTHCARE OF MISSISSIPPI, INC., UNITEDHEALTHCARE OF PENNSYLVANIA, INC., UNITEDHEALTHCARE INSURANCE COMPANY granting in part and denying in part [187] Motion for Discovery. Quinn Emanuel shall disclose JPI policy documents to Objectors by no later than 2/13/2024. Objectors shall file their response to Quinn Emanuel&039;s motion for attorney&039;s fees [185] by no later than 3/5/2024. Quinn Emanuel shall file their reply by no later than 3/19/2024", "case_name_shorts": "" }, { @@ -4039,8 +4039,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1738", - "judges": "K. Davis", - "summaries": "REPORTED OPINION of the Court&039;s [50] Sealed Opinion. Signed by Judge Kathryn C. Davis. (sbw) Service on parties made.", + "judges": "Kathryn C. Davis", + "summaries": "REPORTED OPINION of the Court&039;s [50] Sealed Opinion", "case_name_shorts": "" }, { @@ -4051,8 +4051,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1821", - "judges": "M. Silfen", - "summaries": "REPORTED OPINION dismissing case, denying Plaintiff&039;s [2] application to proceed in forma pauperis, granting plaintiff&039;s [20] motion to withdraw his motion for voluntary dismissal, denying plaintiff&039;s [19] motion to voluntarily dismiss the complaint, and denying plaintiff&039;s [18] motion for leave to file a response. The Clerk is directed to enter judgment. Mr. Greene is enjoined from filing new complaints pro se in the United States Court of Federal Claims without first obtaining leave to file from the Chief Judge under the restrictions described in this opinion. Mr. Green may file a new complaint without first obtaining leave to file if his complaint is signed and filed by an attorney who is duly licensed and authorized to practice law under the laws of at least one state or territory of the United States or the District of Columbia and is a member in good standing of the Bar of the United States Court of Federal Claims. Whether proceeding pro se or with an attorney, Mr. Greene will be required to pay the court&039;s full filing fee to proceed. Signed by Judge Molly R. Silfen. (ck) Service on parties made. Plaintiff served Certified Mail (7018 2290 0000 5183 7153) on 1/29/24. (ac7).", + "judges": "Molly R. Silfen", + "summaries": "REPORTED OPINION dismissing case, denying Plaintiff&039;s [2] application to proceed in forma pauperis, granting plaintiff&039;s [20] motion to withdraw his motion for voluntary dismissal, denying plaintiff&039;s [19] motion to voluntarily dismiss the complaint, and denying plaintiff&039;s [18] motion for leave to file a response. The Clerk is directed to enter judgment. Mr. Greene is enjoined from filing new complaints pro se in the United States Court of Federal Claims without first obtaining leave to file from the Chief Judge under the restrictions described in this opinion. Mr. Green may file a new complaint without first obtaining leave to file if his complaint is signed and filed by an attorney who is duly licensed and authorized to practice law under the laws of at least one state or territory of the United States or the District of Columbia and is a member in good standing of the Bar of the United States Court of Federal Claims. Whether proceeding pro se or with an attorney, Mr. Greene will be required to pay the court&039;s full filing fee to proceed", "case_name_shorts": "Greene" }, { @@ -4063,8 +4063,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-91", - "judges": "D. Tapp", - "summaries": "Unreported Opinion Dismissing Case: granting [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment. The Clerk shall reject future submissions unless they comply with rules regarding post-dismissal submissions. Signed by Judge David A. Tapp. (smr) Service on parties made; plaintiff served via certified mail no. 7017 2680 0001 1159 8482.", + "judges": "David A. Tapp", + "summaries": "Unreported Opinion Dismissing Case: granting [2] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment. The Clerk shall reject future submissions unless they comply with rules regarding post-dismissal submissions", "case_name_shorts": "Hansen" }, { @@ -4075,8 +4075,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1893", - "judges": "P. Hadji", - "summaries": "UNREPORTED OPINION and ORDER. The Defendant&039;s Motion for Summary Judgment is GRANTED. The Clerk of Court is directed to enter judgment in favor of the United States. Signed by Judge Philip S. Hadji. (idb) Service on parties made.", + "judges": "Philip S. Hadji", + "summaries": "UNREPORTED OPINION and ORDER. The Defendant&039;s Motion for Summary Judgment is GRANTED. The Clerk of Court is directed to enter judgment in favor of the United States", "case_name_shorts": "" }, { @@ -4087,8 +4087,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1661", - "judges": "Z. Somers", - "summaries": "REPORTED Order granting [31] MOTION to Dismiss filed by USA, denying [32] MOTION to Amend/Correct Protective Order filed by SAFAL PARTNERS, LLC. The Clerk is directed to enter judgment. Signed by Judge Zachary N. Somers. (mss) Service on parties made.", + "judges": "Zachary N. Somers", + "summaries": "REPORTED Order granting [31] MOTION to Dismiss filed by USA, denying [32] MOTION to Amend/Correct Protective Order filed by SAFAL PARTNERS, LLC. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -4099,8 +4099,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-288", - "judges": "Z. Somers", - "summaries": "UNREPORTED OPINION granting [18] MOTION for Leave to File Plaintiffs Amended Complaint. Plaintiff SHALL file its Amended Complaint as a separate docket entry on or before January 31, 2024. Consistent with RCFC 15(a)(3), the government has 14 days after service of the amended pleading to answer or otherwise respond. Signed by Judge Zachary N. Somers. (taw) Service on parties made.", + "judges": "Zachary N. Somers", + "summaries": "UNREPORTED OPINION granting [18] MOTION for Leave to File Plaintiffs Amended Complaint. Plaintiff SHALL file its Amended Complaint as a separate docket entry on or before January 31, 2024. Consistent with RCFC 15(a)(3), the government has 14 days after service of the amended pleading to answer or otherwise respond", "case_name_shorts": "" }, { @@ -4111,8 +4111,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-880", - "judges": "S. Schwartz", - "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: granting [15] Motion to Dismiss - Rule 12(b)(1) and (6) filed by USA. The Clerk is directed to enter judgment. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made.", + "judges": "Stephen S. Schwartz", + "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: granting [15] Motion to Dismiss - Rule 12(b)(1) and (6) filed by USA. The Clerk is directed to enter judgment", "case_name_shorts": "Hooli" }, { @@ -4123,8 +4123,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-122", - "judges": "V. Wolski", - "summaries": "JUDGE VACCINE REPORTED OPINION (PUBLIC VERSION) re: [110] Order on Motion for Review,, Judge Vaccine Reported Opinion, Signed by Senior Judge Victor J. Wolski. (jad) Service on parties made.", + "judges": "Victor J. Wolski", + "summaries": "JUDGE VACCINE REPORTED OPINION (PUBLIC VERSION) re: [110] Order on Motion for Review,, Judge Vaccine Reported Opinion", "case_name_shorts": "Bossenbroek" }, { @@ -4135,8 +4135,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1875", - "judges": "M. Horn", - "summaries": "REPORTED OPINION denying [15] Motion for Summary Judgment; granting [16] Cross Motion for Summary Judgment. The Clerk is directed to enter judgment. Signed by Senior Judge Marian Blank Horn. (jm5) Service on parties made.", + "judges": "Marian Blank Horn", + "summaries": "REPORTED OPINION denying [15] Motion for Summary Judgment; granting [16] Cross Motion for Summary Judgment. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -4147,8 +4147,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-509", - "judges": "K. Davis", - "summaries": "REPORTED OPINION granting in part and denying in part [46] Motion for Judgment on the Administrative Record; granting in part and denying in part [47] Cross Motion. Status Report due by 2/7/2024. Signed by Judge Kathryn C. Davis. (ebl) Service on parties made.", + "judges": "Kathryn C. Davis", + "summaries": "REPORTED OPINION granting in part and denying in part [46] Motion for Judgment on the Administrative Record; granting in part and denying in part [47] Cross Motion. Status Report due by 2/7/2024", "case_name_shorts": "Faerber" }, { @@ -4159,8 +4159,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-23", - "judges": "M. Silfen", - "summaries": "REPORTED OPINION DISMISSING CASE. The Clerk is directed to enter judgment. Signed by Judge Molly R. Silfen. (bp) Service on parties made. Plaintiff served via first class mail on this day Modified on 1/24/2024 (vds).", + "judges": "Molly R. Silfen", + "summaries": "REPORTED OPINION DISMISSING CASE. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -4171,8 +4171,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-339", - "judges": "P. Hadji", - "summaries": "UNREPORTED OPINION and ORDER. The Defendant&039;s Motion to Dismiss is DENIED with respect to Counts I and III of the Complaint and GRANTED with respect to Counts II and IV of the Complaint. Signed by Judge Philip S. Hadji. (lrf) Service on parties made.", + "judges": "Philip S. Hadji", + "summaries": "UNREPORTED OPINION and ORDER. The Defendant&039;s Motion to Dismiss is DENIED with respect to Counts I and III of the Complaint and GRANTED with respect to Counts II and IV of the Complaint", "case_name_shorts": "" }, { @@ -4183,8 +4183,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-800", - "judges": "M. Sweeney", - "summaries": "REPORTED ORDER denying [16] Motion to Continue To Permit Discovery filed by JOSHUA J. ANGEL. The court LIFTS the stay of the briefing of Defendant&039;s Motion to Dismiss. Plaintiff&039;s Response to Defendant&039;s Motion to Dismiss due by 2/20/2024.. Signed by Senior Judge Margaret M. Sweeney. (jb2) Service on parties made.", + "judges": "Margaret M. Sweeney", + "summaries": "REPORTED ORDER denying [16] Motion to Continue To Permit Discovery filed by JOSHUA J. ANGEL. The court LIFTS the stay of the briefing of Defendant&039;s Motion to Dismiss. Plaintiff&039;s Response to Defendant&039;s Motion to Dismiss due by 2/20/2024", "case_name_shorts": "Angel" }, { @@ -4195,8 +4195,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-361", - "judges": "T. Dietz", - "summaries": "REPORTED OPINION and ORDER. Unsealed public redacted version of [64] OPINION and ORDER granting [58] Plaintiff&039;s Motion for Judgment on the Administrative Record (MJAR); denying [61] Defendant&039;s Cross-MJAR. Signed by Judge Thompson M. Dietz. (ktl) Service on parties made.", + "judges": "Thompson M. Dietz", + "summaries": "REPORTED OPINION and ORDER. Unsealed public redacted version of [64] OPINION and ORDER granting [58] Plaintiff&039;s Motion for Judgment on the Administrative Record (MJAR); denying [61] Defendant&039;s Cross-MJAR", "case_name_shorts": "" }, { @@ -4207,8 +4207,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-82", - "judges": "R. Hertling", - "summaries": "UNREPORTED OPINION DISMISSING CASE. The complaint fails to state a plausible claim for relief within the limited jurisdiction of the Court of Federal Claims and is, therefore, frivolous. Accordingly, the complaint is DISMISSED pursuant to 28 U.S.C. &167; 1915(e)(2)(B)(i) and RCFC 12(b)(1) and 12(h)(3). The Clerk is DIRECTED to enter judgment accordingly. No costs are awarded. Signed by Judge Richard A. Hertling. (agg) Service on parties made. Plaintiff served via first class mail on 01.22.2024 (ac7).", + "judges": "Richard A. Hertling", + "summaries": "UNREPORTED OPINION DISMISSING CASE. The complaint fails to state a plausible claim for relief within the limited jurisdiction of the Court of Federal Claims and is, therefore, frivolous. Accordingly, the complaint is DISMISSED pursuant to 28 U.S.C. &167; 1915(e)(2)(B)(i) and RCFC 12(b)(1) and 12(h)(3). The Clerk is DIRECTED to enter judgment accordingly. No costs are awarded", "case_name_shorts": "Lamoureux" }, { @@ -4219,8 +4219,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-125", - "judges": "D. Tapp", - "summaries": "OPINION and ORDER: GRANTING IN PART [10] Defendant&039;s Motion to Dismiss. Deadline to Amend the Complaint 2/9/2024. Joint Status Report due by 2/2/2024. Signed by Judge David A. Tapp. (krm) Service on parties made.", + "judges": "David A. Tapp", + "summaries": "OPINION and ORDER: GRANTING IN PART [10] Defendant&039;s Motion to Dismiss. Deadline to Amend the Complaint 2/9/2024. Joint Status Report due by 2/2/2024", "case_name_shorts": "" }, { @@ -4231,8 +4231,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1963", - "judges": "M. Silfen", - "summaries": "REPORTED OPINION DISMISSING CASE: Granting [7] motion to dismiss - Rule 12(b)(1). Granting [2] motion for leave to proceed in forma pauperis. The Clerk is directed to enter judgment. Signed by Judge Molly R. Silfen. (asw) Service on parties made.", + "judges": "Molly R. Silfen", + "summaries": "REPORTED OPINION DISMISSING CASE: Granting [7] motion to dismiss - Rule 12(b)(1). Granting [2] motion for leave to proceed in forma pauperis. The Clerk is directed to enter judgment", "case_name_shorts": "Morisset" }, { @@ -4243,8 +4243,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-629", - "judges": "A. Bonilla", - "summaries": "OPINION AND ORDER: Defendant&039;s [7] motion to dismiss is DENIED-IN-PART and GRANTED-IN-PART as follows: defendant&039;s motion to dismiss Count I (Fifth Amendment taking) is DENIED; and defendant&039;s motion to dismiss Count II (breach of contract) and plaintiff&039;s claims involving Inventia are GRANTED. In accordance with RCFC 12(a)(4)(A)(i), defendant shall file an answer on or before February 1, 2024. Signed by Judge Armando O. Bonilla. (ead) Service on parties made.", + "judges": "Armando O. Bonilla", + "summaries": "OPINION AND ORDER: Defendant&039;s [7] motion to dismiss is DENIED-IN-PART and GRANTED-IN-PART as follows: defendant&039;s motion to dismiss Count I (Fifth Amendment taking) is DENIED; and defendant&039;s motion to dismiss Count II (breach of contract) and plaintiff&039;s claims involving Inventia are GRANTED. In accordance with RCFC 12(a)(4)(A)(i), defendant shall file an answer on or before February 1, 2024", "case_name_shorts": "" }, { @@ -4255,8 +4255,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1040", - "judges": "Z. Somers", - "summaries": "REPORTED Order on [14] MOTION to Dismiss pursuant to Rule 12(b)(1) filed by USA, [15] MOTION to Dismiss pursuant to Rule 12(b)(1) filed by ADVANCED TECHNOLOGY LEADERS INC. granting Motions to Dismiss. The Clerk is directed to enter judgment. Signed by Judge Zachary N. Somers. (mss) Service on parties made.", + "judges": "Zachary N. Somers", + "summaries": "REPORTED Order on [14] MOTION to Dismiss pursuant to Rule 12(b)(1) filed by USA, [15] MOTION to Dismiss pursuant to Rule 12(b)(1) filed by ADVANCED TECHNOLOGY LEADERS INC. granting Motions to Dismiss. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -4267,8 +4267,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1474", - "judges": "M. Silfen", - "summaries": "ORDER denying [25] MOTION to Alter or Amend Judgment pursuant to Rule 59(e) and/or Rule 60(a) & 60(b). Signed by Judge Molly R. Silfen. (ck) Service on parties made.", + "judges": "Molly R. Silfen", + "summaries": "ORDER denying [25] MOTION to Alter or Amend Judgment pursuant to Rule 59(e) and/or Rule 60(a) & 60(b", "case_name_shorts": "Cochran" }, { @@ -4279,8 +4279,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1710", - "judges": "E. Roumel", - "summaries": "REPORTED OPINION granting [6] Defendant&039;s Motion to Dismiss pursuant to Rule 12(b)(1). The Clerk of Court is directed to enter Judgment accordingly. Signed by Judge Eleni M. Roumel. (cj) Service on parties made. Plaintiff served via U.S. mail. Modified on 1/11/2024 (sh).", + "judges": "Eleni M. Roumel", + "summaries": "REPORTED OPINION granting [6] Defendant&039;s Motion to Dismiss pursuant to Rule 12(b)(1). The Clerk of Court is directed to enter Judgment accordingly", "case_name_shorts": "Ewers" }, { @@ -4291,8 +4291,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-825", - "judges": "E. Roumel", - "summaries": "REPORTED OPINION (reissued for publication of [415] SEALED MEMORANDUM AND ORDER DENYING in part [352] Plaintiff SAIC&039;s Motion to Strike Untimely Non-Infringing Alternatives and Non-Infringement Theories, as it pertains to the non-infringing alternatives theories; DENYING [350] SAIC&039;s Daubert Motion to Exclude Testimony Regarding Alleged Non-Infringing Alternatives; GRANTING in part and DENYING in part [353] Defendants&039; Joint Rule 702 Motion to Partially Exclude the Amended Expert Damages Report of David A. Haas). Signed by Judge Eleni M. Roumel. (ms) Service on parties made. Modified on 1/11/2024 to correct typographical error. (jt1).", + "judges": "Eleni M. Roumel", + "summaries": "REPORTED OPINION (reissued for publication of [415] SEALED MEMORANDUM AND ORDER DENYING in part [352] Plaintiff SAIC&039;s Motion to Strike Untimely Non-Infringing Alternatives and Non-Infringement Theories, as it pertains to the non-infringing alternatives theories; DENYING [350] SAIC&039;s Daubert Motion to Exclude Testimony Regarding Alleged Non-Infringing Alternatives; GRANTING in part and DENYING in part [353] Defendants&039; Joint Rule 702 Motion to Partially Exclude the Amended Expert Damages Report of David A. Haas", "case_name_shorts": "" }, { @@ -4303,8 +4303,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1222", - "judges": "P. Hadji", - "summaries": "JUDGE VACCINE UNREPORTED OPINION (PUBLIC VERSION) reissuing [154] Opinion and Order on Motion for Review, Signed by Judge Philip S. Hadji. (lrf) Service on parties made.", + "judges": "Philip S. Hadji", + "summaries": "JUDGE VACCINE UNREPORTED OPINION (PUBLIC VERSION) reissuing [154] Opinion and Order on Motion for Review", "case_name_shorts": "Hohenstein" }, { @@ -4315,8 +4315,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1158", - "judges": "E. Bruggink", - "summaries": "RE-DOCKETED [144] FOR PUBLICATIONJUDGE VACCINE REPORTED OPINION (PUBLIC VERSION) re: [141] Order on Motion for Review, Judge Vaccine Order/Opinion, Signed by Senior Judge Eric G. Bruggink. (fm) Service on parties made.", + "judges": "Eric G. Bruggink", + "summaries": "RE-DOCKETED [144] FOR PUBLICATIONJUDGE VACCINE REPORTED OPINION (PUBLIC VERSION) re: [141] Order on Motion for Review, Judge Vaccine Order/Opinion", "case_name_shorts": "Cerrone" }, { @@ -4327,8 +4327,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1319", - "judges": "M. Solomson", - "summaries": "REPORTED ORDER (public version) re: [21] OPINION and ORDER DENYING Motion for Judgment on the Administrative Record and Motion to Supplement the Administrative Record filed by SUPERIOR WASTE MANAGEMENT LLC; GRANTING MOTION for Judgment on the Administrative Record filed by USA. Signed by Judge Matthew H. Solomson. (tf) Service on parties made.", + "judges": "Matthew H. Solomson", + "summaries": "REPORTED ORDER (public version) re: [21] OPINION and ORDER DENYING Motion for Judgment on the Administrative Record and Motion to Supplement the Administrative Record filed by SUPERIOR WASTE MANAGEMENT LLC; GRANTING MOTION for Judgment on the Administrative Record filed by USA", "case_name_shorts": "" }, { @@ -4339,8 +4339,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-483", - "judges": "T. Dietz", - "summaries": "REPORTED OPINION DISMISSING CASE: The USA&039;s Motion to Dismiss pursuant to Rule 12(b)(1) [5] is granted. The Clerk is directed to enter judgment. Signed by Judge Thompson M. Dietz. (sbp) Service on parties made.", + "judges": "Thompson M. Dietz", + "summaries": "REPORTED OPINION DISMISSING CASE: The USA&039;s Motion to Dismiss pursuant to Rule 12(b)(1) [5] is granted. The Clerk is directed to enter judgment", "case_name_shorts": "Otis" }, { @@ -4351,8 +4351,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-187", - "judges": "E. Damich", - "summaries": "UNREPORTED OPINION denying [19] Motion to Dismiss - Rule 12(b)(1) and (6). The Government shall file its Answer to the Complaint within 60 days from the date of this Opinion and Order. Signed by Senior Judge Edward J. Damich. (hem) Service on parties made.", + "judges": "Edward J. Damich", + "summaries": "UNREPORTED OPINION denying [19] Motion to Dismiss - Rule 12(b)(1) and (6). The Government shall file its Answer to the Complaint within 60 days from the date of this Opinion and Order", "case_name_shorts": "ADCOCK" }, { @@ -4363,8 +4363,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-865", - "judges": "R. Holte", - "summaries": "REPORTED OPINON AND ORDER denying [71] Motion to Dismiss; granting [71] Motion for Summary Judgment; and finding as moot [45] Motion to Dismiss. The Clerk is DIRECTED to enter judgment accordingly. Signed by Judge Ryan T. Holte. (nd) Service on parties made. Modified on 1/5/2024 to add additional language from the Order (tb). (Main Document 87 replaced on 1/5/2024) (tb). Modified on 1/5/2024 To Correct PDF. (tb).", + "judges": "Ryan T. Holte", + "summaries": "REPORTED OPINON AND ORDER denying [71] Motion to Dismiss; granting [71] Motion for Summary Judgment; and finding as moot [45] Motion to Dismiss. The Clerk is DIRECTED to enter judgment accordingly", "case_name_shorts": "Yifrach" }, { @@ -4375,8 +4375,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2061", - "judges": "K. Davis", - "summaries": "UNREPORTED OPINION dismissing Plaintiff&039;s complaint sua sponte pursuant to RCFC 12(h)(3) for lack of subject matter jurisdiction. The Clerk is directed to enter judgment. Signed by Judge Kathryn C. Davis. (ebl) Service on parties made. Plaintiff served via First Class Mail on 1/8/24. (ac7).", + "judges": "Kathryn C. Davis", + "summaries": "UNREPORTED OPINION dismissing Plaintiff&039;s complaint sua sponte pursuant to RCFC 12(h)(3) for lack of subject matter jurisdiction. The Clerk is directed to enter judgment", "case_name_shorts": "Kemp" }, { @@ -4387,8 +4387,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2067", - "judges": "S. Schwartz", - "summaries": "UNREPORTED ORDER DISMISSING CASE granting [9] Motion to Voluntarily Dismiss - Rule 41(a). The Clerk is directed to enter judgment. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made.", + "judges": "Stephen S. Schwartz", + "summaries": "UNREPORTED ORDER DISMISSING CASE granting [9] Motion to Voluntarily Dismiss - Rule 41(a). The Clerk is directed to enter judgment", "case_name_shorts": "ALMOND" }, { @@ -4399,8 +4399,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1400", - "judges": "R. Hertling", - "summaries": "REPORTED OPINION. Reissued Public Opinion of the [37] Sealed Opinion issued on 12/20/2023 granting in part and denying in part the [28] Motion for Judgment on the Administrative Record filed by AEGIS-KK GARDAWORLD FEDERAL AFRICA, and granting in part and denying in part the [31] Motion for Judgment on the Administrative Record filed by USA. Signed by Judge Richard A. Hertling. (tbss) Service on parties made.", + "judges": "Richard A. Hertling", + "summaries": "REPORTED OPINION. Reissued Public Opinion of the [37] Sealed Opinion issued on 12/20/2023 granting in part and denying in part the [28] Motion for Judgment on the Administrative Record filed by AEGIS-KK GARDAWORLD FEDERAL AFRICA, and granting in part and denying in part the [31] Motion for Judgment on the Administrative Record filed by USA", "case_name_shorts": "" }, { @@ -4411,8 +4411,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1802", - "judges": "C. Lerner", - "summaries": "UNREPORTED OPINION. Signed by Judge Carolyn N. Lerner. (ak) Service on parties made.", + "judges": "Carolyn N. Lerner", + "summaries": "UNREPORTED OPINION", "case_name_shorts": "" }, { @@ -4423,8 +4423,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-805", - "judges": "M. Silfen", - "summaries": "REPORTED ORDER per ECF No. [60], granting in part and denying in part [21] Plaintiff&039;s first motion to compel, granting in part and denying in part [50] Plaintiff&039;s corrected second motion to compel, and denying [54] Plaintiff&039;s motion to supplement the administrative record. Signed by Judge Molly R. Silfen. (ck) Service on parties made.", + "judges": "Molly R. Silfen", + "summaries": "REPORTED ORDER per ECF No. [60], granting in part and denying in part [21] Plaintiff&039;s first motion to compel, granting in part and denying in part [50] Plaintiff&039;s corrected second motion to compel, and denying [54] Plaintiff&039;s motion to supplement the administrative record", "case_name_shorts": "" }, { @@ -4435,8 +4435,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1766", - "judges": "S. Schwartz", - "summaries": "REPORTED OPINION AND ORDER granting in part and denying in part [8] Motion to Dismiss - Rule 12(b)(1) and (6) filed by USA. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made.", + "judges": "Stephen S. Schwartz", + "summaries": "REPORTED OPINION AND ORDER granting in part and denying in part [8] Motion to Dismiss - Rule 12(b)(1) and (6) filed by USA", "case_name_shorts": "ALVAREZ" }, { @@ -4447,8 +4447,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "13-821", - "judges": "R. Holte", - "summaries": "OPINION AND ORDER granting in part and denying in part [269] Motion for Discovery; finding as moot [146] Motion to Certify Class, [161] Motion for Clarification or, in the Alternative, to Compel Production, [204] Motion to Exclude Inadmissible Evidence Relied Upon in Plaintiffs&039; Motion for Class Certification, [205] Motion to Exclude the Expert Opinions of Jane Jerzak, [206] Motion to Exclude the Expert Opinions of Anthony Fay; striking as deficient [273] the government&039;s Notice of Additional Authority; granting [274] Unopposed Motion for Leave to File Notice of Supplemental Authority for good cause shown. Plaintiffs shall withdraw [251] Motion to Exclude the Expert Opinions and Continued Participation of David Kennell without prejudice. Joint status report due by 23 January 2024. Signed by Judge Ryan T. Holte. (jf) Service on parties made.", + "judges": "Ryan T. Holte", + "summaries": "OPINION AND ORDER granting in part and denying in part [269] Motion for Discovery; finding as moot [146] Motion to Certify Class, [161] Motion for Clarification or, in the Alternative, to Compel Production, [204] Motion to Exclude Inadmissible Evidence Relied Upon in Plaintiffs&039; Motion for Class Certification, [205] Motion to Exclude the Expert Opinions of Jane Jerzak, [206] Motion to Exclude the Expert Opinions of Anthony Fay; striking as deficient [273] the government&039;s Notice of Additional Authority; granting [274] Unopposed Motion for Leave to File Notice of Supplemental Authority for good cause shown. Plaintiffs shall withdraw [251] Motion to Exclude the Expert Opinions and Continued Participation of David Kennell without prejudice. Joint status report due by 23 January 2024", "case_name_shorts": "" }, { @@ -4459,8 +4459,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1994", - "judges": "R. Hertling", - "summaries": "UNREPORTED ORDER Despite the extension of time accorded to the plaintiff, it appears the plaintiff did receive a copy of the 11/21/2023 Order, because on 12/18/2023, the plaintiff prepared a notarized letter requesting reconsideration of the denial of his motion to proceed in forma pauperis. The plaintiff&039;s letter was received by the Clerk on 12/28/2023. On 1/2/2024, the Court ordered the Clerk to file the letter, which the Court will treat as a motion for reconsideration of the denial of his motion to proceed in forma pauperis. The plaintiff has failed to show that he is permitted to proceed in forma pauperis notwithstanding the dismissals of his three prior cases as frivolous or for failure to state a claim. The plaintiff&039;s motion for reconsideration is DENIED. The plaintiff shall remit the filing fee no later than 1/30/2024. If the plaintiff fails to pay the filing fee in full by that date, this case will be dismissed without prejudice pursuant to RCFC 41. Signed by Judge Richard A. Hertling. (agg) Service on parties made. Plaintiff served via first class mail on 01.03.2024 (cam). Modified on 1/3/2024 (cam).", + "judges": "Richard A. Hertling", + "summaries": "UNREPORTED ORDER Despite the extension of time accorded to the plaintiff, it appears the plaintiff did receive a copy of the 11/21/2023 Order, because on 12/18/2023, the plaintiff prepared a notarized letter requesting reconsideration of the denial of his motion to proceed in forma pauperis. The plaintiff&039;s letter was received by the Clerk on 12/28/2023. On 1/2/2024, the Court ordered the Clerk to file the letter, which the Court will treat as a motion for reconsideration of the denial of his motion to proceed in forma pauperis. The plaintiff has failed to show that he is permitted to proceed in forma pauperis notwithstanding the dismissals of his three prior cases as frivolous or for failure to state a claim. The plaintiff&039;s motion for reconsideration is DENIED. The plaintiff shall remit the filing fee no later than 1/30/2024. If the plaintiff fails to pay the filing fee in full by that date, this case will be dismissed without prejudice pursuant to RCFC 41", "case_name_shorts": "" }, { @@ -4471,8 +4471,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2147", - "judges": "S. Schwartz", - "summaries": "UNREPORTED Order granting [29] Plaintiffs&039; Motion to Voluntarily Dismiss - Rule 41(a). The Clerk is directed to enter judgment. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made.", + "judges": "Stephen S. Schwartz", + "summaries": "UNREPORTED Order granting [29] Plaintiffs&039; Motion to Voluntarily Dismiss - Rule 41(a). The Clerk is directed to enter judgment", "case_name_shorts": "ALBERT" }, { @@ -4483,8 +4483,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2162", - "judges": "D. Tapp", - "summaries": "UNREPORTED ORDER granting [2] Motion for Leave to Proceed in forma pauperis. Directing the Clerk to ENTER judgment DISMISSING Plaintiff&039;s complaint for lack of subject-matter jurisdiction, pursuant to RCFC 12(h)(3). Signed by Judge David A. Tapp. (smr) Service on parties made. (Main Document 6 replaced on 12/29/2023 to correct the case number.) (dls)", + "judges": "David A. Tapp", + "summaries": "UNREPORTED ORDER granting [2] Motion for Leave to Proceed in forma pauperis. Directing the Clerk to ENTER judgment DISMISSING Plaintiff&039;s complaint for lack of subject-matter jurisdiction, pursuant to RCFC 12(h)(3", "case_name_shorts": "Lewis" }, { @@ -4495,8 +4495,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1888", - "judges": "M. Solomson", - "summaries": "RE-DOCKETED FOR POSTING TO THE COURT&039;S WEBSITE UNREPORTED SANCTIONS ORDER Plaintiff&039;s counsel of record shall comply with the sanctions detailed in the order. Payment to the Clerk of this Court due on or before January 29, 2024. Joint status report regarding plaintiff&039;s reimbursement of the government due on or before February 1, 2024. Plaintiff&039;s counsel of record shall file proof that he has completed the continuing legal education (or self-study) component on or before December 1, 2024. Signed by Judge Matthew H. Solomson. (jwg) Service on parties made.", + "judges": "Matthew H. Solomson", + "summaries": "RE-DOCKETED FOR POSTING TO THE COURT&039;S WEBSITE UNREPORTED SANCTIONS ORDER Plaintiff&039;s counsel of record shall comply with the sanctions detailed in the order. Payment to the Clerk of this Court due on or before January 29, 2024. Joint status report regarding plaintiff&039;s reimbursement of the government due on or before February 1, 2024. Plaintiff&039;s counsel of record shall file proof that he has completed the continuing legal education (or self-study) component on or before December 1, 2024", "case_name_shorts": "" }, { @@ -4507,8 +4507,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1971", - "judges": "K. Davis", - "summaries": "UNREPORTED OPINION dismissing Plaintiff&039;s complaint sua sponte pursuant to RCFC 12(h)(3) for lack of subject matter jurisdiction. The Clerk is directed to enter judgment. Signed by Judge Kathryn C. Davis. (sbw) Service on parties made. plaintiff served via first class mail . Modified on 12/28/2023 (sh).", + "judges": "Kathryn C. Davis", + "summaries": "UNREPORTED OPINION dismissing Plaintiff&039;s complaint sua sponte pursuant to RCFC 12(h)(3) for lack of subject matter jurisdiction. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -4519,8 +4519,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-210", - "judges": "R. Holte", - "summaries": "REPORTED OPINION granting in part and denying in part [41] GK9&039;s Motion for Judgment on the Administrative Record and granting award of a permanent injunction disqualifying K2 from performance; granting [42] GK9&039;s Motion to Supplement the Administrative Record and granting [46-1] the government&039;s supplementation of the administrative record; finding as moot [39] MSA&039;s Motion for Judgment on the Administrative Record; finding as moot [38] MSA&039;s Motion to Supplement the Administrative Record; granting in part and denying in part [46] the government&039;s Cross-Motion for Judgment on the Administrative Record; granting in part and denying in part [44] AMK9&039;s Cross-Motion for Judgment on the Administrative Record. Joint Status Report due 1/5/2024. Signed by Judge Ryan T. Holte. (MBN) Service on parties made.", + "judges": "Ryan T. Holte", + "summaries": "REPORTED OPINION granting in part and denying in part [41] GK9&039;s Motion for Judgment on the Administrative Record and granting award of a permanent injunction disqualifying K2 from performance; granting [42] GK9&039;s Motion to Supplement the Administrative Record and granting [46-1] the government&039;s supplementation of the administrative record; finding as moot [39] MSA&039;s Motion for Judgment on the Administrative Record; finding as moot [38] MSA&039;s Motion to Supplement the Administrative Record; granting in part and denying in part [46] the government&039;s Cross-Motion for Judgment on the Administrative Record; granting in part and denying in part [44] AMK9&039;s Cross-Motion for Judgment on the Administrative Record. Joint Status Report due 1/5/2024", "case_name_shorts": "" }, { @@ -4531,8 +4531,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "13-402", - "judges": "R. Holte", - "summaries": "ORDER AND OPINION finding as moot [350] Corrected Motion for Reconsideration and [338] Motion for Reconsideration. Joint status report due by 1/3/2024. Signed by Judge Ryan T. Holte. (jf) Service on parties made.", + "judges": "Ryan T. Holte", + "summaries": "ORDER AND OPINION finding as moot [350] Corrected Motion for Reconsideration and [338] Motion for Reconsideration. Joint status report due by 1/3/2024", "case_name_shorts": "" }, { @@ -4543,8 +4543,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2116", - "judges": "Z. Somers", - "summaries": "UNREPORTED ORDER on [3] MOTION for Temporary Restraining Order, for Declaratory Judgment, and for Preliminary Injunction filed by LIFE SCIENCE LOGISTICS, LLC. GRANTING Motion for Declaratory relief and DENYING Motion for Declaratory Judgment and Motion for Preliminary Injunction. The Clerk is directed to enter judgment. Signed by Judge Zachary N. Somers. (taw) Service on parties made.", + "judges": "Zachary N. Somers", + "summaries": "UNREPORTED ORDER on [3] MOTION for Temporary Restraining Order, for Declaratory Judgment, and for Preliminary Injunction filed by LIFE SCIENCE LOGISTICS, LLC. GRANTING Motion for Declaratory relief and DENYING Motion for Declaratory Judgment and Motion for Preliminary Injunction. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -4555,8 +4555,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1826", - "judges": "P. Hadji", - "summaries": "UNREPORTED OPINION GRANTING [10] MOTION for Judgment on the Administrative Record filed by USA. The Court DENIES [14] CROSS MOTION and RESPONSE to [10] Motion to Dismiss filed by OWEN M. CUNNINGHAM and [10] MOTION to Dismiss pursuant to Rule 12(b)(6). The Clerk is directed to enter judgment. Signed by Judge Philip S. Hadji. (mcb) Service on parties made. Modified on 12/21/2023 - modified docket text. (jt1).", + "judges": "Philip S. Hadji", + "summaries": "UNREPORTED OPINION GRANTING [10] MOTION for Judgment on the Administrative Record filed by USA. The Court DENIES [14] CROSS MOTION and RESPONSE to [10] Motion to Dismiss filed by OWEN M. CUNNINGHAM and [10] MOTION to Dismiss pursuant to Rule 12(b)(6). The Clerk is directed to enter judgment", "case_name_shorts": "Cunningham" }, { @@ -4567,8 +4567,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1544", - "judges": "K. Davis", - "summaries": "UNREPORTED OPINION granting [9] Motion for Leave to Proceed in forma pauperis for the limited purpose of determining the Court&039;s jurisdiction and dismissing Plaintiff&039;s complaint sua sponte pursuant to RCFC 12(h)(3) for lack of subject matter jurisdiction. The Clerk is directed to enter judgment. Signed by Judge Kathryn C. Davis. (sbw) Service on parties made. Plaintiff served via first class mail. Modified on 12/21/2023 (sh).", + "judges": "Kathryn C. Davis", + "summaries": "UNREPORTED OPINION granting [9] Motion for Leave to Proceed in forma pauperis for the limited purpose of determining the Court&039;s jurisdiction and dismissing Plaintiff&039;s complaint sua sponte pursuant to RCFC 12(h)(3) for lack of subject matter jurisdiction. The Clerk is directed to enter judgment", "case_name_shorts": "Chism" }, { @@ -4579,8 +4579,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1112", - "judges": "E. Meyers", - "summaries": "REPORTED OPINION and ORDER denying [99] Motion for Judgment on the Administrative Record; denying [101] Motion for Judgment on the Administrative Record; denying [102] Motion for Judgment on the Administrative Record; denying [103] Motion for Judgment on the Record; denying [105] Motion for Judgment on the Administrative Record; granting [109] Cross Motion; granting [110] Cross Motion; granting [111] Cross Motion; granting [112] Cross Motion; granting [113] Cross Motion; granting [114] Cross Motion; granting [115] Cross Motion; denying as moot [131] Motion for Preliminary Injunction. Signed by Judge Edward H. Meyers. (db) Service on parties made.", + "judges": "Edward H. Meyers", + "summaries": "REPORTED OPINION and ORDER denying [99] Motion for Judgment on the Administrative Record; denying [101] Motion for Judgment on the Administrative Record; denying [102] Motion for Judgment on the Administrative Record; denying [103] Motion for Judgment on the Record; denying [105] Motion for Judgment on the Administrative Record; granting [109] Cross Motion; granting [110] Cross Motion; granting [111] Cross Motion; granting [112] Cross Motion; granting [113] Cross Motion; granting [114] Cross Motion; granting [115] Cross Motion; denying as moot [131] Motion for Preliminary Injunction", "case_name_shorts": "" }, { @@ -4591,8 +4591,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1655", - "judges": "R. Hertling", - "summaries": "UNREPORTED OPINION DISMISSING CASE: The complaint does not allege a claim over which the Court of Federal Claims can exercise jurisdiction and fails to state a claim for copyright infringement. The defendant&039;s [9] motion to dismiss is GRANTED, and the complaint is DISMISSED pursuant to RCFC 12(b)(1) and 12(h)(3) and to RCFC 12(b)(6). The Clerk is DIRECTED to enter judgment accordingly. No costs are awarded. Signed by Judge Richard A. Hertling. (lw) Service on parties made.", + "judges": "Richard A. Hertling", + "summaries": "UNREPORTED OPINION DISMISSING CASE: The complaint does not allege a claim over which the Court of Federal Claims can exercise jurisdiction and fails to state a claim for copyright infringement. The defendant&039;s [9] motion to dismiss is GRANTED, and the complaint is DISMISSED pursuant to RCFC 12(b)(1) and 12(h)(3) and to RCFC 12(b)(6). The Clerk is DIRECTED to enter judgment accordingly. No costs are awarded", "case_name_shorts": "Huges" }, { @@ -4603,8 +4603,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-136", - "judges": "E. Meyers", - "summaries": "UNREPORTED OPINION granting [9] Motion to Dismiss - Rule 12(b)(1) and (6); granting [2] Motion for Leave to Proceed in forma pauperis; granting [8] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment. Signed by Judge Edward H. Meyers. (cmh) Service on parties made. Plaintiff served via first class mail on this day. Modified on 12/20/2023 (vds).", + "judges": "Edward H. Meyers", + "summaries": "UNREPORTED OPINION granting [9] Motion to Dismiss - Rule 12(b)(1) and (6); granting [2] Motion for Leave to Proceed in forma pauperis; granting [8] Motion for Leave to Proceed in forma pauperis. The Clerk is directed to enter judgment", "case_name_shorts": "Chery" }, { @@ -4615,8 +4615,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1902", - "judges": "Z. Somers", - "summaries": "UNREPORTED OPINION on [65] MOTION to Certify Class filed by CARL ROBERT CARSON, JR. granting [65] Motion to Certify Class. Signed by Judge Zachary N. Somers. (taw) Service on parties made.", + "judges": "Zachary N. Somers", + "summaries": "UNREPORTED OPINION on [65] MOTION to Certify Class filed by CARL ROBERT CARSON, JR. granting [65] Motion to Certify Class", "case_name_shorts": "" }, { @@ -4627,8 +4627,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1365", - "judges": "Z. Somers", - "summaries": "UNREPORTED OPINION DISMISSING CASE on [7] Motion to Dismiss pursuant to Rule 12(b)(1) filed by USA. The Clerk is directed to enter judgment. Signed by Judge Zachary N. Somers. (mss) Service on parties made. Plaintiff served via certified mail on this day. 7011 0470 0002 5084 4942 Modified on 12/20/2023 (vds).", + "judges": "Zachary N. Somers", + "summaries": "UNREPORTED OPINION DISMISSING CASE on [7] Motion to Dismiss pursuant to Rule 12(b)(1) filed by USA. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -4639,8 +4639,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-913", - "judges": "D. Tapp", - "summaries": "REPORTED ORDER and OPINION: ECF No. [76] is reissued with redactions. Signed by Judge David A. Tapp. (krm) Service on parties made. (Main Document 85 replaced on 8/19/2024 to correct a typographical error) (aoc). Modified on 8/19/2024 (aoc).", + "judges": "David A. Tapp", + "summaries": "REPORTED ORDER and OPINION: ECF No. [76] is reissued with redactions", "case_name_shorts": "" }, { @@ -4651,8 +4651,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-913", - "judges": "D. Tapp", - "summaries": "ORDER: ECF No. [58] is reissued with redactions.. Signed by Judge David A. Tapp. (krm) Service on parties made.", + "judges": "David A. Tapp", + "summaries": "ORDER: ECF No. [58] is reissued with redactions", "case_name_shorts": "" }, { @@ -4663,8 +4663,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-913", - "judges": "D. Tapp", - "summaries": "ORDER: ECF No. [53] is reissued with redactions. Signed by Judge David A. Tapp. (krm) Service on parties made.", + "judges": "David A. Tapp", + "summaries": "ORDER: ECF No. [53] is reissued with redactions", "case_name_shorts": "" }, { @@ -4675,8 +4675,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1875", - "judges": "S. Schwartz", - "summaries": "UNREPORTED Order Dismissing Case. The Clerk is directed to enter judgment. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made. Plaintiff served via certified mail on this day. 7011 0470 0002 5084 4966 Modified on 12/20/2023 (vds).", + "judges": "Stephen S. Schwartz", + "summaries": "UNREPORTED Order Dismissing Case. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -4687,8 +4687,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1013", - "judges": "L. Smith", - "summaries": "REPORTED OPINION reissuing ECF No. 62 SEALED OPINION. Signed by Senior Judge Loren A. Smith. (mp) Service on parties made.", + "judges": "Loren A. Smith", + "summaries": "REPORTED OPINION reissuing ECF No. 62 SEALED OPINION", "case_name_shorts": "" }, { @@ -4699,8 +4699,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-908", - "judges": "K. Davis", - "summaries": "UNREPORTED OPINION DISMISSING CASE granting [7] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment. Signed by Judge Kathryn C. Davis. (sbw) Service on parties made.", + "judges": "Kathryn C. Davis", + "summaries": "UNREPORTED OPINION DISMISSING CASE granting [7] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment", "case_name_shorts": "Dukes" }, { @@ -4711,8 +4711,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1000", - "judges": "E. Meyers", - "summaries": "RE-DOCKETED FOR POSTING TO THE COURT&039;S WEBSITE REDACTED ORDER re [32] Order on Motion to Complete the Administrative Record Signed by Judge Edward H. Meyers. (cah) Service on parties made.", + "judges": "Edward H. Meyers", + "summaries": "RE-DOCKETED FOR POSTING TO THE COURT&039;S WEBSITE REDACTED ORDER re [32] Order on Motion to Complete the Administrative Record", "case_name_shorts": "" }, { @@ -4723,8 +4723,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-592", - "judges": "S. Schwartz", - "summaries": "JUDGE VACCINE REPORTED OPINION (PUBLIC VERSION) reissuing [95] Opinion and Order on Petitioner&039;s Motion for Review. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made.", + "judges": "Stephen S. Schwartz", + "summaries": "JUDGE VACCINE REPORTED OPINION (PUBLIC VERSION) reissuing [95] Opinion and Order on Petitioner&039;s Motion for Review", "case_name_shorts": "White" }, { @@ -4735,8 +4735,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1728", - "judges": "T. Dietz", - "summaries": "REPORTED OPINION and ORDER. Unsealed public redacted version of [23] OPINION AND ORDER granting [13] Plaintiff&039;s Motion for Judgment on the Administrative Record (MJAR); denying [14] Defendant&039;s Cross-MJAR. Signed by Judge Thompson M. Dietz. (ktl) Service on parties made.", + "judges": "Thompson M. Dietz", + "summaries": "REPORTED OPINION and ORDER. Unsealed public redacted version of [23] OPINION AND ORDER granting [13] Plaintiff&039;s Motion for Judgment on the Administrative Record (MJAR); denying [14] Defendant&039;s Cross-MJAR", "case_name_shorts": "" }, { @@ -4747,8 +4747,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1194", - "judges": "S. Schwartz", - "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: denying [9] Motion for Summary Judgment filed by STEPHEN D. HUSKEY; granting [10] Motion to Dismiss pursuant to Rule 12(b)(1) filed by USA. The Clerk is directed to enter judgment. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made. Plaintiff served via Certified Mail 7018 2290 0000 5183 4336 on 12.19.2023 (cam). Modified on 12/19/2023 (cam).", + "judges": "Stephen S. Schwartz", + "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: denying [9] Motion for Summary Judgment filed by STEPHEN D. HUSKEY; granting [10] Motion to Dismiss pursuant to Rule 12(b)(1) filed by USA. The Clerk is directed to enter judgment", "case_name_shorts": "Huskey" }, { @@ -4759,8 +4759,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-34", - "judges": "K. Davis", - "summaries": "REPORTED OPINION of the Court&039;s [211] Sealed Opinion. Signed by Judge Kathryn C. Davis. (sbw) Service on parties made.", + "judges": "Kathryn C. Davis", + "summaries": "REPORTED OPINION of the Court&039;s [211] Sealed Opinion", "case_name_shorts": "" }, { @@ -4771,8 +4771,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-809", - "judges": "K. Davis", - "summaries": "UNREPORTED OPINION DISMISSING CASE granting [6] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment. Signed by Judge Kathryn C. Davis. (ebl) Service on parties made.", + "judges": "Kathryn C. Davis", + "summaries": "UNREPORTED OPINION DISMISSING CASE granting [6] Motion to Dismiss - Rule 12(b)(1). The Clerk is directed to enter judgment", "case_name_shorts": "Cartman" }, { @@ -4783,8 +4783,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1984", - "judges": "D. Tapp", - "summaries": "ORDER AND OPINION: The Court FINDS that it lacks subject-matter jurisdiction over the Plaintiff&039;s claims. The Clerk is DIRECTED to transfer this case to the United States District Court for the Eastern District of Virginia and to close the case. Signed by Judge David A. Tapp. (krm) Service on parties made. Plainitff served via First Class mail on 12/18/23. (ac7).", + "judges": "David A. Tapp", + "summaries": "ORDER AND OPINION: The Court FINDS that it lacks subject-matter jurisdiction over the Plaintiff&039;s claims. The Clerk is DIRECTED to transfer this case to the United States District Court for the Eastern District of Virginia and to close the case", "case_name_shorts": "Beauvais" }, { @@ -4795,8 +4795,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-887", - "judges": "K. Davis", - "summaries": "JUDGE VACCINE REPORTED OPINION re: [94] Order on Motion for Review, Judge Vaccine Order/Opinion. Signed by Judge Kathryn C. Davis. (sbw) Service on parties made.", + "judges": "Kathryn C. Davis", + "summaries": "JUDGE VACCINE REPORTED OPINION re: [94] Order on Motion for Review, Judge Vaccine Order/Opinion", "case_name_shorts": "BECHEL" }, { @@ -4807,8 +4807,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-43", - "judges": "S. Schwartz", - "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: granting [11] Motion to Dismiss - Rule 12(b)(1) and (6) filed by USA; granting [14] Motion for Leave to File Corrected Response filed by BRIAN KEITH MULLEN. The Clerk is directed to enter judgment. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made.", + "judges": "Stephen S. Schwartz", + "summaries": "UNREPORTED OPINION AND ORDER DISMISSING CASE: granting [11] Motion to Dismiss - Rule 12(b)(1) and (6) filed by USA; granting [14] Motion for Leave to File Corrected Response filed by BRIAN KEITH MULLEN. The Clerk is directed to enter judgment", "case_name_shorts": "Mullen" }, { @@ -4819,8 +4819,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1392", - "judges": "D. Tapp", - "summaries": "REPORTED ORDER. ECF No. [33] reissued. Signed by Judge David A. Tapp. (emc) Service on parties made.", + "judges": "David A. Tapp", + "summaries": "REPORTED ORDER. ECF No. [33] reissued", "case_name_shorts": "" }, { @@ -4831,8 +4831,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1571", - "judges": "E. Kaplan", - "summaries": "REPORTED OPINION and ORDER denying [46] Pl.&039;s MJAR; granting [58] Def.-Intervenor&039;s Cross-MJAR; granting [59] Def.&039;s Cross-MJAR; and denying [43] Pl.&039;s Mot. to Suppl. Admin. R. Signed by Chief Judge Elaine D. Kaplan. (tbs) Service on parties made.", + "judges": "Elaine D. Kaplan", + "summaries": "REPORTED OPINION and ORDER denying [46] Pl.&039;s MJAR; granting [58] Def.-Intervenor&039;s Cross-MJAR; granting [59] Def.&039;s Cross-MJAR; and denying [43] Pl.&039;s Mot. to Suppl. Admin. R", "case_name_shorts": "" }, { @@ -4843,8 +4843,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1732", - "judges": "T. Dietz", - "summaries": "REPORTED OPINION granting [34] Defendant&039;s Motion to Dismiss; denying as moot [33] Plaintiff&039;s Motion for Judgment on the Administrative Record; and denying as moot [34] the Defendant&039;s Cross-Motion for Judgement on the Administrative Record. The Clerk is directed to enter judgment. Signed by Judge Thompson M. Dietz. (ktl) Service on parties made.", + "judges": "Thompson M. Dietz", + "summaries": "REPORTED OPINION granting [34] Defendant&039;s Motion to Dismiss; denying as moot [33] Plaintiff&039;s Motion for Judgment on the Administrative Record; and denying as moot [34] the Defendant&039;s Cross-Motion for Judgement on the Administrative Record. The Clerk is directed to enter judgment", "case_name_shorts": "Conti" }, { @@ -4855,8 +4855,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1386", - "judges": "E. Meyers", - "summaries": "UNREPORTED Order granting [13] Motion to Dismiss pursuant to Rule 12(b)(1). Plaintiff&039;s Complaint [1] is dismissed without prejudice. The Clerk is directed to enter judgment. Signed by Judge Edward H. Meyers. (db) Service on parties made. Plaintiff served via Certified mail 70182290000051837092 on 12/14/23. (tb).", + "judges": "Edward H. Meyers", + "summaries": "UNREPORTED Order granting [13] Motion to Dismiss pursuant to Rule 12(b)(1). Plaintiff&039;s Complaint [1] is dismissed without prejudice. The Clerk is directed to enter judgment", "case_name_shorts": "Wallace" }, { @@ -4867,8 +4867,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1155", - "judges": "D. Tapp", - "summaries": "REPORTED OPINION. ECF No. [38] reissued. Signed by Judge David A. Tapp. (smr) Service on parties made.", + "judges": "David A. Tapp", + "summaries": "REPORTED OPINION. ECF No. [38] reissued", "case_name_shorts": "" }, { @@ -4879,8 +4879,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1319", - "judges": "T. Dietz", - "summaries": "JUDGE VACCINE REPORTED OPINION (PUBLIC VERSION) of [46] Judge Vaccine Order/Opinion. Signed by Judge Thompson M. Dietz. (sbp) Service on parties made.", + "judges": "Thompson M. Dietz", + "summaries": "JUDGE VACCINE REPORTED OPINION (PUBLIC VERSION) of [46] Judge Vaccine Order/Opinion", "case_name_shorts": "White" }, { @@ -4891,8 +4891,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1507", - "judges": "C. Lettow", - "summaries": "UNREPORTED ORDER DISMISSING CASE, granting [9] MOTION to Dismiss pursuant to Rules 12 (b)(1) and (6). The Clerk is directed to enter judgment. Signed by Senior Judge Charles F. Lettow. (khp) Service on parties made. Plaintiff served via U.S. mail . Modified on 12/12/2023 (sh).", + "judges": "Charles F. Lettow", + "summaries": "UNREPORTED ORDER DISMISSING CASE, granting [9] MOTION to Dismiss pursuant to Rules 12 (b)(1) and (6). The Clerk is directed to enter judgment", "case_name_shorts": "Clapp" }, { @@ -4903,8 +4903,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1277", - "judges": "E. Roumel", - "summaries": "REPORTED OPINION granting [10] Defendant&039;s Motion to Dismiss pursuant to Rule 12(b)(1). The Clerk of Court is directed to enter Judgment accordingly. Signed by Judge Eleni M. Roumel. (lew) Service on parties made.", + "judges": "Eleni M. Roumel", + "summaries": "REPORTED OPINION granting [10] Defendant&039;s Motion to Dismiss pursuant to Rule 12(b)(1). The Clerk of Court is directed to enter Judgment accordingly", "case_name_shorts": "Taylor" }, { @@ -4915,8 +4915,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "13-476", - "judges": "E. Meyers", - "summaries": "RE-DOCKETED FOR ADMINISTRATIVE PURPOSES UNREPORTED ORDER. Signed by Judge Edward H. Meyers. (py) Service on parties made.", + "judges": "Edward H. Meyers", + "summaries": "RE-DOCKETED FOR ADMINISTRATIVE PURPOSES UNREPORTED ORDER", "case_name_shorts": "" }, { @@ -4927,8 +4927,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-359", - "judges": "V. Wolski", - "summaries": "UNREPORTED ORDER granting [67] MOTION to Extend Stay, filed by All Plaintiffs. Status Report due by 1/8/2024. Signed by Senior Judge Victor J. Wolski. (at) Service on parties made.", + "judges": "Victor J. Wolski", + "summaries": "UNREPORTED ORDER granting [67] MOTION to Extend Stay, filed by All Plaintiffs. Status Report due by 1/8/2024", "case_name_shorts": "BRASWELL" }, { @@ -4939,8 +4939,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1988", - "judges": "A. Bonilla", - "summaries": "OPINION AND ORDER: Plaintiff&039;s [37] motion to strike is DENIED and defendant&039;s [38] motion for summary judgment is GRANTED. The Clerk of Court shall ENTER Judgment in favor or the United States. No costs. Signed by Judge Armando O. Bonilla. (ead) Service on parties made.", + "judges": "Armando O. Bonilla", + "summaries": "OPINION AND ORDER: Plaintiff&039;s [37] motion to strike is DENIED and defendant&039;s [38] motion for summary judgment is GRANTED. The Clerk of Court shall ENTER Judgment in favor or the United States. No costs", "case_name_shorts": "Borovicka" }, { @@ -4951,8 +4951,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1969", - "judges": "E. Kaplan", - "summaries": "UNREPORTED OPINION DISMISSING CASE. The Clerk is directed to enter judgment. Signed by Chief Judge Elaine D. Kaplan. (ap) Service on parties made.", + "judges": "Elaine D. Kaplan", + "summaries": "UNREPORTED OPINION DISMISSING CASE. The Clerk is directed to enter judgment", "case_name_shorts": "McManus" }, { @@ -4963,8 +4963,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1298", - "judges": "C. Lerner", - "summaries": "UNREPORTED OPINION. [25] OPINION and ORDER denying Plaintiff&039;s Motion for Judgment on the Administrative Record; granting Defendant&039;s Cross-Motion for Judgment on the Administrative Record re-issued for public release. Signed by Judge Carolyn N. Lerner. (btd) Service on parties made.", + "judges": "Carolyn N. Lerner", + "summaries": "UNREPORTED OPINION. [25] OPINION and ORDER denying Plaintiff&039;s Motion for Judgment on the Administrative Record; granting Defendant&039;s Cross-Motion for Judgment on the Administrative Record re-issued for public release", "case_name_shorts": "" }, { @@ -4975,8 +4975,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1254", - "judges": "L. Smith", - "summaries": "OPINION and ORDER granting [16] Defendant&039;s Motion to Dismiss. The Clerk is directed to enter judgment. Signed by Senior Judge Loren A. Smith. (nck) Service on parties made.", + "judges": "Loren A. Smith", + "summaries": "OPINION and ORDER granting [16] Defendant&039;s Motion to Dismiss. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -4987,8 +4987,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-755", - "judges": "Z. Somers", - "summaries": "REPORTED OPINION on [34] MOTION for Judgment on the Administrative Record filed by JOSEPH T. LYON, [35] CROSS MOTION and RESPONSE to [34] Motion for Judgment on the Administrative Record filed by JOSEPH T. LYON filed by USA. Granting In Part [34] Motion for Judgment on the Administrative Record; Denying [35] Cross Motion. Status Report due by 1/3/2024. Signed by Judge Zachary N. Somers. (Somers, Zachary) Service on parties made.", + "judges": "Zachary N. Somers", + "summaries": "REPORTED OPINION on [34] MOTION for Judgment on the Administrative Record filed by JOSEPH T. LYON, [35] CROSS MOTION and RESPONSE to [34] Motion for Judgment on the Administrative Record filed by JOSEPH T. LYON filed by USA. Granting In Part [34] Motion for Judgment on the Administrative Record; Denying [35] Cross Motion. Status Report due by 1/3/2024", "case_name_shorts": "Lyon" }, { @@ -4999,8 +4999,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-895", - "judges": "Z. Somers", - "summaries": "REPORTED OPINION on [72] CROSS MOTION and RESPONSE to [70] Motion for Judgment on the Administrative Record filed by GEORGE BALDWIN HUTCHINSON, JR. filed by GEORGE BALDWIN HUTCHINSON, JR., [73] MOTION for Partial Summary Judgment filed by GEORGE BALDWIN HUTCHINSON, JR., [77] MOTION for Judgment on the Administrative Record filed by USA, [107] MOTION for Hearing filed by GEORGE BALDWIN HUTCHINSON, JR. Denying [72] Cross Motion; Denying [73] Motion for Partial Summary Judgment; Granting [77] Motion for Judgment on the Administrative Record; Denying [107] Motion for Hearing. The Clerk is directed to enter judgment. Signed by Judge Zachary N. Somers. (Somers, Zachary) Service on parties made.", + "judges": "Zachary N. Somers", + "summaries": "REPORTED OPINION on [72] CROSS MOTION and RESPONSE to [70] Motion for Judgment on the Administrative Record filed by GEORGE BALDWIN HUTCHINSON, JR. filed by GEORGE BALDWIN HUTCHINSON, JR., [73] MOTION for Partial Summary Judgment filed by GEORGE BALDWIN HUTCHINSON, JR., [77] MOTION for Judgment on the Administrative Record filed by USA, [107] MOTION for Hearing filed by GEORGE BALDWIN HUTCHINSON, JR. Denying [72] Cross Motion; Denying [73] Motion for Partial Summary Judgment; Granting [77] Motion for Judgment on the Administrative Record; Denying [107] Motion for Hearing. The Clerk is directed to enter judgment", "case_name_shorts": "Hutchinson" }, { @@ -5011,8 +5011,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1536", - "judges": "S. Schwartz", - "summaries": "UNREPORTED OPINION AND ORDER granting [9] Motion to Stay Case filed by USA and STAYING the case for 30 days; denying [12] MOTION for Entry of Default filed by STEVEN P. ENDRES; FILING BY MY LEAVE Plaintiff&039;s "Response to Support his Opposition to Defendant&039;s Motion to Stay," submitted to the Court on November 3, 2023. Signed by Judge Stephen S. Schwartz. (cmc) Service on parties made.", + "judges": "Stephen S. Schwartz", + "summaries": "UNREPORTED OPINION AND ORDER granting [9] Motion to Stay Case filed by USA and STAYING the case for 30 days; denying [12] MOTION for Entry of Default filed by STEVEN P. ENDRES; FILING BY MY LEAVE Plaintiff&039;s "Response to Support his Opposition to Defendant&039;s Motion to Stay," submitted to the Court on November 3, 2023", "case_name_shorts": "Endres" }, { @@ -5023,8 +5023,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1042", - "judges": "R. Hertling", - "summaries": "UNREPORTED OPINION DISMISSING CASE The defendant&039;s motion to dismiss [8] is GRANTED, and the plaintiff&039;s complaint is DISMISSED in its entirety without prejudice for lack of subject-matter jurisdiction, pursuant to RCFC 12(b)(1) and RCFC 12(h)(3). The Clerk is DIRECTED to enter judgment accordingly. No costs are awarded. Signed by Judge Richard A. Hertling. (agg) Service on parties made; plaintiff served via first class mail. (dls)", + "judges": "Richard A. Hertling", + "summaries": "UNREPORTED OPINION DISMISSING CASE The defendant&039;s motion to dismiss [8] is GRANTED, and the plaintiff&039;s complaint is DISMISSED in its entirety without prejudice for lack of subject-matter jurisdiction, pursuant to RCFC 12(b)(1) and RCFC 12(h)(3). The Clerk is DIRECTED to enter judgment accordingly. No costs are awarded", "case_name_shorts": "D&039;agostino" }, { @@ -5035,8 +5035,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "15-945", - "judges": "E. Bruggink", - "summaries": "REPORTED OPINION. Signed by Senior Judge Eric G. Bruggink. (jpk1) Service on parties made.", + "judges": "Eric G. Bruggink", + "summaries": "REPORTED OPINION", "case_name_shorts": "" }, { @@ -5047,8 +5047,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "15-953", - "judges": "E. Bruggink", - "summaries": "REPORTED Order The Clerk is directed to enter judgment. Signed by Senior Judge Eric G. Bruggink. (jpk1) Service on parties made.", + "judges": "Eric G. Bruggink", + "summaries": "REPORTED Order The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -5059,8 +5059,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-84", - "judges": "E. Bruggink", - "summaries": "REPORTED OPINION granting [15] Motion for Judgment on the Administrative Record; denying [16] Cross Motion. The Clerk is directed to enter judgment. Signed by Senior Judge Eric G. Bruggink. (eab) Service on parties made.", + "judges": "Eric G. Bruggink", + "summaries": "REPORTED OPINION granting [15] Motion for Judgment on the Administrative Record; denying [16] Cross Motion. The Clerk is directed to enter judgment", "case_name_shorts": "Mote" }, { @@ -5071,8 +5071,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1985", - "judges": "R. Hertling", - "summaries": "UNREPORTED OPINION DISMISSING CASE The complaint is DISMISSED pursuant to 28 U.S.C. &167; 1915(e)(2)(B)(ii) and RCFC 12(b)(1) and 12(h)(3).2 The [2] MOTION for Leave to Proceed in forma pauperis is Denied. The Clerk is DIRECTED to enter judgment accordingly. Pursuant to 28 U.S.C. &167; 1915(a)(3), any appeal filed by the plaintiff would not be taken in good faith. No costs are awarded. Signed by Judge Richard A. Hertling. (agg) Service on parties made; plaintiff served via first class mail. (dls)", + "judges": "Richard A. Hertling", + "summaries": "UNREPORTED OPINION DISMISSING CASE The complaint is DISMISSED pursuant to 28 U.S.C. &167; 1915(e)(2)(B)(ii) and RCFC 12(b)(1) and 12(h)(3).2 The [2] MOTION for Leave to Proceed in forma pauperis is Denied. The Clerk is DIRECTED to enter judgment accordingly. Pursuant to 28 U.S.C. &167; 1915(a)(3), any appeal filed by the plaintiff would not be taken in good faith. No costs are awarded", "case_name_shorts": "Hendricks" }, { @@ -5083,8 +5083,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-778", - "judges": "R. Hertling", - "summaries": "REPORTED OPINION on [146] MOTION for Review of Clerk&039;s Action on Costs re [145] Costs Taxed filed by SEKRI, INC. The plaintiff&039;s motion for review is GRANTED in part and DENIED in part. In addition to the &036;907.00 awarded by the Clerk for its costs of the suit, the plaintiff has justified the award of an additional &036;195.30 for costs associated with the preparation of the joint appendix on appeal. Accordingly, the Clerk shall award the plaintiff the sum of &036;1,102.30 for its costs. Signed by Judge Richard A. Hertling. (lw) Service on parties made.", + "judges": "Richard A. Hertling", + "summaries": "REPORTED OPINION on [146] MOTION for Review of Clerk&039;s Action on Costs re [145] Costs Taxed filed by SEKRI, INC. The plaintiff&039;s motion for review is GRANTED in part and DENIED in part. In addition to the &036;907.00 awarded by the Clerk for its costs of the suit, the plaintiff has justified the award of an additional &036;195.30 for costs associated with the preparation of the joint appendix on appeal. Accordingly, the Clerk shall award the plaintiff the sum of &036;1,102.30 for its costs", "case_name_shorts": "" }, { @@ -5095,8 +5095,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1113", - "judges": "E. Bruggink", - "summaries": "REPORTED OPINION. Signed by Senior Judge Eric G. Bruggink. (cc) Service on parties made.", + "judges": "Eric G. Bruggink", + "summaries": "REPORTED OPINION", "case_name_shorts": "" }, { @@ -5107,8 +5107,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1116", - "judges": "R. Hertling", - "summaries": "REPORTED OPINION: Reissued public opinion of the [39] sealed opinion issued on November 6, 2023, granting the defendant&039;s [34] and defendant-intervenor&039;s [33] motions for judgment on the administrative record and denying the plaintiff&039;s [30] motion for judgment on the administrative record. Signed by Judge Richard A. Hertling. (lw) Service on parties made.", + "judges": "Richard A. Hertling", + "summaries": "REPORTED OPINION: Reissued public opinion of the [39] sealed opinion issued on November 6, 2023, granting the defendant&039;s [34] and defendant-intervenor&039;s [33] motions for judgment on the administrative record and denying the plaintiff&039;s [30] motion for judgment on the administrative record", "case_name_shorts": "" }, { @@ -5119,8 +5119,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1504", - "judges": "E. Roumel", - "summaries": "REPORTED OPINION granting [12] Defendant&039;s Motion to Dismiss Pursuant to Rule 12(b)(1). The Clerk of Court is directed to enter Judgment accordingly. Signed by Judge Eleni M. Roumel. (ms) Service on parties made. Plaintiff served via first class mail on 12.04.2023 (mjk). Modified on 12/4/2023 (mjk).", + "judges": "Eleni M. Roumel", + "summaries": "REPORTED OPINION granting [12] Defendant&039;s Motion to Dismiss Pursuant to Rule 12(b)(1). The Clerk of Court is directed to enter Judgment accordingly", "case_name_shorts": "Mallard" }, { @@ -5131,8 +5131,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1124", - "judges": "M. Sweeney", - "summaries": "REPORTED OPINION DISMISSING CASE. on [35] MOTION to Dismiss pursuant to Rules 12 (b)(1) and (6) filed by USA, [5] MOTION to Certify Class filed by WAZEE STREET OPPORTUNITIES FUND IV LP, DOUGLAS WHITLEY, LISA BROWN granting [35] Motion to Dismiss - Rule 12(b)(1) and (6); finding as moot [5] Motion to Certify Class. The Clerk is directed to enter judgment. Signed by Senior Judge Margaret M. Sweeney. (jb2) Service on parties made.", + "judges": "Margaret M. Sweeney", + "summaries": "REPORTED OPINION DISMISSING CASE. on [35] MOTION to Dismiss pursuant to Rules 12 (b)(1) and (6) filed by USA, [5] MOTION to Certify Class filed by WAZEE STREET OPPORTUNITIES FUND IV LP, DOUGLAS WHITLEY, LISA BROWN granting [35] Motion to Dismiss - Rule 12(b)(1) and (6); finding as moot [5] Motion to Certify Class. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -5143,8 +5143,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1635", - "judges": "E. Damich", - "summaries": "UNREPORTED OPINION. Signed by Senior Judge Edward J. Damich. (hem) Service on parties made.", + "judges": "Edward J. Damich", + "summaries": "UNREPORTED OPINION", "case_name_shorts": "" }, { @@ -5155,8 +5155,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-897", - "judges": "C. Lerner", - "summaries": "JUDGE VACCINE OPINION (PUBLIC VERSION) on [124] Petitioner&039;s Motion for Review. Signed by Judge Carolyn N. Lerner. (ak) Service on parties made.", + "judges": "Carolyn N. Lerner", + "summaries": "JUDGE VACCINE OPINION (PUBLIC VERSION) on [124] Petitioner&039;s Motion for Review", "case_name_shorts": "Woods" }, { @@ -5167,8 +5167,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "15-803", - "judges": "V. Wolski", - "summaries": "JUDGE VACCINE UNREPORTED OPINION (PUBLIC VERSION) on [118] Judgment Signed by Senior Judge Victor J. Wolski. (mvl) Service on parties made.", + "judges": "Victor J. Wolski", + "summaries": "JUDGE VACCINE UNREPORTED OPINION (PUBLIC VERSION) on [118] Judgment", "case_name_shorts": "Webb" }, { @@ -5179,8 +5179,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-808", - "judges": "E. Roumel", - "summaries": "REPORTED OPINION (reissued for publication of [32] SEALED MEMORANDUM AND ORDER DENYING [25] Defendant&039;s Motion to Dismiss for lack of standing, DENYING [11] Plaintiff&039;s Motion for Judgment on the Administrative Record, and GRANTING [25] Defendant&039;s Cross-Motion for Judgment on the Administrative Record). Signed by Judge Eleni M. Roumel. (lew) Service on parties made.", + "judges": "Eleni M. Roumel", + "summaries": "REPORTED OPINION (reissued for publication of [32] SEALED MEMORANDUM AND ORDER DENYING [25] Defendant&039;s Motion to Dismiss for lack of standing, DENYING [11] Plaintiff&039;s Motion for Judgment on the Administrative Record, and GRANTING [25] Defendant&039;s Cross-Motion for Judgment on the Administrative Record", "case_name_shorts": "" }, { @@ -5191,8 +5191,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1930", - "judges": "M. Solomson", - "summaries": "UNPUBLISHED OPINION DISMISSING CASE. The Court DISMISSES Plaintiff&039;s complaint for lack of subject-matter jurisdiction pursuant to RCFC 12(h)(3). The Clerk of the Court is directed to enter JUDGMENT for the government, dismissing the case. Signed by Judge Matthew H. Solomson. (ab) Service on parties made. Plaintiff served via first class mail on 12.05.2023 (cam). Modified on 12/5/2023 (cam).", + "judges": "Matthew H. Solomson", + "summaries": "UNPUBLISHED OPINION DISMISSING CASE. The Court DISMISSES Plaintiff&039;s complaint for lack of subject-matter jurisdiction pursuant to RCFC 12(h)(3). The Clerk of the Court is directed to enter JUDGMENT for the government, dismissing the case", "case_name_shorts": "Symonette" }, { @@ -5203,8 +5203,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1037", - "judges": "L. Smith", - "summaries": "REPORTED OPINION reissuing ECF No. 44 SEALED OPINION and ORDER. Signed by Senior Judge Loren A. Smith. (mp) Service on parties made.", + "judges": "Loren A. Smith", + "summaries": "REPORTED OPINION reissuing ECF No. 44 SEALED OPINION and ORDER", "case_name_shorts": "" }, { @@ -5215,8 +5215,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-416", - "judges": "C. Lettow", - "summaries": "REPORTED OPINION granting in part and denying in part [9] Motion to Dismiss - Rule 12(b)(1) and (6). Signed by Senior Judge Charles F. Lettow. (khp)", + "judges": "Charles F. Lettow", + "summaries": "REPORTED OPINION granting in part and denying in part [9] Motion to Dismiss - Rule 12(b)(1) and (6", "case_name_shorts": "" }, { @@ -5227,8 +5227,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1198", - "judges": "M. Solomson", - "summaries": "REPORTED OPINION DISMISSING CASE. Plaintiffs&039; second amended complaint is dismissed for failure to state a claim pursuant to RCFC 12(b)(6). To the extent Plaintiffs&039; takings claim depends on future government actions or decisions, it is not ripe, and is dismissed pursuant to RCFC 12(b)(1). The Clerk is directed to enter judgment in favor of the government, dismissing this case. Signed by Judge Matthew H. Solomson. (tf) Service on parties made. Main Document 48 replaced on 11/8/2023 to correct typographical error. (jwg)", + "judges": "Matthew H. Solomson", + "summaries": "REPORTED OPINION DISMISSING CASE. Plaintiffs&039; second amended complaint is dismissed for failure to state a claim pursuant to RCFC 12(b)(6). To the extent Plaintiffs&039; takings claim depends on future government actions or decisions, it is not ripe, and is dismissed pursuant to RCFC 12(b)(1). The Clerk is directed to enter judgment in favor of the government, dismissing this case", "case_name_shorts": "" }, { @@ -5239,8 +5239,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-126", - "judges": "D. Tapp", - "summaries": "OPINION and ORDER: GRANTING-IN-PART and DENYING-IN-PART [83] Motion for Summary Judgment. Signed by Judge David A. Tapp. (krm) Service on parties made. Modified on 11/8/2023 - corrected minor typographical error (jt1).", + "judges": "David A. Tapp", + "summaries": "OPINION and ORDER: GRANTING-IN-PART and DENYING-IN-PART [83] Motion for Summary Judgment", "case_name_shorts": "" }, { @@ -5251,8 +5251,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1994", - "judges": "A. Bonilla", - "summaries": "REPORTED OPINION AND ORDER: Plaintiff&039;s [43] Motion for Judgment on the Administrative Record is DENIED and Defendant&039;s [44] Cross-Motion for Judgment on the Administrative Record is GRANTED. The remaining deadlines included in the Court&039;s April 25, 2023 and October 13, 2023 Orders (ECF [36], [46]) are VACATED. The Clerk of Court is directed to ENTER Judgment accordingly. Signed by Judge Armando O. Bonilla. (ead) Service on parties made.", + "judges": "Armando O. Bonilla", + "summaries": "REPORTED OPINION AND ORDER: Plaintiff&039;s [43] Motion for Judgment on the Administrative Record is DENIED and Defendant&039;s [44] Cross-Motion for Judgment on the Administrative Record is GRANTED. The remaining deadlines included in the Court&039;s April 25, 2023 and October 13, 2023 Orders (ECF [36], [46]) are VACATED. The Clerk of Court is directed to ENTER Judgment accordingly", "case_name_shorts": "Carlborg" }, { @@ -5263,8 +5263,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1898", - "judges": "E. Bruggink", - "summaries": "REPORTED OPINION The Clerk is directed to enter judgment. Signed by Senior Judge Eric G. Bruggink. (eab) Service on parties made.", + "judges": "Eric G. Bruggink", + "summaries": "REPORTED OPINION The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -5275,8 +5275,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-813", - "judges": "C. Lerner", - "summaries": "UNREPORTED OPINION. [38] OPINION and ORDER denying Plaintiff&039;s Motion for Judgment on the Administrative Record; granting Defendant&039;s Cross Motion and Motion to Strike re-issued for public release. Signed by Judge Carolyn N. Lerner. (btd) Service on parties made.", + "judges": "Carolyn N. Lerner", + "summaries": "UNREPORTED OPINION. [38] OPINION and ORDER denying Plaintiff&039;s Motion for Judgment on the Administrative Record; granting Defendant&039;s Cross Motion and Motion to Strike re-issued for public release", "case_name_shorts": "" }, { @@ -5287,8 +5287,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-14", - "judges": "M. Silfen", - "summaries": "REPORTED OPINION granting [7] motion to dismiss pursuant to Rules 12(b)(1) and (6), and denying [18] plaintiff&039;s request to transfer. The Clerk is directed to enter judgment. Signed by Judge Molly R. Silfen. (bp) Service on parties made.", + "judges": "Molly R. Silfen", + "summaries": "REPORTED OPINION granting [7] motion to dismiss pursuant to Rules 12(b)(1) and (6), and denying [18] plaintiff&039;s request to transfer. The Clerk is directed to enter judgment", "case_name_shorts": "Walker" }, { @@ -5299,8 +5299,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "09-453", - "judges": "M. Sweeney", - "summaries": "JUDGE VACCINE REPORTED OPINION (PUBLIC VERSION) reissuing [390] Opinion and Order. Signed by Senior Judge Margaret M. Sweeney. (kb1)", + "judges": "Margaret M. Sweeney", + "summaries": "JUDGE VACCINE REPORTED OPINION (PUBLIC VERSION) reissuing [390] Opinion and Order", "case_name_shorts": "Hodge" }, { @@ -5311,8 +5311,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-953", - "judges": "T. Dietz", - "summaries": "REPORTED OPINION and ORDER granting in part and denying in part [28] the Government&039;s Motion to Dismiss or Alternatively, Motion for Summary Judgment; granting [29] MIT&039;s Motion for Summary Judgment; and granting [30] MIT&039;s Request for Judicial Notice. The parties shall file a JSR by 11/9/2023. Signed by Judge Thompson M. Dietz. (sbp) Service on parties made.", + "judges": "Thompson M. Dietz", + "summaries": "REPORTED OPINION and ORDER granting in part and denying in part [28] the Government&039;s Motion to Dismiss or Alternatively, Motion for Summary Judgment; granting [29] MIT&039;s Motion for Summary Judgment; and granting [30] MIT&039;s Request for Judicial Notice. The parties shall file a JSR by 11/9/2023", "case_name_shorts": "" }, { @@ -5323,8 +5323,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-244", - "judges": "D. Tapp", - "summaries": "REPORTED OPINION DISMISSING CASE; Opinion and Order granting [117] Motion for Summary Judgment filed by USA. The Clerk is directed to enter judgment. Signed by Judge David A. Tapp. (emc) Service on parties made.", + "judges": "David A. Tapp", + "summaries": "REPORTED OPINION DISMISSING CASE; Opinion and Order granting [117] Motion for Summary Judgment filed by USA. The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -5335,8 +5335,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1354", - "judges": "E. Meyers", - "summaries": "UNREPORTED Order granting [8] Defendant&039;s MOTION to Dismiss - Rule 12 (b)(1); denying [2] Plaintiff&039;s MOTION for Leave to Proceed in forma pauperis; denying [3] Plaintiff&039;s Motion for Default Judgment. The Clerk is directed to enter judgment. Signed by Judge Edward H. Meyers. (db) Service on parties made. Modified on 10/26/2023 - corrected pdf (jt1).", + "judges": "Edward H. Meyers", + "summaries": "UNREPORTED Order granting [8] Defendant&039;s MOTION to Dismiss - Rule 12 (b)(1); denying [2] Plaintiff&039;s MOTION for Leave to Proceed in forma pauperis; denying [3] Plaintiff&039;s Motion for Default Judgment. The Clerk is directed to enter judgment", "case_name_shorts": "Caudle" }, { @@ -5347,8 +5347,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-335", - "judges": "M. Silfen", - "summaries": "REPORTED OPINION granting [29] motion to dismiss pursuant to Rules 12 (b)(1) and (6). The Clerk is directed to enter judgment. Signed by Judge Molly R. Silfen. (bp) Service on parties made. (Main Document 45 replaced on 10/27/2023) (tb). Modified on 10/27/2023 to add Corrected Order adding footnote 2 (tb).", + "judges": "Molly R. Silfen", + "summaries": "REPORTED OPINION granting [29] motion to dismiss pursuant to Rules 12 (b)(1) and (6). The Clerk is directed to enter judgment", "case_name_shorts": "" }, { @@ -5359,8 +5359,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-944", - "judges": "T. Dietz", - "summaries": "REPORTED OPINION and ORDER. Unsealed public version of the Court&039;s 10/4/2023 Opinion and Order [46]. Signed by Judge Thompson M. Dietz.(sbp) Service on parties made. Modified on 10/25/2023, corrected pdf (jt1).", + "judges": "Thompson M. Dietz", + "summaries": "REPORTED OPINION and ORDER. Unsealed public version of the Court&039;s 10/4/2023 Opinion and Order [46]", "case_name_shorts": "" } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/uscfc_vaccine_example.compare.json b/tests/examples/opinions/united_states/uscfc_vaccine_example.compare.json index 5ac1c7ba3..7f20844c7 100644 --- a/tests/examples/opinions/united_states/uscfc_vaccine_example.compare.json +++ b/tests/examples/opinions/united_states/uscfc_vaccine_example.compare.json @@ -7,8 +7,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2126V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/10/2024) regarding [20] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/10/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "Waltman" }, { @@ -18,9 +18,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-665V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/20/2024) regarding [42] Findings of Fact & Conclusions of Law,, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0665V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/20/2024) regarding [42] Findings of Fact & Conclusions of Law", "case_name_shorts": "Tyler" }, { @@ -30,9 +30,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-100V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/19/2024) regarding [44] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0100V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/19/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Trevis" }, { @@ -43,8 +43,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1395V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/17/2024 ) regarding [20] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/17/2024 ) regarding [20] DECISION Stipulation/Proffer", "case_name_shorts": "Spann" }, { @@ -55,8 +55,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1961V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/16/2024) regarding [46] Ruling on Entitlement,, DECISION of Special Master,, Order on Motion for Ruling on the Record, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/16/2024) regarding [46] Ruling on Entitlement,, DECISION of Special Master,, Order on Motion for Ruling on the Record", "case_name_shorts": "Shiver" }, { @@ -67,8 +67,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1695V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/20/2024) regarding [39] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/20/2024) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Seaborg" }, { @@ -79,8 +79,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1982V", - "judges": "H. Sanders", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/25/2024) regarding [42] Ruling on Entitlement. Signed by Special Master Herbrina Sanders. (kis) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/25/2024) regarding [42] Ruling on Entitlement", "case_name_shorts": "Scott" }, { @@ -90,9 +90,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-76V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/20/2024) regarding [53] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0076V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/20/2024) regarding [53] DECISION of Special Master", "case_name_shorts": "Phillips" }, { @@ -103,8 +103,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1886V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/13/2024) regarding [29] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/13/2024) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -114,9 +114,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-842V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/20/2024) regarding [36] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0842V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/20/2024) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Mullur" }, { @@ -126,9 +126,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-940V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/20/2024) regarding [28] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0940V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/20/2024) regarding [28] Ruling on Entitlement", "case_name_shorts": "Mullin" }, { @@ -138,9 +138,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-719V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 9/27/2024) regarding [32] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "21-0719V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 9/27/2024) regarding [32] DECISION of Special Master", "case_name_shorts": "Moyo" }, { @@ -150,9 +150,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-933V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/16/2024) regarding [45] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0933V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/16/2024) regarding [45] DECISION Stipulation/Proffer", "case_name_shorts": "MacFeggan" }, { @@ -163,8 +163,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1290V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/19/2024) regarding [46] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/19/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Larson" }, { @@ -174,9 +174,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-630V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/20/2024) regarding [65] DECISION Stipulation/Proffer (Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0630V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/20/2024) regarding [65] DECISION Stipulation/Proffer", "case_name_shorts": "Kienow" }, { @@ -186,9 +186,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-856V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/16/2024) regarding [49] DECISION of Special Master - Fees (Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0856V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/16/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Jennings" }, { @@ -198,9 +198,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-587V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/09/2024) regarding [23] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0587V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/09/2024) regarding [23] DECISION Stipulation/Proffer", "case_name_shorts": "Jagers-Reine" }, { @@ -210,9 +210,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-791V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/20/2024) regarding [33] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0791V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/20/2024) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Hillard" }, { @@ -222,9 +222,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-522V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 9/24/2024) regarding [34] DECISION Stipulation/Proffer. Signed by Special Master Herbrina Sanders. (krt) Service on parties made.", + "docket_numbers": "22-0522V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 9/24/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Hegedus" }, { @@ -234,9 +234,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-596V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/20/2024) regarding [44] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0596V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/20/2024) regarding [44] DECISION of Special Master", "case_name_shorts": "Hartz" }, { @@ -246,9 +246,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-245V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/10/2024) regarding [50] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0245V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/10/2024) regarding [50] DECISION Stipulation/Proffer", "case_name_shorts": "Fulcher" }, { @@ -258,9 +258,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "24-104V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/27/2024) regarding [20] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "24-0104V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/27/2024) regarding [20] Order Concluding Proceedings", "case_name_shorts": "Eriksson" }, { @@ -270,9 +270,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-232V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/12/2024) regarding [39] DECISION Stipulation/Proffer (Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0232V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/12/2024) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Egbule" }, { @@ -283,8 +283,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1871V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/20/2024) regarding [16] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/20/2024) regarding [16] Ruling on Entitlement", "case_name_shorts": "Dietrich" }, { @@ -295,8 +295,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1265V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 09/26/2024) regarding [82] DECISION of Special Master. Signed by Special Master Christian J. Moran. (jjb) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 09/26/2024) regarding [82] DECISION of Special Master", "case_name_shorts": "Demore" }, { @@ -307,8 +307,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2012V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/19/2024) regarding [26] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/19/2024) regarding [26] Ruling on Entitlement", "case_name_shorts": "Carter" }, { @@ -319,8 +319,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1691V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/16/2024) regarding [49] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/16/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Burgo" }, { @@ -331,8 +331,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1185V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/17/2024) regarding [31] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/17/2024) regarding [31] Ruling on Entitlement", "case_name_shorts": "Branagan" }, { @@ -343,8 +343,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2024V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/20/2024) regarding [61] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/20/2024) regarding [61] DECISION Stipulation/Proffer", "case_name_shorts": "Zadrazil" }, { @@ -355,8 +355,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1545V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/18/2024) regarding [28] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/18/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Wilson" }, { @@ -367,8 +367,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1545V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/17/2024) regarding [25] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/17/2024) regarding [25] Ruling on Entitlement", "case_name_shorts": "Wilson" }, { @@ -379,8 +379,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1998V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/20/2024) regarding [40] DECISION of Special Master, Ruling on Entitlement, Order on Motion for Ruling on the Record. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/20/2024) regarding [40] DECISION of Special Master, Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "Tully" }, { @@ -390,9 +390,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-965V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/19/2024) regarding [54] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0965V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/19/2024) regarding [54] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -403,8 +403,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1143V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 9/24/2024) regarding [153] DECISION - Stipulation. Signed by Special Master Mindy Michaels Roth. (msg) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 9/24/2024) regarding [153] DECISION - Stipulation", "case_name_shorts": "STORM" }, { @@ -414,9 +414,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-467V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 09/23/2024) regarding [145] DECISION of Special Master Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "docket_numbers": "16-0467V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 09/23/2024) regarding [145] DECISION of Special Master", "case_name_shorts": "Pusateri" }, { @@ -427,8 +427,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1912V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 10/01/2024) regarding [101] DECISION on Stipulation Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 10/01/2024) regarding [101] DECISION on Stipulation", "case_name_shorts": "Perry" }, { @@ -439,8 +439,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1685V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/19/2024) regarding [37] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/19/2024) regarding [37] DECISION of Special Master - Fees", "case_name_shorts": "Nicholas" }, { @@ -451,8 +451,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1088V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 09/17/2024) regarding [43] DECISION of Special Master Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 09/17/2024) regarding [43] DECISION of Special Master", "case_name_shorts": "Myers" }, { @@ -462,9 +462,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-872V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/19/2024) regarding [30] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0872V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/19/2024) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Mordecai" }, { @@ -474,9 +474,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-652V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/19/2024 ) regarding [33] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0652V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/19/2024 ) regarding [33] DECISION of Special Master - Fees", "case_name_shorts": "McGovern" }, { @@ -487,8 +487,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1025V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 9/25/2024) regarding [63] DECISION - Stipulation. Signed by Special Master Mindy Michaels Roth. (msg) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 9/25/2024) regarding [63] DECISION - Stipulation", "case_name_shorts": "McBeth" }, { @@ -499,8 +499,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1014V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/20/2024) regarding [24] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/20/2024) regarding [24] DECISION Stipulation/Proffer", "case_name_shorts": "Jutting" }, { @@ -511,8 +511,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1370V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/19/2024) regarding [21] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/19/2024) regarding [21] DECISION Stipulation/Proffer", "case_name_shorts": "Jefferson" }, { @@ -522,9 +522,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-208V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/18/2024) regarding [31] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0208V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/18/2024) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Hill" }, { @@ -534,9 +534,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-428V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/19/2024 ) regarding [48] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0428V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/19/2024 ) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Connelly" }, { @@ -547,8 +547,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1483V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/18/2024) regarding [47] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/18/2024) regarding [47] DECISION Stipulation/Proffer", "case_name_shorts": "Casey" }, { @@ -558,9 +558,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "24-17V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/20/2024) regarding [23] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "24-0017V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/20/2024) regarding [23] Ruling on Entitlement", "case_name_shorts": "Arcement" }, { @@ -571,8 +571,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1751V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/17/2024) regarding [19] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/17/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Ossenfort" }, { @@ -583,8 +583,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1893V", - "judges": "D. Horner", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/23/2024) regarding [49] Order Concluding Proceedings. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/23/2024) regarding [49] Order Concluding Proceedings", "case_name_shorts": "Harville" }, { @@ -595,8 +595,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2140V", - "judges": "N. Dorsey", - "summaries": "PUBLIC ORDER (Originally filed: 09/17/2024) regarding [23] Order Concluding Proceedings. Signed by Special Master Nora Beth Dorsey. (aevw) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC ORDER (Originally filed: 09/17/2024) regarding [23] Order Concluding Proceedings", "case_name_shorts": "Bailey" }, { @@ -607,8 +607,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1451V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 9/23/24) regarding [60] DECISION of Special Master. Signed by Special Master Herbrina Sanders. (kis) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 9/23/24) regarding [60] DECISION of Special Master", "case_name_shorts": "BAUER" }, { @@ -619,8 +619,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1915V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 9/20/2024) regarding [158] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 9/20/2024) regarding [158] DECISION of Special Master", "case_name_shorts": "Apuzzo" }, { @@ -630,9 +630,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-596V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/18/2024) regarding [42] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0596V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/18/2024) regarding [42] DECISION Stipulation/Proffer", "case_name_shorts": "Ahlstrom" }, { @@ -643,8 +643,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1532V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/11/2024) regarding [35] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/11/2024) regarding [35] DECISION of Special Master - Fees", "case_name_shorts": "Woodland" }, { @@ -654,9 +654,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-259V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/13/2024) regarding [44] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0259V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/13/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Walker" }, { @@ -666,9 +666,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-273V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/13/2024) regarding [34] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0273V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/13/2024) regarding [34] DECISION of Special Master - Fees", "case_name_shorts": "Sawyers" }, { @@ -678,9 +678,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-669V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/17/2024) regarding [31] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0669V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/17/2024) regarding [31] Ruling on Entitlement", "case_name_shorts": "Rosenkranz" }, { @@ -691,8 +691,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1126V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/12/2024) regarding [27] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/12/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -702,9 +702,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-864V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/11/2024) regarding [23] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0864V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/11/2024) regarding [23] Ruling on Entitlement", "case_name_shorts": "McMahon" }, { @@ -714,9 +714,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-555V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/16/2024) regarding [36] Ruling on Entitlement, Scheduling Order, Order on Motion for Ruling on the Record, Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0555V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/16/2024) regarding [36] Ruling on Entitlement, Scheduling Order, Order on Motion for Ruling on the Record", "case_name_shorts": "Langmaid" }, { @@ -726,9 +726,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-436V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/12/2024) regarding [29] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0436V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/12/2024) regarding [29] Ruling on Entitlement", "case_name_shorts": "Farias" }, { @@ -738,9 +738,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-188V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/16/2024) regarding [56] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0188V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/16/2024) regarding [56] DECISION of Special Master - Fees", "case_name_shorts": "Ditomasso" }, { @@ -750,9 +750,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-575V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/10/2024) regarding [51] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0575V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/10/2024) regarding [51] DECISION Stipulation/Proffer", "case_name_shorts": "Boland" }, { @@ -762,9 +762,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-503V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/12/2024) regarding [38] Ruling on Entitlement, Order on Motion for Ruling on the Record. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0503V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/12/2024) regarding [38] Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "Ward" }, { @@ -775,8 +775,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1383V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 08/30/2024) regarding [56] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (kp) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 08/30/2024) regarding [56] DECISION of Special Master - Fees", "case_name_shorts": "Tverberg" }, { @@ -786,9 +786,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-286V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 08/22/2024 ) regarding [199] DECISION of Special Master - Fees, Signed by Special Master Thomas L. Gowen. (kp) Service on parties made.", + "docket_numbers": "15-0286V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 08/22/2024 ) regarding [199] DECISION of Special Master - Fees", "case_name_shorts": "Swaiss" }, { @@ -798,9 +798,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-47V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024 ) regarding [58] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0047V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024 ) regarding [58] DECISION of Special Master - Fees", "case_name_shorts": "Schmaltz" }, { @@ -810,9 +810,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-915V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 08/22/2024) regarding [131] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (kp) Service on parties made.", + "docket_numbers": "18-0915V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 08/22/2024) regarding [131] DECISION of Special Master - Fees", "case_name_shorts": "SCOTT" }, { @@ -823,8 +823,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1378V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 08/23/2024) regarding [69] DECISION of Special Master - Fees, Signed by Special Master Mindy Michaels Roth. (kp) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 08/23/2024) regarding [69] DECISION of Special Master - Fees", "case_name_shorts": "Robinson" }, { @@ -835,8 +835,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1537V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/16/2024) regarding [67] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/16/2024) regarding [67] DECISION of Special Master - Fees", "case_name_shorts": "Phillips" }, { @@ -846,9 +846,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-185V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/16/2024) regarding [63] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0185V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/16/2024) regarding [63] DECISION of Special Master - Fees", "case_name_shorts": "Patterson" }, { @@ -859,8 +859,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1906V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [67] DECISION of Special Master - Fees. Signed by Special Master Mindy Michaels Roth. (kp) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [67] DECISION of Special Master - Fees", "case_name_shorts": "PARTEN" }, { @@ -871,8 +871,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1402V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/13/2024) regarding [49] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/13/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Jones" }, { @@ -882,9 +882,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-29V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 08/20/2024) regarding [78] DECISION of Special Master - Fees. Signed by Special Master Thomas L. Gowen. (kp) Service on parties made.", + "docket_numbers": "18-0029V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 08/20/2024) regarding [78] DECISION of Special Master - Fees", "case_name_shorts": "Gurney" }, { @@ -894,9 +894,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-93V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 08/22/2024) regarding [149] DECISION of Special Master - Fees, Signed by Special Master Nora Beth Dorsey. (kp) Service on parties made.", + "docket_numbers": "19-0093V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 08/22/2024) regarding [149] DECISION of Special Master - Fees", "case_name_shorts": "Ferrari" }, { @@ -906,9 +906,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-390V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/16/2024) regarding [38] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0390V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/16/2024) regarding [38] DECISION of Special Master - Fees", "case_name_shorts": "Denton" }, { @@ -919,8 +919,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1331V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/16/2024) regarding [45] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/16/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Darmanin" }, { @@ -931,8 +931,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1917V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 08/30/2024) regarding [66] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (kp) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 08/30/2024) regarding [66] DECISION of Special Master - Fees", "case_name_shorts": "Cain" }, { @@ -942,9 +942,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "24-65V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/20/2024) regarding [18] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "24-0065V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/20/2024) regarding [18] Order Concluding Proceedings", "case_name_shorts": "Buller" }, { @@ -954,9 +954,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-352V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/11/2024) regarding [70] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0352V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/11/2024) regarding [70] DECISION of Special Master - Fees", "case_name_shorts": "Bettencourt" }, { @@ -966,9 +966,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "24-99V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 9/20/2024) regarding [20] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "24-0099V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 9/20/2024) regarding [20] DECISION of Special Master", "case_name_shorts": "Authement" }, { @@ -978,9 +978,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-432V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/09/2024) regarding [46] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0432V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/09/2024) regarding [46] DECISION Stipulation/Proffer", "case_name_shorts": "Wimmer" }, { @@ -990,9 +990,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-398V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/13/2024) regarding [28] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0398V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/13/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Uribe" }, { @@ -1002,9 +1002,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-451V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/16/2024) regarding [153] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "15-0451V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/16/2024) regarding [153] DECISION of Special Master - Fees", "case_name_shorts": "Ulysse" }, { @@ -1015,8 +1015,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1822V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/13/2024) regarding [15] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/13/2024) regarding [15] Ruling on Entitlement", "case_name_shorts": "Southard" }, { @@ -1026,9 +1026,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-397V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/11/2024) regarding [32] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0397V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/11/2024) regarding [32] DECISION of Special Master - Fees", "case_name_shorts": "Rea" }, { @@ -1038,9 +1038,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-307V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/11/2024) regarding [43] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0307V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/11/2024) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "Pollard" }, { @@ -1050,9 +1050,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-128V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/12/2024) regarding [36] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0128V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/12/2024) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Mayes" }, { @@ -1062,9 +1062,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-233V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/12/2024) regarding [31] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0233V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/12/2024) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Keflezighi" }, { @@ -1075,8 +1075,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1521V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/13/2024) regarding [46] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/13/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Heller" }, { @@ -1086,9 +1086,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-768V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/11/2024) regarding [22] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0768V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/11/2024) regarding [22] Ruling on Entitlement", "case_name_shorts": "Gissentanner" }, { @@ -1098,9 +1098,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-778V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/10/2024) regarding [29] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0778V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/10/2024) regarding [29] Ruling on Entitlement", "case_name_shorts": "Eberling" }, { @@ -1110,9 +1110,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-681V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/13/2024 ) regarding [86] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0681V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/13/2024 ) regarding [86] DECISION of Special Master - Fees", "case_name_shorts": "Dickmeyer" }, { @@ -1123,8 +1123,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1485V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/17/2024) regarding [79] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/17/2024) regarding [79] DECISION of Special Master - Fees", "case_name_shorts": "Deleon" }, { @@ -1134,9 +1134,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-790V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 9/16/2024) regarding [61] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "docket_numbers": "19-0790V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 9/16/2024) regarding [61] DECISION of Special Master", "case_name_shorts": "Culwell" }, { @@ -1147,8 +1147,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2025V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/12/2024) regarding [22] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/12/2024) regarding [22] Ruling on Entitlement", "case_name_shorts": "Congdon" }, { @@ -1159,8 +1159,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1908V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/10/2024) regarding [27] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/10/2024) regarding [27] Ruling on Entitlement", "case_name_shorts": "Burkhart" }, { @@ -1171,8 +1171,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1704V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/10/2024) regarding [35] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/10/2024) regarding [35] DECISION Stipulation/Proffer", "case_name_shorts": "Bortles" }, { @@ -1183,8 +1183,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1621V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/11/2024) regarding [31] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made. (Main Document 34 replaced on 10/16/2024) (sw).", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/11/2024) regarding [31] DECISION of Special Master - Fees", "case_name_shorts": "Baker" }, { @@ -1195,8 +1195,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1217V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 9/16/2024) regarding [70] DECISION Stipulation. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 9/16/2024) regarding [70] DECISION Stipulation", "case_name_shorts": "Roubakha" }, { @@ -1206,9 +1206,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-389V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/09/2024) regarding [32] Ruling on Entitlement and Scheduling Order. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0389V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/09/2024) regarding [32] Ruling on Entitlement and Scheduling Order", "case_name_shorts": "Porter" }, { @@ -1219,8 +1219,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2111V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/06/2024) regarding [24] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/06/2024) regarding [24] DECISION Stipulation/Proffer", "case_name_shorts": "Mead" }, { @@ -1230,9 +1230,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-685V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/10/2024) regarding [42] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0685V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/10/2024) regarding [42] Ruling on Entitlement", "case_name_shorts": "Jackman" }, { @@ -1243,8 +1243,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2100V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/05/2024) regarding [24] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/05/2024) regarding [24] Ruling on Entitlement", "case_name_shorts": "JUBINVILLE" }, { @@ -1255,8 +1255,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2259V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/04/2024) regarding [37] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/04/2024) regarding [37] Ruling on Entitlement", "case_name_shorts": "Hill" }, { @@ -1266,9 +1266,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-254V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/09/2024) regarding [27] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0254V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/09/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Evans" }, { @@ -1279,8 +1279,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1961V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/09/2024) regarding [22] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/09/2024) regarding [22] Ruling on Entitlement", "case_name_shorts": "Cope" }, { @@ -1290,9 +1290,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-379V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/03/2024) regarding [44] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0379V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/03/2024) regarding [44] DECISION of Special Master", "case_name_shorts": "Carter" }, { @@ -1303,8 +1303,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1517V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/09/2024) regarding [45] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/09/2024) regarding [45] DECISION Stipulation/Proffer", "case_name_shorts": "Supernaw" }, { @@ -1315,8 +1315,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1920V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/09/2024) regarding [34] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/09/2024) regarding [34] DECISION of Special Master - Fees", "case_name_shorts": "Smythe" }, { @@ -1326,9 +1326,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-930V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/06/2024) regarding [51] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0930V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/06/2024) regarding [51] DECISION Stipulation/Proffer", "case_name_shorts": "Kane" }, { @@ -1339,8 +1339,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2120V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: ) regarding [22] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: ) regarding [22] Ruling on Entitlement", "case_name_shorts": "Juarez" }, { @@ -1351,8 +1351,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1571V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/04/2024) regarding [26] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/04/2024) regarding [26] Ruling on Entitlement", "case_name_shorts": "Hightower" }, { @@ -1363,8 +1363,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1480V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/09/2024) regarding [39] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/09/2024) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -1374,9 +1374,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-211V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/10/2024) regarding [44] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0211V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/10/2024) regarding [44] DECISION Stipulation/Proffer", "case_name_shorts": "Bernales" }, { @@ -1386,9 +1386,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-258V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/12/2024) regarding [48] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (af) Service on parties made.", + "docket_numbers": "22-0258V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/12/2024) regarding [48] DECISION of Special Master", "case_name_shorts": "Barrett" }, { @@ -1399,8 +1399,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1548V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/09/2024) regarding [40] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/09/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Tisdale" }, { @@ -1411,8 +1411,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1674V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/21/2024) regarding [30] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/21/2024) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Thierfelder" }, { @@ -1423,8 +1423,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1934V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/05/2024) regarding [26] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/05/2024) regarding [26] Ruling on Entitlement", "case_name_shorts": "Sherwood" }, { @@ -1435,8 +1435,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1834V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/04/2024) regarding [42] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/04/2024) regarding [42] DECISION Stipulation/Proffer", "case_name_shorts": "Schafer" }, { @@ -1446,9 +1446,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-397V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/10/2024) regarding [74] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "19-0397V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/10/2024) regarding [74] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Rushing" }, { @@ -1459,8 +1459,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1750V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/06/2024) regarding [23] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/06/2024) regarding [23] DECISION Stipulation/Proffer", "case_name_shorts": "Ramsey" }, { @@ -1471,8 +1471,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1724V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/12/2024) regarding [55] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/12/2024) regarding [55] DECISION of Special Master - Fees", "case_name_shorts": "RITCHEY" }, { @@ -1483,8 +1483,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1867V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/09/2024) regarding [42] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/09/2024) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Price" }, { @@ -1494,9 +1494,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-525V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/05/2024) regarding [49] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0525V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/05/2024) regarding [49] DECISION Stipulation/Proffer", "case_name_shorts": "Pickett" }, { @@ -1507,8 +1507,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1938V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/09/2024) regarding [33] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/09/2024) regarding [33] DECISION of Special Master - Fees", "case_name_shorts": "Paul" }, { @@ -1519,8 +1519,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1546V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/05/2024) regarding [27] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/05/2024) regarding [27] Ruling on Entitlement", "case_name_shorts": "Molaison" }, { @@ -1531,8 +1531,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1491V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/10/2024) regarding [66] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/10/2024) regarding [66] DECISION Stipulation/Proffer", "case_name_shorts": "Kriebel" }, { @@ -1542,9 +1542,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-62V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/12/2024) regarding [25] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "23-0062V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/12/2024) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "Gregg" }, { @@ -1554,9 +1554,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-366V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/03/2024) regarding [28] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0366V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/03/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Derello" }, { @@ -1566,9 +1566,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-655V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/09/2024) regarding [40] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0655V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/09/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Demoss" }, { @@ -1579,8 +1579,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1423V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/06/20) regarding [27] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/06/20) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Chasen" }, { @@ -1590,9 +1590,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "24-196V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 08/23/2024) regarding [26] DECISION of Special Master. Signed by Special Master Nora Beth Dorsey. (aevw) Service on parties made.", + "docket_numbers": "24-0196V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 08/23/2024) regarding [26] DECISION of Special Master", "case_name_shorts": "Byrd" }, { @@ -1602,9 +1602,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-242V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/09/2024) regarding [39] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0242V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/09/2024) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "Alexander" }, { @@ -1615,8 +1615,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1886V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/05/2024) regarding [69] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/05/2024) regarding [69] DECISION Stipulation/Proffer", "case_name_shorts": "White" }, { @@ -1627,8 +1627,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1948V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 08/06/2024) regarding [125] DECISION of Special Master - Fees. Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 08/06/2024) regarding [125] DECISION of Special Master - Fees", "case_name_shorts": "Thomas" }, { @@ -1638,9 +1638,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-557V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/04/2024) regarding [36] Findings of Fact & Conclusions of Law, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0557V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/04/2024) regarding [36] Findings of Fact & Conclusions of Law", "case_name_shorts": "Sanchez" }, { @@ -1650,9 +1650,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-773V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/05/2024) regarding [21] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0773V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/05/2024) regarding [21] Ruling on Entitlement", "case_name_shorts": "Rogala" }, { @@ -1662,9 +1662,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-578V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [48] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0578V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Reyes" }, { @@ -1674,9 +1674,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "24-161V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 9/13/2024) regarding [20] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "24-0161V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 9/13/2024) regarding [20] DECISION of Special Master", "case_name_shorts": "Ramos" }, { @@ -1687,8 +1687,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1989V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/06/2024) regarding [51] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/06/2024) regarding [51] DECISION Stipulation/Proffer", "case_name_shorts": "Preis" }, { @@ -1698,9 +1698,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-443V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/04/2024 ) regarding [41] Ruling on Entitlement,, Scheduling Order, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0443V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/04/2024 ) regarding [41] Ruling on Entitlement,, Scheduling Order", "case_name_shorts": "Powers" }, { @@ -1711,8 +1711,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1182V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/03/2024) regarding [55] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/03/2024) regarding [55] DECISION Stipulation/Proffer", "case_name_shorts": "Perkins" }, { @@ -1722,9 +1722,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "24-29V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/13/2024) regarding [19] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "24-0029V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/13/2024) regarding [19] Order Concluding Proceedings", "case_name_shorts": "Neathery" }, { @@ -1734,9 +1734,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-624V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [36] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0624V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Muccala" }, { @@ -1746,9 +1746,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-873V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 9/13/2024) regarding [72] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "docket_numbers": "20-0873V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 9/13/2024) regarding [72] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -1758,9 +1758,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-706V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [36] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0706V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Meade" }, { @@ -1771,8 +1771,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2200V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/13/2024) regarding [17] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/13/2024) regarding [17] Order Concluding Proceedings", "case_name_shorts": "McCann" }, { @@ -1782,9 +1782,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-771V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/06/2024) regarding [28] Order Concluding Proceedings Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0771V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/06/2024) regarding [28] Order Concluding Proceedings", "case_name_shorts": "" }, { @@ -1795,8 +1795,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1688V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [34] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [34] DECISION of Special Master - Fees", "case_name_shorts": "Kerr" }, { @@ -1806,9 +1806,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-111V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 09/16/2024) regarding [110] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "19-0111V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 09/16/2024) regarding [110] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Hoffman" }, { @@ -1818,9 +1818,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "24-942V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/11/2024) regarding [9] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "24-0942V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/11/2024) regarding [9] Order Concluding Proceedings", "case_name_shorts": "Heredia" }, { @@ -1831,8 +1831,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1755V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/30/2024) regarding [48] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/30/2024) regarding [48] DECISION Stipulation/Proffer", "case_name_shorts": "Dixon" }, { @@ -1843,8 +1843,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1519V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/03/2024) regarding [33] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/03/2024) regarding [33] DECISION of Special Master", "case_name_shorts": "" }, { @@ -1855,8 +1855,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1671V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/06/2024) regarding [32] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/06/2024) regarding [32] DECISION Stipulation/Proffer", "case_name_shorts": "Brown" }, { @@ -1867,8 +1867,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2026V", - "judges": "", - "summaries": "PUBLIC DECISION (Originally filed: 08/21/2024) regarding [38] DECISION on Attorneys&039; Fees and Costs. Signed by Special Master Jennifer A. Shah. (saj) Service on parties made.", + "judges": "Jennifer A. Shah", + "summaries": "PUBLIC DECISION (Originally filed: 08/21/2024) regarding [38] DECISION on Attorneys&039; Fees and Costs", "case_name_shorts": "Yu" }, { @@ -1879,8 +1879,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2016V", - "judges": "", - "summaries": "PUBLIC DECISION (Originally filed: 09/06/2024) regarding [32] DECISION of Special Master - Proffer. Signed by Special Master Jennifer A. Shah. (saj) Service on parties made.", + "judges": "Jennifer A. Shah", + "summaries": "PUBLIC DECISION (Originally filed: 09/06/2024) regarding [32] DECISION of Special Master - Proffer", "case_name_shorts": "Peacock" }, { @@ -1891,8 +1891,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1973V", - "judges": "", - "summaries": "PUBLIC DECISION (Originally filed: 08/16/2024) regarding [54] DECISION of Special Master - Stipulation. Signed by Special Master Jennifer A. Shah. (saj) Service on parties made.", + "judges": "Jennifer A. Shah", + "summaries": "PUBLIC DECISION (Originally filed: 08/16/2024) regarding [54] DECISION of Special Master - Stipulation", "case_name_shorts": "Martinez" }, { @@ -1903,8 +1903,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1043V", - "judges": "", - "summaries": "PUBLIC DECISION (Originally filed: 8/22/2024) regarding [102] DECISION AWARDING DAMAGES. Signed by Special Master Jennifer A. Shah. (sl) Service on parties made.", + "judges": "Jennifer A. Shah", + "summaries": "PUBLIC DECISION (Originally filed: 8/22/2024) regarding [102] DECISION AWARDING DAMAGES", "case_name_shorts": "Hoisington" }, { @@ -1914,9 +1914,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-111V", - "judges": "C. Moran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/13/2024) regarding [109] Ruling on Entitlement, Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "19-0111V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/13/2024) regarding [109] Ruling on Entitlement", "case_name_shorts": "Hoffman" }, { @@ -1927,8 +1927,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1017V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 09/05/2024) regarding [67] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (aevw) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 09/05/2024) regarding [67] DECISION of Special Master - Fees", "case_name_shorts": "Hardy" }, { @@ -1939,8 +1939,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-1676V", - "judges": "", - "summaries": "PUBLIC DECISION (Originally filed: 8/21/2024) regarding [112] DECISION on Attorneys&039; Fees and Costs. Signed by Special Master Jennifer A. Shah. (sl) Service on parties made.", + "judges": "Jennifer A. Shah", + "summaries": "PUBLIC DECISION (Originally filed: 8/21/2024) regarding [112] DECISION on Attorneys&039; Fees and Costs", "case_name_shorts": "Goodwin" }, { @@ -1950,9 +1950,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "24-518V", - "judges": "N. Dorsey", - "summaries": "PUBLIC RULING (Originally filed: 09/10/2024) regarding [17] Ruling on Entitlement. Signed by Special Master Nora Beth Dorsey. (aevw) Service on parties made.", + "docket_numbers": "24-0518V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC RULING (Originally filed: 09/10/2024) regarding [17] Ruling on Entitlement", "case_name_shorts": "Fisk" }, { @@ -1962,9 +1962,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-670V", - "judges": "", - "summaries": "PUBLIC DECISION (Originally filed: 9/5/2024) regarding [113] DECISION of Special Master - Stipulation. Signed by Special Master Jennifer A. Shah. (sl) Service on parties made.", + "docket_numbers": "19-0670V", + "judges": "Jennifer A. Shah", + "summaries": "PUBLIC DECISION (Originally filed: 9/5/2024) regarding [113] DECISION of Special Master - Stipulation", "case_name_shorts": "Blaise" }, { @@ -1974,9 +1974,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-541V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/03/2024) regarding [26] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0541V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/03/2024) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Loshak" }, { @@ -1986,9 +1986,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-218V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/04/2024) regarding [28] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0218V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/04/2024) regarding [28] Ruling on Entitlement", "case_name_shorts": "Keen" }, { @@ -1999,8 +1999,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1259V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 09/10/2024) regarding [85] DECISION of Special Master - Fees. Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 09/10/2024) regarding [85] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -2010,9 +2010,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-365V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/28/2024) regarding [54] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0365V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/28/2024) regarding [54] DECISION Stipulation/Proffer", "case_name_shorts": "Wang" }, { @@ -2022,9 +2022,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-776V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [52] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0776V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Tyree" }, { @@ -2034,9 +2034,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "24-760V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [17] DECISION of Special Master, Signed by Special Master Christian J. Moran. (ceo) Service on parties made. Petitioner served via email on 10/3/2024. (fm).", + "docket_numbers": "24-0760V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [17] DECISION of Special Master", "case_name_shorts": "Nielsen" }, { @@ -2046,9 +2046,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-883V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [30] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0883V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Hand" }, { @@ -2058,9 +2058,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-724V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/28/2024) regarding [34] Findings of Fact & Conclusions of Law,, Scheduling Order,, Order on Motion for Ruling on the Record, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0724V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/28/2024) regarding [34] Findings of Fact & Conclusions of Law,, Scheduling Order,, Order on Motion for Ruling on the Record", "case_name_shorts": "Barton" }, { @@ -2071,8 +2071,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2145V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [47] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Hupp" }, { @@ -2083,8 +2083,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2144V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/6/2024) regarding [18] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/6/2024) regarding [18] Order Concluding Proceedings", "case_name_shorts": "Watson" }, { @@ -2094,9 +2094,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-366V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/28/2024) regarding [36] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0366V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/28/2024) regarding [36] DECISION of Special Master", "case_name_shorts": "Walker" }, { @@ -2106,9 +2106,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-204V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 08/12/2024) regarding [37] DECISION on Stipulation. Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "docket_numbers": "22-0204V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 08/12/2024) regarding [37] DECISION on Stipulation", "case_name_shorts": "Vickers" }, { @@ -2119,8 +2119,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1841V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 9/3/2024) regarding [45] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 9/3/2024) regarding [45] DECISION of Special Master", "case_name_shorts": "Stiller" }, { @@ -2131,8 +2131,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2118V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/6/2024) regarding [19] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/6/2024) regarding [19] Order Concluding Proceedings", "case_name_shorts": "Perez" }, { @@ -2143,8 +2143,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2005V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 9/3/2024) regarding [59] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 9/3/2024) regarding [59] DECISION Stipulation/Proffer", "case_name_shorts": "Lombardozzi" }, { @@ -2154,9 +2154,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "24-12V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/6/2024) regarding [19] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "24-0012V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/6/2024) regarding [19] Order Concluding Proceedings", "case_name_shorts": "Juliano" }, { @@ -2167,8 +2167,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1836V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 9/3/2024) regarding [132] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Herbrina Sanders. (kis) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 9/3/2024) regarding [132] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Insumran" }, { @@ -2178,9 +2178,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-699V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [34] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0699V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Eldridge" }, { @@ -2191,8 +2191,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1899V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 9/6/2024) regarding [86] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 9/6/2024) regarding [86] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -2203,8 +2203,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1451V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [41] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -2215,8 +2215,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1286V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/30/2024) regarding [37] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/30/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Weis" }, { @@ -2227,8 +2227,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1702V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [25] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "Southworth" }, { @@ -2238,9 +2238,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-350V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/26/2024) regarding [45] Ruling on Entitlement, Order on Motion for Ruling on the Record Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0350V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/26/2024) regarding [45] Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "Samuels" }, { @@ -2251,8 +2251,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2064V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/30/2024) regarding [20] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/30/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "Russell" }, { @@ -2263,8 +2263,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2107V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [42] DECISION on Stipulation. Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [42] DECISION on Stipulation", "case_name_shorts": "Rosso" }, { @@ -2275,8 +2275,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1866V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [44] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Pick" }, { @@ -2286,9 +2286,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-607V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/30/2024) regarding [38] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0607V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/30/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Pace" }, { @@ -2299,8 +2299,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1976V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [27] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Materkowski" }, { @@ -2310,9 +2310,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-251V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [43] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0251V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "Malolos" }, { @@ -2322,9 +2322,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-423V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [64] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0423V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [64] DECISION of Special Master - Fees", "case_name_shorts": "Krumsiek" }, { @@ -2335,8 +2335,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2192V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/27/2024) regarding [26] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/27/2024) regarding [26] Ruling on Entitlement", "case_name_shorts": "Jeffery" }, { @@ -2347,8 +2347,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1370V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/30/2024) regarding [19] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/30/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Jefferson" }, { @@ -2358,9 +2358,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-383V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [44] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0383V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [44] DECISION Stipulation/Proffer", "case_name_shorts": "Hudson" }, { @@ -2371,8 +2371,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1121V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/30/2024) regarding [27] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/30/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Grove" }, { @@ -2382,9 +2382,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-592V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [52] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0592V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Gowdy" }, { @@ -2394,9 +2394,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-511V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/30/2024) regarding [51] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0511V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/30/2024) regarding [51] DECISION Stipulation/Proffer", "case_name_shorts": "Gates" }, { @@ -2407,8 +2407,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2086V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [31] Ruling on Entitlement, DECISION of Special Master, Order on Motion for Ruling on the Record., ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [31] Ruling on Entitlement, DECISION of Special Master, Order on Motion for Ruling on the Record", "case_name_shorts": "Fritz" }, { @@ -2419,8 +2419,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2074V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/30/2024) regarding [25] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/30/2024) regarding [25] Ruling on Entitlement", "case_name_shorts": "Einhorn" }, { @@ -2431,8 +2431,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2101V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/30/2024) regarding [23] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/30/2024) regarding [23] Ruling on Entitlement", "case_name_shorts": "Citizen" }, { @@ -2442,9 +2442,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-802V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/27/2024) regarding [37] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0802V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/27/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Zollman" }, { @@ -2455,8 +2455,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1964V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/23/2024) regarding [32] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/23/2024) regarding [32] DECISION Stipulation/Proffer", "case_name_shorts": "Yawn" }, { @@ -2466,9 +2466,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-536V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/22/2024) regarding [39] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0536V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/22/2024) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Yacob" }, { @@ -2478,9 +2478,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-284V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/28/2024) regarding [37] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0284V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/28/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Wells" }, { @@ -2491,8 +2491,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1411V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/21/2024) regarding [36] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/21/2024) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Ringland" }, { @@ -2502,9 +2502,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-588V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/21/2024) regarding [44] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0588V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/21/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Pearl" }, { @@ -2514,9 +2514,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-590V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/23/2024) regarding [37] Ruling on Entitlement, Order on Motion for Ruling on the Record. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0590V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/23/2024) regarding [37] Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "Nielsen" }, { @@ -2526,9 +2526,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-842V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/27/2024) regarding [33] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0842V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/27/2024) regarding [33] Ruling on Entitlement", "case_name_shorts": "Mullur" }, { @@ -2538,9 +2538,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-613V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/20/2024) regarding [58] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0613V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/20/2024) regarding [58] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -2551,8 +2551,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1076V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/26/2024) regarding [21] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/26/2024) regarding [21] Ruling on Entitlement", "case_name_shorts": "Jordan" }, { @@ -2563,8 +2563,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1959V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/23/2024) regarding [53] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/23/2024) regarding [53] DECISION Stipulation/Proffer", "case_name_shorts": "Hayes" }, { @@ -2575,8 +2575,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2130V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/27/2024) regarding [21] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/27/2024) regarding [21] Ruling on Entitlement", "case_name_shorts": "Cole" }, { @@ -2587,8 +2587,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1282V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/21/2024) regarding [55] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/21/2024) regarding [55] DECISION of Special Master - Fees", "case_name_shorts": "Amicucci" }, { @@ -2599,8 +2599,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2075V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/27/2024) regarding [22] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/27/2024) regarding [22] Ruling on Entitlement", "case_name_shorts": "Woodward" }, { @@ -2611,8 +2611,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1302V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/26/2024) regarding [48] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/26/2024) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Winston" }, { @@ -2622,9 +2622,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-523V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/09/2024) regarding [40] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0523V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/09/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Watson" }, { @@ -2635,8 +2635,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1751V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/06/2024) regarding [40] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/06/2024) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "Wasko" }, { @@ -2646,9 +2646,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-357V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/09/2024) regarding [40] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0357V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/09/2024) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "Venditti" }, { @@ -2659,8 +2659,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1703V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/26/2024) regarding [27] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/26/2024) regarding [27] DECISION of Special Master - Fees", "case_name_shorts": "Taylor" }, { @@ -2670,9 +2670,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-592V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/05/2024) regarding [34] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0592V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/05/2024) regarding [34] DECISION of Special Master - Fees", "case_name_shorts": "Palermo" }, { @@ -2682,9 +2682,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-327V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/26/2024) regarding [36] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0327V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/26/2024) regarding [36] DECISION of Special Master - Fees", "case_name_shorts": "Neidig" }, { @@ -2695,8 +2695,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1400V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [37] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [37] DECISION of Special Master - Fees", "case_name_shorts": "McCarty" }, { @@ -2706,9 +2706,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-670V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/27/2024) regarding [41] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0670V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/27/2024) regarding [41] DECISION of Special Master", "case_name_shorts": "Laulicht" }, { @@ -2718,9 +2718,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-495V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [27] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0495V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [27] DECISION of Special Master - Fees", "case_name_shorts": "Kramb" }, { @@ -2731,8 +2731,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1777V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [42] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Knouse" }, { @@ -2743,8 +2743,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1707V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/26/2024) regarding [47] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/26/2024) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -2755,8 +2755,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1329V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/05/2024) regarding [36] DECISION of Special Master, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/05/2024) regarding [36] DECISION of Special Master", "case_name_shorts": "Howard" }, { @@ -2767,8 +2767,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1381V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/12/2024) regarding [33] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/12/2024) regarding [33] DECISION of Special Master", "case_name_shorts": "Hess" }, { @@ -2778,9 +2778,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-283V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/27/2024) regarding [64] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0283V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/27/2024) regarding [64] DECISION Stipulation/Proffer", "case_name_shorts": "Garrett" }, { @@ -2790,9 +2790,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-719V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/20/2024) regarding [31] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0719V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/20/2024) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Fernandez" }, { @@ -2802,9 +2802,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-719V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/20/2024) regarding [30] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0719V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/20/2024) regarding [30] Ruling on Entitlement", "case_name_shorts": "Fernandez" }, { @@ -2814,9 +2814,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-309V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/09/2024) regarding [44] DECISION of Special Master, Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0309V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/09/2024) regarding [44] DECISION of Special Master, Ruling on Entitlement", "case_name_shorts": "Creedon" }, { @@ -2826,9 +2826,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-591V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/26/2024) regarding [49] DECISION of Special Master - Fees, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0591V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/26/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Conklin" }, { @@ -2838,9 +2838,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-504V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [40] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0504V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Chisholm" }, { @@ -2851,8 +2851,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1423V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/05/2024) regarding [24] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made. Modified on 9/27/2024 to correct linkage (sw).", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/05/2024) regarding [24] Ruling on Entitlement", "case_name_shorts": "Chasen" }, { @@ -2862,9 +2862,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-608V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/27/2024) regarding [44] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0608V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/27/2024) regarding [44] DECISION Stipulation/Proffer", "case_name_shorts": "Breen" }, { @@ -2874,9 +2874,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-301V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/13/2024) regarding [30] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0301V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/13/2024) regarding [30] DECISION of Special Master", "case_name_shorts": "Williamson" }, { @@ -2887,8 +2887,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1716V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/14/2024) regarding [69] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (af) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/14/2024) regarding [69] DECISION of Special Master - Fees", "case_name_shorts": "T." }, { @@ -2898,9 +2898,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-960V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/15/2024) regarding [40] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "20-0960V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/15/2024) regarding [40] DECISION of Special Master", "case_name_shorts": "Sprinkle" }, { @@ -2910,9 +2910,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-344V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/16/2024) regarding [42] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0344V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/16/2024) regarding [42] DECISION of Special Master", "case_name_shorts": "Ramirez" }, { @@ -2923,8 +2923,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1236V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/23/2024) regarding [45] Ruling on Entitlement (Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/23/2024) regarding [45] Ruling on Entitlement", "case_name_shorts": "Proctor" }, { @@ -2935,8 +2935,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1991V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [27] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Norcross" }, { @@ -2947,8 +2947,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1991V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/12/2024) regarding [24] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/12/2024) regarding [24] Ruling on Entitlement", "case_name_shorts": "Norcross" }, { @@ -2959,8 +2959,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1314V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/14/2024) regarding [42] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/14/2024) regarding [42] DECISION Stipulation/Proffer", "case_name_shorts": "Minera" }, { @@ -2971,8 +2971,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1954V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/09/2024) regarding [15] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/09/2024) regarding [15] Ruling on Entitlement", "case_name_shorts": "McCoy" }, { @@ -2982,9 +2982,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-783V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/14/2024) regarding [34] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0783V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/14/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Jiggins" }, { @@ -2995,8 +2995,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1634V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/14/2024) regarding [32] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/14/2024) regarding [32] Ruling on Entitlement", "case_name_shorts": "Hicks" }, { @@ -3007,8 +3007,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1189V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [21] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [21] DECISION Stipulation/Proffer", "case_name_shorts": "Hallman" }, { @@ -3019,8 +3019,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1247V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 8/27/24) regarding [95] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jjb) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 8/27/24) regarding [95] DECISION of Special Master - Fees", "case_name_shorts": "Gromala" }, { @@ -3030,9 +3030,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-421V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [27] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0421V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Fowler" }, { @@ -3042,9 +3042,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-649V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/13/2024) regarding [46] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0649V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/13/2024) regarding [46] DECISION of Special Master", "case_name_shorts": "Ferreira" }, { @@ -3055,8 +3055,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1513V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [74] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (af) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [74] DECISION of Special Master", "case_name_shorts": "Exum" }, { @@ -3066,9 +3066,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-125V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [44] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0125V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Edwards" }, { @@ -3079,8 +3079,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1741V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/22/2024) regarding [57] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/22/2024) regarding [57] DECISION Stipulation/Proffer", "case_name_shorts": "Bronson" }, { @@ -3090,9 +3090,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-370V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/23/2024) regarding [39] DECISION of Special Master, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0370V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/23/2024) regarding [39] DECISION of Special Master", "case_name_shorts": "Yodowitz" }, { @@ -3102,9 +3102,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-504V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/21/2024) regarding [48] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0504V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/21/2024) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Watkins" }, { @@ -3115,8 +3115,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1564V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/20/2024) regarding [26] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/20/2024) regarding [26] Ruling on Entitlement", "case_name_shorts": "Schneider" }, { @@ -3127,8 +3127,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2055V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 8/30/2024) regarding [17] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 8/30/2024) regarding [17] Order Concluding Proceedings", "case_name_shorts": "Powers" }, { @@ -3138,9 +3138,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-377V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/20/2024) regarding [43] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0377V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/20/2024) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Povey" }, { @@ -3151,8 +3151,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1518V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 8/16/2024) regarding [62] DECISION Stipulation/Proffer. Signed by Special Master Herbrina Sanders. (kis) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 8/16/2024) regarding [62] DECISION Stipulation/Proffer", "case_name_shorts": "Potts" }, { @@ -3162,9 +3162,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-336V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 8/29/2024) regarding [43] DECISION Stipulation. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "docket_numbers": "22-0336V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 8/29/2024) regarding [43] DECISION Stipulation", "case_name_shorts": "Pohl" }, { @@ -3174,9 +3174,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-36V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [41] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0036V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Patel" }, { @@ -3187,8 +3187,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1976V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/22/2024) regarding [24] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/22/2024) regarding [24] Ruling on Entitlement", "case_name_shorts": "Materkowski" }, { @@ -3198,9 +3198,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-433V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/21/2024) regarding [32] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0433V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/21/2024) regarding [32] DECISION of Special Master - Fees", "case_name_shorts": "Madden" }, { @@ -3210,9 +3210,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-902V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [24] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0902V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [24] DECISION Stipulation/Proffer", "case_name_shorts": "Losego" }, { @@ -3223,8 +3223,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2166V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 8/30/2024) regarding [16] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 8/30/2024) regarding [16] Order Concluding Proceedings", "case_name_shorts": "Linck" }, { @@ -3235,8 +3235,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1306V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 8/27/2024) regarding [133] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Herbrina Sanders. (kis) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 8/27/2024) regarding [133] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Holmes" }, { @@ -3246,9 +3246,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-143V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/21/2024) regarding [42] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0143V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/21/2024) regarding [42] DECISION Stipulation/Proffer", "case_name_shorts": "Guest" }, { @@ -3259,8 +3259,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1906V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 08/28/2024) regarding [119] DECISION Stipulation. Signed by Special Master Nora Beth Dorsey. (aevw) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 08/28/2024) regarding [119] DECISION Stipulation", "case_name_shorts": "Eddington" }, { @@ -3270,9 +3270,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-421V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/21/2024) regarding [49] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0421V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/21/2024) regarding [49] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -3283,8 +3283,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1092V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/23/2024) regarding [56] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/23/2024) regarding [56] DECISION Stipulation/Proffer", "case_name_shorts": "Choi" }, { @@ -3295,8 +3295,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1550V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/06/2024) regarding [23] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made. (Main Document 29 replaced on 9/25/2024 to correct the stipulation.) (fm).", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/06/2024) regarding [23] DECISION Stipulation/Proffer", "case_name_shorts": "Betts" }, { @@ -3306,9 +3306,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-50V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/21/2024) regarding [38] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0050V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/21/2024) regarding [38] DECISION of Special Master - Fees", "case_name_shorts": "Barber" }, { @@ -3319,8 +3319,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2052V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 8/30/2024) regarding [16] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 8/30/2024) regarding [16] Order Concluding Proceedings", "case_name_shorts": "Aguilar" }, { @@ -3331,8 +3331,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2223V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 8/27/2024) regarding [59] DECISION Stipulation. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 8/27/2024) regarding [59] DECISION Stipulation", "case_name_shorts": "Watts" }, { @@ -3342,9 +3342,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-769V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 08/28/2024) regarding [70] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "21-0769V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 08/28/2024) regarding [70] DECISION of Special Master - Fees", "case_name_shorts": "Teague" }, { @@ -3354,9 +3354,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-411V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/28/2024) regarding [86] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "19-0411V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/28/2024) regarding [86] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -3366,9 +3366,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-457V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 8/29/2024) regarding [116] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "docket_numbers": "17-0457V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 8/29/2024) regarding [116] DECISION of Special Master - Fees", "case_name_shorts": "Mills" }, { @@ -3379,8 +3379,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1900V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 8/29/2024) regarding [51] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 8/29/2024) regarding [51] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -3391,8 +3391,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-1592V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [90] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/29/2024) regarding [90] DECISION of Special Master - Fees", "case_name_shorts": "Howard" }, { @@ -3402,9 +3402,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-820V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 3/21/2024) regarding [124] DECISION of Special Master - Interim Attorney&039;s Fees Signed by Special Master Thomas L. Gowen. (ms) Service on parties made.", + "docket_numbers": "20-0820V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 3/21/2024) regarding [124] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Grujic" }, { @@ -3415,8 +3415,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1133V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 2/26/2024) regarding [40] DECISION Proffer Signed by Special Master Thomas L. Gowen. (ms) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 2/26/2024) regarding [40] DECISION Proffer", "case_name_shorts": "Conner" }, { @@ -3427,8 +3427,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1254V", - "judges": "D. Horner", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 8/27/2024) regarding [133] Ruling on Entitlement. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 8/27/2024) regarding [133] Ruling on Entitlement", "case_name_shorts": "Bartoszek" }, { @@ -3438,9 +3438,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-878V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 8/29/2024) regarding [62] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "docket_numbers": "20-0878V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 8/29/2024) regarding [62] DECISION of Special Master - Fees", "case_name_shorts": "Bailey" }, { @@ -3451,8 +3451,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1293V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/20/2024) regarding [37] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/20/2024) regarding [37] DECISION of Special Master - Fees", "case_name_shorts": "Weissbach" }, { @@ -3463,8 +3463,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1704V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/20/2024) regarding [24] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/20/2024) regarding [24] DECISION Stipulation/Proffer", "case_name_shorts": "Rosati" }, { @@ -3474,9 +3474,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-360V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/20/2024) regarding [65] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "19-0360V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/20/2024) regarding [65] DECISION of Special Master", "case_name_shorts": "Leone" }, { @@ -3487,8 +3487,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1771V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [30] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Keith" }, { @@ -3498,9 +3498,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-929V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 8/22/2024) regarding [122] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "docket_numbers": "18-0929V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 8/22/2024) regarding [122] DECISION of Special Master", "case_name_shorts": "Gairdo" }, { @@ -3510,9 +3510,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-986V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/19/2024) regarding [27] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0986V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/19/2024) regarding [27] Ruling on Entitlement", "case_name_shorts": "Dolling" }, { @@ -3522,9 +3522,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-395V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 8/23/2024) regarding [72] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "docket_numbers": "20-0395V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 8/23/2024) regarding [72] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -3535,8 +3535,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1217V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/20/2024) regarding [82] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/20/2024) regarding [82] DECISION of Special Master - Fees", "case_name_shorts": "Cameron" }, { @@ -3546,9 +3546,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-821V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/20/2024 ) regarding [66] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0821V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/20/2024 ) regarding [66] DECISION of Special Master - Fees", "case_name_shorts": "Awe" }, { @@ -3559,8 +3559,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1512V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/20/2024) regarding [36] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/20/2024) regarding [36] DECISION of Special Master - Fees", "case_name_shorts": "Andrew" }, { @@ -3571,8 +3571,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1699V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/20/2024) regarding [19] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/20/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Stockwell" }, { @@ -3582,9 +3582,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-978V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [42] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0978V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [42] DECISION of Special Master", "case_name_shorts": "Orban" }, { @@ -3595,8 +3595,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2085V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 08/09/2024) regarding [56] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (aevw) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 08/09/2024) regarding [56] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -3607,8 +3607,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1462V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 08/20/2024) regarding [60] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (aevw) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 08/20/2024) regarding [60] DECISION of Special Master - Fees", "case_name_shorts": "Hibbard" }, { @@ -3619,8 +3619,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1543V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/19/2024) regarding [23] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/19/2024) regarding [23] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -3631,8 +3631,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1514V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 08/20/2024) regarding [121] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (aevw) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 08/20/2024) regarding [121] DECISION of Special Master - Fees", "case_name_shorts": "Dowdell" }, { @@ -3643,8 +3643,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1599V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 08/06/2024) regarding [43] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (aevw) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 08/06/2024) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "ALMUDHARI" }, { @@ -3655,8 +3655,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1653V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/13/2024) regarding [38] Ruling on Entitlement, Order on Motion for Ruling on the Record. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/13/2024) regarding [38] Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "Portock" }, { @@ -3666,9 +3666,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-845V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 8/15/2024) regarding [54] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "docket_numbers": "20-0845V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 8/15/2024) regarding [54] DECISION of Special Master", "case_name_shorts": "Molina" }, { @@ -3678,9 +3678,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-381V", - "judges": "D. Horner", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 8/15/2024) regarding [182] RULING ON DAMAGES. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made. Modified on 9/18/2024 to edit text (tjk).", + "docket_numbers": "15-0381V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 8/15/2024) regarding [182] RULING ON DAMAGES", "case_name_shorts": "EILAN" }, { @@ -3690,9 +3690,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-96V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/15/2024 ) regarding [31] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0096V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/15/2024 ) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Woods" }, { @@ -3703,8 +3703,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1060V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/15/2024) regarding [29] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/15/2024) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "Ventresca" }, { @@ -3714,9 +3714,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-483V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/09/2024) regarding [36] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0483V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/09/2024) regarding [36] DECISION of Special Master - Fees", "case_name_shorts": "Vaughn" }, { @@ -3726,9 +3726,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-33V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/09/2024) regarding [46] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0033V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/09/2024) regarding [46] DECISION Stipulation/Proffer", "case_name_shorts": "Schauffler" }, { @@ -3738,9 +3738,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-670V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/14/2024) regarding [27] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0670V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/14/2024) regarding [27] Ruling on Entitlement", "case_name_shorts": "Runyon" }, { @@ -3750,9 +3750,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-32V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 8/19/2024) regarding [42] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "docket_numbers": "21-0032V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 8/19/2024) regarding [42] DECISION of Special Master", "case_name_shorts": "Robinson" }, { @@ -3762,9 +3762,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-231V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/15/2024) regarding [30] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0231V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/15/2024) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Purcell" }, { @@ -3774,9 +3774,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-848V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/15/2024) regarding [24] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0848V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/15/2024) regarding [24] DECISION Stipulation/Proffer", "case_name_shorts": "Powers" }, { @@ -3787,8 +3787,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1615V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/14/2024) regarding [51] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/14/2024) regarding [51] DECISION Stipulation/Proffer", "case_name_shorts": "Patrick" }, { @@ -3799,8 +3799,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2074V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/13/2024) regarding [65] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/13/2024) regarding [65] DECISION Stipulation/Proffer", "case_name_shorts": "Papastamatakis" }, { @@ -3810,9 +3810,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-628V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/08/2024) regarding [51] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0628V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/08/2024) regarding [51] DECISION Stipulation/Proffer", "case_name_shorts": "McAndrew" }, { @@ -3823,8 +3823,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1629V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/09/2024) regarding [31] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/09/2024) regarding [31] Ruling on Entitlement", "case_name_shorts": "Lenehan" }, { @@ -3835,8 +3835,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1047V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [139] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/19/2024) regarding [139] DECISION of Special Master - Fees", "case_name_shorts": "Laurette" }, { @@ -3846,9 +3846,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-639V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 8/23/2024) regarding [43] DECISION of Special Master - Fees. Signed by Special Master Christian J. Moran. (jjb) Service on parties made.", + "docket_numbers": "22-0639V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 8/23/2024) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "Kendrick" }, { @@ -3859,8 +3859,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2096V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/14/2024) regarding [37] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/14/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Kelly" }, { @@ -3870,9 +3870,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-97V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/14/2024) regarding [39] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0097V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/14/2024) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Joyce" }, { @@ -3882,9 +3882,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-635V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 8/20/2024) regarding [56] DECISION Stipulation/Proffer. Signed by Special Master Christian J. Moran. (jjb) Service on parties made.", + "docket_numbers": "22-0635V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 8/20/2024) regarding [56] DECISION Stipulation/Proffer", "case_name_shorts": "Harrell" }, { @@ -3895,8 +3895,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1846V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 8/20/2024) regarding [84] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 8/20/2024) regarding [84] DECISION of Special Master", "case_name_shorts": "Hardiman" }, { @@ -3906,9 +3906,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-764V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/14/2024) regarding [22] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0764V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/14/2024) regarding [22] DECISION Stipulation/Proffer", "case_name_shorts": "Gutknecht" }, { @@ -3918,9 +3918,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-647V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/09/2024) regarding [48] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0647V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/09/2024) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Foster" }, { @@ -3930,9 +3930,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-356V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/08/2024) regarding [32] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0356V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/08/2024) regarding [32] DECISION Stipulation/Proffer", "case_name_shorts": "Blinder" }, { @@ -3942,9 +3942,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-208V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/08/2024) regarding [49] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0208V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/08/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -3955,8 +3955,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1515V", - "judges": "T. Gowen", - "summaries": "PUBLIC RULING (Originally filed: 08/19/2024) regarding [55] Findings of Fact & Conclusions of Law. Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC RULING (Originally filed: 08/19/2024) regarding [55] Findings of Fact & Conclusions of Law", "case_name_shorts": "West" }, { @@ -3966,9 +3966,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-184V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/13/2024) regarding [29] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0184V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/13/2024) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "Walker" }, { @@ -3979,8 +3979,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1973V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/13/2024) regarding [25] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/13/2024) regarding [25] Ruling on Entitlement", "case_name_shorts": "Lowe" }, { @@ -3991,8 +3991,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1692V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 8/13/2024) regarding [75] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 8/13/2024) regarding [75] DECISION Stipulation/Proffer", "case_name_shorts": "Sullivan" }, { @@ -4003,8 +4003,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2345V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/12/2024) regarding [48] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/12/2024) regarding [48] DECISION Stipulation/Proffer", "case_name_shorts": "Suber" }, { @@ -4015,8 +4015,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1546V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/12/2024) regarding [27] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/12/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Roberts" }, { @@ -4027,8 +4027,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2024V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/13/2024 ) regarding [25] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/13/2024 ) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "Pool" }, { @@ -4038,9 +4038,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-583V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 7/18/2024) regarding [131] DECISION of Special Master. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made. Modified on 9/16/2024 - Petitioner served via e-mail on 9/16/2024. (fm).", + "docket_numbers": "18-0583V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 7/18/2024) regarding [131] DECISION of Special Master", "case_name_shorts": "M." }, { @@ -4051,8 +4051,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1906V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/13/2024) regarding [27] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/13/2024) regarding [27] Ruling on Entitlement", "case_name_shorts": "Horne" }, { @@ -4062,9 +4062,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-367V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/12/2024) regarding [26] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0367V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/12/2024) regarding [26] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -4075,8 +4075,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1566V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [38] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Wisnieski" }, { @@ -4087,8 +4087,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1121V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/09/2024 ) regarding [42] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/09/2024 ) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -4099,8 +4099,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1278V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/06/2024) regarding [34] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/06/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Spradlin" }, { @@ -4111,8 +4111,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1254V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [37] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Sitton" }, { @@ -4123,8 +4123,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1522V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/08/2024) regarding [39] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/08/2024) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "Sabra" }, { @@ -4134,9 +4134,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-740V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [50] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "20-0740V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Rowe" }, { @@ -4146,9 +4146,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-342V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/08/2024) regarding [45] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0342V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/08/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Pitts" }, { @@ -4158,9 +4158,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-655V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [42] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0655V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Oxenberg" }, { @@ -4171,8 +4171,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1852V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/09/2024 ) regarding [42] DECISION of Special Master - Fees, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/09/2024 ) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Hurley" }, { @@ -4182,9 +4182,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-910V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/08/2024) regarding [43] Findings of Fact & Conclusions of Law,, Scheduling Order, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0910V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/08/2024) regarding [43] Findings of Fact & Conclusions of Law,, Scheduling Order", "case_name_shorts": "Hamilton" }, { @@ -4194,9 +4194,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-447V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/06/2024) regarding [42] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0447V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/06/2024) regarding [42] Ruling on Entitlement", "case_name_shorts": "Gyde" }, { @@ -4206,9 +4206,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-870V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/06/2024) regarding [25] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0870V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/06/2024) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "Gorlinski" }, { @@ -4219,8 +4219,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1096V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/08/2024) regarding [45] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/08/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Gamino" }, { @@ -4231,8 +4231,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1397V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [62] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [62] DECISION of Special Master", "case_name_shorts": "Agate" }, { @@ -4242,9 +4242,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-241V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [36] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0241V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [36] DECISION of Special Master - Fees", "case_name_shorts": "Watkins" }, { @@ -4254,9 +4254,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-415V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/08/2024) regarding [33] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0415V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/08/2024) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Stine" }, { @@ -4267,8 +4267,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2171V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [41] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Stimson" }, { @@ -4278,9 +4278,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-333V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/08/2024) regarding [38] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0333V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/08/2024) regarding [38] DECISION of Special Master - Fees", "case_name_shorts": "Shrum" }, { @@ -4290,9 +4290,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-865V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 8/12/2024) regarding [83] DECISION of Special Master Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "21-0865V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 8/12/2024) regarding [83] DECISION of Special Master", "case_name_shorts": "Rodriguez" }, { @@ -4303,8 +4303,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1100V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/17/2024) regarding [30] Findings of Fact & Conclusions of Law ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made. Modified on 9/18/2024 to correct the docket text. (fm).", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/17/2024) regarding [30] Findings of Fact & Conclusions of Law", "case_name_shorts": "Miceli" }, { @@ -4314,9 +4314,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-318V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [31] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0318V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Jennings" }, { @@ -4327,8 +4327,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1764V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/09/2024) regarding [21] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/09/2024) regarding [21] DECISION Stipulation/Proffer", "case_name_shorts": "Harold" }, { @@ -4338,9 +4338,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-752V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [33] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0752V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [33] DECISION of Special Master - Fees", "case_name_shorts": "Fletcher" }, { @@ -4351,8 +4351,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1900V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [29] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [29] DECISION of Special Master - Fees", "case_name_shorts": "Farmer" }, { @@ -4362,9 +4362,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-545V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [51] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0545V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [51] DECISION of Special Master - Fees", "case_name_shorts": "Dasilva" }, { @@ -4374,9 +4374,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-473V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/09/2024 ) regarding [61] Ruling on Entitlement, DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "20-0473V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/09/2024 ) regarding [61] Ruling on Entitlement, DECISION of Special Master", "case_name_shorts": "Bradberry" }, { @@ -4387,8 +4387,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "24-1233V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 8/15/2024) regarding [6] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 8/15/2024) regarding [6] Order Concluding Proceedings", "case_name_shorts": "Benderskyi" }, { @@ -4399,8 +4399,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1336V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/13/2024) regarding [39] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/13/2024) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "BARRON" }, { @@ -4410,9 +4410,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-467V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [51] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0467V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [51] DECISION of Special Master - Fees", "case_name_shorts": "Aidone" }, { @@ -4423,8 +4423,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1728V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [31] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [31] DECISION of Special Master - Fees", "case_name_shorts": "Adams" }, { @@ -4434,9 +4434,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-21V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/05/2024) regarding [35] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0021V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/05/2024) regarding [35] DECISION of Special Master - Fees", "case_name_shorts": "Samuels" }, { @@ -4446,9 +4446,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "24-292V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [20] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "24-0292V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [20] DECISION Stipulation/Proffer", "case_name_shorts": "King" }, { @@ -4458,9 +4458,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "24-292V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/06/2024) regarding [17] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "24-0292V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/06/2024) regarding [17] Ruling on Entitlement", "case_name_shorts": "King" }, { @@ -4471,8 +4471,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1575V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [33] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/07/2024) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Guzman" }, { @@ -4483,8 +4483,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1575V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/05/2024) regarding [30] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/05/2024) regarding [30] Ruling on Entitlement", "case_name_shorts": "Guzman" }, { @@ -4494,9 +4494,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-344V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/06/2024) regarding [27] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0344V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/06/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Graham" }, { @@ -4507,8 +4507,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1869V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 8/12/2024) regarding [83] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 8/12/2024) regarding [83] DECISION of Special Master", "case_name_shorts": "FIORELLO" }, { @@ -4518,9 +4518,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-878V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/06/2024) regarding [37] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0878V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/06/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Riley" }, { @@ -4531,8 +4531,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2249V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/05/2024) regarding [33] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/05/2024) regarding [33] DECISION of Special Master", "case_name_shorts": "O&039;leary" }, { @@ -4543,8 +4543,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1369V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/12/2024) regarding [70] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/12/2024) regarding [70] DECISION of Special Master", "case_name_shorts": "Munoz" }, { @@ -4555,8 +4555,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "15-1377V", - "judges": "C. Moran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/23/2024) regarding [170] Order on Motion to Redact Decision Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/23/2024) regarding [170] Order on Motion to Redact Decision", "case_name_shorts": "Jossart" }, { @@ -4566,9 +4566,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-258V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/31/2024) regarding [48] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0258V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/31/2024) regarding [48] DECISION Stipulation/Proffer", "case_name_shorts": "Johns" }, { @@ -4579,8 +4579,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1034V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/05/2024 ) regarding [44] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/05/2024 ) regarding [44] DECISION Stipulation/Proffer", "case_name_shorts": "Hicks" }, { @@ -4591,8 +4591,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1773V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/05/2024) regarding [27] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/05/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "French" }, { @@ -4603,8 +4603,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2131V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/31/2024) regarding [22] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/31/2024) regarding [22] Ruling on Entitlement", "case_name_shorts": "Duncan" }, { @@ -4614,9 +4614,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-384V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/06/2024) regarding [29] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0384V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/06/2024) regarding [29] Ruling on Entitlement", "case_name_shorts": "Benedick" }, { @@ -4627,8 +4627,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2354V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/05/2024) regarding [47] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/05/2024) regarding [47] DECISION Stipulation/Proffer", "case_name_shorts": "Wise" }, { @@ -4639,8 +4639,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "15-1377V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 05/22/2024) regarding [164] DECISION of Special Master Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 05/22/2024) regarding [164] DECISION of Special Master", "case_name_shorts": "Jossart" }, { @@ -4650,9 +4650,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-57V", - "judges": "C. Moran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/08/2024 ) regarding [118] Findings of Fact & Conclusions of Law. Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "20-0057V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/08/2024 ) regarding [118] Findings of Fact & Conclusions of Law", "case_name_shorts": "Inyang" }, { @@ -4662,9 +4662,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-563V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/05/2024) regarding [54] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0563V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/05/2024) regarding [54] DECISION Stipulation/Proffer", "case_name_shorts": "Hincks" }, { @@ -4674,9 +4674,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-838V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [109] DECISION of Special Master - Fees. Signed by Special Master Thomas L. Gowen. (kp) Service on parties made.", + "docket_numbers": "17-0838V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [109] DECISION of Special Master - Fees", "case_name_shorts": "Echols" }, { @@ -4687,8 +4687,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1510V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 05/20/2024) regarding [75] DECISION of Special Master - Fees. Signed by Special Master Katherine E. Oler. (kp) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 05/20/2024) regarding [75] DECISION of Special Master - Fees", "case_name_shorts": "Damon" }, { @@ -4699,8 +4699,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2072V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/05/2024) regarding [45] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/05/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Beck" }, { @@ -4710,9 +4710,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-243V", - "judges": "N. Dorsey", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/26/2024) regarding [181] Ruling Regarding Petitioner&039;s Lost Earnings Claim. Signed by Special Master Nora Beth Dorsey. (aevw) Service on parties made.", + "docket_numbers": "17-0243V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/26/2024) regarding [181] Ruling Regarding Petitioner&039;s Lost Earnings Claim", "case_name_shorts": "B." }, { @@ -4723,8 +4723,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1184V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 05/22/2024) regarding [50] DECISION of Special Master - Fees, Signed by Special Master Katherine E. Oler. (kp) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 05/22/2024) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Zeisler" }, { @@ -4735,8 +4735,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1743V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 07/26/2024) regarding [40] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (kp) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 07/26/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Zampitella" }, { @@ -4746,9 +4746,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-92V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/02/2024) regarding [36] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0092V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/02/2024) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Taylor" }, { @@ -4759,8 +4759,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1304V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [48] DECISION of Special Master - Fees. Signed by Special Master Herbrina Sanders. (kp) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Stibor" }, { @@ -4771,8 +4771,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1770V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 05/24/2024) regarding [40] DECISION of Special Master - Fees, Signed by Special Master Mindy Michaels Roth. (kp) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 05/24/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Stavale" }, { @@ -4783,8 +4783,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1363V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/29/2024) regarding [40] DECISION of Special Master,, Ruling on Entitlement, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/29/2024) regarding [40] DECISION of Special Master,, Ruling on Entitlement", "case_name_shorts": "" }, { @@ -4795,8 +4795,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1858V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/30/2024) regarding [21] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/30/2024) regarding [21] Ruling on Entitlement", "case_name_shorts": "Shea" }, { @@ -4807,8 +4807,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1073V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 06/25/2024) regarding [66] DECISION of Special Master - Fees. Signed by Special Master Mindy Michaels Roth. (kp) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 06/25/2024) regarding [66] DECISION of Special Master - Fees", "case_name_shorts": "Scott" }, { @@ -4819,8 +4819,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1078V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/30/2024) regarding [29] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/30/2024) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "Schiller" }, { @@ -4831,8 +4831,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1397V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [59] DECISION of Special Master - Fees, Signed by Special Master Daniel T. Horner. (kp) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [59] DECISION of Special Master - Fees", "case_name_shorts": "Sastre" }, { @@ -4843,8 +4843,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1459V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [75] DECISION of Special Master - Fees, Signed by Special Master Herbrina Sanders. (kp) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [75] DECISION of Special Master - Fees", "case_name_shorts": "SAGALA" }, { @@ -4855,8 +4855,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1714V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/30/2024) regarding [34] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/30/2024) regarding [34] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -4867,8 +4867,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2196V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 05/31/2024 ) regarding [45] DECISION of Special Master - Fees. Signed by Special Master Herbrina Sanders. (kp) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 05/31/2024 ) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Rinella" }, { @@ -4879,8 +4879,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1508V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [81] DECISION of Special Master - Fees, Signed by Special Master Thomas L. Gowen. (kp) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [81] DECISION of Special Master - Fees", "case_name_shorts": "Rendon" }, { @@ -4890,9 +4890,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-992V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [52] DECISION of Special Master - Fees. Signed by Special Master Mindy Michaels Roth. (kp) Service on parties made.", + "docket_numbers": "20-0992V", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Mullins" }, { @@ -4902,9 +4902,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-320V", - "judges": "N. Dorsey", - "summaries": "PUBLIC RULING (Originally filed: 8/8/2024) regarding [126] Ruling on Entitlement. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "docket_numbers": "19-0320V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC RULING (Originally filed: 8/8/2024) regarding [126] Ruling on Entitlement", "case_name_shorts": "Mullins" }, { @@ -4914,9 +4914,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-271V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/31/2024) regarding [61] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0271V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/31/2024) regarding [61] DECISION of Special Master - Fees", "case_name_shorts": "Moses" }, { @@ -4927,8 +4927,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1589V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [60] DECISION of Special Master - Fees, Signed by Special Master Thomas L. Gowen. (kp) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [60] DECISION of Special Master - Fees", "case_name_shorts": "Moore" }, { @@ -4939,8 +4939,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1983V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [37] DECISION of Special Master - Fees. Signed by Special Master Thomas L. Gowen. (kp) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [37] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -4951,8 +4951,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1126V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/29/2024) regarding [23] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/29/2024) regarding [23] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -4962,9 +4962,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-859V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [153] DECISION of Special Master - Fees, Signed by Special Master Thomas L. Gowen. (kp) Service on parties made.", + "docket_numbers": "16-0859V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [153] DECISION of Special Master - Fees", "case_name_shorts": "Mekwinski" }, { @@ -4975,8 +4975,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1322V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 05/24/2024) regarding [98] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (kp) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 05/24/2024) regarding [98] DECISION of Special Master - Fees", "case_name_shorts": "McDaniel" }, { @@ -4986,9 +4986,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-469V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/31/2024) regarding [38] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0469V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/31/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "McClellan" }, { @@ -4999,8 +4999,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1326V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 06/06/2024) regarding [95] DECISION of Special Master - Fees. Signed by Special Master Christian J. Moran. (kp) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 06/06/2024) regarding [95] DECISION of Special Master - Fees", "case_name_shorts": "Mauro" }, { @@ -5010,9 +5010,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-961V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 05/31/2024) regarding [48] DECISION of Special Master - Fees. Signed by Special Master Herbrina Sanders. (kp) Service on parties made.", + "docket_numbers": "21-0961V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 05/31/2024) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Marshall" }, { @@ -5022,9 +5022,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-537V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 05/10/2024) regarding [101] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (kp) Service on parties made.", + "docket_numbers": "19-0537V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 05/10/2024) regarding [101] DECISION of Special Master - Fees", "case_name_shorts": "Madan" }, { @@ -5035,8 +5035,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-1053V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [99] DECISION of Special Master - Fees. Signed by Special Master Thomas L. Gowen. (kp) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [99] DECISION of Special Master - Fees", "case_name_shorts": "Lagle" }, { @@ -5047,8 +5047,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1660V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [79] DECISION of Special Master - Fees Signed by Special Master Mindy Michaels Roth. (kp) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [79] DECISION of Special Master - Fees", "case_name_shorts": "L." }, { @@ -5059,8 +5059,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1402V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [48] DECISION of Special Master - Fees, Signed by Special Master Daniel T. Horner. (kp) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Karra" }, { @@ -5070,9 +5070,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-884V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [69] DECISION of Special Master - Fees. Signed by Special Master Katherine E. Oler. (kp) Service on parties made.", + "docket_numbers": "19-0884V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [69] DECISION of Special Master - Fees", "case_name_shorts": "Illiano" }, { @@ -5082,9 +5082,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-467V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 05/14/2024) regarding [84] DECISION of Special Master - Fees, Signed by Special Master Daniel T. Horner. (kp) Service on parties made.", + "docket_numbers": "19-0467V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 05/14/2024) regarding [84] DECISION of Special Master - Fees", "case_name_shorts": "Hatfield" }, { @@ -5094,9 +5094,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-944V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [98] DECISION of Special Master - Fees, Signed by Special Master Daniel T. Horner. (kp) Service on parties made.", + "docket_numbers": "18-0944V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [98] DECISION of Special Master - Fees", "case_name_shorts": "Harris" }, { @@ -5107,8 +5107,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2032V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 06/18/2024) regarding [87] DECISION of Special Master - Fees. Signed by Special Master Christian J. Moran. (kp) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 06/18/2024) regarding [87] DECISION of Special Master - Fees", "case_name_shorts": "Greenhaw" }, { @@ -5119,8 +5119,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1821V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [78] DECISION of Special Master - Fees, Signed by Special Master Christian J. Moran. (kp) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [78] DECISION of Special Master - Fees", "case_name_shorts": "Gehrke" }, { @@ -5131,8 +5131,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1933V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [84] DECISION of Special Master - Fees. Signed by Special Master Thomas L. Gowen. (kp) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [84] DECISION of Special Master - Fees", "case_name_shorts": "Galante" }, { @@ -5142,9 +5142,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-702V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024 ) regarding [118] DECISION of Special Master - Fees, Signed by Special Master Herbrina Sanders. (kp) Service on parties made.", + "docket_numbers": "16-0702V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024 ) regarding [118] DECISION of Special Master - Fees", "case_name_shorts": "Drummond" }, { @@ -5154,9 +5154,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-742V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 05/21/2024) regarding [158] DECISION of Special Master - Fees. Signed by Special Master Herbrina Sanders. (kp) Service on parties made.", + "docket_numbers": "14-0742V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 05/21/2024) regarding [158] DECISION of Special Master - Fees", "case_name_shorts": "D." }, { @@ -5167,8 +5167,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1237V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 06/26/2024) regarding [72] DECISION of Special Master - Fees. Signed by Special Master Mindy Michaels Roth. (kp) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 06/26/2024) regarding [72] DECISION of Special Master - Fees", "case_name_shorts": "Cusolito" }, { @@ -5178,9 +5178,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-198V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 05/29/2024 ) regarding [111] DECISION of Special Master - Fees. Signed by Special Master Thomas L. Gowen. (kp) Service on parties made.", + "docket_numbers": "18-0198V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 05/29/2024 ) regarding [111] DECISION of Special Master - Fees", "case_name_shorts": "Crawford" }, { @@ -5191,8 +5191,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1954V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 05/24/2024) regarding [68] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (kp) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 05/24/2024) regarding [68] DECISION of Special Master - Fees", "case_name_shorts": "Cramer" }, { @@ -5202,9 +5202,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-181V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [106] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (kp) Service on parties made.", + "docket_numbers": "18-0181V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [106] DECISION of Special Master - Fees", "case_name_shorts": "Cody" }, { @@ -5215,8 +5215,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1958V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [77] DECISION of Special Master - Fees. Signed by Special Master Thomas L. Gowen. (kp) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [77] DECISION of Special Master - Fees", "case_name_shorts": "Castaneda" }, { @@ -5227,8 +5227,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1947V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 06/20/2024) regarding [142] DECISION of Special Master - Fees. Signed by Special Master Christian J. Moran. (kp) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 06/20/2024) regarding [142] DECISION of Special Master - Fees", "case_name_shorts": "CRANE" }, { @@ -5239,8 +5239,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1455V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [77] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (kp) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [77] DECISION of Special Master - Fees", "case_name_shorts": "COMPTON" }, { @@ -5251,8 +5251,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1337V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [47] DECISION of Special Master - Fees, Signed by Special Master Thomas L. Gowen. (kp) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Burbank" }, { @@ -5262,9 +5262,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-486V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 06/12/2024) regarding [90] DECISION of Special Master - Fees. Signed by Special Master Christian J. Moran. (kp) Service on parties made.", + "docket_numbers": "20-0486V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 06/12/2024) regarding [90] DECISION of Special Master - Fees", "case_name_shorts": "Brannan" }, { @@ -5275,8 +5275,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2256V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 07/31/2024) regarding [61] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (kp) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 07/31/2024) regarding [61] DECISION of Special Master - Fees", "case_name_shorts": "Botti" }, { @@ -5287,8 +5287,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1845V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 05/24/2024) regarding [92] DECISION of Special Master - Fees. Signed by Special Master Christian J. Moran. (kp) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 05/24/2024) regarding [92] DECISION of Special Master - Fees", "case_name_shorts": "Bostwick" }, { @@ -5298,9 +5298,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-243V", - "judges": "N. Dorsey", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/09/2024) regarding [187] Order on Motion to Strike. Signed by Special Master Nora Beth Dorsey. (aevw) Service on parties made.", + "docket_numbers": "17-0243V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/09/2024) regarding [187] Order on Motion to Strike", "case_name_shorts": "B." }, { @@ -5311,8 +5311,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-1469V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [159] DECISION of Special Master - Fees. Signed by Special Master Thomas L. Gowen. (kp) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [159] DECISION of Special Master - Fees", "case_name_shorts": "ALAM" }, { @@ -5322,9 +5322,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-367V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 8/9/2024) regarding [61] DECISION of Special Master - Fees. Signed by Special Master Mindy Michaels Roth. (dkj) Service on parties made.", + "docket_numbers": "20-0367V", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 8/9/2024) regarding [61] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -5335,8 +5335,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1691V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/08/2024) regarding [84] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/08/2024) regarding [84] DECISION of Special Master", "case_name_shorts": "Stacy" }, { @@ -5347,8 +5347,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1228V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/01/2024) regarding [41] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/01/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Sharpe" }, { @@ -5359,8 +5359,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1487V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/31/2024) regarding [29] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/31/2024) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "Rozen" }, { @@ -5370,9 +5370,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-236V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 8/8/2024) regarding [133] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "docket_numbers": "17-0236V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 8/8/2024) regarding [133] DECISION Stipulation/Proffer", "case_name_shorts": "RODELA" }, { @@ -5383,8 +5383,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2111V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/29/2024) regarding [20] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/29/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "Mead" }, { @@ -5395,8 +5395,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1763V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/31/2024) regarding [36] Findings of Fact & Conclusions of Law. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/31/2024) regarding [36] Findings of Fact & Conclusions of Law", "case_name_shorts": "McNALLY" }, { @@ -5406,9 +5406,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-469V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/31/2024) regarding [37] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0469V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/31/2024) regarding [37] Ruling on Entitlement", "case_name_shorts": "McClellan" }, { @@ -5418,9 +5418,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-190V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/31/2024) regarding [31] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0190V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/31/2024) regarding [31] DECISION of Special Master - Fees", "case_name_shorts": "McBride" }, { @@ -5431,8 +5431,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1087V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/02/2024) regarding [26] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/02/2024) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "John" }, { @@ -5443,8 +5443,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1946V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 8/5/2024) regarding [18] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 8/5/2024) regarding [18] Order Concluding Proceedings", "case_name_shorts": "Frankos" }, { @@ -5455,8 +5455,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1742V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/30/2024) regarding [29] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/30/2024) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "Fishbaugh" }, { @@ -5466,9 +5466,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-239V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/29/2024) regarding [44] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0239V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/29/2024) regarding [44] DECISION Stipulation/Proffer", "case_name_shorts": "Faure" }, { @@ -5478,9 +5478,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-843V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/30/2024) regarding [46] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "20-0843V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/30/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Dickhardt" }, { @@ -5491,8 +5491,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1557V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/22/2024) regarding [28] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/22/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Tucker" }, { @@ -5502,9 +5502,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-748V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 08/08/2024) regarding [38] DECISION Stipulation/Proffer. Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "22-0748V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 08/08/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Treat" }, { @@ -5515,8 +5515,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1695V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/29/2024) regarding [34] Ruling on Entitlement, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/29/2024) regarding [34] Ruling on Entitlement", "case_name_shorts": "Seaborg" }, { @@ -5527,8 +5527,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1141V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 8/5/2024) regarding [52] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 8/5/2024) regarding [52] DECISION Stipulation/Proffer", "case_name_shorts": "Lam" }, { @@ -5539,8 +5539,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1030V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 7/29/2024) regarding [88] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (aevw) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 7/29/2024) regarding [88] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -5550,9 +5550,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-176V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 7/29/2024) regarding [109] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (aevw) Service on parties made.", + "docket_numbers": "20-0176V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 7/29/2024) regarding [109] DECISION of Special Master - Fees", "case_name_shorts": "Introini" }, { @@ -5563,8 +5563,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1681V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/30/2024) regarding [47] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/30/2024) regarding [47] DECISION Stipulation/Proffer", "case_name_shorts": "Huber" }, { @@ -5575,8 +5575,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1885V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 7/29/2024) regarding [102] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 7/29/2024) regarding [102] DECISION Stipulation/Proffer", "case_name_shorts": "Cooper" }, { @@ -5587,8 +5587,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1741V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/30/2024 ) regarding [25] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/30/2024 ) regarding [25] Ruling on Entitlement", "case_name_shorts": "Cirincione" }, { @@ -5599,8 +5599,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1347V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/30/2024) regarding [33] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/30/2024) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Archer" }, { @@ -5610,9 +5610,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-484V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 8/5/2024) regarding [164] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "docket_numbers": "18-0484V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 8/5/2024) regarding [164] DECISION of Special Master - Fees", "case_name_shorts": "Anderson" }, { @@ -5623,8 +5623,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1502V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/29/2024) regarding [24] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/29/2024) regarding [24] DECISION Stipulation/Proffer", "case_name_shorts": "Shaw" }, { @@ -5634,9 +5634,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-884V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 8/2/2024) regarding [63] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "docket_numbers": "21-0884V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 8/2/2024) regarding [63] DECISION of Special Master - Fees", "case_name_shorts": "Jeffries" }, { @@ -5646,9 +5646,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-482V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/30/2024) regarding [25] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0482V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/30/2024) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "Calderon" }, { @@ -5659,8 +5659,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1476V", - "judges": "T. Gowen", - "summaries": "PUBLIC RULING (Originally filed: 7/8/2024) regarding [89] Ruling on Entitlement Signed by Special Master Thomas L. Gowen. (ms) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC RULING (Originally filed: 7/8/2024) regarding [89] Ruling on Entitlement", "case_name_shorts": "Byrd" }, { @@ -5670,9 +5670,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-268V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/29/2024) regarding [35] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0268V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/29/2024) regarding [35] Ruling on Entitlement", "case_name_shorts": "Braman" }, { @@ -5682,9 +5682,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-918V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 1/31/2024) regarding [150] DECISION of Special Master - Fees Signed by Special Master Thomas L. Gowen. (ms) Service on parties made.", + "docket_numbers": "15-0918V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 1/31/2024) regarding [150] DECISION of Special Master - Fees", "case_name_shorts": "BURCHIANTI" }, { @@ -5695,8 +5695,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1641V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [32] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [32] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -5706,9 +5706,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-26V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/24/2024) regarding [28] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0026V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/24/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Seger" }, { @@ -5718,9 +5718,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-794V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/31/2024) regarding [56] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "21-0794V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/31/2024) regarding [56] DECISION of Special Master - Fees", "case_name_shorts": "Saville" }, { @@ -5730,9 +5730,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-203V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/31/2024) regarding [45] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "21-0203V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/31/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Sage" }, { @@ -5743,8 +5743,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1750V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/29/2024) regarding [18] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/29/2024) regarding [18] Ruling on Entitlement", "case_name_shorts": "Ramsey" }, { @@ -5755,8 +5755,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1176V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [29] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [29] DECISION of Special Master - Fees", "case_name_shorts": "Ramsey" }, { @@ -5766,9 +5766,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-397V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [32] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0397V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [32] DECISION of Special Master - Fees", "case_name_shorts": "Moore" }, { @@ -5778,9 +5778,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-630V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/24/2024) regarding [60] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0630V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/24/2024) regarding [60] Ruling on Entitlement", "case_name_shorts": "Kienow" }, { @@ -5791,8 +5791,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1778V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/24/2024) regarding [27] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/24/2024) regarding [27] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -5803,8 +5803,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1705V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 5/30/2024) regarding [78] DECISION Dismissing Petition. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 5/30/2024) regarding [78] DECISION Dismissing Petition", "case_name_shorts": "Fisher" }, { @@ -5815,8 +5815,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2007V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/26/2024) regarding [21] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/26/2024) regarding [21] Ruling on Entitlement", "case_name_shorts": "Bolognesi" }, { @@ -5826,9 +5826,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-594V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [22] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0594V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [22] DECISION Stipulation/Proffer", "case_name_shorts": "Widell" }, { @@ -5839,8 +5839,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1557V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/22/2024) regarding [27] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/22/2024) regarding [27] Ruling on Entitlement", "case_name_shorts": "Tucker" }, { @@ -5850,9 +5850,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-848V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/22/2024) regarding [21] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0848V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/22/2024) regarding [21] Ruling on Entitlement", "case_name_shorts": "Powers" }, { @@ -5862,9 +5862,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-575V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 7/30/2024) regarding [119] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "docket_numbers": "18-0575V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 7/30/2024) regarding [119] DECISION of Special Master - Fees", "case_name_shorts": "Osso" }, { @@ -5875,8 +5875,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1672V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/22/2024) regarding [19] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/22/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Motyka" }, { @@ -5886,9 +5886,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-503V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/18/2024) regarding [30] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0503V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/18/2024) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Mengistu" }, { @@ -5899,8 +5899,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1640V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/26/2024 ) regarding [47] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/26/2024 ) regarding [47] DECISION Stipulation/Proffer", "case_name_shorts": "Masters" }, { @@ -5910,9 +5910,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-932V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/24/2024) regarding [27] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0932V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/24/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Mahoney" }, { @@ -5923,8 +5923,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2119V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 7/30/2024) regarding [10] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 7/30/2024) regarding [10] DECISION of Special Master", "case_name_shorts": "" }, { @@ -5934,9 +5934,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-923V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/24/2024) regarding [27] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0923V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/24/2024) regarding [27] Ruling on Entitlement", "case_name_shorts": "Gibbs" }, { @@ -5946,9 +5946,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-664V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 7/29/2024) regarding [98] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (aevw) Service on parties made.", + "docket_numbers": "20-0664V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 7/29/2024) regarding [98] DECISION of Special Master - Fees", "case_name_shorts": "G." }, { @@ -5958,9 +5958,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-646V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/22/2024 ) regarding [27] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0646V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/22/2024 ) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Fox" }, { @@ -5971,8 +5971,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2033V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/26/2024) regarding [16] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/26/2024) regarding [16] Order Concluding Proceedings", "case_name_shorts": "Fincke" }, { @@ -5982,9 +5982,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-43V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [45] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0043V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [45] DECISION Stipulation/Proffer", "case_name_shorts": "Burgese" }, { @@ -5995,8 +5995,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1895V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/26/2024) regarding [22] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/26/2024) regarding [22] Order Concluding Proceedings", "case_name_shorts": "Borizov" }, { @@ -6007,8 +6007,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1673V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/26/2024) regarding [24] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/26/2024) regarding [24] Ruling on Entitlement", "case_name_shorts": "Bildner" }, { @@ -6019,8 +6019,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2037V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/26/2024) regarding [17] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/26/2024) regarding [17] Order Concluding Proceedings", "case_name_shorts": "Ayers" }, { @@ -6030,9 +6030,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-459V", - "judges": "N. Dorsey", - "summaries": "PUBLIC RULING (Originally filed: 7/30/2024) regarding [99] Ruling on Entitlement. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "docket_numbers": "19-0459V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC RULING (Originally filed: 7/30/2024) regarding [99] Ruling on Entitlement", "case_name_shorts": "Adams" }, { @@ -6042,9 +6042,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-460V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/25/2024) regarding [47] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0460V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/25/2024) regarding [47] DECISION Stipulation/Proffer", "case_name_shorts": "Wood" }, { @@ -6055,8 +6055,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1632V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/22/2024) regarding [30] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/22/2024) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Watkins" }, { @@ -6066,9 +6066,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-881V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/26/2024) regarding [31] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0881V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/26/2024) regarding [31] Ruling on Entitlement", "case_name_shorts": "Thompson" }, { @@ -6078,9 +6078,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-164V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/15/2024) regarding [40] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0164V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/15/2024) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -6091,8 +6091,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1598V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/25/2024) regarding [92] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/25/2024) regarding [92] DECISION of Special Master - Fees", "case_name_shorts": "Slay" }, { @@ -6103,8 +6103,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2049V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/18/2024) regarding [20] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/18/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "Simmons" }, { @@ -6115,8 +6115,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1963V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/25/2024) regarding [35] Order Concluding Proceedings, Order Striking Document. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/25/2024) regarding [35] Order Concluding Proceedings, Order Striking Document", "case_name_shorts": "Shipman" }, { @@ -6127,8 +6127,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1191V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/22/2024) regarding [27] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/22/2024) regarding [27] Ruling on Entitlement", "case_name_shorts": "Riviere" }, { @@ -6138,9 +6138,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-713V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/25/2024) regarding [55] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0713V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/25/2024) regarding [55] DECISION of Special Master - Fees", "case_name_shorts": "Nguyen" }, { @@ -6150,9 +6150,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-106V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/24/2024) regarding [27] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0106V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/24/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Michael" }, { @@ -6163,8 +6163,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2184V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 1/30/2024) regarding [52] DECISION Stipulation/Proffer Signed by Special Master Thomas L. Gowen. (ms) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 1/30/2024) regarding [52] DECISION Stipulation/Proffer", "case_name_shorts": "Hitchcock" }, { @@ -6175,8 +6175,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1959V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/23/2024) regarding [49] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made. Modified on 9/27/2024 to correct the document hyperlink and the docket text. (fm).", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/23/2024) regarding [49] Ruling on Entitlement", "case_name_shorts": "Hayes" }, { @@ -6186,9 +6186,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-326V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/15/2024) regarding [48] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0326V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/15/2024) regarding [48] DECISION Stipulation/Proffer", "case_name_shorts": "Emeziem" }, { @@ -6198,9 +6198,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-991V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/24/2024) regarding [23] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0991V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/24/2024) regarding [23] Ruling on Entitlement", "case_name_shorts": "Coles-Jacobs" }, { @@ -6211,8 +6211,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1158V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/25/2024) regarding [27] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/25/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Brown-Wysocki" }, { @@ -6222,9 +6222,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-100V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/26/2024) regarding [43] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0100V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/26/2024) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Brent" }, { @@ -6234,9 +6234,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-498V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/17/2024) regarding [30] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0498V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/17/2024) regarding [30] Ruling on Entitlement", "case_name_shorts": "Bowles" }, { @@ -6246,9 +6246,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-788V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 8/1/2024) regarding [61] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Mindy Michaels Roth. (msg) Service on parties made.", + "docket_numbers": "19-0788V", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 8/1/2024) regarding [61] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Boon" }, { @@ -6259,8 +6259,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1274V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/16/2024) regarding [19] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/16/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Allred" }, { @@ -6270,9 +6270,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-390V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/24/2024) regarding [44] Ruling on Entitlement, DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0390V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/24/2024) regarding [44] Ruling on Entitlement, DECISION of Special Master", "case_name_shorts": "Conley" }, { @@ -6282,9 +6282,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-89V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 07/18/2024) regarding [41] DECISION of Special Master - Attorney&039;s Fees and Costs. Signed by Special Master Katherine E. Oler. (saj) Service on parties made.", + "docket_numbers": "22-0089V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 07/18/2024) regarding [41] DECISION of Special Master - Attorney&039;s Fees and Costs", "case_name_shorts": "Wiltz" }, { @@ -6295,8 +6295,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1217V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 07/18/2024) regarding [67] DECISION of Special Master - Attorneys&039; Fees and Costs. Signed by Special Master Katherine E. Oler. (saj) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 07/18/2024) regarding [67] DECISION of Special Master - Attorneys&039; Fees and Costs", "case_name_shorts": "Thompson" }, { @@ -6306,9 +6306,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-940V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 07/12/2024) regarding [128] DECISION of Special Master - Attorney&039;s Fees and Costs. Signed by Special Master Katherine E. Oler. (saj) Service on parties made.", + "docket_numbers": "16-0940V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 07/12/2024) regarding [128] DECISION of Special Master - Attorney&039;s Fees and Costs", "case_name_shorts": "Stuart" }, { @@ -6318,9 +6318,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-498V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 07/15/2024) regarding [45] DECISION of Special Master - Attorney&039;s Fees and Costs. Signed by Special Master Katherine E. Oler. (saj) Service on parties made.", + "docket_numbers": "22-0498V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 07/15/2024) regarding [45] DECISION of Special Master - Attorney&039;s Fees and Costs", "case_name_shorts": "" }, { @@ -6331,8 +6331,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1460V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 07/08/2024) regarding [107] DECISION Dismissing Petition. Signed by Special Master Katherine E. Oler. (saj) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 07/08/2024) regarding [107] DECISION Dismissing Petition", "case_name_shorts": "" }, { @@ -6342,9 +6342,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-536V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 07/08/2024) regarding [43] DECISION of Special Master - Attorneys&039; Fees and Costs. Signed by Special Master Katherine E. Oler. (saj) Service on parties made.", + "docket_numbers": "22-0536V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 07/08/2024) regarding [43] DECISION of Special Master - Attorneys&039; Fees and Costs", "case_name_shorts": "Palmore" }, { @@ -6354,9 +6354,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-923V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 07/12/2024) regarding [61] DECISION of Special Master - Stipulation. Signed by Special Master Katherine E. Oler. (saj) Service on parties made.", + "docket_numbers": "20-0923V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 07/12/2024) regarding [61] DECISION of Special Master - Stipulation", "case_name_shorts": "Nowak" }, { @@ -6366,9 +6366,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-970V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 07/10/2024) regarding [185] DECISION of Special Master - Interim Attorneys&039; Fees and Costs. Signed by Special Master Katherine E. Oler. (saj) Service on parties made.", + "docket_numbers": "16-0970V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 07/10/2024) regarding [185] DECISION of Special Master - Interim Attorneys&039; Fees and Costs", "case_name_shorts": "Noorani" }, { @@ -6378,9 +6378,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-534V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [38] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0534V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Myers" }, { @@ -6390,9 +6390,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-633V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 7/18/2024) regarding [131] DECISION of Special Master - Interim Attorneys&039; Fees and Costs. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "docket_numbers": "16-0633V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 7/18/2024) regarding [131] DECISION of Special Master - Interim Attorneys&039; Fees and Costs", "case_name_shorts": "Larson" }, { @@ -6403,8 +6403,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1043V", - "judges": "K. Oler", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/22/2024) regarding [98] RULING AWARDING DAMAGES. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/22/2024) regarding [98] RULING AWARDING DAMAGES", "case_name_shorts": "Hoisington" }, { @@ -6415,8 +6415,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1828V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 7/2/2024) regarding [56] DECISION of Special Master - Stipulation. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 7/2/2024) regarding [56] DECISION of Special Master - Stipulation", "case_name_shorts": "Hasanovic" }, { @@ -6426,9 +6426,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-102V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [46] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0102V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [46] DECISION Stipulation/Proffer", "case_name_shorts": "Graham" }, { @@ -6439,8 +6439,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1606V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 7/9/2024) regarding [30] DECISION on Attorneys&039; Fees and Costs. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 7/9/2024) regarding [30] DECISION on Attorneys&039; Fees and Costs", "case_name_shorts": "Frepan" }, { @@ -6451,8 +6451,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1450V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 7/8/2024) regarding [87] DECISION on Attorneys&039; Fees and Costs. Signed by Special Master Katherine E. Oler. (sl) Service on parties made. (Main Document 94 replaced on 8/26/2024 to add public availability information to the pdf.) (fm). Modified on 8/26/2024 - Petitioner served via email on 8/26/2024. (fm).", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 7/8/2024) regarding [87] DECISION on Attorneys&039; Fees and Costs", "case_name_shorts": "Eloyan" }, { @@ -6462,9 +6462,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-201V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [45] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0201V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [45] DECISION Stipulation/Proffer", "case_name_shorts": "Dennis" }, { @@ -6474,9 +6474,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-799V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [40] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0799V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Conine" }, { @@ -6487,8 +6487,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1646V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [47] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Comora" }, { @@ -6498,9 +6498,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-84V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 7/29/2024) regarding [59] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "docket_numbers": "21-0084V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 7/29/2024) regarding [59] DECISION Stipulation/Proffer", "case_name_shorts": "Burroughs" }, { @@ -6510,9 +6510,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-369V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/19/2024) regarding [32] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0369V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/19/2024) regarding [32] DECISION Stipulation/Proffer", "case_name_shorts": "Bratcher" }, { @@ -6523,8 +6523,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1100V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 8/6/24) regarding [58] DECISION of Special Master - Interim Attorney&039;s Fees Signed by Special Master Herbrina Sanders. (sh) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 8/6/24) regarding [58] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Banks" }, { @@ -6535,8 +6535,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-1190V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 7/29/2024) regarding [85] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 7/29/2024) regarding [85] DECISION of Special Master", "case_name_shorts": "Bacher" }, { @@ -6546,9 +6546,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-701V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 7/18/2024) regarding [112] DECISION on Attorneys&039; Fees and Costs. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "docket_numbers": "16-0701V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 7/18/2024) regarding [112] DECISION on Attorneys&039; Fees and Costs", "case_name_shorts": "Antalosky" }, { @@ -6558,9 +6558,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-906V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [35] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0906V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/23/2024) regarding [35] DECISION of Special Master - Fees", "case_name_shorts": "Adamson" }, { @@ -6571,8 +6571,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1860V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 07/29/2024) regarding [35] DECISION of Special Master, Signed by Special Master Christian J. Moran. (ceo) Service on parties made. (Main Document 36 replaced on 8/23/2024 to correct the date the claim was filed.) (fm). Petitioner served via First Class mail on 8/23/2024. (fm).", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 07/29/2024) regarding [35] DECISION of Special Master", "case_name_shorts": "Pillischafske" }, { @@ -6582,9 +6582,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-222V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 7/31/24) regarding [119] DECISION of Special Master, Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "19-0222V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 7/31/24) regarding [119] DECISION of Special Master", "case_name_shorts": "Ginsberg" }, { @@ -6594,9 +6594,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-797V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/17/2024) regarding [23] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0797V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/17/2024) regarding [23] DECISION Stipulation/Proffer", "case_name_shorts": "Wessel" }, { @@ -6606,9 +6606,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-851V", - "judges": "C. Moran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/30/2024) regarding [83] Order Concluding Proceedings. Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "22-0851V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/30/2024) regarding [83] Order Concluding Proceedings", "case_name_shorts": "McDonald" }, { @@ -6618,9 +6618,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-439V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/22/2024) regarding [72] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0439V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/22/2024) regarding [72] Ruling on Entitlement", "case_name_shorts": "Lenkowsky" }, { @@ -6631,8 +6631,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1020V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 07/30/2024) regarding [37] DECISION of Special Master. Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 07/30/2024) regarding [37] DECISION of Special Master", "case_name_shorts": "Joyner" }, { @@ -6643,8 +6643,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2064V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/19/2024) regarding [50] Ruling on Entitlement, DECISION AWARDING DAMAGES of Special Master, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/19/2024) regarding [50] Ruling on Entitlement, DECISION AWARDING DAMAGES of Special Master", "case_name_shorts": "Chatman" }, { @@ -6655,8 +6655,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1841V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/18/2024) regarding [43] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/18/2024) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "Becker" }, { @@ -6667,8 +6667,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1702V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/17/2024) regarding [21] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/17/2024) regarding [21] Ruling on Entitlement", "case_name_shorts": "Southworth" }, { @@ -6679,8 +6679,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1493V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/16/2024) regarding [34] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/16/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Schweighauser" }, { @@ -6691,8 +6691,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1625V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 7/26/2024) regarding [132] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Mindy Michaels Roth. (msg) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 7/26/2024) regarding [132] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Romero" }, { @@ -6703,8 +6703,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2024V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/18/2024) regarding [20] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/18/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "Pool" }, { @@ -6714,9 +6714,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-940V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/17/2024) regarding [20] Findings of Fact & Conclusions of Law, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0940V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/17/2024) regarding [20] Findings of Fact & Conclusions of Law", "case_name_shorts": "Mullin" }, { @@ -6726,9 +6726,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-820V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 7/29/24) regarding [256] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "14-0820V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 7/29/24) regarding [256] DECISION of Special Master - Fees", "case_name_shorts": "Mager" }, { @@ -6738,9 +6738,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-637V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/15/2024) regarding [38] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0637V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/15/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Jennings" }, { @@ -6751,8 +6751,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1444V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/18/2024) regarding [38] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/18/2024) regarding [38] DECISION of Special Master - Fees", "case_name_shorts": "Jennings" }, { @@ -6763,8 +6763,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1290V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/15/2024) regarding [18] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/15/2024) regarding [18] Ruling on Entitlement", "case_name_shorts": "Hernandez" }, { @@ -6775,8 +6775,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1579V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/18/2024) regarding [34] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/18/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Fisher" }, { @@ -6787,8 +6787,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1537V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/17/2024) regarding [36] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/17/2024) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Bentley" }, { @@ -6798,9 +6798,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-326V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/18/2024) regarding [38] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0326V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/18/2024) regarding [38] DECISION of Special Master - Fees", "case_name_shorts": "Arnold" }, { @@ -6811,8 +6811,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1421V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/19/2024) regarding [44] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/19/2024) regarding [44] Ruling on Entitlement", "case_name_shorts": "Wilcox" }, { @@ -6822,9 +6822,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-797V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/17/2024) regarding [22] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0797V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/17/2024) regarding [22] Ruling on Entitlement", "case_name_shorts": "Wessel" }, { @@ -6835,8 +6835,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1730V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/19/2024) regarding [18] Damages Order. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made. Modified on 8/19/2024 to correct the linked docket entry number. (fm).", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/19/2024) regarding [18] Damages Order", "case_name_shorts": "" }, { @@ -6846,9 +6846,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-162V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/18/2024) regarding [57] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "20-0162V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/18/2024) regarding [57] DECISION of Special Master - Fees", "case_name_shorts": "Leathers" }, { @@ -6858,9 +6858,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-927V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/18/2024) regarding [25] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0927V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/18/2024) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "Jupiter" }, { @@ -6871,8 +6871,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1285V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/19/2024) regarding [26] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/19/2024) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Doby" }, { @@ -6883,8 +6883,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1121V", - "judges": "M. Roth", - "summaries": "PUBLIC RULING (Originally filed: 07/23/2024) regarding [67] Ruling on Entitlement. Signed by Special Master Mindy Michaels Roth. (dkj) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC RULING (Originally filed: 07/23/2024) regarding [67] Ruling on Entitlement", "case_name_shorts": "Adams" }, { @@ -6895,8 +6895,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1829V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 7/22/2024) regarding [115] DECISION of Special Master. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 7/22/2024) regarding [115] DECISION of Special Master", "case_name_shorts": "Wilkinson" }, { @@ -6906,9 +6906,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-708V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/09/2024) regarding [41] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0708V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/09/2024) regarding [41] DECISION of Special Master", "case_name_shorts": "West" }, { @@ -6918,9 +6918,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "24-50V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 7/19/2024) regarding [14] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "24-0050V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 7/19/2024) regarding [14] DECISION of Special Master", "case_name_shorts": "Sipe" }, { @@ -6931,8 +6931,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2038V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/11/2024) regarding [35] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/11/2024) regarding [35] Ruling on Entitlement", "case_name_shorts": "Schwob" }, { @@ -6942,9 +6942,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-227V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/17/2024) regarding [48] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0227V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/17/2024) regarding [48] DECISION Stipulation/Proffer", "case_name_shorts": "Schoenborn" }, { @@ -6955,8 +6955,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1406V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/15/2024) regarding [62] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/15/2024) regarding [62] DECISION of Special Master - Fees", "case_name_shorts": "Sauter" }, { @@ -6967,8 +6967,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2019V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/19/2024) regarding [18] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/19/2024) regarding [18] Order Concluding Proceedings", "case_name_shorts": "STRICKLAND" }, { @@ -6978,9 +6978,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-998V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/15/2024) regarding [52] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0998V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/15/2024) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Perez" }, { @@ -6990,9 +6990,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-337V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/15/2024) regarding [32] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0337V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/15/2024) regarding [32] DECISION Stipulation/Proffer", "case_name_shorts": "McKay" }, { @@ -7003,8 +7003,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1956V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 7/22/2024) regarding [100] DECISION Proffer. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 7/22/2024) regarding [100] DECISION Proffer", "case_name_shorts": "Lau" }, { @@ -7015,8 +7015,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1165V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/17/2024) regarding [26] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/17/2024) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Hollis" }, { @@ -7027,8 +7027,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1843V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/17/2024) regarding [17] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/17/2024) regarding [17] Order Concluding Proceedings", "case_name_shorts": "Heffington" }, { @@ -7039,8 +7039,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1194V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/17/2024) regarding [49] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/17/2024) regarding [49] DECISION Stipulation/Proffer", "case_name_shorts": "Handley" }, { @@ -7050,9 +7050,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-757V", - "judges": "D. Horner", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/12/2024) regarding [87] Order denying petitioner&039;s Motion to Redact. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "docket_numbers": "18-0757V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/12/2024) regarding [87] Order denying petitioner&039;s Motion to Redact", "case_name_shorts": "Grace" }, { @@ -7063,8 +7063,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1200V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/11/2024) regarding [21] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/11/2024) regarding [21] Ruling on Entitlement", "case_name_shorts": "Goggans" }, { @@ -7075,8 +7075,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1484V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/15/2024) regarding [38] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/15/2024) regarding [38] DECISION of Special Master - Fees", "case_name_shorts": "Gebel" }, { @@ -7087,8 +7087,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1285V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/16/2024) regarding [23] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/16/2024) regarding [23] Ruling on Entitlement", "case_name_shorts": "Doby" }, { @@ -7098,9 +7098,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-687V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/15/2024) regarding [26] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0687V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/15/2024) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Dixon" }, { @@ -7111,8 +7111,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1583V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/15/2024) regarding [21] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/15/2024) regarding [21] Ruling on Entitlement", "case_name_shorts": "Dickey" }, { @@ -7122,9 +7122,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-621V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/12/2024) regarding [43] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0621V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/12/2024) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "Crysler-Ehlen" }, { @@ -7135,8 +7135,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2015V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/19/2024) regarding [14] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/19/2024) regarding [14] Order Concluding Proceedings", "case_name_shorts": "Callahan" }, { @@ -7146,9 +7146,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-69V", - "judges": "D. Horner", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/15/2024) regarding [90] Order granting petitioner&039;s Motion to Redact. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "docket_numbers": "17-0069V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/15/2024) regarding [90] Order granting petitioner&039;s Motion to Redact", "case_name_shorts": "C." }, { @@ -7158,9 +7158,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-984V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/16/2024) regarding [26] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0984V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/16/2024) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Avery" }, { @@ -7170,9 +7170,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-433V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/15/2024) regarding [47] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0433V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/15/2024) regarding [47] Ruling on Entitlement", "case_name_shorts": "Moreno" }, { @@ -7183,8 +7183,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1891V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 7/22/2024) regarding [37] DECISION of Special Master Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 7/22/2024) regarding [37] DECISION of Special Master", "case_name_shorts": "Mazzone" }, { @@ -7194,9 +7194,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-945V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/12/2024) regarding [55] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "docket_numbers": "21-0945V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/12/2024) regarding [55] Ruling on Entitlement", "case_name_shorts": "Hock" }, { @@ -7206,9 +7206,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-687V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/11/2024) regarding [21] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0687V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/11/2024) regarding [21] Ruling on Entitlement", "case_name_shorts": "Dixon" }, { @@ -7219,8 +7219,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1360V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 7/22/24) regarding [86] DECISION Stipulation/Proffer Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 7/22/24) regarding [86] DECISION Stipulation/Proffer", "case_name_shorts": "Diaz" }, { @@ -7231,8 +7231,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1081V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/12/2024) regarding [25] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/12/2024) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "Vaughn" }, { @@ -7242,9 +7242,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-697V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/15/2024) regarding [28] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0697V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/15/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Tate" }, { @@ -7254,9 +7254,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-780V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/11/2024) regarding [24] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0780V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/11/2024) regarding [24] DECISION Stipulation/Proffer", "case_name_shorts": "Shinn" }, { @@ -7266,9 +7266,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "24-832V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 7/10/2024) regarding [7] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made. Petitioner served via e-mail on 8/15/2024 (sw).", + "docket_numbers": "24-0832V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 7/10/2024) regarding [7] DECISION of Special Master", "case_name_shorts": "Seter" }, { @@ -7279,8 +7279,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1886V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/08/2024) regarding [23] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/08/2024) regarding [23] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -7291,8 +7291,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1619V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/15/2024) regarding [34] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/15/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -7302,9 +7302,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-152V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/10/2024) regarding [51] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0152V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/10/2024) regarding [51] DECISION of Special Master - Fees", "case_name_shorts": "Hanne" }, { @@ -7315,8 +7315,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1487V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/12/2024) regarding [27] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/12/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Brooks" }, { @@ -7327,8 +7327,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1114V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/10/2024) regarding [27] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/10/2024) regarding [27] Ruling on Entitlement", "case_name_shorts": "Borisevich" }, { @@ -7338,9 +7338,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-711V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/08/2024) regarding [36] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0711V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/08/2024) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Blue" }, { @@ -7350,9 +7350,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-471V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/08/2024) regarding [50] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0471V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/08/2024) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "White" }, { @@ -7362,9 +7362,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-212V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/11/2024) regarding [35] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0212V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/11/2024) regarding [35] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -7375,8 +7375,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1360V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/09/2024) regarding [33] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/09/2024) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Tomar" }, { @@ -7386,9 +7386,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-574V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [38] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0574V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Maddula" }, { @@ -7398,9 +7398,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-781V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/08/2024) regarding [44] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0781V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/08/2024) regarding [44] DECISION Stipulation/Proffer", "case_name_shorts": "MacPhee" }, { @@ -7410,9 +7410,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-418V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/11/2024) regarding [51] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0418V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/11/2024) regarding [51] DECISION Stipulation/Proffer", "case_name_shorts": "Lucey" }, { @@ -7422,9 +7422,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-544V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/08/2024) regarding [37] Findings of Fact & Conclusions of Law,, Scheduling Order, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0544V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/08/2024) regarding [37] Findings of Fact & Conclusions of Law,, Scheduling Order", "case_name_shorts": "Labor" }, { @@ -7435,8 +7435,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2009V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/08/2024) regarding [77] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/08/2024) regarding [77] DECISION of Special Master - Fees", "case_name_shorts": "Komarchuk" }, { @@ -7447,8 +7447,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1925V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [32] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [32] DECISION of Special Master - Fees", "case_name_shorts": "Hurtte" }, { @@ -7458,9 +7458,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-622V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [50] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0622V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Harvey" }, { @@ -7471,8 +7471,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1773V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/12/2024) regarding [23] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/12/2024) regarding [23] Ruling on Entitlement", "case_name_shorts": "French" }, { @@ -7483,8 +7483,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1899V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/09/2024) regarding [38] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/09/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Foster" }, { @@ -7494,9 +7494,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-35V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/09/2024) regarding [56] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0035V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/09/2024) regarding [56] DECISION Stipulation/Proffer", "case_name_shorts": "Cephus" }, { @@ -7506,9 +7506,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-561V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/12/2024) regarding [73] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0561V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/12/2024) regarding [73] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -7518,9 +7518,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-898V", - "judges": "K. Oler", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/15/2024) regarding [227] RULING AWARDING DAMAGES. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "docket_numbers": "14-0898V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/15/2024) regarding [227] RULING AWARDING DAMAGES", "case_name_shorts": "Bryan" }, { @@ -7530,9 +7530,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-127V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/11/2024) regarding [36] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0127V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/11/2024) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Boria" }, { @@ -7542,9 +7542,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-785V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 07/19/2024) regarding [88] DECISION of Special Master. Signed by Special Master Mindy Michaels Roth. (dkj) Service on parties made. Petitioner served via e-mail on 8/16/2024 (sw).", + "docket_numbers": "16-0785V", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 07/19/2024) regarding [88] DECISION of Special Master", "case_name_shorts": "Autry" }, { @@ -7555,8 +7555,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1964V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/11/2024) regarding [25] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/11/2024) regarding [25] Ruling on Entitlement", "case_name_shorts": "Yawn" }, { @@ -7567,8 +7567,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1708V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/08/2024) regarding [19] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/08/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Uribe" }, { @@ -7579,8 +7579,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1683V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/11/2024) regarding [49] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/11/2024) regarding [49] DECISION of Special Master", "case_name_shorts": "Reynolds" }, { @@ -7591,8 +7591,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1889V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/12/2024) regarding [44] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/12/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Mosley" }, { @@ -7603,8 +7603,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1177V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/11/2024) regarding [24] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/11/2024) regarding [24] DECISION Stipulation/Proffer", "case_name_shorts": "Mattu" }, { @@ -7615,8 +7615,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1748V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/11/2024) regarding [20] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/11/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "Maloney" }, { @@ -7626,9 +7626,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-241V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/11/2024) regarding [37] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0241V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/11/2024) regarding [37] Ruling on Entitlement", "case_name_shorts": "Lent" }, { @@ -7639,8 +7639,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1121V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 07/11/2024) regarding [90] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 07/11/2024) regarding [90] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Lemieux" }, { @@ -7651,8 +7651,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1437V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 07/22/2024) regarding [88] DECISION Stipulation. Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 07/22/2024) regarding [88] DECISION Stipulation", "case_name_shorts": "Lauria" }, { @@ -7662,9 +7662,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-422V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/10/2024) regarding [46] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0422V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/10/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Langman" }, { @@ -7675,8 +7675,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1355V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 07/11/2024) regarding [78] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 07/11/2024) regarding [78] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Jinkerson" }, { @@ -7686,9 +7686,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-318V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/10/2024) regarding [28] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0318V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/10/2024) regarding [28] Ruling on Entitlement", "case_name_shorts": "Jennings" }, { @@ -7699,8 +7699,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2043V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/09/2024) regarding [23] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/09/2024) regarding [23] DECISION Stipulation/Proffer", "case_name_shorts": "Ellis" }, { @@ -7711,8 +7711,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1628V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/08/2024) regarding [51] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/08/2024) regarding [51] DECISION of Special Master - Fees", "case_name_shorts": "Cox" }, { @@ -7723,8 +7723,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1254V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/09/2024) regarding [19] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/09/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Cookson" }, { @@ -7734,9 +7734,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-594V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/08/2024) regarding [53] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0594V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/08/2024) regarding [53] DECISION of Special Master - Fees", "case_name_shorts": "Camire" }, { @@ -7746,9 +7746,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-257V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/12/2024) regarding [41] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0257V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/12/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Argeris" }, { @@ -7759,8 +7759,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2036V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [59] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [59] DECISION of Special Master - Fees", "case_name_shorts": "Wharton" }, { @@ -7771,8 +7771,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1358V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [38] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Tully" }, { @@ -7783,8 +7783,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2084V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [48] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [48] DECISION of Special Master", "case_name_shorts": "Tennyson" }, { @@ -7794,9 +7794,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-722V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [34] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0722V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Taylor" }, { @@ -7807,8 +7807,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1517V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/10/2024) regarding [41] Ruling on Entitlement, Scheduling Order. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/10/2024) regarding [41] Ruling on Entitlement, Scheduling Order", "case_name_shorts": "Supernaw" }, { @@ -7819,8 +7819,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1644V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/10/2024) regarding [49] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/10/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Stuart" }, { @@ -7830,9 +7830,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-684V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/02/2024) regarding [38] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0684V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/02/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Steck" }, { @@ -7842,9 +7842,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-386V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 7/18/2024) regarding [119] DECISION Dismissing Petition. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "docket_numbers": "18-0386V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 7/18/2024) regarding [119] DECISION Dismissing Petition", "case_name_shorts": "Morrison" }, { @@ -7854,9 +7854,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-286V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/02/2024) regarding [41] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0286V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/02/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Kim" }, { @@ -7867,8 +7867,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1794V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/08/2024) regarding [61] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/08/2024) regarding [61] DECISION of Special Master - Fees", "case_name_shorts": "Kasulis" }, { @@ -7878,9 +7878,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-523V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 7/24/24) regarding [46] DECISION Stipulation/Proffer, Signed by Special Master Herbrina Sanders. (sh) Service on parties made.", + "docket_numbers": "20-0523V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 7/24/24) regarding [46] DECISION Stipulation/Proffer", "case_name_shorts": "Jones" }, { @@ -7890,9 +7890,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-685V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/08/2024) regarding [37] Scheduling Order, Findings of Fact & Conclusions of Law. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0685V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/08/2024) regarding [37] Scheduling Order, Findings of Fact & Conclusions of Law", "case_name_shorts": "Jackman" }, { @@ -7902,9 +7902,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-890V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/02/2024) regarding [29] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0890V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/02/2024) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "Carey" }, { @@ -7915,8 +7915,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1599V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/08/2024) regarding [21] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/08/2024) regarding [21] DECISION Stipulation/Proffer", "case_name_shorts": "Bravo" }, { @@ -7927,8 +7927,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1550V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 7/8/2024) regarding [78] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 7/8/2024) regarding [78] DECISION of Special Master", "case_name_shorts": "Valdez" }, { @@ -7938,9 +7938,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-948V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/08/2024) regarding [56] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0948V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/08/2024) regarding [56] DECISION of Special Master - Fees", "case_name_shorts": "Cantafio" }, { @@ -7951,8 +7951,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1651V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 07/12/2024) regarding [64] DECISION of Special Master Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 07/12/2024) regarding [64] DECISION of Special Master", "case_name_shorts": "SEARS" }, { @@ -7963,8 +7963,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1720V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [30] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Ravshanova" }, { @@ -7974,9 +7974,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-466V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 07/16/2024) regarding [184] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "16-0466V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 07/16/2024) regarding [184] DECISION of Special Master - Fees", "case_name_shorts": "ROSE" }, { @@ -7986,9 +7986,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-465V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 07/16/2024) regarding [202] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "16-0465V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 07/16/2024) regarding [202] DECISION of Special Master - Fees", "case_name_shorts": "ROSE" }, { @@ -7999,8 +7999,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1757V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 7/22/24) regarding [29] DECISION of Special Master. Signed by Special Master Herbrina Sanders. (sh) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 7/22/24) regarding [29] DECISION of Special Master", "case_name_shorts": "Probst" }, { @@ -8010,9 +8010,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-346V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [24] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0346V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [24] DECISION Stipulation/Proffer", "case_name_shorts": "Prindle" }, { @@ -8022,9 +8022,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-531V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/08/2024) regarding [43] Findings of Fact & Conclusions of Law, Scheduling Order. ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "20-0531V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/08/2024) regarding [43] Findings of Fact & Conclusions of Law, Scheduling Order", "case_name_shorts": "" }, { @@ -8034,9 +8034,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-672V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/18/2024) regarding [92] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "20-0672V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/18/2024) regarding [92] DECISION of Special Master", "case_name_shorts": "Jaye" }, { @@ -8046,9 +8046,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "09-453V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 07/16/2024) regarding [398] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "09-0453V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 07/16/2024) regarding [398] DECISION of Special Master - Fees", "case_name_shorts": "Hodge" }, { @@ -8059,8 +8059,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1309V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/02/2024) regarding [50] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/02/2024) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Young" }, { @@ -8070,9 +8070,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-192V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 7/9/2024) regarding [143] DECISION Stipulation. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "docket_numbers": "19-0192V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 7/9/2024) regarding [143] DECISION Stipulation", "case_name_shorts": "Ward" }, { @@ -8083,8 +8083,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1879V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 7/9/2024) regarding [39] DECISION Proffer. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 7/9/2024) regarding [39] DECISION Proffer", "case_name_shorts": "Wagner" }, { @@ -8094,9 +8094,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-153V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/28/2024) regarding [45] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0153V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/28/2024) regarding [45] Ruling on Entitlement", "case_name_shorts": "Tompkins" }, { @@ -8107,8 +8107,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1540V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/02/2024) regarding [28] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/02/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Tolar" }, { @@ -8119,8 +8119,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1963V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [52] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [52] DECISION Stipulation/Proffer", "case_name_shorts": "Swales" }, { @@ -8130,9 +8130,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-817V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/01/2024) regarding [40] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0817V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/01/2024) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "Roberts" }, { @@ -8143,8 +8143,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1642V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [58] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [58] DECISION of Special Master - Fees", "case_name_shorts": "Quinones" }, { @@ -8154,9 +8154,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-79V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [37] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0079V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [37] DECISION of Special Master - Fees", "case_name_shorts": "Phoneprasith" }, { @@ -8166,9 +8166,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-334V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/02/2024) regarding [57] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0334V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/02/2024) regarding [57] DECISION of Special Master - Fees", "case_name_shorts": "Lenhart" }, { @@ -8178,9 +8178,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-502V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [27] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0502V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -8191,8 +8191,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1640V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/02/2024) regarding [29] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/02/2024) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "Harlow" }, { @@ -8203,8 +8203,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1406V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [31] DECISION of Special Master, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [31] DECISION of Special Master", "case_name_shorts": "Grant" }, { @@ -8215,8 +8215,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1864V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [38] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [38] DECISION of Special Master - Fees", "case_name_shorts": "Cook" }, { @@ -8227,8 +8227,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1139V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/01/2024 ) regarding [49] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/01/2024 ) regarding [49] DECISION Stipulation/Proffer", "case_name_shorts": "Buchanan" }, { @@ -8238,9 +8238,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-353V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [66] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "20-0353V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [66] DECISION of Special Master - Fees", "case_name_shorts": "Blunt" }, { @@ -8250,9 +8250,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-381V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/02/2024) regarding [38] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0381V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/02/2024) regarding [38] Ruling on Entitlement", "case_name_shorts": "Arrington" }, { @@ -8263,8 +8263,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1518V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 7/11/2024) regarding [57] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Mindy Michaels Roth. (msg) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 7/11/2024) regarding [57] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Wilson-Noble" }, { @@ -8274,9 +8274,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-65V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/02/2024) regarding [46] Ruling on Entitlement and DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0065V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/02/2024) regarding [46] Ruling on Entitlement and DECISION of Special Master", "case_name_shorts": "Turnquest" }, { @@ -8287,8 +8287,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1044V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [38] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/03/2024) regarding [38] DECISION of Special Master", "case_name_shorts": "Tisdel" }, { @@ -8299,8 +8299,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1228V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/03/2024) regarding [38] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/03/2024) regarding [38] Ruling on Entitlement", "case_name_shorts": "Sharpe" }, { @@ -8311,8 +8311,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1445V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 7/8/2024) regarding [78] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 7/8/2024) regarding [78] DECISION Stipulation/Proffer", "case_name_shorts": "Schwalbe" }, { @@ -8322,9 +8322,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-896V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [57] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "20-0896V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [57] DECISION of Special Master - Fees", "case_name_shorts": "Robison" }, { @@ -8334,9 +8334,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-104V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/01/2024) regarding [28] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0104V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/01/2024) regarding [28] Ruling on Entitlement", "case_name_shorts": "Pomeroy" }, { @@ -8346,9 +8346,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-403V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [53] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0403V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [53] DECISION of Special Master - Fees", "case_name_shorts": "Nunes" }, { @@ -8358,9 +8358,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-871V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/02/2024) regarding [42] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0871V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/02/2024) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -8371,8 +8371,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1767V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/02/2024) regarding [20] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/02/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "Maschmeyer" }, { @@ -8382,9 +8382,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-15V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 6/26/2024) regarding [37] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "docket_numbers": "23-0015V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 6/26/2024) regarding [37] DECISION of Special Master", "case_name_shorts": "Horowitz" }, { @@ -8395,8 +8395,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1896V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 6/27/2024) regarding [47] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 6/27/2024) regarding [47] DECISION Stipulation/Proffer", "case_name_shorts": "Frempter" }, { @@ -8407,8 +8407,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1806V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/02/2024) regarding [35] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/02/2024) regarding [35] DECISION of Special Master - Fees", "case_name_shorts": "Dowd" }, { @@ -8419,8 +8419,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1845V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 4/18/2024) regarding [39] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 4/18/2024) regarding [39] DECISION of Special Master", "case_name_shorts": "Chrisman" }, { @@ -8431,8 +8431,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1336V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 7/2/2024) regarding [31] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 7/2/2024) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "BARRON" }, { @@ -8443,8 +8443,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2011V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 7/8/2024) regarding [39] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 7/8/2024) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "Ames" }, { @@ -8455,8 +8455,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1632V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [55] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [55] DECISION Stipulation/Proffer", "case_name_shorts": "Vega" }, { @@ -8466,9 +8466,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-627V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [61] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0627V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [61] DECISION Stipulation/Proffer", "case_name_shorts": "Stoddard" }, { @@ -8478,9 +8478,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-293V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/26/2024) regarding [28] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0293V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/26/2024) regarding [28] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -8490,9 +8490,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-851V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [23] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0851V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [23] DECISION Stipulation/Proffer", "case_name_shorts": "Regan" }, { @@ -8502,9 +8502,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-851V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/28/2024) regarding [22] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0851V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/28/2024) regarding [22] Ruling on Entitlement", "case_name_shorts": "Regan" }, { @@ -8514,9 +8514,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-949V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/02/2024) regarding [19] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0949V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/02/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Kawashiri" }, { @@ -8527,8 +8527,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1749V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/25/2024) regarding [36] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/25/2024) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Hammond" }, { @@ -8538,9 +8538,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-682V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [40] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0682V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [40] DECISION of Special Master", "case_name_shorts": "Double" }, { @@ -8551,8 +8551,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1530V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/27/2024) regarding [18] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/27/2024) regarding [18] Ruling on Entitlement", "case_name_shorts": "Davidson" }, { @@ -8562,9 +8562,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-746V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [25] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0746V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "Davidson" }, { @@ -8575,8 +8575,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2008V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [20] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [20] DECISION Stipulation/Proffer", "case_name_shorts": "Curry" }, { @@ -8587,8 +8587,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2008V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/28/2024) regarding [19] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/28/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Curry" }, { @@ -8598,9 +8598,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-818V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/01/2024) regarding [55] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0818V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 07/01/2024) regarding [55] Ruling on Entitlement", "case_name_shorts": "Chovanec" }, { @@ -8610,9 +8610,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-572V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [67] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0572V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [67] DECISION Stipulation/Proffer", "case_name_shorts": "C." }, { @@ -8623,8 +8623,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2198V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [68] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [68] DECISION of Special Master - Fees", "case_name_shorts": "Brodeur" }, { @@ -8634,9 +8634,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-686V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [56] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0686V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [56] DECISION of Special Master - Fees", "case_name_shorts": "Blaine" }, { @@ -8646,9 +8646,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-300V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [46] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0300V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [46] DECISION Stipulation/Proffer", "case_name_shorts": "Ahmadi" }, { @@ -8659,8 +8659,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1788V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/01/2024) regarding [42] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/01/2024) regarding [42] DECISION Stipulation/Proffer", "case_name_shorts": "White" }, { @@ -8670,9 +8670,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-488V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/01/2024) regarding [69] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0488V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/01/2024) regarding [69] DECISION Stipulation/Proffer", "case_name_shorts": "O&039;connell" }, { @@ -8682,9 +8682,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-899V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/02/2024) regarding [49] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0899V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/02/2024) regarding [49] DECISION Stipulation/Proffer", "case_name_shorts": "Bourne" }, { @@ -8695,8 +8695,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2082V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [40] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran.) (mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Rio-Tsonis" }, { @@ -8707,8 +8707,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2166V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 07/08/202) regarding [61] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 07/08/202) regarding [61] DECISION of Special Master - Fees", "case_name_shorts": "Scarboro" }, { @@ -8719,8 +8719,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2060V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 7/3/2024) regarding [10] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 7/3/2024) regarding [10] DECISION of Special Master", "case_name_shorts": "Robertson" }, { @@ -8730,9 +8730,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-501V", - "judges": "C. Moran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/07/2024) regarding [120] Ruling on Entitlement Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "19-0501V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/07/2024) regarding [120] Ruling on Entitlement", "case_name_shorts": "Lane" }, { @@ -8742,9 +8742,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-470V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [51] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0470V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [51] DECISION Stipulation/Proffer", "case_name_shorts": "Hoffken" }, { @@ -8755,8 +8755,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1675V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/26/2024) regarding [41] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/26/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Frink" }, { @@ -8767,8 +8767,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1271V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/28/2024) regarding [20] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/28/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "Frecka" }, { @@ -8779,8 +8779,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1361V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/26/2024) regarding [27] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/26/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Disantis" }, { @@ -8790,9 +8790,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-751V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 6/27/24) regarding [26] DECISION Stipulation/Proffer. Signed by Special Master Herbrina Sanders. (sh) Service on parties made.", + "docket_numbers": "23-0751V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 6/27/24) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Clements" }, { @@ -8803,8 +8803,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1671V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/28/2024) regarding [25] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/28/2024) regarding [25] Ruling on Entitlement", "case_name_shorts": "Brown" }, { @@ -8814,9 +8814,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-149V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [56] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0149V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [56] DECISION of Special Master", "case_name_shorts": "Beatrice" }, { @@ -8827,8 +8827,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1725V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/26/2024) regarding [34] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/26/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Battung" }, { @@ -8839,8 +8839,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1243V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [62] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [62] DECISION of Special Master - Fees", "case_name_shorts": "Stoutenburg" }, { @@ -8850,9 +8850,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-255V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [31] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0255V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/27/2024) regarding [31] DECISION of Special Master - Fees", "case_name_shorts": "Sharma" }, { @@ -8863,8 +8863,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1704V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/24/2024) regarding [18] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/24/2024) regarding [18] Ruling on Entitlement", "case_name_shorts": "Rosati" }, { @@ -8874,9 +8874,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-70V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [57] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0070V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [57] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -8887,8 +8887,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1107V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 7/1/2024) regarding [101] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 7/1/2024) regarding [101] DECISION Stipulation/Proffer", "case_name_shorts": "Pickens" }, { @@ -8898,9 +8898,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-667V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [33] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0667V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Photopoulos" }, { @@ -8911,8 +8911,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1937V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/28/2024) regarding [53] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/28/2024) regarding [53] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -8923,8 +8923,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1560V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 07/08/2024) regarding [64] DECISION of Special Master Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 07/08/2024) regarding [64] DECISION of Special Master", "case_name_shorts": "Koonce" }, { @@ -8935,8 +8935,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1457V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [36] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [36] DECISION of Special Master - Fees", "case_name_shorts": "Ingalsbe" }, { @@ -8946,9 +8946,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-491V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [58] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0491V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/28/2024) regarding [58] DECISION Stipulation/Proffer", "case_name_shorts": "Coss" }, { @@ -8959,8 +8959,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1907V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 7/2/2024) regarding [47] DECISION Stipulation. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 7/2/2024) regarding [47] DECISION Stipulation", "case_name_shorts": "Askins" }, { @@ -8970,9 +8970,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-536V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [30] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0536V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Wakefield" }, { @@ -8982,9 +8982,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-545V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [36] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0545V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [36] DECISION of Special Master - Fees", "case_name_shorts": "Taylor" }, { @@ -8995,8 +8995,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2341V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/25/2024) regarding [33] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/25/2024) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Sullivan" }, { @@ -9006,9 +9006,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-825V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/25/2024) regarding [24] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0825V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/25/2024) regarding [24] DECISION Stipulation/Proffer", "case_name_shorts": "Sawyer" }, { @@ -9018,9 +9018,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-535V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/25/2024) regarding [44] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0535V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/25/2024) regarding [44] DECISION Stipulation/Proffer", "case_name_shorts": "Roland" }, { @@ -9031,8 +9031,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1852V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/26/2024) regarding [24] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/26/2024) regarding [24] DECISION Stipulation/Proffer", "case_name_shorts": "Oliver" }, { @@ -9042,9 +9042,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-598V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/25/2024) regarding [61] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0598V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/25/2024) regarding [61] DECISION of Special Master - Fees", "case_name_shorts": "McDaniel" }, { @@ -9054,9 +9054,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-522V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [46] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0522V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Keith" }, { @@ -9066,9 +9066,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-233V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/26/2024 ) regarding [27] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0233V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/26/2024 ) regarding [27] Ruling on Entitlement", "case_name_shorts": "Keflezighi" }, { @@ -9078,9 +9078,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-804V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/25/2024) regarding [21] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0804V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/25/2024) regarding [21] Ruling on Entitlement", "case_name_shorts": "Howard-Lucas" }, { @@ -9090,9 +9090,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-485V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [25] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0485V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "Hershberger" }, { @@ -9103,8 +9103,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1661V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [55] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [55] DECISION of Special Master - Fees", "case_name_shorts": "Flores" }, { @@ -9115,8 +9115,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2043V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/20/2024) regarding [20] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/20/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "Ellis" }, { @@ -9126,9 +9126,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-540V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/26/2024) regarding [38] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0540V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/26/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Eger" }, { @@ -9138,9 +9138,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-699V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/25/2024 ) regarding [40] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0699V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/25/2024 ) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Conn" }, { @@ -9151,8 +9151,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2045V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [53] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [53] DECISION of Special Master - Fees", "case_name_shorts": "Cliver" }, { @@ -9162,9 +9162,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-609V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/25/2024) regarding [56] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0609V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/25/2024) regarding [56] DECISION of Special Master - Fees", "case_name_shorts": "Blackmon" }, { @@ -9174,9 +9174,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-698V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/25/2024) regarding [51] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0698V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/25/2024) regarding [51] DECISION of Special Master - Fees", "case_name_shorts": "Bean" }, { @@ -9186,9 +9186,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-814V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [25] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0814V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "Thomas" }, { @@ -9199,8 +9199,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1813V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [35] DECISION of Special Master - Fees (Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [35] DECISION of Special Master - Fees", "case_name_shorts": "Risner" }, { @@ -9210,9 +9210,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-847V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [31] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0847V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [31] DECISION of Special Master - Fees", "case_name_shorts": "Portner" }, { @@ -9222,9 +9222,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-607V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [41] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0607V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Morrison" }, { @@ -9234,9 +9234,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-524V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [41] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0524V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/24/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "McCann" }, { @@ -9246,9 +9246,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-240V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/25/2024) regarding [49] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0240V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/25/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Issa" }, { @@ -9258,9 +9258,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-870V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/24/2024) regarding [21] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0870V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/24/2024) regarding [21] Ruling on Entitlement", "case_name_shorts": "Gorlinski" }, { @@ -9270,9 +9270,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-248V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/25/2024) regarding [33] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0248V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/25/2024) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Cangas" }, { @@ -9282,9 +9282,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-322V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/18/2024) regarding [45] Findings of Fact & Conclusions of Law,, Order to Show Cause, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "20-0322V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/18/2024) regarding [45] Findings of Fact & Conclusions of Law,, Order to Show Cause", "case_name_shorts": "Taylor" }, { @@ -9295,8 +9295,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1120V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/18/2024) regarding [42] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/18/2024) regarding [42] DECISION Stipulation/Proffer", "case_name_shorts": "Sessoms" }, { @@ -9307,8 +9307,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1550V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/21/2024) regarding [34] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/21/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Schmidt" }, { @@ -9318,9 +9318,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-292V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/20/2024) regarding [57] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0292V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/20/2024) regarding [57] DECISION Stipulation/Proffer", "case_name_shorts": "King" }, { @@ -9331,8 +9331,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "14-1140V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 6/28/2024) regarding [165] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 6/28/2024) regarding [165] DECISION of Special Master", "case_name_shorts": "Greenslade" }, { @@ -9343,8 +9343,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2282V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/20/2024) regarding [46] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/20/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Barefield" }, { @@ -9354,9 +9354,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-107V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/20/2024) regarding [41] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0107V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/20/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Rivera" }, { @@ -9366,9 +9366,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-667V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/18/2024) regarding [35] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0667V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/18/2024) regarding [35] DECISION Stipulation/Proffer", "case_name_shorts": "Poulin" }, { @@ -9379,8 +9379,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1899V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 6/28/2024) regarding [18] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 6/28/2024) regarding [18] Order Concluding Proceedings", "case_name_shorts": "Parks" }, { @@ -9391,8 +9391,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1520V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 6/25/2024) regarding [14] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 6/25/2024) regarding [14] Order Concluding Proceedings", "case_name_shorts": "Misner" }, { @@ -9403,8 +9403,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1927V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 6/26/2024) regarding [14] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 6/26/2024) regarding [14] DECISION of Special Master", "case_name_shorts": "Hines" }, { @@ -9414,9 +9414,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-332V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/18/2024) regarding [54] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0332V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/18/2024) regarding [54] DECISION Stipulation/Proffer", "case_name_shorts": "Hendricks" }, { @@ -9427,8 +9427,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1926V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 6/26/2024) regarding [17] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 6/26/2024) regarding [17] DECISION of Special Master", "case_name_shorts": "Helton" }, { @@ -9439,8 +9439,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1012V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/20/2024) regarding [53] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/20/2024) regarding [53] DECISION Stipulation/Proffer", "case_name_shorts": "Hamilton" }, { @@ -9451,8 +9451,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1577V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 6/25/2024) regarding [59] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 6/25/2024) regarding [59] DECISION Stipulation/Proffer", "case_name_shorts": "Childress" }, { @@ -9463,8 +9463,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1300V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/18/2024) regarding [54] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/18/2024) regarding [54] DECISION Stipulation/Proffer", "case_name_shorts": "Brust" }, { @@ -9474,9 +9474,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-361V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/18/2024) regarding [39] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0361V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/18/2024) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Wade" }, { @@ -9486,9 +9486,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-207V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/13/2024) regarding [30] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0207V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/13/2024) regarding [30] Ruling on Entitlement", "case_name_shorts": "Toothman" }, { @@ -9498,9 +9498,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-786V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/18/2024 ) regarding [19] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0786V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/18/2024 ) regarding [19] DECISION Stipulation/Proffer", "case_name_shorts": "Susie" }, { @@ -9511,8 +9511,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1152V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/18/2024) regarding [25] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/18/2024) regarding [25] Ruling on Entitlement", "case_name_shorts": "Schaefer" }, { @@ -9523,8 +9523,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1245V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/12/2024) regarding [38] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made. Modified on 7/22/2024 to correct PDF (tjk).", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/12/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Ramarui" }, { @@ -9535,8 +9535,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1097V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/12/2024) regarding [58] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/12/2024) regarding [58] DECISION of Special Master - Fees", "case_name_shorts": "Plavnik" }, { @@ -9547,8 +9547,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1886V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/14/2024) regarding [25] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/14/2024) regarding [25] Ruling on Entitlement", "case_name_shorts": "Ling" }, { @@ -9559,8 +9559,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2032V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/14/2024) regarding [65] DECISION Stipulation/Proffer, (1)Signed by Chief Special Master Brian H. Corcoran. (mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/14/2024) regarding [65] DECISION Stipulation/Proffer, (1", "case_name_shorts": "Kershaw" }, { @@ -9570,9 +9570,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-827V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 6/26/2024) regarding [80] DECISION of Special Master. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "docket_numbers": "21-0827V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 6/26/2024) regarding [80] DECISION of Special Master", "case_name_shorts": "Kelly" }, { @@ -9583,8 +9583,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1025V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/12/2024) regarding [47] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/12/2024) regarding [47] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -9594,9 +9594,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-924V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/18/2024) regarding [23] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0924V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/18/2024) regarding [23] Ruling on Entitlement", "case_name_shorts": "Garrett" }, { @@ -9607,8 +9607,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1913V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/20/2024) regarding [72] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/20/2024) regarding [72] DECISION of Special Master - Fees", "case_name_shorts": "Garrett" }, { @@ -9618,9 +9618,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-850V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/13/2024) regarding [29] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0850V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/13/2024) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "Engel" }, { @@ -9631,8 +9631,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1755V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/20/2024) regarding [43] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/20/2024) regarding [43] Ruling on Entitlement", "case_name_shorts": "Dixon" }, { @@ -9643,8 +9643,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1793V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/20/2024) regarding [51] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/20/2024) regarding [51] DECISION Stipulation/Proffer", "case_name_shorts": "Cardinal" }, { @@ -9655,8 +9655,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2053V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/18/2024) regarding [14] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/18/2024) regarding [14] Ruling on Entitlement", "case_name_shorts": "Bruxvoort" }, { @@ -9667,8 +9667,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1605V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/20/2024 ) regarding [27] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/20/2024 ) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Babb" }, { @@ -9678,9 +9678,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-359V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/18/2024) regarding [43] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0359V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/18/2024) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Vangsness" }, { @@ -9690,9 +9690,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-643V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 6/27/2024) regarding [63] DECISION Stipulation/Proffer Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "22-0643V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 6/27/2024) regarding [63] DECISION Stipulation/Proffer", "case_name_shorts": "Rondinaro" }, { @@ -9702,9 +9702,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-886V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/14/2024) regarding [40] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0886V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/14/2024) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "Lopez" }, { @@ -9714,9 +9714,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-351V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/13/2024) regarding [69] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "20-0351V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/13/2024) regarding [69] DECISION of Special Master - Fees", "case_name_shorts": "Larson" }, { @@ -9727,8 +9727,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2032V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/12/2024) regarding [73] Order on Motion to Redact Decision ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/12/2024) regarding [73] Order on Motion to Redact Decision", "case_name_shorts": "Kershaw" }, { @@ -9739,8 +9739,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1882V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/13/2024) regarding [97] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/13/2024) regarding [97] DECISION of Special Master - Fees", "case_name_shorts": "Joyce" }, { @@ -9750,9 +9750,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-255V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/12/2024) regarding [43] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0255V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/12/2024) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Hagkull" }, { @@ -9763,8 +9763,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1049V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/18/2024) regarding [19] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/18/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Dziuban" }, { @@ -9775,8 +9775,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1750V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/05/2023) regarding [78] DECISION of Special Master, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/05/2023) regarding [78] DECISION of Special Master", "case_name_shorts": "Civatte" }, { @@ -9787,8 +9787,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1931V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/12/2024) regarding [53] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/12/2024) regarding [53] DECISION Stipulation/Proffer", "case_name_shorts": "Chew" }, { @@ -9799,8 +9799,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2053V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/18/2024) regarding [15] Damages Order, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/18/2024) regarding [15] Damages Order", "case_name_shorts": "Bruxvoort" }, { @@ -9811,8 +9811,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2164V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/11/2024) regarding [42] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/11/2024) regarding [42] DECISION of Special Master", "case_name_shorts": "" }, { @@ -9822,9 +9822,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-465V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/18/2024) regarding [30] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0465V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/18/2024) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Appel" }, { @@ -9834,9 +9834,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-200V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/14/2024) regarding [22] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0200V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/14/2024) regarding [22] Ruling on Entitlement", "case_name_shorts": "Anderson" }, { @@ -9846,9 +9846,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-155V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/04/2024) regarding [28] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0155V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/04/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Ahmed" }, { @@ -9859,8 +9859,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2013V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/14/2024) regarding [58] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/14/2024) regarding [58] DECISION Stipulation/Proffer", "case_name_shorts": "Ritter" }, { @@ -9871,8 +9871,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1463V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 6/12/2024) regarding [105] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 6/12/2024) regarding [105] DECISION of Special Master", "case_name_shorts": "Neuss-Guillen" }, { @@ -9883,8 +9883,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1893V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/12/2024) regarding [31] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/12/2024) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Magoon" }, { @@ -9895,8 +9895,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1771V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/14/2024) regarding [23] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/14/2024) regarding [23] Ruling on Entitlement", "case_name_shorts": "Keith" }, { @@ -9907,8 +9907,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1087V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/12/2024) regarding [21] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/12/2024) regarding [21] Ruling on Entitlement", "case_name_shorts": "John" }, { @@ -9919,8 +9919,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1599V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/14/2024) regarding [18] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/14/2024) regarding [18] Ruling on Entitlement", "case_name_shorts": "Bravo" }, { @@ -9931,8 +9931,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1416V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 6/25/2024) regarding [97] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 6/25/2024) regarding [97] DECISION of Special Master - Fees", "case_name_shorts": "Brantley" }, { @@ -9943,8 +9943,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1306V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 6/13/2024) regarding [25] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 6/13/2024) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "Bowie" }, { @@ -9954,9 +9954,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-597V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/14/2024) regarding [27] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0597V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/14/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Zabala" }, { @@ -9966,9 +9966,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-120V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/14/2024) regarding [48] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0120V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/14/2024) regarding [48] DECISION Stipulation/Proffer", "case_name_shorts": "Wallach" }, { @@ -9979,8 +9979,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1659V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 6/21/2024) regarding [17] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 6/21/2024) regarding [17] Order Concluding Proceedings", "case_name_shorts": "Vokurka" }, { @@ -9990,9 +9990,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-659V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/10/2024) regarding [39] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0659V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/10/2024) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Tronolone" }, { @@ -10002,9 +10002,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-454V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/10/2024) regarding [52] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0454V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/10/2024) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Suba" }, { @@ -10015,8 +10015,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1493V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/10/2024) regarding [31] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/10/2024) regarding [31] Ruling on Entitlement", "case_name_shorts": "Schweighauser" }, { @@ -10026,9 +10026,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-591V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/11/2024) regarding [21] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0591V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/11/2024) regarding [21] Ruling on Entitlement", "case_name_shorts": "Rodriguez" }, { @@ -10038,9 +10038,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-876V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/10/2024 ) regarding [40] Ruling on Entitlement,, Scheduling Order, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0876V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/10/2024 ) regarding [40] Ruling on Entitlement,, Scheduling Order", "case_name_shorts": "Rodriguez" }, { @@ -10051,8 +10051,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1157V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/11/2024) regarding [26] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/11/2024) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Ngo" }, { @@ -10063,8 +10063,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1662V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/11/2024) regarding [45] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/11/2024) regarding [45] DECISION of Special Master", "case_name_shorts": "Mates" }, { @@ -10075,8 +10075,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1260V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/12/2024) regarding [30] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/12/2024) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Hay" }, { @@ -10086,9 +10086,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-745V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/13/2024) regarding [22] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0745V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/13/2024) regarding [22] DECISION Stipulation/Proffer", "case_name_shorts": "Hampton" }, { @@ -10099,8 +10099,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1909V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 6/18/2024) regarding [13] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 6/18/2024) regarding [13] DECISION of Special Master", "case_name_shorts": "Federline" }, { @@ -10110,9 +10110,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-697V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/12/2024) regarding [50] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0697V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/12/2024) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Briggs" }, { @@ -10122,9 +10122,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-837V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/10/2024) regarding [47] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0837V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/10/2024) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Blake" }, { @@ -10135,8 +10135,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1662V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/06/2024) regarding [37] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/06/2024) regarding [37] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -10146,9 +10146,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-495V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/11/2024) regarding [44] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0495V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/11/2024) regarding [44] DECISION of Special Master", "case_name_shorts": "Vandyke" }, { @@ -10159,8 +10159,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1316V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/05/2024 ) regarding [44] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/05/2024 ) regarding [44] DECISION of Special Master", "case_name_shorts": "Plaut" }, { @@ -10170,9 +10170,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-38V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/07/2024) regarding [48] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0038V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/07/2024) regarding [48] DECISION Stipulation/Proffer", "case_name_shorts": "Nava" }, { @@ -10183,8 +10183,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1243V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 6/28/24) regarding [65] Ruling on Entitlement. Signed by Special Master Herbrina Sanders. (sh) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 6/28/24) regarding [65] Ruling on Entitlement", "case_name_shorts": "McNeely" }, { @@ -10195,8 +10195,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1965V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/11/2024) regarding [49] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/11/2024) regarding [49] DECISION of Special Master", "case_name_shorts": "Langner" }, { @@ -10206,9 +10206,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-49V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/03/2024) regarding [76] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "20-0049V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/03/2024) regarding [76] DECISION Stipulation/Proffer", "case_name_shorts": "Hutton" }, { @@ -10219,8 +10219,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1958V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/03/2024) regarding [53] Ruling on Entitlement, DECISION of Special Master, Order on Motion for Ruling on the Record Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/03/2024) regarding [53] Ruling on Entitlement, DECISION of Special Master, Order on Motion for Ruling on the Record", "case_name_shorts": "Field" }, { @@ -10231,8 +10231,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2054V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/04/2024) regarding [39] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/04/2024) regarding [39] DECISION of Special Master", "case_name_shorts": "Edgerson-Briggs" }, { @@ -10243,8 +10243,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1519V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/05/2024) regarding [31] Findings of Fact & Conclusions of Law,, Order to Show Cause, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/05/2024) regarding [31] Findings of Fact & Conclusions of Law,, Order to Show Cause", "case_name_shorts": "" }, { @@ -10254,9 +10254,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-223V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/05/2024) regarding [47] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0223V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/05/2024) regarding [47] DECISION Stipulation/Proffer", "case_name_shorts": "Culberson" }, { @@ -10266,9 +10266,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-186V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/11/2024) regarding [26] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0186V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/11/2024) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Corcoran" }, { @@ -10278,9 +10278,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-69V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 5/16/2024) regarding [84] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "docket_numbers": "17-0069V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 5/16/2024) regarding [84] DECISION of Special Master", "case_name_shorts": "C." }, { @@ -10290,9 +10290,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-204V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/10/2024) regarding [20] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0204V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/10/2024) regarding [20] DECISION Stipulation/Proffer", "case_name_shorts": "Baumann" }, { @@ -10302,9 +10302,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-204V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/10/2024) regarding [19] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0204V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/10/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Baumann" }, { @@ -10315,8 +10315,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1094V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/11/2024) regarding [43] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/11/2024) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Williamson" }, { @@ -10326,9 +10326,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-456V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 6/10/2024) regarding [47] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0456V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 6/10/2024) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -10338,9 +10338,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-337V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/10/2024) regarding [27] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0337V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/10/2024) regarding [27] Ruling on Entitlement", "case_name_shorts": "McKay" }, { @@ -10350,9 +10350,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-493V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/11/2024) regarding [25] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0493V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/11/2024) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "Marshall" }, { @@ -10363,8 +10363,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1445V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 6/11/2024) regarding [39] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 6/11/2024) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "Marshall" }, { @@ -10375,8 +10375,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2180V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 6/10/2024) regarding [46] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 6/10/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -10387,8 +10387,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1881V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/10/2024) regarding [39] Ruling on Entitlement, Order on Motion for Ruling on the Record. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/10/2024) regarding [39] Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "Harbison" }, { @@ -10399,8 +10399,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1556V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/10/2024) regarding [45] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/10/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Gilmore" }, { @@ -10411,8 +10411,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-1229V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 6/13/2024) regarding [105] DECISION of Special Master - Fees. Signed by Special Master Mindy Michaels Roth. (msg) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 6/13/2024) regarding [105] DECISION of Special Master - Fees", "case_name_shorts": "DAVIS" }, { @@ -10423,8 +10423,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1467V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 6/11/2024) regarding [24] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 6/11/2024) regarding [24] DECISION Stipulation/Proffer", "case_name_shorts": "Carter" }, { @@ -10434,9 +10434,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-912V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/11/2024) regarding [62] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0912V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/11/2024) regarding [62] DECISION Stipulation/Proffer", "case_name_shorts": "Brown" }, { @@ -10447,8 +10447,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1774V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/10/2024 ) regarding [34] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/10/2024 ) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Apfel" }, { @@ -10458,9 +10458,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-29V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/10/2024) regarding [43] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0029V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/10/2024) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "Reid" }, { @@ -10470,9 +10470,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-902V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/10/2024) regarding [19] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0902V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/10/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Losego" }, { @@ -10482,9 +10482,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-196V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/07/2024) regarding [37] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0196V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/07/2024) regarding [37] DECISION of Special Master - Fees", "case_name_shorts": "Tonjes" }, { @@ -10494,9 +10494,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-244V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/07/2024) regarding [37] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0244V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/07/2024) regarding [37] DECISION of Special Master - Fees", "case_name_shorts": "Schaeffer" }, { @@ -10506,9 +10506,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-380V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/07/2024) regarding [33] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0380V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/07/2024) regarding [33] DECISION of Special Master - Fees", "case_name_shorts": "Rini" }, { @@ -10519,8 +10519,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1739V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 6/14/2024) regarding [21] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 6/14/2024) regarding [21] Order Concluding Proceedings", "case_name_shorts": "Phillips" }, { @@ -10530,9 +10530,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-847V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/04/2024) regarding [23] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0847V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/04/2024) regarding [23] DECISION Stipulation/Proffer", "case_name_shorts": "Oh" }, { @@ -10543,8 +10543,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1810V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 6/14/2024) regarding [16] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 6/14/2024) regarding [16] Order Concluding Proceedings", "case_name_shorts": "Matsuda" }, { @@ -10554,9 +10554,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-451V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/10/2024) regarding [42] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0451V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/10/2024) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Mains" }, { @@ -10566,9 +10566,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-108V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/06/2024) regarding [40] Ruling on Entitlement, DECISION of Special Master, Order on Motion for Ruling on the Record Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0108V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/06/2024) regarding [40] Ruling on Entitlement, DECISION of Special Master, Order on Motion for Ruling on the Record", "case_name_shorts": "Leach" }, { @@ -10579,8 +10579,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1783V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 6/14/2024) regarding [17] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 6/14/2024) regarding [17] Order Concluding Proceedings", "case_name_shorts": "Lane-Lee" }, { @@ -10590,9 +10590,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-163V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/06/2024) regarding [48] DECISION of Special Master - Fees, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0163V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/06/2024) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Koehler" }, { @@ -10603,8 +10603,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2347V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 6/17/2024) regarding [44] DECISION of Special Master Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 6/17/2024) regarding [44] DECISION of Special Master", "case_name_shorts": "Kline" }, { @@ -10614,9 +10614,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-472V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/03/2024) regarding [49] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0472V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/03/2024) regarding [49] DECISION Stipulation/Proffer", "case_name_shorts": "Crete" }, { @@ -10626,9 +10626,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-122V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 6/18/2024) regarding [127] DECISION Stipulation/Proffer Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "17-0122V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 6/18/2024) regarding [127] DECISION Stipulation/Proffer", "case_name_shorts": "Bossenbroek" }, { @@ -10639,8 +10639,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1500V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/04/2024) regarding [19] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/04/2024) regarding [19] DECISION Stipulation/Proffer", "case_name_shorts": "Yankey" }, { @@ -10651,8 +10651,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1780V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/05/2024) regarding [40] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/05/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Weseman" }, { @@ -10662,9 +10662,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-121V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/04/2024) regarding [42] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0121V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/04/2024) regarding [42] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -10675,8 +10675,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-2016V", - "judges": "K. Oler", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/17/2024) regarding [19] Ruling on Entitlement. Signed by Special Master Katherine E. Oler. (saj) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/17/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Peacock" }, { @@ -10686,9 +10686,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-847V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/04/2024) regarding [22] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0847V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/04/2024) regarding [22] Ruling on Entitlement", "case_name_shorts": "Oh" }, { @@ -10698,9 +10698,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-936V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/05/2024) regarding [49] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0936V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/05/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "O&039;brien" }, { @@ -10710,9 +10710,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-663V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/03/2024) regarding [32] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0663V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/03/2024) regarding [32] DECISION Stipulation/Proffer", "case_name_shorts": "Newman" }, { @@ -10722,9 +10722,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-478V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/06/2024) regarding [40] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0478V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/06/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Matsel" }, { @@ -10735,8 +10735,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1936V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/07/2024) regarding [33] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/07/2024) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Martin" }, { @@ -10746,9 +10746,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-940V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/06/2024) regarding [37] Ruling on Entitlement (Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0940V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/06/2024) regarding [37] Ruling on Entitlement", "case_name_shorts": "Lowery" }, { @@ -10759,8 +10759,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1559V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/06/2024) regarding [33] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/06/2024) regarding [33] DECISION of Special Master - Fees", "case_name_shorts": "Long" }, { @@ -10771,8 +10771,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1374V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 6/17/24) regarding [65] DECISION of Special Master - Interim Attorney&039;s Fees Signed by Special Master Herbrina Sanders. (sh) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 6/17/24) regarding [65] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Krebs" }, { @@ -10782,9 +10782,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-874V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/04/2024) regarding [18] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0874V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/04/2024) regarding [18] Ruling on Entitlement", "case_name_shorts": "Hoctor" }, { @@ -10795,8 +10795,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1260V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/05/2024) regarding [27] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/05/2024) regarding [27] Ruling on Entitlement", "case_name_shorts": "Hay" }, { @@ -10806,9 +10806,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-292V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/06/2024) regarding [31] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0292V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/06/2024) regarding [31] DECISION of Special Master - Fees", "case_name_shorts": "Hambright" }, { @@ -10819,8 +10819,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1927V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/03/2024) regarding [40] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/03/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Grim" }, { @@ -10830,9 +10830,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-500V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/06/2024) regarding [43] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0500V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/06/2024) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "Greener" }, { @@ -10843,8 +10843,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1223V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 6/7/24) regarding [59] DECISION of Special Master Signed by Special Master Herbrina Sanders. (sh) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 6/7/24) regarding [59] DECISION of Special Master", "case_name_shorts": "Golden" }, { @@ -10854,9 +10854,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-988V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/03/2024) regarding [29] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0988V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/03/2024) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "Flaggs" }, { @@ -10866,9 +10866,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-94V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 6/12/2024) regarding [62] DECISION on Attorneys&039; Fees and Costs. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "docket_numbers": "20-0094V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 6/12/2024) regarding [62] DECISION on Attorneys&039; Fees and Costs", "case_name_shorts": "Doe" }, { @@ -10878,9 +10878,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-140V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/07/2024) regarding [70] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0140V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/07/2024) regarding [70] DECISION of Special Master - Fees", "case_name_shorts": "Blackmon" }, { @@ -10891,8 +10891,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1250V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/07/2024) regarding [41] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/07/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Begun" }, { @@ -10902,9 +10902,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-155V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/04/2024) regarding [27] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0155V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/04/2024) regarding [27] Ruling on Entitlement", "case_name_shorts": "Ahmed" }, { @@ -10914,9 +10914,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-592V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/10/2024) regarding [105] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "18-0592V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/10/2024) regarding [105] DECISION of Special Master - Fees", "case_name_shorts": "White" }, { @@ -10926,9 +10926,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-35V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 6/12/2024) regarding [61] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "22-0035V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 6/12/2024) regarding [61] DECISION of Special Master - Fees", "case_name_shorts": "Tulloch" }, { @@ -10938,9 +10938,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-266V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 6/11/2024) regarding [225] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "docket_numbers": "14-0266V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 6/11/2024) regarding [225] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "" }, { @@ -10951,8 +10951,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1002V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 6/13/2024) regarding [138] DECISION of Special Master - Interim Attorney&039;s Fees Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 6/13/2024) regarding [138] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Thornton" }, { @@ -10962,9 +10962,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-879V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [41] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0879V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [41] DECISION of Special Master", "case_name_shorts": "S." }, { @@ -10975,8 +10975,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1201V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 6/12/2024) regarding [71] DECISION of Special Master - Interim Attorney&039;s Fees Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 6/12/2024) regarding [71] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Quick" }, { @@ -10986,9 +10986,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-205V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/07/2024) regarding [26] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0205V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/07/2024) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Pope" }, { @@ -10998,9 +10998,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-491V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/04/2024) regarding [23] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0491V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/04/2024) regarding [23] Ruling on Entitlement", "case_name_shorts": "Granet" }, { @@ -11010,9 +11010,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-671V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/05/2024) regarding [55] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0671V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/05/2024) regarding [55] DECISION of Special Master - Fees", "case_name_shorts": "Gonzalez" }, { @@ -11022,9 +11022,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-855V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/10/2024) regarding [81] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "20-0855V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/10/2024) regarding [81] DECISION of Special Master - Fees", "case_name_shorts": "Fisher" }, { @@ -11035,8 +11035,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1267V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 6/12/2024) regarding [46] DECISION Stipulation. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 6/12/2024) regarding [46] DECISION Stipulation", "case_name_shorts": "Duncan" }, { @@ -11046,9 +11046,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-915V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/07/2024) regarding [29] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0915V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/07/2024) regarding [29] DECISION of Special Master - Fees", "case_name_shorts": "Capobianco-Petras" }, { @@ -11058,9 +11058,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-572V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/10/2024) regarding [56] Ruling on Entitlement, Order on Motion for Ruling on the Record ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0572V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/10/2024) regarding [56] Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "C." }, { @@ -11071,8 +11071,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1300V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/05/2024) regarding [51] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/05/2024) regarding [51] Ruling on Entitlement", "case_name_shorts": "Brust" }, { @@ -11083,8 +11083,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2290V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/05/2024) regarding [42] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/05/2024) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Blake" }, { @@ -11094,9 +11094,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-118V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/04/2024) regarding [43] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0118V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/04/2024) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Taing" }, { @@ -11107,8 +11107,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1360V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/04/2024) regarding [21] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/04/2024) regarding [21] DECISION Stipulation/Proffer", "case_name_shorts": "McCarthy" }, { @@ -11119,8 +11119,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1158V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/04/2024) regarding [22] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/04/2024) regarding [22] Ruling on Entitlement", "case_name_shorts": "Brown-Wysocki" }, { @@ -11130,9 +11130,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-216V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/03/2024) regarding [30] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0216V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/03/2024) regarding [30] DECISION of Special Master - Fees", "case_name_shorts": "Au" }, { @@ -11143,8 +11143,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1538V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 6/5/2024) regarding [78] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 6/5/2024) regarding [78] DECISION of Special Master - Fees", "case_name_shorts": "WHITEHEAD" }, { @@ -11155,8 +11155,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1963V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/31/2024) regarding [47] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/31/2024) regarding [47] Ruling on Entitlement", "case_name_shorts": "Swales" }, { @@ -11166,9 +11166,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-115V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [41] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0115V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Sims" }, { @@ -11179,8 +11179,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1990V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [51] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [51] DECISION Stipulation/Proffer", "case_name_shorts": "Savage-Davis" }, { @@ -11190,9 +11190,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-583V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 6/3/2024) regarding [45] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "docket_numbers": "20-0583V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 6/3/2024) regarding [45] DECISION of Special Master", "case_name_shorts": "RAMOS" }, { @@ -11202,9 +11202,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-18V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/28/2024) regarding [34] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0018V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/28/2024) regarding [34] DECISION of Special Master - Fees", "case_name_shorts": "Kane" }, { @@ -11215,8 +11215,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1798V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [37] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Helldoerfer" }, { @@ -11226,9 +11226,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-197V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 06/10/2024) regarding [36] DECISION Stipulation/Proffer Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "23-0197V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 06/10/2024) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Hannon" }, { @@ -11239,8 +11239,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1575V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 06/11/2024 ) regarding [76] DECISION Stipulation/Proffer Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 06/11/2024 ) regarding [76] DECISION Stipulation/Proffer", "case_name_shorts": "Hales" }, { @@ -11251,8 +11251,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1819V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/29/2024 ) regarding [39] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/29/2024 ) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "Fowler" }, { @@ -11262,9 +11262,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-599V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [51] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0599V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [51] DECISION Stipulation/Proffer", "case_name_shorts": "Bacon" }, { @@ -11275,8 +11275,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1571V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 06/07/2024) regarding [69] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 06/07/2024) regarding [69] DECISION of Special Master - Fees", "case_name_shorts": "Wirsen" }, { @@ -11287,8 +11287,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1762V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 6/7/2024) regarding [20] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 6/7/2024) regarding [20] Order Concluding Proceedings", "case_name_shorts": "THORNBURG" }, { @@ -11298,9 +11298,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-879V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/15/2024) regarding [45] Order on Motion to Redact Decision ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0879V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/15/2024) regarding [45] Order on Motion to Redact Decision", "case_name_shorts": "S." }, { @@ -11311,8 +11311,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1486V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 6/7/2024) regarding [37] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 6/7/2024) regarding [37] DECISION of Special Master - Fees", "case_name_shorts": "Ramsey" }, { @@ -11322,9 +11322,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-30V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [55] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0030V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [55] DECISION of Special Master - Fees", "case_name_shorts": "Nyarko" }, { @@ -11335,8 +11335,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1685V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/29/2024) regarding [29] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/29/2024) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "Nicholas" }, { @@ -11347,8 +11347,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1766V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 6/7/2024) regarding [20] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 6/7/2024) regarding [20] Order Concluding Proceedings", "case_name_shorts": "" }, { @@ -11358,9 +11358,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-431V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 06/10/2024) regarding [91] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "20-0431V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 06/10/2024) regarding [91] DECISION of Special Master - Fees", "case_name_shorts": "Mathis" }, { @@ -11371,8 +11371,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1832V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 6/5/2024) regarding [16] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 6/5/2024) regarding [16] DECISION of Special Master", "case_name_shorts": "Horochak" }, { @@ -11382,9 +11382,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-257V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 5/31/2024) regarding [28] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0257V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 5/31/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Hernandez" }, { @@ -11394,9 +11394,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-197V", - "judges": "C. Moran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/07/2024) regarding [35] Ruling on Entitlement Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "23-0197V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/07/2024) regarding [35] Ruling on Entitlement", "case_name_shorts": "Hannon" }, { @@ -11407,8 +11407,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1616V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 6/7/2024) regarding [19] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 6/7/2024) regarding [19] Order Concluding Proceedings", "case_name_shorts": "Eminente" }, { @@ -11419,8 +11419,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1303V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/06/2024) regarding [75] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/06/2024) regarding [75] DECISION of Special Master - Fees", "case_name_shorts": "Dennington" }, { @@ -11431,8 +11431,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1253V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [30] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Cato" }, { @@ -11442,9 +11442,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-572V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/23/2024) regarding [64] Order on Motion to Redact Decision,,, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0572V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/23/2024) regarding [64] Order on Motion to Redact Decision", "case_name_shorts": "C." }, { @@ -11454,9 +11454,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-781V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/16/2024) regarding [40] Findings of Fact & Conclusions of Law, Order Reassigning Case Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "20-0781V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/16/2024) regarding [40] Findings of Fact & Conclusions of Law, Order Reassigning Case Special Master", "case_name_shorts": "Byndloss" }, { @@ -11467,8 +11467,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1564V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 06/07/2024) regarding [101] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 06/07/2024) regarding [101] DECISION of Special Master - Fees", "case_name_shorts": "Brown" }, { @@ -11478,9 +11478,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-803V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [21] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0803V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [21] DECISION Stipulation/Proffer", "case_name_shorts": "West" }, { @@ -11490,9 +11490,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-360V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [28] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0360V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Ruocco" }, { @@ -11503,8 +11503,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1761V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/29/2024) regarding [71] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/29/2024) regarding [71] DECISION Stipulation/Proffer", "case_name_shorts": "Ruffolo" }, { @@ -11515,8 +11515,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1773V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [69] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [69] DECISION of Special Master - Fees", "case_name_shorts": "Ritchie" }, { @@ -11526,9 +11526,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-891V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/30/2024) regarding [47] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0891V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/30/2024) regarding [47] Ruling on Entitlement", "case_name_shorts": "Professori" }, { @@ -11538,9 +11538,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-231V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/31/2024) regarding [48] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0231V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/31/2024) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Myers" }, { @@ -11551,8 +11551,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1825V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [39] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "McCarthy" }, { @@ -11562,9 +11562,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-402V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [52] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0402V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Kersting" }, { @@ -11574,9 +11574,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-207V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 5/31/2024) regarding [42] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0207V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 5/31/2024) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Grue" }, { @@ -11586,9 +11586,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-313V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/31/2024) regarding [49] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0313V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/31/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Erb" }, { @@ -11598,9 +11598,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-798V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/31/2024) regarding [34] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0798V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/31/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Englert" }, { @@ -11611,8 +11611,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1123V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/28/2024) regarding [67] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/28/2024) regarding [67] DECISION of Special Master - Fees", "case_name_shorts": "Baxter" }, { @@ -11623,8 +11623,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1440V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/31/2024) regarding [29] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/31/2024) regarding [29] DECISION of Special Master - Fees", "case_name_shorts": "Bauer" }, { @@ -11634,9 +11634,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-914V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/31/2024) regarding [28] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0914V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/31/2024) regarding [28] Ruling on Entitlement", "case_name_shorts": "Amundsen" }, { @@ -11646,9 +11646,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-814V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/29/2024) regarding [22] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0814V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/29/2024) regarding [22] Ruling on Entitlement", "case_name_shorts": "Thomas" }, { @@ -11659,8 +11659,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1122V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/28/2024) regarding [21] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/28/2024) regarding [21] Ruling on Entitlement", "case_name_shorts": "Teitelbaum" }, { @@ -11670,9 +11670,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-411V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/29/2024) regarding [38] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0411V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/29/2024) regarding [38] DECISION of Special Master", "case_name_shorts": "Schutte" }, { @@ -11683,8 +11683,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1017V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 6/3/2024) regarding [55] DECISION Stipulation. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 6/3/2024) regarding [55] DECISION Stipulation", "case_name_shorts": "Hardy" }, { @@ -11695,8 +11695,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1151V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 06/06/2024) regarding [64] DECISION of Special Master Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 06/06/2024) regarding [64] DECISION of Special Master", "case_name_shorts": "Dowling" }, { @@ -11706,9 +11706,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-812V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/28/2024) regarding [37] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0812V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/28/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Brugueras" }, { @@ -11719,8 +11719,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1746V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/28/2024) regarding [46] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/28/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Boyer" }, { @@ -11731,8 +11731,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1315V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/29/2024) regarding [25] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/29/2024) regarding [25] Ruling on Entitlement", "case_name_shorts": "Bennett" }, { @@ -11742,9 +11742,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-125V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 6/3/2024) regarding [91] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "docket_numbers": "18-0125V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 6/3/2024) regarding [91] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -11755,8 +11755,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1422V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/24/2024) regarding [31] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/24/2024) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Wood" }, { @@ -11766,9 +11766,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-870V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/31/2024) regarding [54] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "21-0870V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/31/2024) regarding [54] DECISION of Special Master", "case_name_shorts": "Vanore" }, { @@ -11778,9 +11778,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-947V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/28/2024) regarding [37] Ruling on Entitlement,, Scheduling Order, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0947V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/28/2024) regarding [37] Ruling on Entitlement,, Scheduling Order", "case_name_shorts": "" }, { @@ -11791,8 +11791,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1677V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/23/2024) regarding [53] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/23/2024) regarding [53] DECISION of Special Master - Fees", "case_name_shorts": "Sears" }, { @@ -11803,8 +11803,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1121V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/28/2024) regarding [19] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/28/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Scott" }, { @@ -11814,9 +11814,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-273V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/21/2024) regarding [27] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0273V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/21/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Sawyers" }, { @@ -11827,8 +11827,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1720V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/28/2024) regarding [24] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/28/2024) regarding [24] Ruling on Entitlement", "case_name_shorts": "Ravshanova" }, { @@ -11838,9 +11838,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-978V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/28/2024) regarding [39] Findings of Fact & Conclusions of Law,, Order to Show Cause, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0978V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/28/2024) regarding [39] Findings of Fact & Conclusions of Law,, Order to Show Cause", "case_name_shorts": "Orban" }, { @@ -11850,9 +11850,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-374V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/24/2024) regarding [49] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0374V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/24/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Mann" }, { @@ -11862,9 +11862,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-914V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/24/2024) regarding [56] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0914V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/24/2024) regarding [56] DECISION of Special Master - Fees", "case_name_shorts": "Kelly" }, { @@ -11874,9 +11874,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-432V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/22/2024) regarding [23] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0432V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/22/2024) regarding [23] DECISION Stipulation/Proffer", "case_name_shorts": "Karol" }, { @@ -11886,9 +11886,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-649V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/21/2024) regarding [22] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0649V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/21/2024) regarding [22] DECISION Stipulation/Proffer", "case_name_shorts": "Goff" }, { @@ -11898,9 +11898,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-699V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/23/2024) regarding [23] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0699V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/23/2024) regarding [23] Ruling on Entitlement", "case_name_shorts": "Eldridge" }, { @@ -11910,9 +11910,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-129V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/24/2024) regarding [47] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0129V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/24/2024) regarding [47] DECISION of Special Master", "case_name_shorts": "Dixon" }, { @@ -11922,9 +11922,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-599V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/22/2024) regarding [48] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0599V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/22/2024) regarding [48] DECISION Stipulation/Proffer", "case_name_shorts": "Davies" }, { @@ -11935,8 +11935,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2030V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/20/2024) regarding [59] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/20/2024) regarding [59] DECISION Stipulation/Proffer", "case_name_shorts": "Bowen" }, { @@ -11946,9 +11946,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-21V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/22/2024) regarding [54] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0021V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/22/2024) regarding [54] DECISION Stipulation/Proffer", "case_name_shorts": "Bean" }, { @@ -11959,8 +11959,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1321V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/23/2024) regarding [21] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/23/2024) regarding [21] Ruling on Entitlement", "case_name_shorts": "Baker" }, { @@ -11970,9 +11970,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-122V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/21/2024) regarding [33] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0122V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/21/2024) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Allen" }, { @@ -11982,9 +11982,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-518V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [42] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "21-0518V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Wessinger" }, { @@ -11994,9 +11994,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-485V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/21/2024) regarding [61] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0485V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/21/2024) regarding [61] DECISION Stipulation/Proffer", "case_name_shorts": "Veltri" }, { @@ -12007,8 +12007,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2293V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/21/2024) regarding [33] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/21/2024) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Siniscalchi" }, { @@ -12018,9 +12018,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-203V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [42] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0203V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Mills" }, { @@ -12030,9 +12030,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-66V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [40] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0066V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -12043,8 +12043,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1262V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/28/2024) regarding [78] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/28/2024) regarding [78] DECISION of Special Master - Fees", "case_name_shorts": "Grant" }, { @@ -12054,9 +12054,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-227V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 06/04/2024) regarding [37] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "23-0227V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 06/04/2024) regarding [37] DECISION of Special Master - Fees", "case_name_shorts": "Dotson" }, { @@ -12066,9 +12066,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-476V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/28/2024) regarding [58] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "21-0476V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/28/2024) regarding [58] DECISION of Special Master - Fees", "case_name_shorts": "Barton" }, { @@ -12079,8 +12079,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1321V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 5/30/2024) regarding [14] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 5/30/2024) regarding [14] DECISION of Special Master", "case_name_shorts": "White" }, { @@ -12090,9 +12090,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-978V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/24/2024) regarding [20] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0978V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/24/2024) regarding [20] DECISION Stipulation/Proffer", "case_name_shorts": "Walker" }, { @@ -12102,9 +12102,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-193V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 5/31/2024) regarding [76] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "docket_numbers": "19-0193V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 5/31/2024) regarding [76] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Schneidermann" }, { @@ -12115,8 +12115,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1125V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 06/03/2024) regarding [83] DECISION of Special Master Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 06/03/2024) regarding [83] DECISION of Special Master", "case_name_shorts": "Puckett" }, { @@ -12126,9 +12126,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-693V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/16/2024) regarding [57] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0693V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/16/2024) regarding [57] DECISION Stipulation/Proffer", "case_name_shorts": "Prieur" }, { @@ -12139,8 +12139,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1311V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/14/2024) regarding [41] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/14/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Morgan" }, { @@ -12150,9 +12150,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-932V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/23/2024) regarding [20] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0932V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/23/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "Mahoney" }, { @@ -12163,8 +12163,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1870V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/22/2024) regarding [34] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/22/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Li" }, { @@ -12174,9 +12174,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-126V", - "judges": "M. Roth", - "summaries": "PUBLIC RULING (Originally filed: 5/31/2024) regarding [35] Ruling on Entitlement. Signed by Special Master Mindy Michaels Roth. (dkj) Service on parties made.", + "docket_numbers": "23-0126V", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC RULING (Originally filed: 5/31/2024) regarding [35] Ruling on Entitlement", "case_name_shorts": "Lewis" }, { @@ -12186,9 +12186,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-701V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/23/2024) regarding [31] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0701V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/23/2024) regarding [31] DECISION of Special Master", "case_name_shorts": "Lemon" }, { @@ -12198,9 +12198,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-538V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/20/2024) regarding [44] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0538V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/20/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Kosma" }, { @@ -12210,9 +12210,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-822V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/22/2024) regarding [44] DECISION of Special Master - Fees, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0822V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/22/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Koenig-Wiltse" }, { @@ -12223,8 +12223,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1455V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 5/23/2024) regarding [48] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 5/23/2024) regarding [48] DECISION of Special Master", "case_name_shorts": "Hunt" }, { @@ -12234,9 +12234,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-472V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/23/2024) regarding [55] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0472V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/23/2024) regarding [55] DECISION of Special Master - Fees", "case_name_shorts": "Hillman" }, { @@ -12247,8 +12247,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1301V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [31] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Hewett" }, { @@ -12258,9 +12258,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-649V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/21/2024) regarding [21] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0649V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/21/2024) regarding [21] Ruling on Entitlement", "case_name_shorts": "Goff" }, { @@ -12270,9 +12270,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-76V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/20/2024) regarding [44] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0076V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/20/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Fields" }, { @@ -12283,8 +12283,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-2032V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/22/2024) regarding [104] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/22/2024) regarding [104] DECISION of Special Master - Fees", "case_name_shorts": "Elmakky" }, { @@ -12295,8 +12295,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1474V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/22/2024) regarding [87] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/22/2024) regarding [87] DECISION of Special Master - Fees", "case_name_shorts": "Davis" }, { @@ -12307,8 +12307,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2025V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 5/30/2024) regarding [42] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 5/30/2024) regarding [42] DECISION Stipulation/Proffer", "case_name_shorts": "Danforth" }, { @@ -12318,9 +12318,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-861V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/22/2024) regarding [44] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0861V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/22/2024) regarding [44] DECISION Stipulation/Proffer", "case_name_shorts": "Center" }, { @@ -12330,9 +12330,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-876V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/22/2024) regarding [38] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0876V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/22/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Wise" }, { @@ -12342,9 +12342,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-978V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/24/2024) regarding [19] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0978V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/24/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Walker" }, { @@ -12354,9 +12354,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-366V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/24/2024) regarding [32] Findings of Fact & Conclusions of Law, Order to Show Cause. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0366V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/24/2024) regarding [32] Findings of Fact & Conclusions of Law, Order to Show Cause", "case_name_shorts": "Walker" }, { @@ -12366,9 +12366,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-903V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/23/2024) regarding [46] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0903V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/23/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Romeo" }, { @@ -12379,8 +12379,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1182V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 5/29/2024) regarding [115] DECISION of Special Master. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 5/29/2024) regarding [115] DECISION of Special Master", "case_name_shorts": "Madala" }, { @@ -12390,9 +12390,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-534V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 5/22/2024) regarding [55] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "docket_numbers": "20-0534V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 5/22/2024) regarding [55] DECISION Stipulation/Proffer", "case_name_shorts": "Lungaro" }, { @@ -12403,8 +12403,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1547V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/23/2024) regarding [23] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/23/2024) regarding [23] DECISION Stipulation/Proffer", "case_name_shorts": "Dapkus" }, { @@ -12414,9 +12414,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-155V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/20/2024) regarding [43] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0155V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/20/2024) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "Brown" }, { @@ -12426,9 +12426,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-481V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 5/23/2024) regarding [30] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0481V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 5/23/2024) regarding [30] DECISION of Special Master - Fees", "case_name_shorts": "Brache" }, { @@ -12439,8 +12439,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1346V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [33] DECISION Stipulation. Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [33] DECISION Stipulation", "case_name_shorts": "Williamson" }, { @@ -12451,8 +12451,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1805V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/20/2024) regarding [32] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/20/2024) regarding [32] DECISION of Special Master - Fees", "case_name_shorts": "Waszak" }, { @@ -12462,9 +12462,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-650V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/20/2024) regarding [60] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0650V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/20/2024) regarding [60] DECISION of Special Master - Fees", "case_name_shorts": "Sweeney" }, { @@ -12475,8 +12475,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1939V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 05/20/2024) regarding [48] DECISION of Special Master - Fees. Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 05/20/2024) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Streeter" }, { @@ -12486,9 +12486,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-172V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/21/2024) regarding [40] Findings of Fact & Conclusions of Law. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "20-0172V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/21/2024) regarding [40] Findings of Fact & Conclusions of Law", "case_name_shorts": "Sender" }, { @@ -12499,8 +12499,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1487V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/22/2024) regarding [24] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/22/2024) regarding [24] Ruling on Entitlement", "case_name_shorts": "Rozen" }, { @@ -12511,8 +12511,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1831V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/21/2024) regarding [41] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/21/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Oliver" }, { @@ -12523,8 +12523,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-1075V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [256] DECISION Stipulation/Proffer, Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 05/30/2024) regarding [256] DECISION Stipulation/Proffer", "case_name_shorts": "Mohamad" }, { @@ -12534,9 +12534,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-807V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/21/2024) regarding [60] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "20-0807V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/21/2024) regarding [60] DECISION of Special Master - Fees", "case_name_shorts": "Millett" }, { @@ -12547,8 +12547,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1944V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [49] DECISION of Special Master - Fees Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Meacham" }, { @@ -12558,9 +12558,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-480V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/21/2024) regarding [37] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0480V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/21/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Marshburn" }, { @@ -12571,8 +12571,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1750V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/21/2024) regarding [96] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/21/2024) regarding [96] DECISION of Special Master - Fees", "case_name_shorts": "Luce" }, { @@ -12583,8 +12583,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1545V", - "judges": "C. Moran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/29/2024) regarding [73] Order Concluding Proceedings Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/29/2024) regarding [73] Order Concluding Proceedings", "case_name_shorts": "Khan" }, { @@ -12595,8 +12595,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1216V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/20/2024) regarding [37] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/20/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Kantner" }, { @@ -12606,9 +12606,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-313V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/21/2024) regarding [47] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0313V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/21/2024) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Donnewald" }, { @@ -12619,8 +12619,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1504V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/20/2024) regarding [60] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/20/2024) regarding [60] DECISION of Special Master - Fees", "case_name_shorts": "Anglewicz" }, { @@ -12630,9 +12630,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-448V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/20/2024) regarding [34] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0448V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/20/2024) regarding [34] DECISION of Special Master - Fees", "case_name_shorts": "Padratzik" }, { @@ -12643,8 +12643,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1346V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/20/2024) regarding [29] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/20/2024) regarding [29] Ruling on Entitlement", "case_name_shorts": "Hanson" }, { @@ -12655,8 +12655,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1705V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 5/22/2024) regarding [15] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 5/22/2024) regarding [15] DECISION of Special Master", "case_name_shorts": "Wren" }, { @@ -12666,9 +12666,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-375V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/13/2024) regarding [27] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0375V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/13/2024) regarding [27] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -12678,9 +12678,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-38V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/15/2024) regarding [37] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0038V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/15/2024) regarding [37] Ruling on Entitlement", "case_name_shorts": "Rinier" }, { @@ -12691,8 +12691,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1690V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/13/2024) regarding [51] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/13/2024) regarding [51] DECISION of Special Master - Fees", "case_name_shorts": "Pappas" }, { @@ -12702,9 +12702,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-723V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/13/2024) regarding [32] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0723V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/13/2024) regarding [32] DECISION of Special Master - Fees", "case_name_shorts": "Olszewski" }, { @@ -12714,9 +12714,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-240V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 05/24/2024) regarding [54] DECISION of Special Master - Fees. Signed by Special Master Mindy Michaels Roth. (dkj) Service on parties made.", + "docket_numbers": "19-0240V", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 05/24/2024) regarding [54] DECISION of Special Master - Fees", "case_name_shorts": "Herron" }, { @@ -12726,9 +12726,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-199V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [46] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0199V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Goff" }, { @@ -12738,9 +12738,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-10V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [40] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0010V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -12750,9 +12750,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-689V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/16/2024) regarding [24] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0689V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/16/2024) regarding [24] Ruling on Entitlement", "case_name_shorts": "Walsh" }, { @@ -12762,9 +12762,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-148V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/16/2024) regarding [41] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0148V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/16/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Walsh" }, { @@ -12774,9 +12774,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-259V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/16/2024) regarding [35] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0259V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/16/2024) regarding [35] DECISION Stipulation/Proffer", "case_name_shorts": "Walker" }, { @@ -12786,9 +12786,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-525V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/10/2024) regarding [37] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0525V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/10/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Tincher" }, { @@ -12798,9 +12798,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-540V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [45] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0540V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Terefe" }, { @@ -12810,9 +12810,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-641V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/16/2024) regarding [46] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0641V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/16/2024) regarding [46] DECISION Stipulation/Proffer", "case_name_shorts": "Stine" }, { @@ -12822,9 +12822,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-611V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [31] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0611V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [31] DECISION of Special Master - Fees", "case_name_shorts": "Stewart" }, { @@ -12835,8 +12835,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1514V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/13/2024) regarding [55] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/13/2024) regarding [55] DECISION of Special Master - Fees", "case_name_shorts": "Starnes" }, { @@ -12846,9 +12846,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-58V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [71] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0058V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [71] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -12859,8 +12859,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2303V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/16/2024) regarding [35] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/16/2024) regarding [35] DECISION Stipulation/Proffer", "case_name_shorts": "Shirk" }, { @@ -12870,9 +12870,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-548V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [43] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0548V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "Shears" }, { @@ -12882,9 +12882,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-592V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [53] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0592V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [53] DECISION Stipulation/Proffer", "case_name_shorts": "Sanetra" }, { @@ -12895,8 +12895,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1253V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [53] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [53] DECISION of Special Master - Fees", "case_name_shorts": "Rodriguez" }, { @@ -12907,8 +12907,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1136V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [41] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Popejoy" }, { @@ -12918,9 +12918,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-746V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [71] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0746V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [71] DECISION of Special Master", "case_name_shorts": "Perez" }, { @@ -12930,9 +12930,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-103V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/14/2024) regarding [46] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0103V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/14/2024) regarding [46] DECISION Stipulation/Proffer", "case_name_shorts": "Painter" }, { @@ -12943,8 +12943,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1157V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/16/2024) regarding [23] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/16/2024) regarding [23] Ruling on Entitlement", "case_name_shorts": "Ngo" }, { @@ -12955,8 +12955,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1396V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/15/2024) regarding [30] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/15/2024) regarding [30] Ruling on Entitlement", "case_name_shorts": "Matthews" }, { @@ -12966,9 +12966,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-997V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [53] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0997V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [53] DECISION of Special Master - Fees", "case_name_shorts": "Marshall" }, { @@ -12978,9 +12978,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-222V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024 ) regarding [45] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0222V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024 ) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Marrinan" }, { @@ -12991,8 +12991,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1454V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 5/22/2024) regarding [82] DECISION Stipulation. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 5/22/2024) regarding [82] DECISION Stipulation", "case_name_shorts": "Lund" }, { @@ -13003,8 +13003,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1903V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [40] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Luginsky" }, { @@ -13015,8 +13015,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1688V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [27] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Kerr" }, { @@ -13027,8 +13027,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1402V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [40] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "Jones" }, { @@ -13039,8 +13039,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1424V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [56] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [56] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -13050,9 +13050,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-813V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/10/2024) regarding [37] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0813V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/10/2024) regarding [37] DECISION of Special Master - Fees", "case_name_shorts": "Irizarry" }, { @@ -13062,9 +13062,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-549V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/13/2024) regarding [43] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0549V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/13/2024) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "Holubowicz" }, { @@ -13075,8 +13075,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1165V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/13/2024) regarding [18] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/13/2024) regarding [18] Ruling on Entitlement", "case_name_shorts": "Hollis" }, { @@ -13086,9 +13086,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-208V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/15/2024) regarding [20] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0208V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/15/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "Hill" }, { @@ -13098,9 +13098,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-444V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 5/21/2024) regarding [68] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "docket_numbers": "21-0444V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 5/21/2024) regarding [68] DECISION Stipulation/Proffer", "case_name_shorts": "Hickey" }, { @@ -13110,9 +13110,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-781V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [39] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0781V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "Fata" }, { @@ -13123,8 +13123,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1643V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [53] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [53] DECISION Stipulation/Proffer", "case_name_shorts": "Davis" }, { @@ -13135,8 +13135,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2047V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/09/2024) regarding [26] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/09/2024) regarding [26] Ruling on Entitlement", "case_name_shorts": "Covert" }, { @@ -13147,8 +13147,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2010V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [56] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [56] DECISION of Special Master - Fees", "case_name_shorts": "Clark-Granger" }, { @@ -13158,9 +13158,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-23V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [30] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0023V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [30] DECISION of Special Master - Fees", "case_name_shorts": "Cauley" }, { @@ -13170,9 +13170,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-84V", - "judges": "D. Horner", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 5/21/2024) regarding [54] Ruling on Entitlement. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "docket_numbers": "21-0084V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 5/21/2024) regarding [54] Ruling on Entitlement", "case_name_shorts": "Burroughs" }, { @@ -13182,9 +13182,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-82V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [45] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0082V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Blessed" }, { @@ -13194,9 +13194,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-151V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/16/2024) regarding [25] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0151V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/16/2024) regarding [25] DECISION of Special Master", "case_name_shorts": "Blei" }, { @@ -13206,9 +13206,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-826V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [48] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0826V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/17/2024) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Barker" }, { @@ -13219,8 +13219,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1324V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [31] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [31] DECISION of Special Master - Fees", "case_name_shorts": "Andrews" }, { @@ -13230,9 +13230,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-387V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/16/2024) regarding [54] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0387V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/16/2024) regarding [54] DECISION Stipulation/Proffer", "case_name_shorts": "Anderson" }, { @@ -13242,9 +13242,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-596V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/15/2024) regarding [32] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0596V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/15/2024) regarding [32] Ruling on Entitlement", "case_name_shorts": "Ahlstrom" }, { @@ -13254,9 +13254,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-689V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/15/2024) regarding [29] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0689V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/15/2024) regarding [29] Ruling on Entitlement", "case_name_shorts": "Wunsch" }, { @@ -13267,8 +13267,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1532V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/10/2024) regarding [26] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/10/2024) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Woodland" }, { @@ -13278,9 +13278,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-312V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/13/2024) regarding [42] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0312V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/13/2024) regarding [42] DECISION Stipulation/Proffer", "case_name_shorts": "Vivier" }, { @@ -13291,8 +13291,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1010V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/09/2024) regarding [24] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/09/2024) regarding [24] DECISION Stipulation/Proffer", "case_name_shorts": "Vargas" }, { @@ -13302,9 +13302,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-882V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/08/2024) regarding [30] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0882V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/08/2024) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Thomas" }, { @@ -13315,8 +13315,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1645V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/15/2024) regarding [17] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/15/2024) regarding [17] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -13327,8 +13327,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1969V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/09/2024) regarding [38] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/09/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Richter" }, { @@ -13338,9 +13338,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-843V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [31] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0843V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/15/2024) regarding [31] DECISION of Special Master - Fees", "case_name_shorts": "Ragsdale" }, { @@ -13350,9 +13350,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-110V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/14/2024) regarding [23] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0110V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/14/2024) regarding [23] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -13363,8 +13363,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1360V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/06/2024) regarding [17] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/06/2024) regarding [17] Ruling on Entitlement", "case_name_shorts": "McCarthy" }, { @@ -13374,9 +13374,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-638V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/14/2024) regarding [26] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0638V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/14/2024) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Lewis" }, { @@ -13386,9 +13386,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-696V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [39] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0696V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Law" }, { @@ -13398,9 +13398,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-805V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/10/2024) regarding [40] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0805V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/10/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Hernandez" }, { @@ -13410,9 +13410,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-586V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/13/2024) regarding [19] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0586V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/13/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Derr" }, { @@ -13422,9 +13422,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-562V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/09/2024) regarding [67] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "20-0562V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/09/2024) regarding [67] DECISION of Special Master - Fees", "case_name_shorts": "Cracraft" }, { @@ -13435,8 +13435,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2045V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/09/2024) regarding [49] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/09/2024) regarding [49] DECISION Stipulation/Proffer", "case_name_shorts": "Cliver" }, { @@ -13447,8 +13447,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1377V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/13/2024) regarding [33] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/13/2024) regarding [33] Ruling on Entitlement", "case_name_shorts": "Brickhouse" }, { @@ -13459,8 +13459,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1034V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/14/2024) regarding [53] DECISION of Special Master - Fees, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/14/2024) regarding [53] DECISION of Special Master - Fees", "case_name_shorts": "B." }, { @@ -13470,9 +13470,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-242V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/08/2024) regarding [31] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0242V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/08/2024) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Alexander" }, { @@ -13482,9 +13482,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-242V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/07/2024) regarding [29] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0242V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/07/2024) regarding [29] Ruling on Entitlement", "case_name_shorts": "Alexander" }, { @@ -13494,9 +13494,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-649V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/14/2024) regarding [34] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0649V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/14/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Wallace" }, { @@ -13507,8 +13507,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2140V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 5/28/24) regarding [21] DECISION of Special Master. Signed by Special Master Herbrina Sanders. (sh) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 5/28/24) regarding [21] DECISION of Special Master", "case_name_shorts": "Storch" }, { @@ -13519,8 +13519,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1267V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 5/29/24) regarding [78] DECISION of Special Master. Signed by Special Master Herbrina Sanders. (sh) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 5/29/24) regarding [78] DECISION of Special Master", "case_name_shorts": "REECE" }, { @@ -13530,9 +13530,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-274V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/13/2024) regarding [25] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0274V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/13/2024) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "Inman" }, { @@ -13542,9 +13542,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-598V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/14/2024) regarding [46] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0598V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/14/2024) regarding [46] Ruling on Entitlement", "case_name_shorts": "Hoy" }, { @@ -13554,9 +13554,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-963V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/13/2024 ) regarding [45] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0963V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/13/2024 ) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Fagan" }, { @@ -13566,9 +13566,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-397V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/10/2024) regarding [24] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0397V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/10/2024) regarding [24] DECISION Stipulation/Proffer", "case_name_shorts": "Rea" }, { @@ -13578,9 +13578,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-390V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/02/2024) regarding [30] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0390V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/02/2024) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Denton" }, { @@ -13591,8 +13591,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2068V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/03/2024) regarding [48] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/03/2024) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Day" }, { @@ -13603,8 +13603,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1331V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [38] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Darmanin" }, { @@ -13614,9 +13614,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-342V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 5/21/2024) regarding [108] DECISION of Special Master Signed by Special Master Christian J. Moran. (Attachments: (1) Appendix Court Exhibit 1001)(ceo) Service on parties made.", + "docket_numbers": "19-0342V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 5/21/2024) regarding [108] DECISION of Special Master", "case_name_shorts": "Cheung" }, { @@ -13626,9 +13626,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-874V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 4/11/2024) regarding [103] DECISION of Special Master Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "18-0874V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 4/11/2024) regarding [103] DECISION of Special Master", "case_name_shorts": "Bynum" }, { @@ -13638,9 +13638,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-695V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/10/2024) regarding [41] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0695V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/10/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Watson" }, { @@ -13651,8 +13651,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1535V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/08/2024) regarding [41] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/08/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Wade" }, { @@ -13663,8 +13663,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1356V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 5/17/2024) regarding [13] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 5/17/2024) regarding [13] Order Concluding Proceedings", "case_name_shorts": "Sicuro-Leipski" }, { @@ -13675,8 +13675,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1279V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/09/2024) regarding [38] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/09/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Scheibner" }, { @@ -13687,8 +13687,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1674V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024 ) regarding [46] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024 ) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Ross" }, { @@ -13698,9 +13698,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-397V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/10/2024) regarding [23] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0397V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/10/2024) regarding [23] Ruling on Entitlement", "case_name_shorts": "Rea" }, { @@ -13710,9 +13710,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-848V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/08/2024) regarding [15] Findings of Fact & Conclusions of Law, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0848V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/08/2024) regarding [15] Findings of Fact & Conclusions of Law", "case_name_shorts": "Powers" }, { @@ -13723,8 +13723,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1509V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/09/2024) regarding [41] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/09/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Nagelberg" }, { @@ -13735,8 +13735,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1007V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [65] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [65] DECISION of Special Master - Fees", "case_name_shorts": "Myers" }, { @@ -13747,8 +13747,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1149V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 5/10/2024) regarding [33] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 5/10/2024) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Musselman" }, { @@ -13759,8 +13759,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1640V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/10/2024) regarding [41] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/10/2024) regarding [41] Ruling on Entitlement", "case_name_shorts": "Masters" }, { @@ -13770,9 +13770,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-502V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/06/2024) regarding [21] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0502V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/06/2024) regarding [21] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -13783,8 +13783,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1208V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/09/2024) regarding [44] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/09/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Creevy" }, { @@ -13794,9 +13794,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-368V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 5/13/24) regarding [15] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0368V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 5/13/24) regarding [15] DECISION of Special Master", "case_name_shorts": "Chesnutt-Kriss" }, { @@ -13807,8 +13807,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1633V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/07/2024) regarding [39] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/07/2024) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Bravo" }, { @@ -13819,8 +13819,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1899V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 5/17/2024) regarding [119] DECISION of Special Master. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 5/17/2024) regarding [119] DECISION of Special Master", "case_name_shorts": "Barrientos" }, { @@ -13830,9 +13830,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-867V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/08/2024) regarding [49] Ruling on Entitlement, Order on Motion for Ruling on the Record. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "20-0867V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/08/2024) regarding [49] Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "Ash" }, { @@ -13843,8 +13843,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1358V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 05/16/2024) regarding [38] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 05/16/2024) regarding [38] DECISION of Special Master - Fees", "case_name_shorts": "Tapia" }, { @@ -13855,8 +13855,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1920V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/07/2024) regarding [25] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/07/2024) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "Smythe" }, { @@ -13866,9 +13866,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-766V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/09/2024) regarding [34] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0766V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/09/2024) regarding [34] DECISION of Special Master - Fees", "case_name_shorts": "Powers" }, { @@ -13879,8 +13879,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1866V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/08/2024) regarding [37] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/08/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Pick" }, { @@ -13891,8 +13891,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1987V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/08/2024) regarding [58] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/08/2024) regarding [58] DECISION of Special Master - Fees", "case_name_shorts": "Ingram" }, { @@ -13902,9 +13902,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-153V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/09/2024) regarding [45] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0153V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/09/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Hemenway" }, { @@ -13915,8 +13915,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1644V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/14/2024) regarding [49] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/14/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Goettl" }, { @@ -13926,9 +13926,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-65V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/10/2024) regarding [50] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0065V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/10/2024) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Davis" }, { @@ -13938,9 +13938,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-514V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/10/2024) regarding [52] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0514V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/10/2024) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Cartwright" }, { @@ -13951,8 +13951,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2029V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/08/2024) regarding [67] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/08/2024) regarding [67] DECISION of Special Master - Fees", "case_name_shorts": "Banaag" }, { @@ -13963,8 +13963,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1534V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/09/2024) regarding [19] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/09/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Anderson" }, { @@ -13975,8 +13975,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1632V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/08/2024) regarding [23] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/08/2024) regarding [23] Ruling on Entitlement", "case_name_shorts": "Watkins" }, { @@ -13987,8 +13987,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1868V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/08/2024) regarding [57] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/08/2024) regarding [57] DECISION of Special Master - Fees", "case_name_shorts": "Tiver" }, { @@ -13999,8 +13999,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1785V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/08/2024) regarding [52] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/08/2024) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -14011,8 +14011,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1543V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [35] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [35] DECISION of Special Master - Fees", "case_name_shorts": "Savage" }, { @@ -14022,9 +14022,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-512V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [34] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0512V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [34] DECISION of Special Master - Fees", "case_name_shorts": "Ramos" }, { @@ -14034,9 +14034,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-281V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/08/2024) regarding [43] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0281V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/08/2024) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Puffinberger" }, { @@ -14046,9 +14046,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-408V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [52] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0408V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Olson" }, { @@ -14058,9 +14058,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-692V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [37] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0692V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [37] DECISION of Special Master - Fees", "case_name_shorts": "McIntyre" }, { @@ -14070,9 +14070,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-564V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/03/2024) regarding [28] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0564V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/03/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Knecht" }, { @@ -14082,9 +14082,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-709V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/08/2024) regarding [45] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0709V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/08/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Iovino-Schoenfeld" }, { @@ -14094,9 +14094,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-744V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/02/2024) regarding [18] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0744V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/02/2024) regarding [18] Ruling on Entitlement", "case_name_shorts": "Hess-Rosio" }, { @@ -14106,9 +14106,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-485V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/07/2024) regarding [19] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0485V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/07/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Hershberger" }, { @@ -14119,8 +14119,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1003V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [34] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [34] DECISION of Special Master", "case_name_shorts": "Gonzalez" }, { @@ -14130,9 +14130,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-511V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/06/2024) regarding [45] Ruling on Entitlement, Order on Motion for Ruling on the Record. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0511V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/06/2024) regarding [45] Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "Gates" }, { @@ -14143,8 +14143,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1370V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [46] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Feitel" }, { @@ -14155,8 +14155,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1077V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/07/2024) regarding [43] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/07/2024) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Carter" }, { @@ -14166,9 +14166,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-288V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [46] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0288V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [46] DECISION Stipulation/Proffer", "case_name_shorts": "Wroczynski" }, { @@ -14179,8 +14179,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1293V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [28] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Weissbach" }, { @@ -14190,9 +14190,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-515V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/07/2024) regarding [56] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0515V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/07/2024) regarding [56] DECISION Stipulation/Proffer", "case_name_shorts": "Wanner" }, { @@ -14203,8 +14203,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1081V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/03/2024) regarding [20] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/03/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "Vaughn" }, { @@ -14214,9 +14214,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-508V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [52] DECISION of Special Master - Fees, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "20-0508V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Taylor" }, { @@ -14226,9 +14226,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-897V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/06/2024 ) regarding [44] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0897V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/06/2024 ) regarding [44] Ruling on Entitlement", "case_name_shorts": "Schoonveld" }, { @@ -14238,9 +14238,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-418V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/02/2024) regarding [45] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0418V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/02/2024) regarding [45] Ruling on Entitlement", "case_name_shorts": "Lucey" }, { @@ -14251,8 +14251,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1394V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [36] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [36] DECISION of Special Master - Fees", "case_name_shorts": "Kreuze" }, { @@ -14262,9 +14262,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-22V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [33] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0022V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [33] DECISION of Special Master - Fees", "case_name_shorts": "Hura" }, { @@ -14274,9 +14274,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-745V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/06/2024) regarding [18] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0745V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/06/2024) regarding [18] Ruling on Entitlement", "case_name_shorts": "Hampton" }, { @@ -14287,8 +14287,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1151V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/03/2024 ) regarding [69] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/03/2024 ) regarding [69] DECISION of Special Master - Fees", "case_name_shorts": "Hall" }, { @@ -14299,8 +14299,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2241V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [46] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/06/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Bryant" }, { @@ -14311,8 +14311,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1302V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/24/2024) regarding [41] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/24/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Winston" }, { @@ -14322,9 +14322,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-803V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/02/2024) regarding [17] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0803V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/02/2024) regarding [17] Ruling on Entitlement", "case_name_shorts": "West" }, { @@ -14334,9 +14334,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-977V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/01/2024) regarding [46] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0977V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/01/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Visconde" }, { @@ -14347,8 +14347,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1360V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/29/2024) regarding [27] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/29/2024) regarding [27] Ruling on Entitlement", "case_name_shorts": "Tomar" }, { @@ -14359,8 +14359,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1703V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/02/2024) regarding [20] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/02/2024) regarding [20] DECISION Stipulation/Proffer", "case_name_shorts": "Taylor" }, { @@ -14370,9 +14370,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-57V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [41] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0057V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Ramsdell" }, { @@ -14382,9 +14382,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-506V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/02/2024) regarding [60] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0506V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/02/2024) regarding [60] DECISION Stipulation/Proffer", "case_name_shorts": "Painter" }, { @@ -14394,9 +14394,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-520V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [39] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0520V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [39] DECISION of Special Master", "case_name_shorts": "Ortiz" }, { @@ -14406,9 +14406,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-338V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [50] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0338V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Nguyen" }, { @@ -14419,8 +14419,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1916V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [44] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Mazlin" }, { @@ -14430,9 +14430,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-505V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/02/2024) regarding [28] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0505V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/02/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Little" }, { @@ -14442,9 +14442,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-293V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [47] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0293V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Lau" }, { @@ -14455,8 +14455,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1850V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING AND DECISION AWARDING DAMAGES (Originally filed: 4/30/2024) regarding [44] DECISION of Special Master, Ruling on Entitlement, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING AND DECISION AWARDING DAMAGES (Originally filed: 4/30/2024) regarding [44] DECISION of Special Master, Ruling on Entitlement", "case_name_shorts": "Krissoff" }, { @@ -14466,9 +14466,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-630V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/01/2024) regarding [53] Findings of Fact & Conclusions of Law, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0630V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/01/2024) regarding [53] Findings of Fact & Conclusions of Law", "case_name_shorts": "Kienow" }, { @@ -14478,9 +14478,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-269V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [50] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0269V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Hazard" }, { @@ -14490,9 +14490,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-249V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/25/2024) regarding [43] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0249V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/25/2024) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Donovan" }, { @@ -14502,9 +14502,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-188V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/02/2024) regarding [46] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0188V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/02/2024) regarding [46] DECISION Stipulation/Proffer", "case_name_shorts": "Ditomasso" }, { @@ -14514,9 +14514,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-188V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/02/2024) regarding [45] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0188V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/02/2024) regarding [45] Ruling on Entitlement", "case_name_shorts": "Ditomasso" }, { @@ -14527,8 +14527,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1473V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [33] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Dennis" }, { @@ -14539,8 +14539,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1752V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [35] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [35] DECISION Stipulation/Proffer", "case_name_shorts": "Cymansky" }, { @@ -14550,9 +14550,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-685V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/29/2024) regarding [17] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0685V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/29/2024) regarding [17] Ruling on Entitlement", "case_name_shorts": "Coppersmith" }, { @@ -14563,8 +14563,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1066V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [44] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Brickman" }, { @@ -14574,9 +14574,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-181V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [46] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0181V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Banks" }, { @@ -14586,9 +14586,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-478V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 4/22/2024) regarding [46] DECISION of Special Master - Stipulation. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "docket_numbers": "20-0478V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 4/22/2024) regarding [46] DECISION of Special Master - Stipulation", "case_name_shorts": "Young" }, { @@ -14598,9 +14598,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-271V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/01/2024 ) regarding [41] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0271V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/01/2024 ) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Stites" }, { @@ -14610,9 +14610,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-736V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 05/13/2024) regarding [34] DECISION on Attorney&039;s Fees and Costs. Signed by Special Master Katherine E. Oler. (saj) Service on parties made.", + "docket_numbers": "22-0736V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 05/13/2024) regarding [34] DECISION on Attorney&039;s Fees and Costs", "case_name_shorts": "Shapouri" }, { @@ -14622,9 +14622,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-619V", - "judges": "K. Oler", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/1/2024) regarding [75] Ruling on Entitlement. Signed by Special Master Katherine E. Oler. (saj) Service on parties made. Modified on 6/6/2024 to correct the originally filed date in the docket text. (fm).", + "docket_numbers": "18-0619V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 05/1/2024) regarding [75] Ruling on Entitlement", "case_name_shorts": "Schwarz" }, { @@ -14634,9 +14634,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-394V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [43] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0394V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "Schory" }, { @@ -14646,9 +14646,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-842V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/02/2024) regarding [54] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "20-0842V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/02/2024) regarding [54] DECISION Stipulation/Proffer", "case_name_shorts": "Rodionov" }, { @@ -14659,8 +14659,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2196V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/02/2022) regarding [27] Findings of Fact & Conclusions of Law ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/02/2022) regarding [27] Findings of Fact & Conclusions of Law", "case_name_shorts": "Rinella" }, { @@ -14671,8 +14671,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1301V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 4/23/2024) regarding [86] DECISION on Attorneys&039; Fees and Costs. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 4/23/2024) regarding [86] DECISION on Attorneys&039; Fees and Costs", "case_name_shorts": "Popwell" }, { @@ -14683,8 +14683,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1533V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 5/10/2024) regarding [22] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 5/10/2024) regarding [22] Order Concluding Proceedings", "case_name_shorts": "Pipp" }, { @@ -14694,9 +14694,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-499V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 5/7/2024) regarding [53] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "docket_numbers": "21-0499V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 5/7/2024) regarding [53] DECISION Stipulation/Proffer", "case_name_shorts": "O&039;connell" }, { @@ -14707,8 +14707,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1559V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 5/7/2024) regarding [15] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 5/7/2024) regarding [15] DECISION of Special Master", "case_name_shorts": "Krausert" }, { @@ -14719,8 +14719,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1522V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 5/8/2024) regarding [123] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 5/8/2024) regarding [123] DECISION of Special Master", "case_name_shorts": "Kinney" }, { @@ -14730,9 +14730,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-235V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [45] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0235V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -14743,8 +14743,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1438V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 5/7/2024) regarding [85] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 5/7/2024) regarding [85] DECISION of Special Master", "case_name_shorts": "Heath" }, { @@ -14755,8 +14755,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1605V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 5/10/2024) regarding [13] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 5/10/2024) regarding [13] DECISION of Special Master", "case_name_shorts": "Haney" }, { @@ -14766,9 +14766,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-597V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [50] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0597V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Greene" }, { @@ -14779,8 +14779,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1579V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/30/2024 ) regarding [28] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/30/2024 ) regarding [28] Ruling on Entitlement", "case_name_shorts": "Fisher" }, { @@ -14791,8 +14791,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1728V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [42] DECISION of Special Master, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [42] DECISION of Special Master", "case_name_shorts": "FELIX" }, { @@ -14803,8 +14803,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1881V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024 ) regarding [34] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024 ) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Bridges" }, { @@ -14814,9 +14814,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-860V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024 ) regarding [44] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0860V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024 ) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Bodenbender" }, { @@ -14827,8 +14827,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1357V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [42] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Bennett" }, { @@ -14838,9 +14838,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-504V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [92] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "19-0504V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [92] DECISION of Special Master - Fees", "case_name_shorts": "Barrington" }, { @@ -14850,9 +14850,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-241V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/01/2024) regarding [29] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0241V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/01/2024) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "Watkins" }, { @@ -14862,9 +14862,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-141V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/03/2024) regarding [62] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0141V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/03/2024) regarding [62] DECISION Stipulation/Proffer", "case_name_shorts": "Turrell" }, { @@ -14875,8 +14875,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1548V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/03/2024) regarding [32] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/03/2024) regarding [32] DECISION Stipulation/Proffer", "case_name_shorts": "Tisdale" }, { @@ -14887,8 +14887,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1303V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [36] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Stewart" }, { @@ -14899,8 +14899,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1228V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/30/2024) regarding [32] Findings of Fact & Conclusions of Law, Scheduling Order, Order on Motion for Decision, Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/30/2024) regarding [32] Findings of Fact & Conclusions of Law, Scheduling Order, Order on Motion for Decision", "case_name_shorts": "Sharpe" }, { @@ -14910,9 +14910,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-243V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/01/2024) regarding [40] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0243V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/01/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Rikard" }, { @@ -14922,9 +14922,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-308V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/02/2024) regarding [40] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0308V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/02/2024) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "Rampton" }, { @@ -14934,9 +14934,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-709V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/02/2024) regarding [25] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0709V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/02/2024) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "Naude" }, { @@ -14947,8 +14947,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1962V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/03/2024) regarding [55] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/03/2024) regarding [55] DECISION Stipulation/Proffer", "case_name_shorts": "Moore" }, { @@ -14958,9 +14958,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-251V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [36] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0251V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Malolos" }, { @@ -14971,8 +14971,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1667V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/01/2024) regarding [48] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/01/2024) regarding [48] DECISION Stipulation/Proffer", "case_name_shorts": "Kempkes" }, { @@ -14982,9 +14982,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-462V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/03/2024) regarding [53] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0462V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/03/2024) regarding [53] DECISION of Special Master - Fees", "case_name_shorts": "Iorio" }, { @@ -14994,9 +14994,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-285V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/08/2024) regarding [41] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "20-0285V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/08/2024) regarding [41] DECISION of Special Master", "case_name_shorts": "Flowers" }, { @@ -15006,9 +15006,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-855V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/04/2023) regarding [69] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "20-0855V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/04/2023) regarding [69] DECISION of Special Master", "case_name_shorts": "Fisher" }, { @@ -15018,9 +15018,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-760V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [40] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0760V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Fallstead" }, { @@ -15030,9 +15030,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-400V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [50] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0400V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Covey" }, { @@ -15043,8 +15043,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1218V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/03/2024) regarding [54] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/03/2024) regarding [54] DECISION of Special Master - Fees", "case_name_shorts": "Beach" }, { @@ -15054,9 +15054,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-393V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [38] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0393V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [38] DECISION of Special Master - Fees", "case_name_shorts": "Wilson" }, { @@ -15066,9 +15066,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-1V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 4/25/2024) regarding [36] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "docket_numbers": "20-0001V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 4/25/2024) regarding [36] Ruling on Entitlement", "case_name_shorts": "Silvers" }, { @@ -15078,9 +15078,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-33V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/25/2024) regarding [39] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0033V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/25/2024) regarding [39] Ruling on Entitlement", "case_name_shorts": "Schauffler" }, { @@ -15090,9 +15090,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-266V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [52] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0266V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Harrison" }, { @@ -15102,9 +15102,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-321V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [45] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0321V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Goff" }, { @@ -15114,9 +15114,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-127V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/25/2024) regarding [45] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "20-0127V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/25/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Fletcher" }, { @@ -15127,8 +15127,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1975V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [38] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Bennett" }, { @@ -15139,8 +15139,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1774V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [46] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Allen" }, { @@ -15150,9 +15150,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-39V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [52] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0039V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Squires" }, { @@ -15162,9 +15162,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-347V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [48] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0347V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -15174,9 +15174,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-351V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [47] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0351V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Pozil" }, { @@ -15186,9 +15186,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-637V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [30] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0637V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/30/2024) regarding [30] DECISION of Special Master", "case_name_shorts": "MacKenzie" }, { @@ -15198,9 +15198,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-391V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [39] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0391V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "Lorenzo" }, { @@ -15210,9 +15210,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-764V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/29/2024) regarding [17] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0764V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/29/2024) regarding [17] Ruling on Entitlement", "case_name_shorts": "Gutknecht" }, { @@ -15223,8 +15223,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1055V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [42] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Cassese" }, { @@ -15234,9 +15234,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-113V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [42] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0113V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [42] DECISION Stipulation/Proffer", "case_name_shorts": "Boyd" }, { @@ -15247,8 +15247,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1716V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 4/24/2024) regarding [57] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 4/24/2024) regarding [57] DECISION of Special Master", "case_name_shorts": "T." }, { @@ -15259,8 +15259,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1606V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/29/2024) regarding [43] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/29/2024) regarding [43] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -15271,8 +15271,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1788V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/23/2024) regarding [36] Ruling on Entitlement, Order on Motion for Ruling on the Record. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/23/2024) regarding [36] Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "White" }, { @@ -15282,9 +15282,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-536V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/25/2024) regarding [24] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0536V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/25/2024) regarding [24] Ruling on Entitlement", "case_name_shorts": "Wakefield" }, { @@ -15295,8 +15295,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1704V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING AND DAMAGES (Originally filed: 04/26/2024) regarding [53] Ruling on Entitlement, DECISION of Special Master, Order on Motion for Ruling on the Record ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING AND DAMAGES (Originally filed: 04/26/2024) regarding [53] Ruling on Entitlement, DECISION of Special Master, Order on Motion for Ruling on the Record", "case_name_shorts": "Vaccaro" }, { @@ -15307,8 +15307,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1343V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 5/3/2024) regarding [18] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 5/3/2024) regarding [18] Order Concluding Proceedings", "case_name_shorts": "Torres" }, { @@ -15319,8 +15319,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1529V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 5/1/2024) regarding [14] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 5/1/2024) regarding [14] DECISION of Special Master", "case_name_shorts": "Sherman" }, { @@ -15330,9 +15330,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-578V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/26/2024) regarding [41] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0578V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/26/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Reyes" }, { @@ -15343,8 +15343,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1724V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 4/29/2024) regarding [44] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 4/29/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "RITCHEY" }, { @@ -15355,8 +15355,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1717V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [50] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Plaza" }, { @@ -15367,8 +15367,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1369V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/01/2024) regarding [63] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/01/2024) regarding [63] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Munoz" }, { @@ -15378,9 +15378,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-473V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [62] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0473V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [62] DECISION of Special Master - Fees", "case_name_shorts": "McGillivray" }, { @@ -15391,8 +15391,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1915V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/25/2024) regarding [45] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/25/2024) regarding [45] DECISION Stipulation/Proffer", "case_name_shorts": "Mathura" }, { @@ -15403,8 +15403,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1188V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 4/29/2024) regarding [20] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 4/29/2024) regarding [20] Order Concluding Proceedings", "case_name_shorts": "Lewis" }, { @@ -15415,8 +15415,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1279V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [51] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/29/2024) regarding [51] DECISION of Special Master - Fees", "case_name_shorts": "Kouchak" }, { @@ -15427,8 +15427,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1686V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 05/13/2024) regarding [28] DECISION Stipulation/Proffer. Signed by Special Master Herbrina Sanders. (rig) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 05/13/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -15439,8 +15439,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1075V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 4/30/2024) regarding [180] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 4/30/2024) regarding [180] DECISION of Special Master - Fees", "case_name_shorts": "Gross" }, { @@ -15450,9 +15450,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-584V", - "judges": "D. Horner", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 5/1/2024) regarding [87] Findings of Fact & Conclusions of Law. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "docket_numbers": "20-0584V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 5/1/2024) regarding [87] Findings of Fact & Conclusions of Law", "case_name_shorts": "Green" }, { @@ -15462,9 +15462,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-46V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [40] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0046V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "Ferguson" }, { @@ -15475,8 +15475,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1513V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 5/2/2024) regarding [68] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 5/2/2024) regarding [68] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Exum" }, { @@ -15486,9 +15486,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-476V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/02/2024) regarding [51] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "21-0476V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/02/2024) regarding [51] DECISION Stipulation/Proffer", "case_name_shorts": "Barton" }, { @@ -15499,8 +15499,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1504V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/06/2024) regarding [53] Order (Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/06/2024) regarding [53] Order", "case_name_shorts": "Anglewicz" }, { @@ -15511,8 +15511,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1120V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [29] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "Wegener" }, { @@ -15522,9 +15522,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-398V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/22/2024) regarding [20] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0398V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/22/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "Uribe" }, { @@ -15534,9 +15534,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-144V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [68] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0144V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [68] DECISION of Special Master - Fees", "case_name_shorts": "Tripp" }, { @@ -15546,9 +15546,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-207V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [26] Findings of Fact & Conclusions of Law, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0207V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [26] Findings of Fact & Conclusions of Law", "case_name_shorts": "Toothman" }, { @@ -15559,8 +15559,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1905V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/23/2024) regarding [34] Ruling on Entitlement, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/23/2024) regarding [34] Ruling on Entitlement", "case_name_shorts": "Timberlake" }, { @@ -15570,9 +15570,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-279V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 4/29/2024) regarding [117] DECISION Proffer. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "docket_numbers": "18-0279V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 4/29/2024) regarding [117] DECISION Proffer", "case_name_shorts": "Sprenger" }, { @@ -15583,8 +15583,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1356V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [34] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Schwiebert" }, { @@ -15594,9 +15594,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-135V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [49] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0135V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Salgado" }, { @@ -15606,9 +15606,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-101V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [29] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0101V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "Pugh" }, { @@ -15619,8 +15619,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1126V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [44] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -15630,9 +15630,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-830V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [46] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0830V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "O&039;hara" }, { @@ -15642,9 +15642,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-940V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/23/2024) regarding [33] Findings of Fact & Conclusions of Law,, Scheduling Order,, Order on Motion for Ruling on the Record, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0940V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/23/2024) regarding [33] Findings of Fact & Conclusions of Law,, Scheduling Order,, Order on Motion for Ruling on the Record", "case_name_shorts": "Lowery" }, { @@ -15654,9 +15654,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-837V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/22/2024) regarding [41] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0837V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/22/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Liss" }, { @@ -15667,8 +15667,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1940V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 04/16/2024) regarding [51] DECISION Stipulation/Proffer. Signed by Special Master Herbrina Sanders. (rig) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 04/16/2024) regarding [51] DECISION Stipulation/Proffer", "case_name_shorts": "Kindberg" }, { @@ -15678,9 +15678,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-516V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [47] Findings of Fact & Conclusions of Law,,, Scheduling Order,,, Order on Motion for Ruling on the Record,, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0516V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [47] Findings of Fact & Conclusions of Law,,, Scheduling Order,,, Order on Motion for Ruling on the Record", "case_name_shorts": "Kane" }, { @@ -15690,9 +15690,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-905V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [23] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0905V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [23] DECISION Stipulation/Proffer", "case_name_shorts": "Kafer" }, { @@ -15702,9 +15702,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-905V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/23/2024) regarding [22] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0905V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/23/2024) regarding [22] Ruling on Entitlement", "case_name_shorts": "Kafer" }, { @@ -15715,8 +15715,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1683V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/23/2024) regarding [24] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/23/2024) regarding [24] Ruling on Entitlement", "case_name_shorts": "Jefferson" }, { @@ -15727,8 +15727,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1859V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/17/2024) regarding [54] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/17/2024) regarding [54] DECISION of Special Master - Fees", "case_name_shorts": "Gonzalez" }, { @@ -15738,9 +15738,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-249V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [51] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0249V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [51] DECISION of Special Master - Fees", "case_name_shorts": "Gigantino" }, { @@ -15751,8 +15751,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1426V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [38] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Gesch" }, { @@ -15762,9 +15762,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-751V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/16/2024) regarding [42] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0751V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/16/2024) regarding [42] DECISION of Special Master", "case_name_shorts": "Farris" }, { @@ -15774,9 +15774,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-219V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/16/2024) regarding [46] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0219V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/16/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Dechard" }, { @@ -15787,8 +15787,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1141V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/17/2024) regarding [21] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/17/2024) regarding [21] Ruling on Entitlement", "case_name_shorts": "Coleman" }, { @@ -15798,9 +15798,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-507V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [25] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0507V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "Chen" }, { @@ -15811,8 +15811,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2034V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [61] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [61] DECISION of Special Master - Fees", "case_name_shorts": "Archibald" }, { @@ -15823,8 +15823,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1504V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [49] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [49] DECISION of Special Master", "case_name_shorts": "Anglewicz" }, { @@ -15834,9 +15834,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-978V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [52] DECISION of Special Master - Fees, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "20-0978V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Amor" }, { @@ -15846,9 +15846,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-906V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/16/2024) regarding [28] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0906V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/16/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Adamson" }, { @@ -15858,9 +15858,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-778V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 05/01/24) regarding [38] DECISION Stipulation/Proffer Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "23-0778V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 05/01/24) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Perez" }, { @@ -15871,8 +15871,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1651V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/22/2024) regarding [43] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/22/2024) regarding [43] Ruling on Entitlement", "case_name_shorts": "Parsons" }, { @@ -15883,8 +15883,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1504V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/02/2023) regarding [44] Ruling on Entitlement, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/02/2023) regarding [44] Ruling on Entitlement", "case_name_shorts": "Anglewicz" }, { @@ -15894,9 +15894,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-579V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/22/2024) regarding [20] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0579V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/22/2024) regarding [20] DECISION Stipulation/Proffer", "case_name_shorts": "Andres" }, { @@ -15906,9 +15906,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-790V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 4/30/2024) regarding [57] DECISION Stipulation/Proffer, Signed by Special Master Christian J. Moran. (dksc) Service on parties made.", + "docket_numbers": "22-0790V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 4/30/2024) regarding [57] DECISION Stipulation/Proffer", "case_name_shorts": "Alston" }, { @@ -15919,8 +15919,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1857V", - "judges": "D. Horner", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 4/22/2024) regarding [69] Order on Motion for Relief from Judgment. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made. (Main Document 71 replaced on 5/24/2024) (sw). Petitioner served via first class mail on 05.24.2024 (mjk). Modified on 5/24/2024 (mjk).", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 4/22/2024) regarding [69] Order on Motion for Relief from Judgment", "case_name_shorts": "Hampton" }, { @@ -15931,8 +15931,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1735V", - "judges": "D. Horner", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 4/10/2024) regarding [75] Order on Motion to Redact Decision. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 4/10/2024) regarding [75] Order on Motion to Redact Decision", "case_name_shorts": "G." }, { @@ -15943,8 +15943,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1735V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 2/9/2024) regarding [70] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 2/9/2024) regarding [70] DECISION of Special Master", "case_name_shorts": "G." }, { @@ -15955,8 +15955,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1494V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 4/24/2024) regarding [16] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 4/24/2024) regarding [16] DECISION of Special Master", "case_name_shorts": "Warren" }, { @@ -15966,9 +15966,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-260V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 4/23/2024) regarding [68] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Mindy Michaels Roth. (msg) Service on parties made. (Main Document 73 replaced on 5/22/2024 to add public availability information to the pdf.) (fm). Petitioner served via First Class mail on 5/23/2024. (fm). Modified on 6/20/2024 - Petitioner served via First Class mail at the updated address on 5/23/2024. (fm).", + "docket_numbers": "20-0260V", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 4/23/2024) regarding [68] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Stephens" }, { @@ -15978,9 +15978,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-825V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/19/2024) regarding [20] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0825V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/19/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "Sawyer" }, { @@ -15990,9 +15990,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-34V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [41] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0034V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "McNey" }, { @@ -16002,9 +16002,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-782V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [47] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0782V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Duclos" }, { @@ -16014,9 +16014,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-484V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 4/26/2024) regarding [156] DECISION Proffer. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "docket_numbers": "18-0484V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 4/26/2024) regarding [156] DECISION Proffer", "case_name_shorts": "Anderson" }, { @@ -16027,8 +16027,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1453V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [42] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Young" }, { @@ -16038,9 +16038,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-633V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/11/2024) regarding [43] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0633V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/11/2024) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "Wiggins" }, { @@ -16051,8 +16051,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1198V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [64] DECISION of Special Master - Fees. Signed by Special Master Mindy Michaels Roth. (dkj) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [64] DECISION of Special Master - Fees", "case_name_shorts": "Swailes" }, { @@ -16063,8 +16063,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1717V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/17/2024) regarding [37] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/17/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Sunshine" }, { @@ -16075,8 +16075,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2341V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/16/2024) regarding [28] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/16/2024) regarding [28] Ruling on Entitlement", "case_name_shorts": "Sullivan" }, { @@ -16087,8 +16087,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1478V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [36] DECISION of Special Master - Fees, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [36] DECISION of Special Master - Fees", "case_name_shorts": "Stubbs" }, { @@ -16099,8 +16099,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1691V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [80] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/23/2024) regarding [80] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Stacy" }, { @@ -16110,9 +16110,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-925V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [45] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "20-0925V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Solem" }, { @@ -16122,9 +16122,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-772V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [54] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0772V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [54] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -16134,9 +16134,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-822V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [24] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0822V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [24] DECISION Stipulation/Proffer", "case_name_shorts": "Schmucker" }, { @@ -16146,9 +16146,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-431V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/15/2024) regarding [42] DECISION of Special Master - Fees, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0431V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/15/2024) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Scarfpin" }, { @@ -16158,9 +16158,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-453V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [41] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0453V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Scarantino" }, { @@ -16170,9 +16170,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-21V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/16/2024) regarding [28] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0021V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/16/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Samuels" }, { @@ -16182,9 +16182,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-205V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [41] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0205V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Salgado" }, { @@ -16194,9 +16194,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-465V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [41] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "20-0465V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Robuck" }, { @@ -16207,8 +16207,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1176V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/15/2024) regarding [21] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/15/2024) regarding [21] DECISION Stipulation/Proffer", "case_name_shorts": "Ramsey" }, { @@ -16219,8 +16219,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2005V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/19/2024) regarding [67] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/19/2024) regarding [67] Ruling on Entitlement", "case_name_shorts": "Prescott" }, { @@ -16231,8 +16231,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2320V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [37] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [37] DECISION of Special Master - Fees", "case_name_shorts": "Peterson" }, { @@ -16243,8 +16243,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1119V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [27] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [27] DECISION of Special Master", "case_name_shorts": "Pendergraft" }, { @@ -16255,8 +16255,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1129V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [40] DECISION of Special Master - Fees, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Otero" }, { @@ -16266,9 +16266,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-660V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [45] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0660V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Newdall" }, { @@ -16278,9 +16278,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-973V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [46] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0973V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Mueller-Sprout" }, { @@ -16291,8 +16291,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1848V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [36] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [36] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -16303,8 +16303,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2295V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/17/2024) regarding [49] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/17/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -16314,9 +16314,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-297V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [46] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0297V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Meyer" }, { @@ -16326,9 +16326,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-29V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/15/2024) regarding [47] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0029V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/15/2024) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Lombardo" }, { @@ -16338,9 +16338,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-837V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/11/2024) regarding [38] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0837V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/11/2024) regarding [38] Ruling on Entitlement", "case_name_shorts": "Liss" }, { @@ -16350,9 +16350,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-334V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [50] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0334V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [50] DECISION Stipulation/Proffer", "case_name_shorts": "Lenhart" }, { @@ -16362,9 +16362,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-289V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/15/2024) regarding [42] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0289V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/15/2024) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Kimmick" }, { @@ -16374,9 +16374,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-601V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/15/2024) regarding [35] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0601V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/15/2024) regarding [35] DECISION of Special Master - Fees", "case_name_shorts": "Kauterman" }, { @@ -16386,9 +16386,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-927V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/17/2024) regarding [19] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0927V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/17/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Jupiter" }, { @@ -16398,9 +16398,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-850V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [34] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0850V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Jones" }, { @@ -16410,9 +16410,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-193V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [42] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0193V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Jones" }, { @@ -16423,8 +16423,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1450V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 4/22/2024) regarding [45] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 4/22/2024) regarding [45] DECISION of Special Master", "case_name_shorts": "Hoos" }, { @@ -16434,9 +16434,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-848V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 4/23/2024) regarding [64] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "docket_numbers": "21-0848V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 4/23/2024) regarding [64] DECISION of Special Master - Fees", "case_name_shorts": "Hill" }, { @@ -16446,9 +16446,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-499V", - "judges": "M. Roth", - "summaries": "PUBLIC RULING (Originally filed: 04/25/2024) regarding [178] Ruling on Entitlement. Signed by Special Master Mindy Michaels Roth. (dkj) Service on parties made.", + "docket_numbers": "16-0499V", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC RULING (Originally filed: 04/25/2024) regarding [178] Ruling on Entitlement", "case_name_shorts": "Henley" }, { @@ -16459,8 +16459,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1454V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [26] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Hawk" }, { @@ -16471,8 +16471,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1124V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/19/2024 ) regarding [39] Findings of Fact & Conclusions of Law, Scheduling Order, Order on Motion for Ruling on the Record. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/19/2024 ) regarding [39] Findings of Fact & Conclusions of Law, Scheduling Order, Order on Motion for Ruling on the Record", "case_name_shorts": "Hawes" }, { @@ -16482,9 +16482,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-702V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [45] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0702V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [45] DECISION Stipulation/Proffer", "case_name_shorts": "Gushue" }, { @@ -16495,8 +16495,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1153V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/17/2024) regarding [19] Ruling on Entitlement (Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/17/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Gochnour" }, { @@ -16506,9 +16506,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-877V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/17/2024) regarding [38] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0877V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/17/2024) regarding [38] DECISION of Special Master - Fees", "case_name_shorts": "Fisher" }, { @@ -16519,8 +16519,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1783V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/16/2024) regarding [37] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/16/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -16530,9 +16530,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-512V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [49] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0512V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Elliott" }, { @@ -16543,8 +16543,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1228V", - "judges": "N. Dorsey", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 4/23/2024) regarding [28] Ruling on Entitlement. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 4/23/2024) regarding [28] Ruling on Entitlement", "case_name_shorts": "Costello" }, { @@ -16554,9 +16554,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-306V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/16/2024) regarding [44] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0306V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/16/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Carroll" }, { @@ -16566,9 +16566,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-83V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/15/2024) regarding [52] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0083V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/15/2024) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Brown" }, { @@ -16578,9 +16578,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-302V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/16/2024) regarding [40] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0302V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/16/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Bennett" }, { @@ -16591,8 +16591,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1775V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [49] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/19/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Alvarez" }, { @@ -16602,9 +16602,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-96V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/16/2024) regarding [23] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0096V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/16/2024) regarding [23] Ruling on Entitlement", "case_name_shorts": "Woods" }, { @@ -16615,8 +16615,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1721V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/17/2024) regarding [28] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/17/2024) regarding [28] Ruling on Entitlement", "case_name_shorts": "Winfield" }, { @@ -16627,8 +16627,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1712V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/16/2024) regarding [30] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/16/2024) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Moore" }, { @@ -16638,9 +16638,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-628V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/11/2024) regarding [45] Findings of Fact & Conclusions of Law. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0628V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/11/2024) regarding [45] Findings of Fact & Conclusions of Law", "case_name_shorts": "McAndrew" }, { @@ -16650,9 +16650,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-915V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/16/2024) regarding [31] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0915V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/16/2024) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Lindh" }, { @@ -16662,9 +16662,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-329V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/11/2024) regarding [47] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0329V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/11/2024) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Hendawi" }, { @@ -16675,8 +16675,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2299V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 4/23/2024) regarding [61] DECISION Stipulation. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 4/23/2024) regarding [61] DECISION Stipulation", "case_name_shorts": "Guilliod" }, { @@ -16687,8 +16687,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1772V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/15/2024) regarding [31] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/15/2024) regarding [31] DECISION of Special Master", "case_name_shorts": "Bavli" }, { @@ -16698,9 +16698,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-52V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/15/2024) regarding [57] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0052V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/15/2024) regarding [57] DECISION Stipulation/Proffer", "case_name_shorts": "Wender" }, { @@ -16711,8 +16711,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1270V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [30] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Parkinson" }, { @@ -16722,9 +16722,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-111V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [48] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0111V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -16735,8 +16735,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1914V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/11/2024) regarding [44] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/11/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Lepera" }, { @@ -16746,9 +16746,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-175V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 4/18/2024) regarding [69] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "docket_numbers": "21-0175V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 4/18/2024) regarding [69] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Kelley" }, { @@ -16758,9 +16758,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-856V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/15/2024) regarding [40] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0856V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/15/2024) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "Jennings" }, { @@ -16771,8 +16771,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1913V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/09/2024 ) regarding [66] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/09/2024 ) regarding [66] DECISION Stipulation/Proffer", "case_name_shorts": "Garrett" }, { @@ -16782,9 +16782,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-22V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/15/2024) regarding [58] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0022V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/15/2024) regarding [58] DECISION of Special Master - Fees", "case_name_shorts": "Frye" }, { @@ -16795,8 +16795,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1905V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 4/17/2024) regarding [102] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 4/17/2024) regarding [102] DECISION of Special Master - Fees", "case_name_shorts": "Forrest" }, { @@ -16806,9 +16806,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-970V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/09/2024) regarding [56] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0970V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/09/2024) regarding [56] DECISION of Special Master - Fees", "case_name_shorts": "F." }, { @@ -16818,9 +16818,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-325V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [48] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0325V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Borawski" }, { @@ -16830,9 +16830,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-645V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [59] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0645V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [59] DECISION of Special Master - Fees", "case_name_shorts": "Belanger" }, { @@ -16843,8 +16843,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1703V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 4/16/2024) regarding [67] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 4/16/2024) regarding [67] DECISION of Special Master - Fees", "case_name_shorts": "Velasquez" }, { @@ -16854,9 +16854,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-432V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/10/2024) regarding [19] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0432V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/10/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Karol" }, { @@ -16867,8 +16867,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2033V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [55] DECISION of Special Master, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [55] DECISION of Special Master", "case_name_shorts": "Gothers" }, { @@ -16878,9 +16878,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-591V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [41] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0591V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Conklin" }, { @@ -16890,9 +16890,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-290V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [42] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0290V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [42] DECISION Stipulation/Proffer", "case_name_shorts": "Bodie" }, { @@ -16903,8 +16903,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1280V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 4/15/2024) regarding [20] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 4/15/2024) regarding [20] Order Concluding Proceedings", "case_name_shorts": "Palm" }, { @@ -16915,8 +16915,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1027V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/11/2024) regarding [40] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/11/2024) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "Masangcay" }, { @@ -16927,8 +16927,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1442V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/09/2024) regarding [41] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/09/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Hobbs" }, { @@ -16938,9 +16938,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-651V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 4/16/2024) regarding [47] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "docket_numbers": "21-0651V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 4/16/2024) regarding [47] DECISION Stipulation/Proffer", "case_name_shorts": "Haugh" }, { @@ -16950,9 +16950,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-152V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/11/2024) regarding [44] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0152V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/11/2024) regarding [44] DECISION Stipulation/Proffer", "case_name_shorts": "Hanne" }, { @@ -16962,9 +16962,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-731V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 4/16/2024) regarding [143] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "docket_numbers": "15-0731V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 4/16/2024) regarding [143] DECISION of Special Master - Fees", "case_name_shorts": "F." }, { @@ -16975,8 +16975,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1493V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 4/19/2024) regarding [16] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 4/19/2024) regarding [16] DECISION of Special Master", "case_name_shorts": "Dempsey" }, { @@ -16987,8 +16987,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1845V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [39] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/18/2024) regarding [39] DECISION of Special Master", "case_name_shorts": "Chrisman" }, { @@ -16999,8 +16999,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1501V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 4/16/2024) regarding [55] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 4/16/2024) regarding [55] DECISION Stipulation/Proffer", "case_name_shorts": "Chinnock" }, { @@ -17010,9 +17010,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-663V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [43] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0663V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "Alsup" }, { @@ -17023,8 +17023,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1336V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [66] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [66] DECISION of Special Master - Fees", "case_name_shorts": "Zilinski" }, { @@ -17035,8 +17035,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1762V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/08/2024) regarding [26] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/08/2024) regarding [26] DECISION of Special Master - Fees", "case_name_shorts": "Walker" }, { @@ -17047,8 +17047,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1998V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/08/2024) regarding [39] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/08/2024) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Terry" }, { @@ -17059,8 +17059,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1414V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [38] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Taylor" }, { @@ -17071,8 +17071,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1828V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/11/2024) regarding [71] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/11/2024) regarding [71] DECISION of Special Master - Fees", "case_name_shorts": "Medina" }, { @@ -17082,9 +17082,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-170V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024 ) regarding [31] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0170V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024 ) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Ladwig" }, { @@ -17094,9 +17094,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-680V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/09/2024) regarding [50] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "20-0680V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/09/2024) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Kleinschmidt" }, { @@ -17107,8 +17107,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1707V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [40] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -17119,8 +17119,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1256V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/11/2024) regarding [44] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/11/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Crouse" }, { @@ -17131,8 +17131,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2206V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/08/2024) regarding [38] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/08/2024) regarding [38] DECISION of Special Master - Fees", "case_name_shorts": "Connors" }, { @@ -17143,8 +17143,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1646V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [38] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Comora" }, { @@ -17154,9 +17154,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-906V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/08/2024) regarding [48] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0906V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/08/2024) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Cabral" }, { @@ -17167,8 +17167,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1306V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/08/2024) regarding [17] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/08/2024) regarding [17] Ruling on Entitlement", "case_name_shorts": "Bowie" }, { @@ -17178,9 +17178,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-646V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [49] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0646V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -17191,8 +17191,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1659V", - "judges": "K. Oler", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 4/19/2024) regarding [89] Ruling on Entitlement. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 4/19/2024) regarding [89] Ruling on Entitlement", "case_name_shorts": "B." }, { @@ -17203,8 +17203,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1109V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [44] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [44] DECISION Stipulation/Proffer", "case_name_shorts": "Ziegler" }, { @@ -17214,9 +17214,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-686V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/08/2024) regarding [26] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0686V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/08/2024) regarding [26] Ruling on Entitlement", "case_name_shorts": "Tan" }, { @@ -17226,9 +17226,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-460V", - "judges": "T. Gowen", - "summaries": "PUBLIC RULING (Originally filed: 04/05/2024) regarding [18] Ruling on Entitlement. Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "docket_numbers": "23-0460V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC RULING (Originally filed: 04/05/2024) regarding [18] Ruling on Entitlement", "case_name_shorts": "Royster" }, { @@ -17238,9 +17238,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-327V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/08/2024) regarding [28] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0327V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/08/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Neidig" }, { @@ -17251,8 +17251,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1776V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [27] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "McLaughlin" }, { @@ -17262,9 +17262,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-350V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 04/08/2024) regarding [61] DECISION of Special Master. Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "docket_numbers": "19-0350V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 04/08/2024) regarding [61] DECISION of Special Master", "case_name_shorts": "McBane" }, { @@ -17275,8 +17275,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1655V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [27] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Lasseter" }, { @@ -17286,9 +17286,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-753V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/09/2024) regarding [42] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0753V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/09/2024) regarding [42] DECISION Stipulation/Proffer", "case_name_shorts": "Hydutsky" }, { @@ -17298,9 +17298,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-398V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/09/2024) regarding [49] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0398V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/09/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Horn" }, { @@ -17311,8 +17311,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1928V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [47] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/10/2024) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Egan" }, { @@ -17323,8 +17323,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1931V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/10/2024) regarding [49] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/10/2024) regarding [49] Ruling on Entitlement", "case_name_shorts": "Chew" }, { @@ -17335,8 +17335,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1532V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/08/2024) regarding [20] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/08/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "Woodland" }, { @@ -17346,9 +17346,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-691V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/08/2024) regarding [36] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0691V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/08/2024) regarding [36] DECISION of Special Master - Fees", "case_name_shorts": "Portee" }, { @@ -17358,9 +17358,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-845V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/09/2024) regarding [22] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0845V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/09/2024) regarding [22] Ruling on Entitlement", "case_name_shorts": "Ortiz" }, { @@ -17370,9 +17370,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-327V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/08/2024) regarding [27] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0327V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/08/2024) regarding [27] Ruling on Entitlement", "case_name_shorts": "Neidig" }, { @@ -17382,9 +17382,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-845V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/14/2022) regarding [32] Findings of Fact & Conclusions of Law ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "20-0845V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/14/2022) regarding [32] Findings of Fact & Conclusions of Law", "case_name_shorts": "Molina" }, { @@ -17394,9 +17394,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-723V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [58] DECISION Stipulation. Signed by Special Master Mindy Michaels Roth. (dkj) Service on parties made.", + "docket_numbers": "20-0723V", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [58] DECISION Stipulation", "case_name_shorts": "Hernandez" }, { @@ -17406,9 +17406,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-387V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/27/2024) regarding [45] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "20-0387V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/27/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Cashion" }, { @@ -17419,8 +17419,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1825V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/27/2024) regarding [49] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/27/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Cardenas" }, { @@ -17430,9 +17430,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-714V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/08/2024) regarding [21] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0714V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/08/2024) regarding [21] Ruling on Entitlement", "case_name_shorts": "Boyd" }, { @@ -17443,8 +17443,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1706V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/27/2024) regarding [54] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/27/2024) regarding [54] DECISION of Special Master - Fees", "case_name_shorts": "Barber" }, { @@ -17454,9 +17454,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-795V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/05/2024) regarding [19] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0795V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/05/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Strehl" }, { @@ -17467,8 +17467,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1449V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [63] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [63] DECISION of Special Master - Fees", "case_name_shorts": "Mire" }, { @@ -17478,9 +17478,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-779V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/05/2024) regarding [53] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "20-0779V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/05/2024) regarding [53] DECISION Stipulation/Proffer", "case_name_shorts": "Meyers" }, { @@ -17491,8 +17491,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1445V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [32] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/12/2024) regarding [32] DECISION of Special Master", "case_name_shorts": "Marshall" }, { @@ -17503,8 +17503,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2322V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [60] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [60] DECISION of Special Master - Fees", "case_name_shorts": "Jasper" }, { @@ -17514,9 +17514,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-657V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [44] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0657V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Foster" }, { @@ -17527,8 +17527,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1806V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/05/2024) regarding [27] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/05/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Dowd" }, { @@ -17539,8 +17539,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1075V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/08/2024) regarding [26] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/08/2024) regarding [26] DECISION of Special Master - Fees", "case_name_shorts": "Brown" }, { @@ -17550,9 +17550,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-64V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/08/2024) regarding [45] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0064V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/08/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Allen" }, { @@ -17563,8 +17563,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1325V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 4/11/2024) regarding [14] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 4/11/2024) regarding [14] DECISION of Special Master", "case_name_shorts": "Wigler" }, { @@ -17575,8 +17575,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1342V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 4/11/2024) regarding [15] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 4/11/2024) regarding [15] DECISION of Special Master", "case_name_shorts": "Tate" }, { @@ -17586,9 +17586,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-236V", - "judges": "D. Horner", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 4/5/2024) regarding [125] Ruling on Entitlement. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "docket_numbers": "17-0236V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 4/5/2024) regarding [125] Ruling on Entitlement", "case_name_shorts": "RODELA" }, { @@ -17598,9 +17598,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-503V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/05/2024) regarding [23] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0503V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/05/2024) regarding [23] Ruling on Entitlement", "case_name_shorts": "Mengistu" }, { @@ -17611,8 +17611,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1008V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 4/8/2024) regarding [53] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 4/8/2024) regarding [53] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -17622,9 +17622,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-550V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 4/15/2024) regarding [83] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (dksc) Service on parties made.", + "docket_numbers": "20-0550V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 4/15/2024) regarding [83] DECISION of Special Master - Fees", "case_name_shorts": "Harlow" }, { @@ -17634,9 +17634,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-503V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 04/16/2024) regarding [69] DECISION of Special Master Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "19-0503V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 04/16/2024) regarding [69] DECISION of Special Master", "case_name_shorts": "Goodwin" }, { @@ -17646,9 +17646,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-871V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 4/8/2024) regarding [99] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "docket_numbers": "19-0871V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 4/8/2024) regarding [99] DECISION of Special Master - Fees", "case_name_shorts": "D." }, { @@ -17659,8 +17659,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1832V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 4/11/2024) regarding [70] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 4/11/2024) regarding [70] DECISION of Special Master - Fees", "case_name_shorts": "Brady" }, { @@ -17671,8 +17671,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1674V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/01/2024) regarding [39] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/01/2024) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "Worsley" }, { @@ -17682,9 +17682,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-285V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/05/2024) regarding [42] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0285V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/05/2024) regarding [42] DECISION Stipulation/Proffer", "case_name_shorts": "Wellington" }, { @@ -17694,9 +17694,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-526V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/05/2024) regarding [24] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0526V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/05/2024) regarding [24] DECISION Stipulation/Proffer", "case_name_shorts": "Webb" }, { @@ -17706,9 +17706,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-505V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [49] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0505V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Wagner" }, { @@ -17718,9 +17718,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-787V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [17] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0787V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [17] DECISION Stipulation/Proffer", "case_name_shorts": "Vincent" }, { @@ -17730,9 +17730,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-160V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [40] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0160V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Universal" }, { @@ -17743,8 +17743,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1641V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [23] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [23] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -17755,8 +17755,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1590V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [43] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Seely" }, { @@ -17767,8 +17767,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1078V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/05/2024) regarding [22] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/05/2024) regarding [22] Ruling on Entitlement", "case_name_shorts": "Schiller" }, { @@ -17779,8 +17779,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1726V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 4/11/2024) regarding [72] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 4/11/2024) regarding [72] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Powell" }, { @@ -17790,9 +17790,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-454V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [40] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0454V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Pendleton" }, { @@ -17802,9 +17802,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-592V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/03/2024) regarding [27] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0592V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/03/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Palermo" }, { @@ -17814,9 +17814,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-869V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [58] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0869V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [58] DECISION of Special Master", "case_name_shorts": "Maxfield" }, { @@ -17826,9 +17826,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-497V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [26] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0497V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Lyons" }, { @@ -17838,9 +17838,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-586V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [50] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0586V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Lucks" }, { @@ -17851,8 +17851,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1805V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/05/2024) regarding [30] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/05/2024) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Kopolovich" }, { @@ -17863,8 +17863,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1550V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [35] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [35] DECISION of Special Master - Fees", "case_name_shorts": "Huffman" }, { @@ -17875,8 +17875,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1104V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [60] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [60] DECISION of Special Master - Fees", "case_name_shorts": "Hooks" }, { @@ -17886,9 +17886,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-307V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [36] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0307V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [36] DECISION of Special Master - Fees", "case_name_shorts": "Holleran" }, { @@ -17898,9 +17898,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-868V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 04/11/2024) regarding [37] DECISION of Special Master - Fees. Signed by Special Master Mindy Michaels Roth. (dkj) Service on parties made.", + "docket_numbers": "20-0868V", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 04/11/2024) regarding [37] DECISION of Special Master - Fees", "case_name_shorts": "Hendrix" }, { @@ -17911,8 +17911,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1262V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/09/2024) regarding [71] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/09/2024) regarding [71] DECISION Stipulation/Proffer", "case_name_shorts": "Grant" }, { @@ -17923,8 +17923,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1259V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/03/2024) regarding [50] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/03/2024) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Eckert" }, { @@ -17934,9 +17934,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-58V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/01/2024) regarding [40] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0058V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/01/2024) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "Donofrio" }, { @@ -17947,8 +17947,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1547V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/05/2024) regarding [17] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/05/2024) regarding [17] Ruling on Entitlement", "case_name_shorts": "Dapkus" }, { @@ -17958,9 +17958,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-531V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [47] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0531V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Crowder" }, { @@ -17970,9 +17970,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-186V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/04/2024) regarding [22] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0186V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/04/2024) regarding [22] Ruling on Entitlement", "case_name_shorts": "Corcoran" }, { @@ -17983,8 +17983,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1513V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [29] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "CARPINO" }, { @@ -17994,9 +17994,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-3V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [46] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0003V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Bunnell" }, { @@ -18006,9 +18006,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-16V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/03/2024) regarding [44] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0016V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/03/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Birnie" }, { @@ -18019,8 +18019,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1621V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/05/2024) regarding [26] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/05/2024) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Baker" }, { @@ -18030,9 +18030,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-340V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [52] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0340V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Antigua" }, { @@ -18043,8 +18043,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1451V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/01/2024) regarding [33] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/01/2024) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -18055,8 +18055,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1526V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/01/2024) regarding [48] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/01/2024) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Voeller" }, { @@ -18066,9 +18066,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-210V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/03/2024) regarding [41] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0210V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/03/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Templeton" }, { @@ -18078,9 +18078,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-545V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/01/2024) regarding [28] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0545V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/01/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Taylor" }, { @@ -18090,9 +18090,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-150V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [54] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0150V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [54] DECISION of Special Master - Fees", "case_name_shorts": "Snavely" }, { @@ -18103,8 +18103,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1849V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [48] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [48] DECISION Stipulation/Proffer", "case_name_shorts": "Quezada" }, { @@ -18115,8 +18115,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1536V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/03/2024) regarding [45] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/03/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Purdin" }, { @@ -18127,8 +18127,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2063V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [39] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "Mouyos" }, { @@ -18139,8 +18139,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1400V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/03/2024) regarding [30] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/03/2024) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "McCarty" }, { @@ -18150,9 +18150,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-433V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/01/2024) regarding [25] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0433V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/01/2024) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "Madden" }, { @@ -18162,9 +18162,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-409V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/02/2024) regarding [33] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0409V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/02/2024) regarding [33] Ruling on Entitlement", "case_name_shorts": "Liebell" }, { @@ -18174,9 +18174,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-71V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/03/2024) regarding [41] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0071V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/03/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Lawrence" }, { @@ -18186,9 +18186,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-561V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [35] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0561V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [35] DECISION of Special Master - Fees", "case_name_shorts": "Kouzmov" }, { @@ -18198,9 +18198,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-140V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024) regarding [46] DECISION of Special Master - Fees. Signed by Special Master Herbrina Sanders. (rig) Service on parties made.", + "docket_numbers": "20-0140V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -18211,8 +18211,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1223V", - "judges": "H. Sanders", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/25/2024) regarding [53] Findings of Fact & Conclusions of Law. Signed by Special Master Herbrina Sanders. (rig) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/25/2024) regarding [53] Findings of Fact & Conclusions of Law", "case_name_shorts": "Golden" }, { @@ -18222,9 +18222,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-1V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [50] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0001V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Esters" }, { @@ -18234,9 +18234,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-746V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/28/2024) regarding [19] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0746V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/28/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Davidson" }, { @@ -18247,8 +18247,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1702V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [65] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [65] DECISION of Special Master - Fees", "case_name_shorts": "Darroca" }, { @@ -18258,9 +18258,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-400V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/28/2024) regarding [42] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0400V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/28/2024) regarding [42] DECISION Stipulation/Proffer", "case_name_shorts": "Covey" }, { @@ -18271,8 +18271,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2198V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [60] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/02/2024) regarding [60] DECISION Stipulation/Proffer", "case_name_shorts": "Brodeur" }, { @@ -18282,9 +18282,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-465V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/02/2024) regarding [25] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0465V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/02/2024) regarding [25] Ruling on Entitlement", "case_name_shorts": "Appel" }, { @@ -18295,8 +18295,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1295V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/01/2024) regarding [52] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/01/2024) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Poteet" }, { @@ -18306,9 +18306,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-667V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/02/2024) regarding [22] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0667V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 04/02/2024) regarding [22] Ruling on Entitlement", "case_name_shorts": "Photopoulos" }, { @@ -18318,9 +18318,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-72V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/01/2024) regarding [41] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0072V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/01/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "McGraw" }, { @@ -18330,9 +18330,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-518V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/01/2024) regarding [35] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0518V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/01/2024) regarding [35] DECISION of Special Master", "case_name_shorts": "Kresl" }, { @@ -18343,8 +18343,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1803V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/01/2024) regarding [47] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/01/2024) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Fink" }, { @@ -18354,9 +18354,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-154V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [54] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "20-0154V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [54] DECISION of Special Master - Fees", "case_name_shorts": "Eichorn" }, { @@ -18367,8 +18367,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2127V", - "judges": "K. Oler", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 4/9/2024) regarding [33] Order Concluding Proceedings Pursuant to Vaccine Rule 21(a). Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 4/9/2024) regarding [33] Order Concluding Proceedings Pursuant to Vaccine Rule 21(a", "case_name_shorts": "Young" }, { @@ -18379,8 +18379,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1032V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [36] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Wyman" }, { @@ -18390,9 +18390,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-409V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [51] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0409V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [51] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -18403,8 +18403,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1772V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 4/12/2024) regarding [88] DECISION Dismissing Petition. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 4/12/2024) regarding [88] DECISION Dismissing Petition", "case_name_shorts": "Salah" }, { @@ -18415,8 +18415,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2082V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [32] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [32] DECISION Stipulation/Proffer", "case_name_shorts": "Rio-Tsonis" }, { @@ -18426,9 +18426,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-307V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/28/2024) regarding [33] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0307V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/28/2024) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Pollard" }, { @@ -18438,9 +18438,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-853V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [58] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0853V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [58] DECISION Stipulation/Proffer", "case_name_shorts": "Paaswell" }, { @@ -18450,9 +18450,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-343V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [58] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0343V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [58] DECISION of Special Master - Fees", "case_name_shorts": "Overton" }, { @@ -18462,9 +18462,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-713V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/27/2024) regarding [48] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0713V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/27/2024) regarding [48] DECISION Stipulation/Proffer", "case_name_shorts": "Nguyen" }, { @@ -18475,8 +18475,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1173V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 4/5/2024) regarding [19] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 4/5/2024) regarding [19] Order Concluding Proceedings", "case_name_shorts": "Matsuda" }, { @@ -18487,8 +18487,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1938V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/28/2024) regarding [50] Ruling on Entitlement, DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/28/2024) regarding [50] Ruling on Entitlement, DECISION of Special Master", "case_name_shorts": "Kahler" }, { @@ -18499,8 +18499,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1534V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [32] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [32] DECISION of Special Master - Fees", "case_name_shorts": "Hintzke" }, { @@ -18510,9 +18510,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-45V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [44] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0045V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -18522,9 +18522,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-838V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/27/2024) regarding [43] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0838V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/27/2024) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "Groves" }, { @@ -18535,8 +18535,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2049V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/27/2024) regarding [48] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/27/2024) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Diaz" }, { @@ -18547,8 +18547,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1001V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 3/29/2024) regarding [73] DECISION Dismissing Petition. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 3/29/2024) regarding [73] DECISION Dismissing Petition", "case_name_shorts": "Delio" }, { @@ -18558,9 +18558,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-312V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/28/2024) regarding [32] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0312V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/28/2024) regarding [32] DECISION Stipulation/Proffer", "case_name_shorts": "Castelein" }, { @@ -18571,8 +18571,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1866V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 4/5/2024) regarding [59] DECISION of Special Master. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made. Mailed to Pro Se Petitioner on 5/2/24 Modified on 5/2/2024 (tjk).", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 4/5/2024) regarding [59] DECISION of Special Master", "case_name_shorts": "Carrasquillo" }, { @@ -18583,8 +18583,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1058V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [60] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [60] DECISION of Special Master - Fees", "case_name_shorts": "Brantley-Karasinski" }, { @@ -18594,9 +18594,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-922V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 3/28/2024) regarding [85] DECISION Dismissing Petition. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "docket_numbers": "16-0922V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 3/28/2024) regarding [85] DECISION Dismissing Petition", "case_name_shorts": "BAXTER" }, { @@ -18606,9 +18606,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-980V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [69] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0980V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [69] DECISION of Special Master - Fees", "case_name_shorts": "Axelrod" }, { @@ -18619,8 +18619,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1993V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/22/2024) regarding [38] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/22/2024) regarding [38] DECISION of Special Master", "case_name_shorts": "" }, { @@ -18631,8 +18631,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1473V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/25/2024) regarding [49] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/25/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Sawyer" }, { @@ -18642,9 +18642,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-263V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 04/05/2024) regarding [105] DECISION Stipulation. Signed by Special Master Mindy Michaels Roth. (dkj) Service on parties made.", + "docket_numbers": "19-0263V", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 04/05/2024) regarding [105] DECISION Stipulation", "case_name_shorts": "Rytel" }, { @@ -18654,9 +18654,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-663V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/28/2024) regarding [25] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0663V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/28/2024) regarding [25] Ruling on Entitlement", "case_name_shorts": "Newman" }, { @@ -18666,9 +18666,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-900V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [56] DECISION of Special Master - Fees, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0900V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [56] DECISION of Special Master - Fees", "case_name_shorts": "McKEEHAN" }, { @@ -18678,9 +18678,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-493V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/27/2024) regarding [20] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0493V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/27/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "Marshall" }, { @@ -18691,8 +18691,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2145V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/25/2024) regarding [33] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/25/2024) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Hupp" }, { @@ -18702,9 +18702,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-860V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [25] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0860V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "Gautier" }, { @@ -18714,9 +18714,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-764V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/21/2024) regarding [40] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0764V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/21/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Garcia" }, { @@ -18727,8 +18727,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1673V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/21/2024) regarding [32] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/21/2024) regarding [32] DECISION Stipulation/Proffer", "case_name_shorts": "Cullen" }, { @@ -18738,9 +18738,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-619V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/27/2024) regarding [55] DECISION of Special Master - Fees, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0619V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/27/2024) regarding [55] DECISION of Special Master - Fees", "case_name_shorts": "Armenta" }, { @@ -18751,8 +18751,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2050V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [52] DECISION of Special Master - Fees, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Andersen" }, { @@ -18763,8 +18763,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1306V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [42] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made. (Main Document 45 replaced on 5/16/2024 to attach corrected PDF) (ypb).", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Yanovsky" }, { @@ -18774,9 +18774,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-259V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/28/2024) regarding [29] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0259V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/28/2024) regarding [29] Ruling on Entitlement", "case_name_shorts": "Walker" }, { @@ -18786,9 +18786,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-521V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/25/2024) regarding [38] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0521V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/25/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Wagner" }, { @@ -18798,9 +18798,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-787V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/29/2024) regarding [15] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0787V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/29/2024) regarding [15] Ruling on Entitlement", "case_name_shorts": "Vincent" }, { @@ -18811,8 +18811,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1010V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/26/2024) regarding [19] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/26/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Vargas" }, { @@ -18822,9 +18822,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-394V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [44] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0394V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Valdez" }, { @@ -18835,8 +18835,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1131V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/27/2024) regarding [31] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/27/2024) regarding [31] DECISION of Special Master - Fees", "case_name_shorts": "Theisen" }, { @@ -18846,9 +18846,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-477V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 4/1/2024) regarding [41] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "docket_numbers": "22-0477V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 4/1/2024) regarding [41] DECISION of Special Master", "case_name_shorts": "Stewart-Robinson" }, { @@ -18858,9 +18858,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-360V", - "judges": "B. Corcoran", - "summaries": "RE-DOCKETED [53] FOR ADMINISTRATIVE PURPOSES PUBLIC DECISION (Originally filed: 3/28/2024) regarding [47] Ruling on Entitlement, DECISION of Special Master, Order on Motion for Ruling on the Record Signed by Chief Special Master Brian H. Corcoran. (fm) Service on parties made.", + "docket_numbers": "21-0360V", + "judges": "Brian H. Corcoran", + "summaries": "RE-DOCKETED [53] FOR ADMINISTRATIVE PURPOSES PUBLIC DECISION (Originally filed: 3/28/2024) regarding [47] Ruling on Entitlement, DECISION of Special Master, Order on Motion for Ruling on the Record", "case_name_shorts": "" }, { @@ -18870,9 +18870,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-255V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [23] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0255V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [23] DECISION Stipulation/Proffer", "case_name_shorts": "Sharma" }, { @@ -18882,9 +18882,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-974V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/27/2024) regarding [20] DECISION of Special Master, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made. Petitioner served via first class on 4/29/24 (ypb).", + "docket_numbers": "23-0974V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/27/2024) regarding [20] DECISION of Special Master", "case_name_shorts": "Scammell" }, { @@ -18895,8 +18895,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1150V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [62] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [62] DECISION of Special Master - Fees", "case_name_shorts": "Parsons" }, { @@ -18906,9 +18906,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-257V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 4/2/2024) regarding [317] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "docket_numbers": "14-0257V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 4/2/2024) regarding [317] DECISION of Special Master - Fees", "case_name_shorts": "Orm" }, { @@ -18919,8 +18919,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1996V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [53] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [53] DECISION of Special Master - Fees", "case_name_shorts": "Noa" }, { @@ -18930,9 +18930,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-709V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/28/2024) regarding [20] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0709V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/28/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "Naude" }, { @@ -18943,8 +18943,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1291V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [57] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [57] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -18954,9 +18954,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-593V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [30] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0593V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Little" }, { @@ -18967,8 +18967,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1047V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/01/2024) regarding [131] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/01/2024) regarding [131] DECISION of Special Master", "case_name_shorts": "Laurette" }, { @@ -18978,9 +18978,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-274V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [48] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0274V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "John" }, { @@ -18990,9 +18990,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-684V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/03/2024) regarding [72] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "20-0684V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/03/2024) regarding [72] DECISION Stipulation/Proffer", "case_name_shorts": "Guy" }, { @@ -19003,8 +19003,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1932V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 4/4/2024) regarding [52] DECISION of Special Master. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 4/4/2024) regarding [52] DECISION of Special Master", "case_name_shorts": "Greco" }, { @@ -19015,8 +19015,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1644V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [39] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (mva). Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Goettl" }, { @@ -19027,8 +19027,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2012V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [61] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [61] DECISION of Special Master - Fees", "case_name_shorts": "Gilmour" }, { @@ -19038,9 +19038,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-611V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/27/2024) regarding [41] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0611V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/27/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Foti" }, { @@ -19051,8 +19051,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1832V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [55] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [55] DECISION of Special Master - Fees", "case_name_shorts": "Fey" }, { @@ -19063,8 +19063,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1771V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [50] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Elzabad" }, { @@ -19075,8 +19075,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1488V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/25/2024) regarding [53] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/25/2024) regarding [53] DECISION of Special Master - Fees", "case_name_shorts": "Dulaney" }, { @@ -19086,9 +19086,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-206V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/25/2024) regarding [65] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "20-0206V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/25/2024) regarding [65] DECISION of Special Master - Fees", "case_name_shorts": "Davenport" }, { @@ -19098,9 +19098,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-597V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [49] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0597V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Crider" }, { @@ -19110,9 +19110,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-533V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [45] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0533V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Bulluck" }, { @@ -19122,9 +19122,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-905V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/27/2024) regarding [45] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0905V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/27/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Brotman" }, { @@ -19134,9 +19134,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-501V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 04/05/2024) regarding [225] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "17-0501V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 04/05/2024) regarding [225] DECISION of Special Master - Fees", "case_name_shorts": "Bravo" }, { @@ -19147,8 +19147,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2244V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [48] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/29/2024) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Belarbi" }, { @@ -19159,8 +19159,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2100V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [34] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 04/04/2024) regarding [34] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -19171,8 +19171,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1277V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [59] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [59] DECISION of Special Master - Fees", "case_name_shorts": "Yockteng" }, { @@ -19183,8 +19183,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1381V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [78] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [78] DECISION of Special Master - Fees", "case_name_shorts": "Vallee" }, { @@ -19195,8 +19195,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1971V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [56] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [56] DECISION Stipulation/Proffer", "case_name_shorts": "Smestad" }, { @@ -19207,8 +19207,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1254V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/26/2024) regarding [29] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/26/2024) regarding [29] Ruling on Entitlement", "case_name_shorts": "Sitton" }, { @@ -19219,8 +19219,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2013V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/26/2024 ) regarding [53] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/26/2024 ) regarding [53] Ruling on Entitlement", "case_name_shorts": "Ritter" }, { @@ -19231,8 +19231,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1650V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [54] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [54] DECISION of Special Master - Fees", "case_name_shorts": "Lindsey" }, { @@ -19243,8 +19243,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1390V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/25/2024) regarding [35] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/25/2024) regarding [35] DECISION of Special Master - Fees", "case_name_shorts": "Kilgore" }, { @@ -19255,8 +19255,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1973V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [70] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [70] DECISION of Special Master - Fees", "case_name_shorts": "Glanville" }, { @@ -19266,9 +19266,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-302V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 4/4/2024) regarding [179] DECISION of Special Master Signed by Special Master Christian J. Moran. (dksc) Service on parties made.", + "docket_numbers": "18-0302V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 4/4/2024) regarding [179] DECISION of Special Master", "case_name_shorts": "Broussard" }, { @@ -19278,9 +19278,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-127V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/27/2024) regarding [28] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0127V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/27/2024) regarding [28] Ruling on Entitlement", "case_name_shorts": "Boria" }, { @@ -19290,9 +19290,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-535V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 3/25/2024) regarding [40] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "docket_numbers": "22-0535V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 3/25/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "White" }, { @@ -19302,9 +19302,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-695V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [61] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0695V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [61] DECISION of Special Master - Fees", "case_name_shorts": "Siddle" }, { @@ -19314,9 +19314,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-373V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/25/2024) regarding [40] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0373V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/25/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Robichaux" }, { @@ -19327,8 +19327,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2077V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [57] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [57] DECISION of Special Master - Fees", "case_name_shorts": "Roa" }, { @@ -19339,8 +19339,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1560V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [40] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Lamine" }, { @@ -19351,8 +19351,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1913V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 3/25/2024) regarding [63] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 3/25/2024) regarding [63] DECISION of Special Master - Fees", "case_name_shorts": "Clapp" }, { @@ -19362,9 +19362,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-461V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [55] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0461V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [55] DECISION of Special Master - Fees", "case_name_shorts": "Chung" }, { @@ -19375,8 +19375,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1197V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [53] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [53] DECISION of Special Master - Fees", "case_name_shorts": "Benz" }, { @@ -19387,8 +19387,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1696V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/19/2024) regarding [41] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/19/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Tomchak" }, { @@ -19399,8 +19399,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2123V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/21/2024) regarding [35] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/21/2024) regarding [35] DECISION of Special Master - Fees", "case_name_shorts": "Shanno" }, { @@ -19410,9 +19410,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-892V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/22/2024) regarding [31] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0892V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/22/2024) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Settlemier" }, { @@ -19423,8 +19423,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1546V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/20/2024) regarding [18] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/20/2024) regarding [18] Ruling on Entitlement", "case_name_shorts": "Roberts" }, { @@ -19434,9 +19434,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-470V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/19/2024) regarding [39] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0470V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/19/2024) regarding [39] Ruling on Entitlement", "case_name_shorts": "Hoffken" }, { @@ -19446,9 +19446,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-134V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/22/2024) regarding [51] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made. (Main Document 55 replaced on 4/24/2024 to attach corrected PDF) (ypb).", + "docket_numbers": "21-0134V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/22/2024) regarding [51] DECISION Stipulation/Proffer", "case_name_shorts": "Davis" }, { @@ -19458,9 +19458,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-8V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 3/28/2024) regarding [128] DECISION of Special Master. Signed by Special Master Mindy Michaels Roth. (msg) Service on parties made.", + "docket_numbers": "15-0008V", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 3/28/2024) regarding [128] DECISION of Special Master", "case_name_shorts": "DAVIS" }, { @@ -19470,9 +19470,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-140V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/22/2024) regarding [63] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0140V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/22/2024) regarding [63] DECISION Stipulation/Proffer", "case_name_shorts": "Blackmon" }, { @@ -19483,8 +19483,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2285V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/20/2024) regarding [42] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/20/2024) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Winning" }, { @@ -19495,8 +19495,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1192V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 3/26/2024) regarding [18] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 3/26/2024) regarding [18] DECISION of Special Master", "case_name_shorts": "Sincoff" }, { @@ -19506,9 +19506,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-66V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/21/2024) regarding [42] DECISION of Special Master, Ruling on Entitlement, Order on Motion for Ruling on the Record Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0066V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/21/2024) regarding [42] DECISION of Special Master, Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "Schwalm" }, { @@ -19518,9 +19518,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-794V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [49] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "21-0794V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/26/2024) regarding [49] DECISION of Special Master", "case_name_shorts": "Saville" }, { @@ -19531,8 +19531,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1176V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/21/2024) regarding [17] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/21/2024) regarding [17] Ruling on Entitlement", "case_name_shorts": "Ramsey" }, { @@ -19542,9 +19542,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-403V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/20/2024) regarding [44] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0403V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/20/2024) regarding [44] DECISION Stipulation/Proffer", "case_name_shorts": "Nunes" }, { @@ -19555,8 +19555,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1047V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/25/2024) regarding [129] Findings of Fact & Conclusions of Law. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/25/2024) regarding [129] Findings of Fact & Conclusions of Law", "case_name_shorts": "Laurette" }, { @@ -19566,9 +19566,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-495V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/20/2024) regarding [20] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0495V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/20/2024) regarding [20] DECISION Stipulation/Proffer", "case_name_shorts": "Kramb" }, { @@ -19579,8 +19579,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2014V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/22/2024) regarding [36] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/22/2024) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Knowles" }, { @@ -19590,9 +19590,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-50V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/21/2024) regarding [54] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0050V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/21/2024) regarding [54] DECISION Stipulation/Proffer", "case_name_shorts": "Howard" }, { @@ -19603,8 +19603,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1137V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 3/27/2024) regarding [17] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 3/27/2024) regarding [17] Order Concluding Proceedings", "case_name_shorts": "Hodges" }, { @@ -19614,9 +19614,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-331V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [41] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0331V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Hesker" }, { @@ -19626,9 +19626,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-355V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 4/2/2024) regarding [61] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (dksc) Service on parties made.", + "docket_numbers": "21-0355V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 4/2/2024) regarding [61] DECISION of Special Master - Fees", "case_name_shorts": "Haritoudis" }, { @@ -19638,9 +19638,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-902V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [41] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0902V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Hanahan" }, { @@ -19650,9 +19650,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-328V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/20/2024) regarding [39] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0328V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/20/2024) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Grayson" }, { @@ -19663,8 +19663,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-1338V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 4/2/2024) regarding [63] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (dksc) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 4/2/2024) regarding [63] DECISION of Special Master - Fees", "case_name_shorts": "Giesbrecht" }, { @@ -19674,9 +19674,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-178V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/19/2024) regarding [28] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0178V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/19/2024) regarding [28] Ruling on Entitlement", "case_name_shorts": "Frank" }, { @@ -19686,9 +19686,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-421V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/18/2024) regarding [19] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0421V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/18/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Fowler" }, { @@ -19698,9 +19698,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-612V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 3/26/2024) regarding [70] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "docket_numbers": "20-0612V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 3/26/2024) regarding [70] DECISION of Special Master - Fees", "case_name_shorts": "Edwards" }, { @@ -19711,8 +19711,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1025V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [36] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [36] DECISION of Special Master - Fees", "case_name_shorts": "Doenlen" }, { @@ -19723,8 +19723,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1067V", - "judges": "N. Dorsey", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 3/29/2024) regarding [98] Ruling on Entitlement. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made. Modified on 4/23/2024 to update docket text (ypb).", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 3/29/2024) regarding [98] Ruling on Entitlement", "case_name_shorts": "Coons" }, { @@ -19735,8 +19735,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2241V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/20/2024) regarding [37] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/20/2024) regarding [37] DECISION of Special Master", "case_name_shorts": "Bryant" }, { @@ -19747,8 +19747,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1235V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/21/2024) regarding [46] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/21/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Brummett" }, { @@ -19758,9 +19758,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-481V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/22/2024) regarding [22] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0481V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/22/2024) regarding [22] DECISION Stipulation/Proffer", "case_name_shorts": "Brache" }, { @@ -19770,9 +19770,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-481V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/22/2024) regarding [21] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0481V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/22/2024) regarding [21] Ruling on Entitlement", "case_name_shorts": "Brache" }, { @@ -19782,9 +19782,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-436V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 3/28/2024) regarding [143] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (dksc) Service on parties made.", + "docket_numbers": "18-0436V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 3/28/2024) regarding [143] DECISION of Special Master - Fees", "case_name_shorts": "Bayles" }, { @@ -19794,9 +19794,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-87V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/18/2024) regarding [32] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0087V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/18/2024) regarding [32] DECISION of Special Master - Fees", "case_name_shorts": "Aman" }, { @@ -19807,8 +19807,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1209V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 3/27/2024) regarding [15] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 3/27/2024) regarding [15] DECISION of Special Master", "case_name_shorts": "Allen" }, { @@ -19818,9 +19818,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-205V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/22/2024) regarding [20] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0205V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/22/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "Pope" }, { @@ -19831,8 +19831,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1509V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/20/2024) regarding [34] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/20/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Nagelberg" }, { @@ -19842,9 +19842,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-199V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/20/2024) regarding [23] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0199V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/20/2024) regarding [23] DECISION Stipulation/Proffer", "case_name_shorts": "McGinnis" }, { @@ -19854,9 +19854,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-753V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/22/2024) regarding [39] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0753V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/22/2024) regarding [39] Ruling on Entitlement", "case_name_shorts": "Hydutsky" }, { @@ -19867,8 +19867,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1063V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/22/2024) regarding [41] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/22/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Gross" }, { @@ -19879,8 +19879,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2008V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/22/2024) regarding [74] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/22/2024) regarding [74] DECISION Stipulation/Proffer", "case_name_shorts": "Crane" }, { @@ -19890,9 +19890,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-915V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/21/2024) regarding [21] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0915V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/21/2024) regarding [21] DECISION Stipulation/Proffer", "case_name_shorts": "Capobianco-Petras" }, { @@ -19903,8 +19903,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1014V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/14/2024) regarding [40] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/14/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Ying" }, { @@ -19915,8 +19915,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1094V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 02/29/2024) regarding [24] DECISION on Proffer. Signed by Special Master Thomas L. Gowen. (hs) Service on parties made. Petitioner served via email on 4/23/24 (ypb).", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 02/29/2024) regarding [24] DECISION on Proffer", "case_name_shorts": "Partovi" }, { @@ -19927,8 +19927,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2286V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/20/2024) regarding [48] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/20/2024) regarding [48] Ruling on Entitlement", "case_name_shorts": "Overton" }, { @@ -19938,9 +19938,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-430V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/14/2024) regarding [51] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0430V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/14/2024) regarding [51] DECISION of Special Master - Fees", "case_name_shorts": "Koruan" }, { @@ -19950,9 +19950,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-369V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/18/2024) regarding [44] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0369V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/18/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "White" }, { @@ -19962,9 +19962,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-526V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/18/2024) regarding [22] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0526V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/18/2024) regarding [22] Ruling on Entitlement", "case_name_shorts": "Webb" }, { @@ -19975,8 +19975,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1446V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING and DECISION AWARDING DAMAGES (Originally filed: 03/18/2024) regarding [34] Ruling on Entitlement, DECISION of Special Master, Order on Motion for Ruling on the Record ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING and DECISION AWARDING DAMAGES (Originally filed: 03/18/2024) regarding [34] Ruling on Entitlement, DECISION of Special Master, Order on Motion for Ruling on the Record", "case_name_shorts": "Templin" }, { @@ -19986,9 +19986,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-699V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 4/3/24) regarding [52] DECISION of Special Master, Signed by Special Master Herbrina Sanders. (sh) Service on parties made.", + "docket_numbers": "18-0699V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 4/3/24) regarding [52] DECISION of Special Master", "case_name_shorts": "Talbert" }, { @@ -19999,8 +19999,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1840V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/18/2024) regarding [43] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/18/2024) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Rivera" }, { @@ -20010,9 +20010,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-307V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/18/2024) regarding [31] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0307V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/18/2024) regarding [31] Ruling on Entitlement", "case_name_shorts": "Pollard" }, { @@ -20022,9 +20022,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-397V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/18/2024) regarding [25] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0397V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/18/2024) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "Moore" }, { @@ -20035,8 +20035,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2001V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/18/2024) regarding [72] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/18/2024) regarding [72] DECISION of Special Master - Fees", "case_name_shorts": "Marshall" }, { @@ -20046,9 +20046,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-46V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/18/2024) regarding [35] Ruling on Entitlement, Order on Motion for Ruling on the Record. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0046V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/18/2024) regarding [35] Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "Ferguson" }, { @@ -20058,9 +20058,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-597V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/12/2024) regarding [21] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0597V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/12/2024) regarding [21] Ruling on Entitlement", "case_name_shorts": "Zabala" }, { @@ -20071,8 +20071,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1939V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [37] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Yamini" }, { @@ -20082,9 +20082,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-10V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/13/2024) regarding [33] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0010V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/13/2024) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -20094,9 +20094,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-705V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [53] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0705V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [53] DECISION of Special Master - Fees", "case_name_shorts": "Snoddy" }, { @@ -20106,9 +20106,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-72V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/14/2024) regarding [27] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0072V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/14/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Schneiders" }, { @@ -20118,9 +20118,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-812V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/11/2024) regarding [19] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0812V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/11/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -20131,8 +20131,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1662V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/08/2024) regarding [29] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/08/2024) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -20142,9 +20142,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-517V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [39] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0517V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "Schoenfeld" }, { @@ -20155,8 +20155,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1726V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 3/20/2024) regarding [66] DECISION Stipulation. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 3/20/2024) regarding [66] DECISION Stipulation", "case_name_shorts": "Robbins" }, { @@ -20166,9 +20166,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-689V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/08/2024) regarding [46] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0689V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/08/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Pearce" }, { @@ -20179,8 +20179,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1172V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 3/22/2024) regarding [19] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 3/22/2024) regarding [19] DECISION of Special Master", "case_name_shorts": "Parsons" }, { @@ -20190,9 +20190,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-452V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [38] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0452V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Meyer" }, { @@ -20203,8 +20203,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1960V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 3/21/2024) regarding [36] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 3/21/2024) regarding [36] DECISION of Special Master - Fees", "case_name_shorts": "MONTE" }, { @@ -20215,8 +20215,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1956V", - "judges": "N. Dorsey", - "summaries": "PUBLIC RULING (Originally filed: 3/22/2024) regarding [91] Ruling on Entitlement, Order on Motion for Ruling on the Record. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC RULING (Originally filed: 3/22/2024) regarding [91] Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "Lau" }, { @@ -20226,9 +20226,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-945V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 3/20/2024) regarding [51] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "docket_numbers": "21-0945V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 3/20/2024) regarding [51] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Hock" }, { @@ -20239,8 +20239,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2033V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/15/2023) regarding [46] Findings of Fact & Conclusions of Law, Order to Show Cause ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/15/2023) regarding [46] Findings of Fact & Conclusions of Law, Order to Show Cause", "case_name_shorts": "Gothers" }, { @@ -20250,9 +20250,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-186V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/08/2024) regarding [45] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0186V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/08/2024) regarding [45] DECISION Stipulation/Proffer", "case_name_shorts": "Friedfeld-Gebaide" }, { @@ -20262,9 +20262,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-311V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024) regarding [41] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0311V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Diggs" }, { @@ -20274,9 +20274,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-124V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 3/22/2024) regarding [192] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "docket_numbers": "15-0124V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 3/22/2024) regarding [192] DECISION of Special Master - Fees", "case_name_shorts": "DeLOZIER" }, { @@ -20287,8 +20287,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1616V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [52] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Cole" }, { @@ -20299,8 +20299,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1437V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/13/2024) regarding [47] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/13/2024) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Bryan" }, { @@ -20311,8 +20311,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1864V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/20/2024) regarding [50] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/20/2024) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Brewer" }, { @@ -20323,8 +20323,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1159V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 3/21/2024) regarding [19] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 3/21/2024) regarding [19] DECISION of Special Master", "case_name_shorts": "Borgra" }, { @@ -20335,8 +20335,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1206V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 3/22/2024) regarding [33] DECISION of Special Master. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 3/22/2024) regarding [33] DECISION of Special Master", "case_name_shorts": "Banks" }, { @@ -20346,9 +20346,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-579V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/13/2024) regarding [16] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0579V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/13/2024) regarding [16] Ruling on Entitlement", "case_name_shorts": "Andres" }, { @@ -20358,9 +20358,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-467V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [44] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0467V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [44] DECISION Stipulation/Proffer", "case_name_shorts": "Aidone" }, { @@ -20370,9 +20370,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-291V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [35] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0291V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [35] DECISION of Special Master - Fees", "case_name_shorts": "Zaremba" }, { @@ -20382,9 +20382,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-419V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/13/2024) regarding [45] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0419V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/13/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Wise" }, { @@ -20395,8 +20395,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1909V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [50] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Wickenheiser" }, { @@ -20406,9 +20406,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-652V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 3/19/2024) regarding [82] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "docket_numbers": "17-0652V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 3/19/2024) regarding [82] DECISION of Special Master - Fees", "case_name_shorts": "Tell" }, { @@ -20419,8 +20419,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1949V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 3/18/2024) regarding [80] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 3/18/2024) regarding [80] DECISION of Special Master - Fees", "case_name_shorts": "Staveski" }, { @@ -20430,9 +20430,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-234V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/14/2024) regarding [28] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0234V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/14/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Rokeach" }, { @@ -20442,9 +20442,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-459V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/13/2024) regarding [44] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0459V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/13/2024) regarding [44] DECISION Stipulation/Proffer", "case_name_shorts": "Reisner" }, { @@ -20455,8 +20455,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1712V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/14/2024) regarding [59] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/14/2024) regarding [59] DECISION of Special Master - Fees", "case_name_shorts": "R." }, { @@ -20466,9 +20466,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-823V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 3/18/2024) regarding [51] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "docket_numbers": "19-0823V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 3/18/2024) regarding [51] DECISION of Special Master - Fees", "case_name_shorts": "Maupin" }, { @@ -20479,8 +20479,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1893V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/15/2024) regarding [25] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/15/2024) regarding [25] Ruling on Entitlement", "case_name_shorts": "Magoon" }, { @@ -20491,8 +20491,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1096V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [30] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [30] DECISION of Special Master - Fees", "case_name_shorts": "MacAlister" }, { @@ -20503,8 +20503,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1285V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [47] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Larson" }, { @@ -20514,9 +20514,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-360V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 3/20/2024) regarding [136] DECISION of Special Master. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "docket_numbers": "17-0360V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 3/20/2024) regarding [136] DECISION of Special Master", "case_name_shorts": "Humbert" }, { @@ -20526,9 +20526,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-600V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [36] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0600V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [36] DECISION of Special Master - Fees", "case_name_shorts": "Hoss" }, { @@ -20538,9 +20538,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-260V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [47] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0260V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Harkins" }, { @@ -20551,8 +20551,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1873V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [44] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Gotlieb" }, { @@ -20562,9 +20562,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-850V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/15/2024) regarding [22] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0850V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/15/2024) regarding [22] Ruling on Entitlement", "case_name_shorts": "Engel" }, { @@ -20575,8 +20575,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1707V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/14/2024) regarding [52] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/14/2024) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Davis" }, { @@ -20587,8 +20587,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1209V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 3/21/2024) regarding [47] DECISION of Special Master. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 3/21/2024) regarding [47] DECISION of Special Master", "case_name_shorts": "Brancheau" }, { @@ -20598,9 +20598,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-255V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 02/15/2024) regarding [118] DECISION of Special Master - Fees, Signed by Special Master Daniel T. Horner. (jm) Service on parties made.", + "docket_numbers": "17-0255V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 02/15/2024) regarding [118] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -20610,9 +20610,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-481V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024) regarding [37] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0481V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Washburn" }, { @@ -20622,9 +20622,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-106V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 02/01/2024) regarding [104] DECISION of Special Master - Fees Signed by Special Master Nora Beth Dorsey. (jm) Service on parties made.", + "docket_numbers": "18-0106V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 02/01/2024) regarding [104] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -20634,9 +20634,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-998V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 3/18/2024) regarding [75] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "docket_numbers": "16-0998V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 3/18/2024) regarding [75] DECISION of Special Master - Fees", "case_name_shorts": "Timothy" }, { @@ -20647,8 +20647,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1737V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024) regarding [31] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024) regarding [31] DECISION of Special Master - Fees", "case_name_shorts": "Stegall" }, { @@ -20658,9 +20658,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-473V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024) regarding [35] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0473V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024) regarding [35] DECISION of Special Master - Fees", "case_name_shorts": "Solorio" }, { @@ -20671,8 +20671,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1424V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 02/16/2024) regarding [56] DECISION of Special Master - Fees Signed by Special Master Daniel T. Horner. (jm) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 02/16/2024) regarding [56] DECISION of Special Master - Fees", "case_name_shorts": "Simpson" }, { @@ -20682,9 +20682,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-111V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 02/20/2024) regarding [106] DECISION of Special Master - Fees Signed by Special Master Thomas L. Gowen. (jm) Service on parties made.", + "docket_numbers": "17-0111V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 02/20/2024) regarding [106] DECISION of Special Master - Fees", "case_name_shorts": "Schoeller" }, { @@ -20694,9 +20694,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-295V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 03/19/2024) regarding [124] DECISION of Special Master Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "18-0295V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 03/19/2024) regarding [124] DECISION of Special Master", "case_name_shorts": "SPARROW" }, { @@ -20706,9 +20706,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-459V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 02/16/2024) regarding [74] DECISION of Special Master - Fees Signed by Special Master Herbrina Sanders. (jm) Service on parties made.", + "docket_numbers": "18-0459V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 02/16/2024) regarding [74] DECISION of Special Master - Fees", "case_name_shorts": "Rodriguez" }, { @@ -20718,9 +20718,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-554V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 3/18/2024) regarding [76] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "docket_numbers": "18-0554V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 3/18/2024) regarding [76] DECISION of Special Master - Fees", "case_name_shorts": "Robertson" }, { @@ -20731,8 +20731,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1077V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 02/16/2024) regarding [44] DECISION of Special Master - Fees Signed by Special Master Herbrina Sanders. (jm) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 02/16/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Pedri" }, { @@ -20743,8 +20743,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1953V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [44] DECISION of Special Master - Fees Signed by Special Master Herbrina Sanders. (jm) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Nolen" }, { @@ -20754,9 +20754,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-71V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 02/20/2024) regarding [105] DECISION of Special Master - Fees Signed by Special Master Thomas L. Gowen. (jm) Service on parties made.", + "docket_numbers": "19-0071V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 02/20/2024) regarding [105] DECISION of Special Master - Fees", "case_name_shorts": "Morgan" }, { @@ -20766,9 +20766,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-995V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024 ) regarding [34] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0995V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024 ) regarding [34] DECISION of Special Master - Fees", "case_name_shorts": "Moises" }, { @@ -20778,9 +20778,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-335V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024) regarding [44] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0335V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Meadows" }, { @@ -20790,9 +20790,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-482V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 02/22/2024) regarding [53] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "docket_numbers": "20-0482V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 02/22/2024) regarding [53] DECISION of Special Master - Fees", "case_name_shorts": "McMullen" }, { @@ -20803,8 +20803,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1051V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 02/01/2024) regarding [84] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 02/01/2024) regarding [84] DECISION of Special Master - Fees", "case_name_shorts": "McConnell" }, { @@ -20814,9 +20814,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-397V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 02/15/2024) regarding [66] DECISION of Special Master - Fees Signed by Special Master Mindy Michaels Roth. (jm) Service on parties made.", + "docket_numbers": "18-0397V", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 02/15/2024) regarding [66] DECISION of Special Master - Fees", "case_name_shorts": "Markarian" }, { @@ -20826,9 +20826,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-294V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/11/2024) regarding [38] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0294V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/11/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Mahbubani" }, { @@ -20839,8 +20839,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1286V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024) regarding [40] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Laughlin" }, { @@ -20851,8 +20851,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1362V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 3/18/2024) regarding [53] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 3/18/2024) regarding [53] DECISION of Special Master - Fees", "case_name_shorts": "Kelly" }, { @@ -20863,8 +20863,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1918V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 02/23/2024) regarding [77] DECISION of Special Master - Fees Signed by Special Master Daniel T. Horner. (jm) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 02/23/2024) regarding [77] DECISION of Special Master - Fees", "case_name_shorts": "Kelly" }, { @@ -20874,9 +20874,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-819V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024) regarding [39] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0819V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "Jenkins" }, { @@ -20886,9 +20886,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-240V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024) regarding [41] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0240V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Issa" }, { @@ -20898,9 +20898,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-465V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024 ) regarding [34] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0465V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024 ) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Fenn" }, { @@ -20911,8 +20911,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1370V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/13/2024) regarding [39] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/13/2024) regarding [39] DECISION of Special Master", "case_name_shorts": "Feitel" }, { @@ -20922,9 +20922,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-541V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024) regarding [46] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0541V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024) regarding [46] DECISION Stipulation/Proffer", "case_name_shorts": "Emilita" }, { @@ -20934,9 +20934,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-512V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/10/2024) regarding [43] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0512V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/10/2024) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Elliott" }, { @@ -20947,8 +20947,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1470V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 02/01/2024) regarding [66] DECISION of Special Master - Fees, Signed by Special Master Nora Beth Dorsey. (jm) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 02/01/2024) regarding [66] DECISION of Special Master - Fees", "case_name_shorts": "Debusk" }, { @@ -20959,8 +20959,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1553V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 02/15/2024) regarding [107] DECISION of Special Master - Fees Signed by Special Master Katherine E. Oler. (jm) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 02/15/2024) regarding [107] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -20970,9 +20970,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-915V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/11/2024) regarding [17] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0915V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/11/2024) regarding [17] Ruling on Entitlement", "case_name_shorts": "Capobianco-Petras" }, { @@ -20982,9 +20982,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-261V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 02/15/2024) regarding [66] DECISION of Special Master - Fees Signed by Special Master Mindy Michaels Roth. (jm) Service on parties made.", + "docket_numbers": "19-0261V", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 02/15/2024) regarding [66] DECISION of Special Master - Fees", "case_name_shorts": "CICCARELLI" }, { @@ -20994,9 +20994,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-970V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/11/2024) regarding [106] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "20-0970V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/11/2024) regarding [106] Order Concluding Proceedings", "case_name_shorts": "Baluta" }, { @@ -21007,8 +21007,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1148V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 02/20/2024) regarding [64] DECISION of Special Master - Fees Signed by Special Master Daniel T. Horner. (jm) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 02/20/2024) regarding [64] DECISION of Special Master - Fees", "case_name_shorts": "Aragon" }, { @@ -21019,8 +21019,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1938V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 02/16/2024) regarding [64] DECISION of Special Master - Fees Signed by Special Master Katherine E. Oler. (jm) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 02/16/2024) regarding [64] DECISION of Special Master - Fees", "case_name_shorts": "Andric" }, { @@ -21030,9 +21030,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-868V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [125] DECISION of Special Master - Fees Signed by Special Master Herbrina Sanders. (jm) Service on parties made.", + "docket_numbers": "14-0868V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [125] DECISION of Special Master - Fees", "case_name_shorts": "ALEXANDER" }, { @@ -21042,9 +21042,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-650V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/08/2024 ) regarding [51] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0650V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/08/2024 ) regarding [51] DECISION Stipulation/Proffer", "case_name_shorts": "Sweeney" }, { @@ -21054,9 +21054,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-739V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/08/2024) regarding [22] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0739V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/08/2024) regarding [22] Ruling on Entitlement", "case_name_shorts": "Paveglio" }, { @@ -21066,9 +21066,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-564V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/07/2024) regarding [50] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0564V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/07/2024) regarding [50] DECISION Stipulation/Proffer", "case_name_shorts": "Parra" }, { @@ -21079,8 +21079,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1777V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/11/2024) regarding [34] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/11/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Knouse" }, { @@ -21090,9 +21090,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-18V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/07/2024) regarding [27] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0018V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/07/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Kane" }, { @@ -21103,8 +21103,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1424V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/11/2024) regarding [49] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/11/2024) regarding [49] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -21114,9 +21114,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-318V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024) regarding [41] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0318V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/12/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Frank" }, { @@ -21126,9 +21126,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-176V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/08/2024 ) regarding [37] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0176V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/08/2024 ) regarding [37] DECISION of Special Master - Fees", "case_name_shorts": "Fox" }, { @@ -21138,9 +21138,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-89V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/07/2024) regarding [51] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0089V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/07/2024) regarding [51] DECISION of Special Master - Fees", "case_name_shorts": "Arrogante" }, { @@ -21150,9 +21150,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-394V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/28/2024) regarding [38] Ruling on Entitlement,, DECISION of Special Master,, Order on Motion for Ruling on the Record, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0394V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/28/2024) regarding [38] Ruling on Entitlement,, DECISION of Special Master,, Order on Motion for Ruling on the Record", "case_name_shorts": "Valdez" }, { @@ -21162,9 +21162,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-287V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/05/2024) regarding [27] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0287V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/05/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Thornton" }, { @@ -21175,8 +21175,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1813V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/05/2024) regarding [28] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/05/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Risner" }, { @@ -21186,9 +21186,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-408V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [43] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0408V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [43] DECISION of Special Master", "case_name_shorts": "Olson" }, { @@ -21198,9 +21198,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-854V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/07/2024) regarding [44] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0854V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/07/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Norville" }, { @@ -21210,9 +21210,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-496V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/05/2024 ) regarding [19] Findings of Fact & Conclusions of Law,, Scheduling Order, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0496V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/05/2024 ) regarding [19] Findings of Fact & Conclusions of Law,, Scheduling Order", "case_name_shorts": "McClay" }, { @@ -21223,8 +21223,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1236V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 3/13/2024) regarding [124] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (dksc) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 3/13/2024) regarding [124] DECISION of Special Master - Fees", "case_name_shorts": "Kanter" }, { @@ -21234,9 +21234,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-957V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/11/2024) regarding [57] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "21-0957V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/11/2024) regarding [57] DECISION of Special Master - Fees", "case_name_shorts": "Jacobs" }, { @@ -21247,8 +21247,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1852V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [36] Ruling on Entitlement,, DECISION of Special Master,, Order on Motion for Ruling on the Record, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [36] Ruling on Entitlement,, DECISION of Special Master,, Order on Motion for Ruling on the Record", "case_name_shorts": "Hurley" }, { @@ -21258,9 +21258,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-785V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/06/2024) regarding [27] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0785V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/06/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Hill" }, { @@ -21270,9 +21270,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-883V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/06/2024) regarding [19] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0883V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/06/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Hand" }, { @@ -21283,8 +21283,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1089V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 3/15/2024) regarding [18] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 3/15/2024) regarding [18] Order Concluding Proceedings", "case_name_shorts": "Gergel" }, { @@ -21295,8 +21295,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1088V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 3/15/2024) regarding [20] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 3/15/2024) regarding [20] Order Concluding Proceedings", "case_name_shorts": "Gergel" }, { @@ -21306,9 +21306,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-319V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/01/2024) regarding [47] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0319V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/01/2024) regarding [47] DECISION Stipulation/Proffer", "case_name_shorts": "Gefter" }, { @@ -21318,9 +21318,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-681V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/01/2024 ) regarding [77] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0681V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/01/2024 ) regarding [77] DECISION Stipulation/Proffer", "case_name_shorts": "Dickmeyer" }, { @@ -21331,8 +21331,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1752V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/07/2024) regarding [29] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/07/2024) regarding [29] Ruling on Entitlement", "case_name_shorts": "Cymansky" }, { @@ -21343,8 +21343,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1208V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/07/2024) regarding [36] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/07/2024) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Creevy" }, { @@ -21355,8 +21355,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1070V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 3/15/2024) regarding [18] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 3/15/2024) regarding [18] Order Concluding Proceedings", "case_name_shorts": "Abdulmassih" }, { @@ -21367,8 +21367,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1566V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/29/2024) regarding [27] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/29/2024) regarding [27] Ruling on Entitlement", "case_name_shorts": "Wisnieski" }, { @@ -21379,8 +21379,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1670V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/05/2024) regarding [56] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/05/2024) regarding [56] DECISION of Special Master", "case_name_shorts": "Wirges" }, { @@ -21391,8 +21391,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1325V", - "judges": "D. Horner", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 3/13/2024) regarding [55] Findings of Fact & Conclusions of Law. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 3/13/2024) regarding [55] Findings of Fact & Conclusions of Law", "case_name_shorts": "Walker" }, { @@ -21403,8 +21403,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1952V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/04/2024) regarding [37] Order Concluding Proceedings Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/04/2024) regarding [37] Order Concluding Proceedings", "case_name_shorts": "WARNER" }, { @@ -21414,9 +21414,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-749V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 3/13/2024) regarding [109] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "docket_numbers": "18-0749V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 3/13/2024) regarding [109] DECISION of Special Master - Fees", "case_name_shorts": "Vorwerck" }, { @@ -21426,9 +21426,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-16V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/08/2024) regarding [40] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0016V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/08/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Tetting" }, { @@ -21438,9 +21438,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-752V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/29/2024) regarding [75] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "19-0752V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/29/2024) regarding [75] DECISION of Special Master - Fees", "case_name_shorts": "Stokes" }, { @@ -21451,8 +21451,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1880V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/07/2024) regarding [40] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/07/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Spaid" }, { @@ -21463,8 +21463,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1759V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 3/14/2024) regarding [57] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 3/14/2024) regarding [57] DECISION of Special Master - Fees", "case_name_shorts": "Sorge" }, { @@ -21475,8 +21475,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1911V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/08/2024) regarding [41] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/08/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -21487,8 +21487,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1851V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/01/2024) regarding [56] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/01/2024) regarding [56] DECISION Stipulation/Proffer", "case_name_shorts": "Schultz" }, { @@ -21498,9 +21498,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-203V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 3/12/2024) regarding [37] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "docket_numbers": "21-0203V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 3/12/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Sage" }, { @@ -21510,9 +21510,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-380V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [26] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0380V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Rini" }, { @@ -21522,9 +21522,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-377V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/06/2024) regarding [34] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0377V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/06/2024) regarding [34] Ruling on Entitlement", "case_name_shorts": "Povey" }, { @@ -21534,9 +21534,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-823V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/07/2024) regarding [30] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0823V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/07/2024) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Paez" }, { @@ -21546,9 +21546,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-823V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/07/2024) regarding [29] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0823V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/07/2024) regarding [29] Ruling on Entitlement", "case_name_shorts": "Paez" }, { @@ -21558,9 +21558,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-420V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/07/2024) regarding [49] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0420V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/07/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Nussbaum" }, { @@ -21571,8 +21571,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1316V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 03/14/2024) regarding [39] DECISION Stipulation/Proffer Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 03/14/2024) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Niles" }, { @@ -21583,8 +21583,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2352V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/08/2024) regarding [45] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/08/2024) regarding [45] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -21595,8 +21595,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-1558V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [210] DECISION of Special Master Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 03/15/2024) regarding [210] DECISION of Special Master", "case_name_shorts": "Mostafa" }, { @@ -21606,9 +21606,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-453V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 3/13/2024) regarding [98] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "docket_numbers": "19-0453V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 3/13/2024) regarding [98] DECISION of Special Master - Fees", "case_name_shorts": "Michie" }, { @@ -21618,9 +21618,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-923V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 3/13/2024) regarding [97] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Mindy Michaels Roth. (dkj) Service on parties made.", + "docket_numbers": "17-0923V", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 3/13/2024) regarding [97] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Mehl" }, { @@ -21630,9 +21630,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-199V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/08/2024) regarding [20] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0199V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/08/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "McGinnis" }, { @@ -21642,9 +21642,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-907V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/08/2024) regarding [19] Order Concluding Proceedings Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0907V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/08/2024) regarding [19] Order Concluding Proceedings", "case_name_shorts": "Malloy" }, { @@ -21654,9 +21654,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-497V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/29/2024 ) regarding [21] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0497V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/29/2024 ) regarding [21] Ruling on Entitlement", "case_name_shorts": "Lyons" }, { @@ -21666,9 +21666,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-211V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/01/2024) regarding [67] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "20-0211V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/01/2024) regarding [67] DECISION Stipulation/Proffer", "case_name_shorts": "Lower" }, { @@ -21679,8 +21679,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1852V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/07/2024) regarding [39] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/07/2024) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "Kell" }, { @@ -21690,9 +21690,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-99V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/08/2024) regarding [24] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0099V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/08/2024) regarding [24] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -21702,9 +21702,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-550V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [34] DECISION of Special Master - Fees, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0550V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [34] DECISION of Special Master - Fees", "case_name_shorts": "Heckathorn" }, { @@ -21714,9 +21714,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-646V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/28/2024) regarding [19] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0646V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/28/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Fox" }, { @@ -21727,8 +21727,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1762V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 3/13/2024) regarding [92] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 3/13/2024) regarding [92] DECISION of Special Master - Fees", "case_name_shorts": "Ellis" }, { @@ -21739,8 +21739,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1766V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [51] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [51] DECISION of Special Master - Fees", "case_name_shorts": "Decker" }, { @@ -21751,8 +21751,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1208V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/07/2024) regarding [35] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/07/2024) regarding [35] Ruling on Entitlement", "case_name_shorts": "Creevy" }, { @@ -21763,8 +21763,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1885V", - "judges": "D. Horner", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 3/12/2024) regarding [91] Ruling on Entitlement. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 3/12/2024) regarding [91] Ruling on Entitlement", "case_name_shorts": "Cooper" }, { @@ -21775,8 +21775,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2039V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/28/2024) regarding [37] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/28/2024) regarding [37] DECISION of Special Master - Fees", "case_name_shorts": "Cohen" }, { @@ -21786,9 +21786,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-73V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 3/12/2024) regarding [95] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "docket_numbers": "19-0073V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 3/12/2024) regarding [95] DECISION of Special Master - Fees", "case_name_shorts": "Carmona" }, { @@ -21798,9 +21798,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-167V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [38] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0167V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [38] DECISION of Special Master - Fees", "case_name_shorts": "Brown" }, { @@ -21810,9 +21810,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-82V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/07/2024) regarding [37] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0082V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/07/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Blessed" }, { @@ -21822,9 +21822,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-577V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/08/2024) regarding [37] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0577V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/08/2024) regarding [37] DECISION of Special Master - Fees", "case_name_shorts": "Bier" }, { @@ -21835,8 +21835,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1587V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 3/14/2024) regarding [161] DECISION Proffer. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 3/14/2024) regarding [161] DECISION Proffer", "case_name_shorts": "A." }, { @@ -21847,8 +21847,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1789V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 01/24/2024) regarding [55] DECISION of Special Master - Fees. Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 01/24/2024) regarding [55] DECISION of Special Master - Fees", "case_name_shorts": "Yi" }, { @@ -21858,9 +21858,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-425V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [30] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0425V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [30] DECISION of Special Master - Fees", "case_name_shorts": "Smilow" }, { @@ -21870,9 +21870,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-255V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/05/2024 ) regarding [20] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0255V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/05/2024 ) regarding [20] Ruling on Entitlement", "case_name_shorts": "Sharma" }, { @@ -21883,8 +21883,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1677V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [44] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [44] DECISION Stipulation/Proffer", "case_name_shorts": "Sears" }, { @@ -21894,9 +21894,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-362V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [49] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0362V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Seales-Reid" }, { @@ -21907,8 +21907,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1406V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [22] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [22] DECISION of Special Master", "case_name_shorts": "Roma" }, { @@ -21919,8 +21919,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1094V", - "judges": "T. Gowen", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/29/2024) regarding [23] Ruling on Entitlement. Signed by Special Master Thomas L. Gowen. (hs) Service on parties made. Petitioner served via email on 4/5/24 (ypb).", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/29/2024) regarding [23] Ruling on Entitlement", "case_name_shorts": "Partovi" }, { @@ -21931,8 +21931,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1097V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/05/2024) regarding [40] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/05/2024) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "Page" }, { @@ -21942,9 +21942,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-292V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/01/2024) regarding [23] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0292V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/01/2024) regarding [23] DECISION Stipulation/Proffer", "case_name_shorts": "Hambright" }, { @@ -21954,9 +21954,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-860V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/04/2024) regarding [23] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0860V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/04/2024) regarding [23] Ruling on Entitlement", "case_name_shorts": "Gautier" }, { @@ -21966,9 +21966,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-970V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/15/2024) regarding [44] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made. (Main Document 55 replaced on 4/5/2024 to correct the pdf.) (fm).", + "docket_numbers": "21-0970V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/15/2024) regarding [44] DECISION of Special Master", "case_name_shorts": "F." }, { @@ -21979,8 +21979,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1864V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/01/2024) regarding [31] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/01/2024) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Cook" }, { @@ -21991,8 +21991,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2201V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [39] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "Carter" }, { @@ -22003,8 +22003,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1054V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [33] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [33] DECISION of Special Master - Fees", "case_name_shorts": "Baker" }, { @@ -22014,9 +22014,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-244V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [54] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0244V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [54] DECISION of Special Master - Fees", "case_name_shorts": "Tamayo" }, { @@ -22027,8 +22027,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1688V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [53] DECISION of Special Master, Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [53] DECISION of Special Master, Ruling on Entitlement", "case_name_shorts": "Robinson" }, { @@ -22038,9 +22038,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-436V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [50] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0436V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Peterson-Michael" }, { @@ -22050,9 +22050,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-587V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [37] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0587V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -22062,9 +22062,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-74V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024 ) regarding [52] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0074V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024 ) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Ganthier" }, { @@ -22075,8 +22075,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1238V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [55] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/04/2024) regarding [55] DECISION of Special Master - Fees", "case_name_shorts": "Fatone" }, { @@ -22087,8 +22087,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1157V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/08/2024) regarding [126] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/08/2024) regarding [126] DECISION of Special Master", "case_name_shorts": "Alonzo" }, { @@ -22099,8 +22099,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1461V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/27/2024) regarding [54] DECISION of Special Master, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/27/2024) regarding [54] DECISION of Special Master", "case_name_shorts": "Walter" }, { @@ -22110,9 +22110,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-964V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/26/2024) regarding [42] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0964V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/26/2024) regarding [42] DECISION of Special Master", "case_name_shorts": "Stolze" }, { @@ -22123,8 +22123,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1365V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/01/2024) regarding [29] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/01/2024) regarding [29] DECISION of Special Master", "case_name_shorts": "Roselli" }, { @@ -22135,8 +22135,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1295V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/27/2024) regarding [45] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/27/2024) regarding [45] DECISION of Special Master", "case_name_shorts": "Poteet" }, { @@ -22147,8 +22147,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1619V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/29/2024) regarding [24] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/29/2024) regarding [24] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -22158,9 +22158,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-970V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/07/2024) regarding [49] Order on Motion to Redact Decision ( Signed by Chief Special Master Brian H. Corcoran.) (mpj) Service on parties made.", + "docket_numbers": "21-0970V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/07/2024) regarding [49] Order on Motion to Redact Decision", "case_name_shorts": "F." }, { @@ -22171,8 +22171,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2310V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/27/2024) regarding [65] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/27/2024) regarding [65] DECISION of Special Master", "case_name_shorts": "Dylla" }, { @@ -22183,8 +22183,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2090V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/01/2024) regarding [33] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/01/2024) regarding [33] Ruling on Entitlement", "case_name_shorts": "Davis" }, { @@ -22194,9 +22194,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-529V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/28/2024) regarding [37] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0529V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/28/2024) regarding [37] DECISION of Special Master", "case_name_shorts": "Cromwell" }, { @@ -22207,8 +22207,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1895V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/01/2024) regarding [20] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/01/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "Cox" }, { @@ -22218,9 +22218,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-32V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/28/2024) regarding [44] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0032V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/28/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Cicarelli" }, { @@ -22230,9 +22230,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-507V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/29/2024) regarding [20] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0507V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/29/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "Chen" }, { @@ -22242,9 +22242,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-112V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/28/2024) regarding [41] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0112V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/28/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Angels" }, { @@ -22254,9 +22254,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-906V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/29/2024) regarding [22] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0906V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/29/2024) regarding [22] Ruling on Entitlement", "case_name_shorts": "Adamson" }, { @@ -22266,9 +22266,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-551V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 3/6/2024) regarding [86] DECISION of Special Master - Interim Attorneys&039; Fees and Costs. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "docket_numbers": "19-0551V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 3/6/2024) regarding [86] DECISION of Special Master - Interim Attorneys&039; Fees and Costs", "case_name_shorts": "Zambelli" }, { @@ -22278,9 +22278,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-613V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 3/8/2024) regarding [84] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "docket_numbers": "20-0613V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 3/8/2024) regarding [84] DECISION of Special Master - Fees", "case_name_shorts": "Zale" }, { @@ -22291,8 +22291,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1398V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 03/08/2024) regarding [88] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 03/08/2024) regarding [88] DECISION of Special Master - Fees", "case_name_shorts": "Seivwright" }, { @@ -22303,8 +22303,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1785V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 3/5/2024) regarding [41] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 3/5/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Rodrigues" }, { @@ -22315,8 +22315,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1099V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 3/7/2024) regarding [70] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 3/7/2024) regarding [70] Ruling on Entitlement", "case_name_shorts": "Peka" }, { @@ -22327,8 +22327,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1357V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 3/5/2024) regarding [75] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 3/5/2024) regarding [75] DECISION of Special Master - Fees", "case_name_shorts": "Murray" }, { @@ -22338,9 +22338,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-987V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 3/4/2024) regarding [18] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0987V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 3/4/2024) regarding [18] Order Concluding Proceedings", "case_name_shorts": "McLaughlin" }, { @@ -22351,8 +22351,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1015V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING: (Originally filed: 3/4/2024) regarding [22] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING: (Originally filed: 3/4/2024) regarding [22] Order Concluding Proceedings", "case_name_shorts": "Martelli" }, { @@ -22362,9 +22362,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-907V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 3/8/2024) regarding [19] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0907V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 3/8/2024) regarding [19] Order Concluding Proceedings", "case_name_shorts": "Malloy" }, { @@ -22374,9 +22374,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-791V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 3/8/2024) regarding [160] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "docket_numbers": "16-0791V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 3/8/2024) regarding [160] DECISION of Special Master - Fees", "case_name_shorts": "K." }, { @@ -22387,8 +22387,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1636V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 3/7/2024) regarding [36] DECISION of Special Master - Proffer. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 3/7/2024) regarding [36] DECISION of Special Master - Proffer", "case_name_shorts": "Barmichael" }, { @@ -22398,9 +22398,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-526V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 03/01/2024) regarding [51] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0526V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 03/01/2024) regarding [51] DECISION Stipulation/Proffer", "case_name_shorts": "Young" }, { @@ -22410,9 +22410,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-63V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/29/2024) regarding [42] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0063V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/29/2024) regarding [42] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -22423,8 +22423,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "15-1526V", - "judges": "M. Roth", - "summaries": "PUBLIC RULING (Originally filed: 3/7/2024) regarding [97] Ruling on Entitlement. Signed by Special Master Mindy Michaels Roth. (dkj) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC RULING (Originally filed: 3/7/2024) regarding [97] Ruling on Entitlement", "case_name_shorts": "SIMS" }, { @@ -22435,8 +22435,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2005V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/29/2024) regarding [60] Findings of Fact & Conclusions of Law. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/29/2024) regarding [60] Findings of Fact & Conclusions of Law", "case_name_shorts": "Prescott" }, { @@ -22447,8 +22447,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1938V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/28/2024) regarding [25] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/28/2024) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "Paul" }, { @@ -22459,8 +22459,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1748V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/29/2024) regarding [45] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/29/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Panella" }, { @@ -22470,9 +22470,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-915V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/29/2024) regarding [25] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0915V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/29/2024) regarding [25] Ruling on Entitlement", "case_name_shorts": "Lindh" }, { @@ -22482,9 +22482,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-162V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/28/2024) regarding [30] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0162V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/28/2024) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Jennings" }, { @@ -22495,8 +22495,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1953V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 3/6/2024) regarding [108] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 3/6/2024) regarding [108] DECISION of Special Master - Fees", "case_name_shorts": "Greer" }, { @@ -22506,9 +22506,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-183V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/29/2024) regarding [18] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0183V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/29/2024) regarding [18] Ruling on Entitlement", "case_name_shorts": "Al-Hiyari" }, { @@ -22518,9 +22518,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-279V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/27/2024) regarding [21] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0279V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/27/2024) regarding [21] Ruling on Entitlement", "case_name_shorts": "Wilson" }, { @@ -22531,8 +22531,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1293V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/27/2024) regarding [20] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/27/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "Weissbach" }, { @@ -22542,9 +22542,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-483V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/27/2024) regarding [29] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0483V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/27/2024) regarding [29] DECISION of Special Master", "case_name_shorts": "Vaughn" }, { @@ -22555,8 +22555,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1312V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/27/2024) regarding [58] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/27/2024) regarding [58] DECISION of Special Master", "case_name_shorts": "Tracy" }, { @@ -22566,9 +22566,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-227V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/28/2024) regarding [42] Findings of Fact & Conclusions of Law. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0227V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/28/2024) regarding [42] Findings of Fact & Conclusions of Law", "case_name_shorts": "Schoenborn" }, { @@ -22579,8 +22579,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1642V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/21/2024 ) regarding [52] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/21/2024 ) regarding [52] DECISION Stipulation/Proffer", "case_name_shorts": "Quinones" }, { @@ -22590,9 +22590,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-401V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/28/2024) regarding [75] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "19-0401V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/28/2024) regarding [75] DECISION of Special Master - Fees", "case_name_shorts": "Parrott" }, { @@ -22603,8 +22603,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1129V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/27/2024) regarding [33] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/27/2024) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Otero" }, { @@ -22615,8 +22615,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1395V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/27/2024) regarding [37] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/27/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -22626,9 +22626,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-662V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/26/2024) regarding [22] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0662V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/26/2024) regarding [22] DECISION Stipulation/Proffer", "case_name_shorts": "Newell" }, { @@ -22638,9 +22638,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-327V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 03/07/2024) regarding [123] DECISION of Special Master Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "18-0327V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 03/07/2024) regarding [123] DECISION of Special Master", "case_name_shorts": "" }, { @@ -22651,8 +22651,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1877V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/27/2024) regarding [46] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/27/2024) regarding [46] DECISION of Special Master", "case_name_shorts": "Maxwell" }, { @@ -22663,8 +22663,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1463V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/27/2024) regarding [62] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/27/2024) regarding [62] DECISION Stipulation/Proffer", "case_name_shorts": "Loughren" }, { @@ -22674,9 +22674,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-70V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 3/4/2024) regarding [142] DECISION of Special Master. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "docket_numbers": "19-0070V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 3/4/2024) regarding [142] DECISION of Special Master", "case_name_shorts": "Herms" }, { @@ -22686,9 +22686,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-314V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/26/2024) regarding [35] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0314V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/26/2024) regarding [35] DECISION Stipulation/Proffer", "case_name_shorts": "Ervin-Spencer" }, { @@ -22698,9 +22698,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-86V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/28/2024) regarding [39] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0086V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/28/2024) regarding [39] Ruling on Entitlement", "case_name_shorts": "Cates" }, { @@ -22710,9 +22710,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-377V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/27/2024) regarding [62] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "20-0377V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/27/2024) regarding [62] DECISION Stipulation/Proffer", "case_name_shorts": "Butts" }, { @@ -22723,8 +22723,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1507V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/28/2024) regarding [47] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/28/2024) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Briggs" }, { @@ -22734,9 +22734,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-279V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/26/2024) regarding [38] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0279V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/26/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Villalba" }, { @@ -22746,9 +22746,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-430V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/23/2024) regarding [43] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0430V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/23/2024) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "Thomson" }, { @@ -22758,9 +22758,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-244V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/27/2024) regarding [28] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0244V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/27/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Schaeffer" }, { @@ -22771,8 +22771,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1380V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/23/2024) regarding [64] DECISION of Special Master - Fees (Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/23/2024) regarding [64] DECISION of Special Master - Fees", "case_name_shorts": "Ruiz" }, { @@ -22782,9 +22782,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-22V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/26/2024) regarding [26] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0022V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/26/2024) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Hura" }, { @@ -22795,8 +22795,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1194V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/21/2024) regarding [42] Findings of Fact & Conclusions of Law, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/21/2024) regarding [42] Findings of Fact & Conclusions of Law", "case_name_shorts": "Handley" }, { @@ -22806,9 +22806,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-916V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/26/2024) regarding [21] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0916V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/26/2024) regarding [21] DECISION Stipulation/Proffer", "case_name_shorts": "Dhanrajh" }, { @@ -22818,9 +22818,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-197V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/26/2024) regarding [39] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0197V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/26/2024) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Clarke" }, { @@ -22831,8 +22831,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1774V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/26/2024) regarding [27] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/26/2024) regarding [27] Ruling on Entitlement", "case_name_shorts": "Apfel" }, { @@ -22842,9 +22842,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-112V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/21/2024) regarding [37] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0112V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/21/2024) regarding [37] Ruling on Entitlement", "case_name_shorts": "Angels" }, { @@ -22855,8 +22855,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1461V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/27/2024) regarding [54] DECISION of Special Master, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/27/2024) regarding [54] DECISION of Special Master", "case_name_shorts": "Walter" }, { @@ -22867,8 +22867,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1592V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/23/2024) regarding [66] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/23/2024) regarding [66] DECISION of Special Master", "case_name_shorts": "Tappendorf" }, { @@ -22878,9 +22878,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-378V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/20/2024) regarding [62] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "20-0378V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/20/2024) regarding [62] DECISION of Special Master - Fees", "case_name_shorts": "Green" }, { @@ -22890,9 +22890,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-88V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/20/2024) regarding [38] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0088V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/20/2024) regarding [38] DECISION of Special Master - Fees", "case_name_shorts": "Zimmerman" }, { @@ -22902,9 +22902,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-852V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 2/26/2024) regarding [24] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0852V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 2/26/2024) regarding [24] Order Concluding Proceedings", "case_name_shorts": "Yates" }, { @@ -22915,8 +22915,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1038V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 2/29/2024) regarding [15] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 2/29/2024) regarding [15] DECISION of Special Master", "case_name_shorts": "Walker" }, { @@ -22927,8 +22927,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1249V", - "judges": "C. Moran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/01/2024) regarding [73] Order Concluding Proceedings Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 03/01/2024) regarding [73] Order Concluding Proceedings", "case_name_shorts": "Pisani" }, { @@ -22939,8 +22939,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1126V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/22/2024) regarding [35] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/22/2024) regarding [35] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -22950,9 +22950,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-664V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/23/2024) regarding [27] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0664V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/23/2024) regarding [27] Ruling on Entitlement", "case_name_shorts": "O&039;brien" }, { @@ -22963,8 +22963,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1099V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/20/2024) regarding [39] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/20/2024) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "Murray" }, { @@ -22974,9 +22974,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-753V", - "judges": "H. Sanders", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/27/2023) regarding [153] Findings of Fact & Conclusions of Law, Signed by Special Master Herbrina Sanders. (sh) Service on parties made.", + "docket_numbers": "14-0753V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/27/2023) regarding [153] Findings of Fact & Conclusions of Law", "case_name_shorts": "M." }, { @@ -22987,8 +22987,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1482V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/22/2024) regarding [58] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/22/2024) regarding [58] DECISION Stipulation/Proffer", "case_name_shorts": "Holtzhafer" }, { @@ -22998,9 +22998,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-658V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/20/2024) regarding [36] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0658V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/20/2024) regarding [36] DECISION of Special Master - Fees", "case_name_shorts": "Higgins" }, { @@ -23011,8 +23011,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1418V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/23/2024) regarding [56] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/23/2024) regarding [56] DECISION of Special Master - Fees", "case_name_shorts": "Haley" }, { @@ -23022,9 +23022,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-751V", - "judges": "H. Sanders", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/12/2024) regarding [17] Ruling on Entitlement. Signed by Special Master Herbrina Sanders. (rig) Service on parties made.", + "docket_numbers": "23-0751V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/12/2024) regarding [17] Ruling on Entitlement", "case_name_shorts": "Clements" }, { @@ -23035,8 +23035,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1735V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 2/29/2024) regarding [88] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 2/29/2024) regarding [88] DECISION of Special Master - Fees", "case_name_shorts": "Worthy" }, { @@ -23047,8 +23047,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1269V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 2/28/2024) regarding [122] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 2/28/2024) regarding [122] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "" }, { @@ -23059,8 +23059,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1538V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 2/27/2024) regarding [69] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 2/27/2024) regarding [69] DECISION Stipulation/Proffer", "case_name_shorts": "WHITEHEAD" }, { @@ -23070,9 +23070,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-451V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 2/28/2024) regarding [145] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "docket_numbers": "15-0451V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 2/28/2024) regarding [145] DECISION Stipulation/Proffer", "case_name_shorts": "Ulysse" }, { @@ -23082,9 +23082,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-196V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/23/2024) regarding [29] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0196V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/23/2024) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "Tonjes" }, { @@ -23095,8 +23095,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1448V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 2/29/2024) regarding [58] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 2/29/2024) regarding [58] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -23106,9 +23106,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-681V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/21/2024) regarding [27] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0681V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/21/2024) regarding [27] Ruling on Entitlement", "case_name_shorts": "Schweichler" }, { @@ -23118,9 +23118,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-553V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 2/27/2024) regarding [37] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "docket_numbers": "20-0553V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 2/27/2024) regarding [37] DECISION of Special Master", "case_name_shorts": "Rodriguez" }, { @@ -23130,9 +23130,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-512V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/22/2024) regarding [28] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0512V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/22/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Ramos" }, { @@ -23143,8 +23143,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1401V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/23/2024) regarding [24] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/23/2024) regarding [24] Ruling on Entitlement", "case_name_shorts": "Raftery" }, { @@ -23154,9 +23154,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "11-206V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 2/28/2024) regarding [274] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "docket_numbers": "11-0206V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 2/28/2024) regarding [274] DECISION of Special Master - Fees", "case_name_shorts": "R." }, { @@ -23167,8 +23167,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1569V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/23/2024) regarding [42] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/23/2024) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Perette" }, { @@ -23179,8 +23179,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1059V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/23/2024) regarding [36] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/23/2024) regarding [36] DECISION of Special Master - Fees", "case_name_shorts": "Patko" }, { @@ -23190,9 +23190,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-602V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 2/28/2024) regarding [93] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "docket_numbers": "18-0602V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 2/28/2024) regarding [93] DECISION of Special Master - Fees", "case_name_shorts": "Parker" }, { @@ -23202,9 +23202,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-726V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/22/2024) regarding [28] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0726V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/22/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Kiser" }, { @@ -23215,8 +23215,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1362V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 6/29/2023) regarding [47] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 6/29/2023) regarding [47] DECISION Stipulation/Proffer", "case_name_shorts": "Kelly" }, { @@ -23227,8 +23227,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1548V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/28/2024) regarding [60] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/28/2024) regarding [60] DECISION of Special Master - Fees", "case_name_shorts": "Hughes" }, { @@ -23239,8 +23239,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1511V", - "judges": "D. Horner", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 2/27/2024) regarding [30] Order Concluding Proceedings. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 2/27/2024) regarding [30] Order Concluding Proceedings", "case_name_shorts": "Divodi" }, { @@ -23250,9 +23250,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-283V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 2/29/2024) regarding [110] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "docket_numbers": "18-0283V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 2/29/2024) regarding [110] DECISION of Special Master - Fees", "case_name_shorts": "Davis" }, { @@ -23263,8 +23263,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2025V", - "judges": "D. Horner", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 2/28/2024) regarding [36] Ruling on Entitlement. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 2/28/2024) regarding [36] Ruling on Entitlement", "case_name_shorts": "Danforth" }, { @@ -23275,8 +23275,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1455V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 2/27/2024) regarding [73] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 2/27/2024) regarding [73] DECISION of Special Master", "case_name_shorts": "COMPTON" }, { @@ -23286,9 +23286,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-128V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/20/2024) regarding [28] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0128V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/20/2024) regarding [28] Ruling on Entitlement", "case_name_shorts": "Mayes" }, { @@ -23299,8 +23299,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1232V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/20/2024) regarding [45] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/20/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Matheny" }, { @@ -23310,9 +23310,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-163V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/21/2024) regarding [41] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0163V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/21/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Koehler" }, { @@ -23323,8 +23323,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1882V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/20/2024) regarding [90] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/20/2024) regarding [90] DECISION of Special Master", "case_name_shorts": "Joyce" }, { @@ -23334,9 +23334,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-817V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/21/2024) regarding [35] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "20-0817V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/21/2024) regarding [35] DECISION of Special Master", "case_name_shorts": "Han" }, { @@ -23346,9 +23346,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-313V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/20/2024) regarding [38] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0313V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/20/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Donnewald" }, { @@ -23359,8 +23359,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2222V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/20/2024) regarding [42] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/20/2024) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Wyble" }, { @@ -23370,9 +23370,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-4V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 3/6/24) regarding [57] DECISION of Special Master Signed by Special Master Herbrina Sanders. (sh) Service on parties made.", + "docket_numbers": "20-0004V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 3/6/24) regarding [57] DECISION of Special Master", "case_name_shorts": "Turner" }, { @@ -23382,9 +23382,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-237V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/20/2024) regarding [39] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0237V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/20/2024) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "Reed" }, { @@ -23394,9 +23394,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-523V", - "judges": "H. Sanders", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 3/6/24) regarding [39] Findings of Fact & Conclusions of Law, Signed by Special Master Herbrina Sanders. (sh) Service on parties made.", + "docket_numbers": "20-0523V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 3/6/24) regarding [39] Findings of Fact & Conclusions of Law", "case_name_shorts": "Jones" }, { @@ -23406,9 +23406,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-805V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/15/2024) regarding [31] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0805V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/15/2024) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Hernandez" }, { @@ -23419,8 +23419,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1011V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/16/2024) regarding [34] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/16/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Thai" }, { @@ -23431,8 +23431,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2019V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/14/2024) regarding [49] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/14/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Soares" }, { @@ -23442,9 +23442,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-47V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/16/2024) regarding [45] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0047V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/16/2024) regarding [45] DECISION Stipulation/Proffer", "case_name_shorts": "Schmaltz" }, { @@ -23454,9 +23454,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-939V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/16/2024) regarding [47] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0939V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/16/2024) regarding [47] DECISION Stipulation/Proffer", "case_name_shorts": "Rose" }, { @@ -23466,9 +23466,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-172V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/15/2024) regarding [32] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0172V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/15/2024) regarding [32] Ruling on Entitlement", "case_name_shorts": "Paul" }, { @@ -23479,8 +23479,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1903V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/16/2024) regarding [34] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/16/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Luginsky" }, { @@ -23490,9 +23490,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-29V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/15/2024) regarding [41] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0029V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/15/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Lombardo" }, { @@ -23502,9 +23502,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-592V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/16/2024) regarding [38] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0592V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/16/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Gowdy" }, { @@ -23514,9 +23514,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-798V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/14/2024) regarding [22] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0798V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/14/2024) regarding [22] Ruling on Entitlement", "case_name_shorts": "Englert" }, { @@ -23526,9 +23526,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-352V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/15/2024) regarding [63] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0352V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/15/2024) regarding [63] DECISION Stipulation/Proffer", "case_name_shorts": "Bettencourt" }, { @@ -23538,9 +23538,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-939V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 2/20/2024) regarding [18] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0939V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 2/20/2024) regarding [18] DECISION of Special Master", "case_name_shorts": "Barger" }, { @@ -23551,8 +23551,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1718V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 2/21/2024) regarding [110] DECISION Proffer. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 2/21/2024) regarding [110] DECISION Proffer", "case_name_shorts": "ZAMORA" }, { @@ -23562,9 +23562,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-126V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 2/22/2024) regarding [62] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "docket_numbers": "21-0126V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 2/22/2024) regarding [62] DECISION of Special Master", "case_name_shorts": "Yannacone" }, { @@ -23575,8 +23575,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1713V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/12/2024) regarding [47] DECISION of Special Master - Fees, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/12/2024) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Wiggins" }, { @@ -23587,8 +23587,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1118V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/12/2024) regarding [67] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/12/2024) regarding [67] DECISION of Special Master - Fees", "case_name_shorts": "Whitehead" }, { @@ -23598,9 +23598,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-569V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/05/2024 ) regarding [65] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "20-0569V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/05/2024 ) regarding [65] DECISION of Special Master - Fees", "case_name_shorts": "Villa" }, { @@ -23610,9 +23610,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-863V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 2/21/2024) regarding [65] DECISION Stipulation. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "docket_numbers": "22-0863V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 2/21/2024) regarding [65] DECISION Stipulation", "case_name_shorts": "VARGAS-STELLON" }, { @@ -23622,9 +23622,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-82V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/14/2024 ) regarding [45] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0082V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/14/2024 ) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -23635,8 +23635,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2070V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024 ) regarding [45] DECISION of Special Master - Fees, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024 ) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Sisneros" }, { @@ -23647,8 +23647,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1543V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/14/2024) regarding [28] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/14/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Savage" }, { @@ -23658,9 +23658,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-234V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/15/2024) regarding [24] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0234V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/15/2024) regarding [24] Ruling on Entitlement", "case_name_shorts": "Rokeach" }, { @@ -23671,8 +23671,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1253V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/14/2024) regarding [45] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/14/2024) regarding [45] DECISION Stipulation/Proffer", "case_name_shorts": "Rodriguez" }, { @@ -23682,9 +23682,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-75V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024 ) regarding [41] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0075V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024 ) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Robinson" }, { @@ -23695,8 +23695,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1366V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 2/20/2024) regarding [105] DECISION of Special Master. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 2/20/2024) regarding [105] DECISION of Special Master", "case_name_shorts": "Phelan" }, { @@ -23706,9 +23706,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-453V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/4/2023) regarding [89] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "docket_numbers": "19-0453V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/4/2023) regarding [89] DECISION of Special Master", "case_name_shorts": "Michie" }, { @@ -23718,9 +23718,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-829V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/12/2024) regarding [45] DECISION of Special Master - Fees, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0829V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/12/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "McQuinn" }, { @@ -23730,9 +23730,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-72V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/15/2024) regarding [35] DECISION of Special Master, Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0072V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/15/2024) regarding [35] DECISION of Special Master, Ruling on Entitlement", "case_name_shorts": "McGraw" }, { @@ -23743,8 +23743,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2335V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [35] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [35] DECISION Stipulation/Proffer", "case_name_shorts": "Martell" }, { @@ -23754,9 +23754,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-593V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/06/2024) regarding [25] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0593V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/06/2024) regarding [25] Ruling on Entitlement", "case_name_shorts": "Little" }, { @@ -23766,9 +23766,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-734V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 2/22/2024) regarding [93] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "docket_numbers": "19-0734V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 2/22/2024) regarding [93] DECISION Stipulation/Proffer", "case_name_shorts": "Larson" }, { @@ -23778,9 +23778,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-423V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/16/2024) regarding [50] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0423V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/16/2024) regarding [50] DECISION Stipulation/Proffer", "case_name_shorts": "Krumsiek" }, { @@ -23791,8 +23791,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1277V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/16/2024) regarding [45] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/16/2024) regarding [45] DECISION Stipulation/Proffer", "case_name_shorts": "Kola" }, { @@ -23802,9 +23802,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-235V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/07/2024) regarding [37] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0235V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/07/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -23815,8 +23815,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1807V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/13/2024) regarding [51] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/13/2024) regarding [51] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -23826,9 +23826,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-49V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/12/2024) regarding [66] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "20-0049V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/12/2024) regarding [66] Ruling on Entitlement", "case_name_shorts": "Hutton" }, { @@ -23838,9 +23838,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-474V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/12/2024) regarding [45] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "20-0474V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/12/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Hick" }, { @@ -23850,9 +23850,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-805V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/15/2024) regarding [31] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0805V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/15/2024) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Hernandez" }, { @@ -23862,9 +23862,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-700V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/14/2024) regarding [48] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0700V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/14/2024) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Hanson" }, { @@ -23874,9 +23874,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-346V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [44] DECISION of Special Master - Fees, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0346V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Hamilton" }, { @@ -23887,8 +23887,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1096V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/07/2024) regarding [37] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/07/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Gamino" }, { @@ -23899,8 +23899,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2017V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/14/2024) regarding [45] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/14/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Fudesco" }, { @@ -23911,8 +23911,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1547V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 2/22/2024) regarding [95] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 2/22/2024) regarding [95] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Foukarakis" }, { @@ -23922,9 +23922,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-76V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/06/2024) regarding [37] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0076V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/06/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Fields" }, { @@ -23934,9 +23934,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-504V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/06/2024) regarding [33] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0504V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/06/2024) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Chisholm" }, { @@ -23946,9 +23946,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-194V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [41] DECISION of Special Master - Fees, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0194V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Caulfield" }, { @@ -23959,8 +23959,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1746V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/14/2024) regarding [37] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/14/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Boyer" }, { @@ -23970,9 +23970,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-204V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/15/2024) regarding [41] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0204V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/15/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Amorosso" }, { @@ -23983,8 +23983,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1379V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/20/2023) regarding [41] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/20/2023) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Sands" }, { @@ -23995,8 +23995,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1379V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [47] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Sands" }, { @@ -24006,9 +24006,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-396V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [34] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0396V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [34] DECISION of Special Master - Fees", "case_name_shorts": "Precil" }, { @@ -24019,8 +24019,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2229V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [41] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Perez" }, { @@ -24031,8 +24031,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2025V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/12/2024) regarding [51] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/12/2024) regarding [51] DECISION of Special Master - Fees", "case_name_shorts": "Navis" }, { @@ -24042,9 +24042,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-959V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [60] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "20-0959V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [60] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -24054,9 +24054,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-848V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [47] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "20-0848V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "McMahon" }, { @@ -24066,9 +24066,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-598V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [55] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0598V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [55] DECISION Stipulation/Proffer", "case_name_shorts": "McDaniel" }, { @@ -24078,9 +24078,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-813V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [29] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0813V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "Irizarry" }, { @@ -24090,9 +24090,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-501V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/13/2024) regarding [23] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0501V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/13/2024) regarding [23] Ruling on Entitlement", "case_name_shorts": "HOLLINGER" }, { @@ -24102,9 +24102,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-376V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [44] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0376V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Graczyk" }, { @@ -24114,9 +24114,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-22V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/14/2024) regarding [49] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0022V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/14/2024) regarding [49] DECISION Stipulation/Proffer", "case_name_shorts": "Frye" }, { @@ -24127,8 +24127,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1617V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [45] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [45] DECISION of Special Master", "case_name_shorts": "Davidson" }, { @@ -24138,9 +24138,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-148V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [43] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0148V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "Brown" }, { @@ -24151,8 +24151,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1631V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 2/9/2024) regarding [13] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 2/9/2024) regarding [13] DECISION of Special Master", "case_name_shorts": "Wright" }, { @@ -24162,9 +24162,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-581V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/12/2024) regarding [38] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0581V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/12/2024) regarding [38] DECISION of Special Master - Fees", "case_name_shorts": "Momchilovich" }, { @@ -24174,9 +24174,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-842V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 2/9/2024) regarding [19] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0842V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 2/9/2024) regarding [19] Order Concluding Proceedings", "case_name_shorts": "Laporta" }, { @@ -24186,9 +24186,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-871V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 2/9/2024) regarding [17] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0871V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 2/9/2024) regarding [17] Order Concluding Proceedings", "case_name_shorts": "Langelier" }, { @@ -24199,8 +24199,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1093V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/12/2024) regarding [38] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/12/2024) regarding [38] DECISION of Special Master - Fees", "case_name_shorts": "Ha" }, { @@ -24210,9 +24210,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-716V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 2/9/2024) regarding [22] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0716V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 2/9/2024) regarding [22] Order Concluding Proceedings", "case_name_shorts": "HAMMETT" }, { @@ -24223,8 +24223,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1256V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/12/2024) regarding [35] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/12/2024) regarding [35] DECISION Stipulation/Proffer", "case_name_shorts": "Crouse" }, { @@ -24235,8 +24235,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1309V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/07/2024) regarding [41] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/07/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Young" }, { @@ -24247,8 +24247,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1554V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [44] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran.) (mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Weidner" }, { @@ -24258,9 +24258,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-504V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [40] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0504V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "Watkins" }, { @@ -24271,8 +24271,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1705V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 2/13/2024) regarding [79] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 2/13/2024) regarding [79] DECISION Stipulation/Proffer", "case_name_shorts": "Tackett" }, { @@ -24282,9 +24282,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-682V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/06/2024) regarding [39] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0682V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/06/2024) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Simmons" }, { @@ -24294,9 +24294,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-397V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/16/2024) regarding [62] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "19-0397V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/16/2024) regarding [62] Ruling on Entitlement", "case_name_shorts": "Rushing" }, { @@ -24306,9 +24306,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-674V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [53] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "20-0674V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [53] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -24318,9 +24318,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-222V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 2/16/2024) regarding [103] DECISION Proffer. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "docket_numbers": "18-0222V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 2/16/2024) regarding [103] DECISION Proffer", "case_name_shorts": "Rance" }, { @@ -24331,8 +24331,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1193V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [59] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [59] DECISION of Special Master - Fees", "case_name_shorts": "Onwubiko" }, { @@ -24343,8 +24343,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2335V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/09/2024 ) regarding [34] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/09/2024 ) regarding [34] Ruling on Entitlement", "case_name_shorts": "Martell" }, { @@ -24354,9 +24354,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-871V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/09/2024) regarding [17] Order Concluding Proceedings ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0871V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/09/2024) regarding [17] Order Concluding Proceedings", "case_name_shorts": "Langelier" }, { @@ -24366,9 +24366,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-91V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [47] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0091V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Huber" }, { @@ -24378,9 +24378,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-647V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/06/2024) regarding [40] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0647V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/06/2024) regarding [40] DECISION of Special Master", "case_name_shorts": "Foster" }, { @@ -24390,9 +24390,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-407V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [50] DECISION of Special Master - Fees, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "20-0407V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Ferry" }, { @@ -24402,9 +24402,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-56V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [51] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0056V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [51] DECISION of Special Master - Fees", "case_name_shorts": "Edwards" }, { @@ -24415,8 +24415,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1973V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 2/16/2024) regarding [73] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 2/16/2024) regarding [73] DECISION of Special Master", "case_name_shorts": "Decastro" }, { @@ -24426,9 +24426,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-59V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [55] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "20-0059V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [55] DECISION of Special Master - Fees", "case_name_shorts": "Borman" }, { @@ -24439,8 +24439,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1874V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [50] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Barry" }, { @@ -24450,9 +24450,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-978V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING AND DECISION AWARDING DAMAGES (Originally filed: 02/08/2024) regarding [45] Ruling on Entitlement, DECISION of Special Master, Order on Motion for Ruling on the Record, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "20-0978V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING AND DECISION AWARDING DAMAGES (Originally filed: 02/08/2024) regarding [45] Ruling on Entitlement, DECISION of Special Master, Order on Motion for Ruling on the Record", "case_name_shorts": "Amor" }, { @@ -24462,9 +24462,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-212V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/07/2024) regarding [25] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0212V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/07/2024) regarding [25] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -24474,9 +24474,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-247V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [45] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0247V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Russell" }, { @@ -24486,9 +24486,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-70V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [49] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0070V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [49] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -24499,8 +24499,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1136V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [34] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Popejoy" }, { @@ -24511,8 +24511,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1813V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/09/2024) regarding [38] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/09/2024) regarding [38] Ruling on Entitlement", "case_name_shorts": "Muratovic" }, { @@ -24522,9 +24522,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-304V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [44] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0304V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [44] DECISION Stipulation/Proffer", "case_name_shorts": "Moore" }, { @@ -24534,9 +24534,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-756V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [47] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0756V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Lapidus" }, { @@ -24546,9 +24546,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-495V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/07/2024) regarding [15] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0495V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/07/2024) regarding [15] Ruling on Entitlement", "case_name_shorts": "Kramb" }, { @@ -24558,9 +24558,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-895V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [24] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0895V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [24] DECISION of Special Master", "case_name_shorts": "Kirby" }, { @@ -24570,9 +24570,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-235V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/05/2024 ) regarding [34] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0235V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/05/2024 ) regarding [34] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -24583,8 +24583,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1424V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/05/2024) regarding [45] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/05/2024) regarding [45] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -24594,9 +24594,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-238V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [34] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0238V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [34] DECISION of Special Master - Fees", "case_name_shorts": "Denton" }, { @@ -24606,9 +24606,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-35V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [76] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "20-0035V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [76] DECISION of Special Master - Fees", "case_name_shorts": "Cyrus" }, { @@ -24618,9 +24618,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-586V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [85] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "20-0586V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/08/2024) regarding [85] DECISION Stipulation/Proffer", "case_name_shorts": "Bunch" }, { @@ -24630,9 +24630,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-494V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 06/14/2023) regarding [42] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (sw) Service on parties made.", + "docket_numbers": "21-0494V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 06/14/2023) regarding [42] DECISION of Special Master", "case_name_shorts": "Brandt" }, { @@ -24642,9 +24642,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-494V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [49] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0494V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/09/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Brandt" }, { @@ -24655,8 +24655,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2088V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/07/2024) regarding [41] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/07/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Wood" }, { @@ -24666,9 +24666,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-172V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 2/12/2024) regarding [120] DECISION of Special Master. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "docket_numbers": "17-0172V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 2/12/2024) regarding [120] DECISION of Special Master", "case_name_shorts": "Sturdevant" }, { @@ -24678,9 +24678,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-171V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/05/2024) regarding [60] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "20-0171V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/05/2024) regarding [60] DECISION of Special Master - Fees", "case_name_shorts": "Stein" }, { @@ -24691,8 +24691,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1677V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/07/2024) regarding [42] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/07/2024) regarding [42] Ruling on Entitlement", "case_name_shorts": "Sears" }, { @@ -24702,9 +24702,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-251V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/06/2024) regarding [29] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0251V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/06/2024) regarding [29] Ruling on Entitlement", "case_name_shorts": "Malolos" }, { @@ -24714,9 +24714,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-486V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/06/2024) regarding [46] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "18-0486V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/06/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -24727,8 +24727,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1925V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/26/2024) regarding [27] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/26/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Hurtte" }, { @@ -24738,9 +24738,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-544V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING and DECISION (Originally filed: 02/05/2024) regarding [45] DECISION of Special Master, Ruling on Entitlement, Order on Motion for Ruling on the Record. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "19-0544V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING and DECISION (Originally filed: 02/05/2024) regarding [45] DECISION of Special Master, Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "Crawford" }, { @@ -24750,9 +24750,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-544V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING and DECISION (Originally filed: 02/05/2024) regarding [45] DECISION of Special Master, Ruling on Entitlement, Order on Motion for Ruling on the Record. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "19-0544V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING and DECISION (Originally filed: 02/05/2024) regarding [45] DECISION of Special Master, Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "Crawford" }, { @@ -24763,8 +24763,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1075V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/06/2024) regarding [18] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/06/2024) regarding [18] DECISION Stipulation/Proffer", "case_name_shorts": "Brown" }, { @@ -24775,8 +24775,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1075V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/06/2024) regarding [17] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/06/2024) regarding [17] Ruling on Entitlement", "case_name_shorts": "Brown" }, { @@ -24786,9 +24786,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-385V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/12/2024) regarding [32] Findings of Fact & Conclusions of Law ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0385V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/12/2024) regarding [32] Findings of Fact & Conclusions of Law", "case_name_shorts": "Blevins" }, { @@ -24798,9 +24798,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-92V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/05/2024) regarding [26] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0092V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/05/2024) regarding [26] Ruling on Entitlement", "case_name_shorts": "Taylor" }, { @@ -24810,9 +24810,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-365V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/05/2024) regarding [61] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "20-0365V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/05/2024) regarding [61] DECISION of Special Master - Fees", "case_name_shorts": "Strand" }, { @@ -24822,9 +24822,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-847V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/05/2024) regarding [24] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0847V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/05/2024) regarding [24] DECISION Stipulation/Proffer", "case_name_shorts": "Portner" }, { @@ -24835,8 +24835,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1334V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/01/2024) regarding [50] DECISION of Special Master - Fees (Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/01/2024) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -24846,9 +24846,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-973V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [38] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0973V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Mueller-Sprout" }, { @@ -24858,9 +24858,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-632V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/01/2024) regarding [35] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0632V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/01/2024) regarding [35] DECISION of Special Master", "case_name_shorts": "Moon" }, { @@ -24871,8 +24871,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1559V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [25] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "Long" }, { @@ -24883,8 +24883,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1496V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [31] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Lay" }, { @@ -24894,9 +24894,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-51V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/05/2024) regarding [58] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "20-0051V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/05/2024) regarding [58] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -24906,9 +24906,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-500V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [34] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0500V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Greener" }, { @@ -24918,9 +24918,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-12V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/06/2024) regarding [45] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0012V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/06/2024) regarding [45] DECISION of Special Master", "case_name_shorts": "Cyr" }, { @@ -24930,9 +24930,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-514V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/05/2024) regarding [46] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0514V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/05/2024) regarding [46] DECISION Stipulation/Proffer", "case_name_shorts": "Cartwright" }, { @@ -24943,8 +24943,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1103V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 01/25/2024) regarding [39] DECISION of Special Master - Fees Signed by Special Master Herbrina Sanders. (jm) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 01/25/2024) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "Wirtz" }, { @@ -24955,8 +24955,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1622V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 01/09/2024) regarding [42] DECISION of Special Master - Fees Signed by Special Master Katherine E. Oler. (jm) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 01/09/2024) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "TUTTLE" }, { @@ -24967,8 +24967,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1314V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [86] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [86] DECISION of Special Master - Fees", "case_name_shorts": "Piller" }, { @@ -24978,9 +24978,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-806V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 01/29/2024) regarding [52] DECISION of Special Master - Fees Signed by Special Master Herbrina Sanders. (jm) Service on parties made.", + "docket_numbers": "20-0806V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 01/29/2024) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Orion" }, { @@ -24990,9 +24990,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-258V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [124] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "docket_numbers": "18-0258V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [124] DECISION of Special Master - Fees", "case_name_shorts": "Leaumont" }, { @@ -25003,8 +25003,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1259V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 01/09/2024) regarding [83] DECISION of Special Master - Fees Signed by Special Master Mindy Michaels Roth. (jm) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 01/09/2024) regarding [83] DECISION of Special Master - Fees", "case_name_shorts": "Komar" }, { @@ -25015,8 +25015,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1458V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 01/17/2024) regarding [100] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 01/17/2024) regarding [100] DECISION of Special Master - Fees", "case_name_shorts": "Jensen" }, { @@ -25027,8 +25027,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1443V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 01/09/2024) regarding [50] DECISION of Special Master - Fees Signed by Special Master Mindy Michaels Roth. (jm) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 01/09/2024) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Horn" }, { @@ -25038,9 +25038,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-438V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 01/17/2024) regarding [120] DECISION of Special Master - Fees, Signed by Special Master Christian J. Moran. (jm) Service on parties made. (Main Document 123 replaced on 3/12/2024 with correct version) (sw).", + "docket_numbers": "18-0438V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 01/17/2024) regarding [120] DECISION of Special Master - Fees", "case_name_shorts": "Garcia" }, { @@ -25050,9 +25050,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-961V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [65] DECISION of Special Master - Fees Signed by Special Master Katherine E. Oler. (jm) Service on parties made.", + "docket_numbers": "20-0961V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [65] DECISION of Special Master - Fees", "case_name_shorts": "Flowers" }, { @@ -25063,8 +25063,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1348V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/31/2024) regarding [52] Findings of Fact & Conclusions of Law,,, Scheduling Order,,, Order on Motion for Ruling on the Record,, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/31/2024) regarding [52] Findings of Fact & Conclusions of Law,,, Scheduling Order,,, Order on Motion for Ruling on the Record", "case_name_shorts": "Salazar" }, { @@ -25074,9 +25074,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "24-102V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 2/7/2024) regarding [7] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "24-0102V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 2/7/2024) regarding [7] Order Concluding Proceedings", "case_name_shorts": "Robson" }, { @@ -25087,8 +25087,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1665V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 12/12/2023) regarding [60] DECISION of Special Master - Interim Attorney&039;s Fees, Signed by Special Master Herbrina Sanders. (sh) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 12/12/2023) regarding [60] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Ranks" }, { @@ -25099,8 +25099,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2153V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023) regarding [62] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023) regarding [62] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Lindsay" }, { @@ -25111,8 +25111,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1675V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/06/2024) regarding [54] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made. Petitioner served via first class mail on 03.07.2024 (mjk). Modified on 3/7/2024 (mjk).", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/06/2024) regarding [54] DECISION of Special Master", "case_name_shorts": "Hammer" }, { @@ -25123,8 +25123,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1262V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/09/2024) regarding [64] Findings of Fact & Conclusions of Law. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/09/2024) regarding [64] Findings of Fact & Conclusions of Law", "case_name_shorts": "Grant" }, { @@ -25135,8 +25135,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1899V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/02/2024) regarding [23] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/02/2024) regarding [23] Ruling on Entitlement", "case_name_shorts": "Foster" }, { @@ -25146,9 +25146,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-326V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/31/2024) regarding [38] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0326V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/31/2024) regarding [38] Ruling on Entitlement", "case_name_shorts": "Emeziem" }, { @@ -25158,9 +25158,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-228V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 01/25/2024) regarding [93] DECISION of Special Master - Fees Signed by Special Master Katherine E. Oler. (jm) Service on parties made.", + "docket_numbers": "19-0228V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 01/25/2024) regarding [93] DECISION of Special Master - Fees", "case_name_shorts": "Dolan" }, { @@ -25170,9 +25170,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-17V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 01/30/24) regarding [178] DECISION of Special Master - Fees Signed by Special Master Herbrina Sanders. (jm) Service on parties made.", + "docket_numbers": "15-0017V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 01/30/24) regarding [178] DECISION of Special Master - Fees", "case_name_shorts": "Decker" }, { @@ -25182,9 +25182,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-486V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 01/11/2024) regarding [37] DECISION of Special Master - Fees Signed by Special Master Katherine E. Oler. (jm) Service on parties made.", + "docket_numbers": "22-0486V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 01/11/2024) regarding [37] DECISION of Special Master - Fees", "case_name_shorts": "DONG" }, { @@ -25194,9 +25194,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-562V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/02/2024) regarding [60] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "20-0562V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/02/2024) regarding [60] DECISION Stipulation/Proffer", "case_name_shorts": "Cracraft" }, { @@ -25207,8 +25207,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1476V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [88] DECISION of Special Master - Fees Signed by Special Master Thomas L. Gowen. (jm) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [88] DECISION of Special Master - Fees", "case_name_shorts": "Coleman" }, { @@ -25218,9 +25218,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-528V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [59] DECISION of Special Master - Fees Signed by Special Master Daniel T. Horner. (jm) Service on parties made.", + "docket_numbers": "21-0528V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [59] DECISION of Special Master - Fees", "case_name_shorts": "Chadduck" }, { @@ -25231,8 +25231,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1698V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 2/9/2024) regarding [45] DECISION Dismissing Petition. Signed by Special Master Katherine E. Oler. (sl) Service on parties made. Petitioner served via first class mail on 03.07.2024 (mjk). Modified on 3/7/2024 (mjk).", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 2/9/2024) regarding [45] DECISION Dismissing Petition", "case_name_shorts": "Capri" }, { @@ -25243,8 +25243,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1140V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [55] DECISION of Special Master - Fees Signed by Special Master Daniel T. Horner. (jm) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [55] DECISION of Special Master - Fees", "case_name_shorts": "Burkett" }, { @@ -25255,8 +25255,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1792V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 01/10/2024) regarding [48] DECISION of Special Master - Fees Signed by Special Master Katherine E. Oler. (jm) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 01/10/2024) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Bonham" }, { @@ -25266,9 +25266,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-998V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [61] DECISION of Special Master - Fees Signed by Special Master Mindy Michaels Roth. (jm) Service on parties made.", + "docket_numbers": "20-0998V", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [61] DECISION of Special Master - Fees", "case_name_shorts": "Bolz" }, { @@ -25278,9 +25278,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-228V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 01/10/2024) regarding [42] DECISION of Special Master - Fees Signed by Special Master Katherine E. Oler. (jm) Service on parties made.", + "docket_numbers": "22-0228V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 01/10/2024) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Bixel" }, { @@ -25290,9 +25290,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-115V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [124] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "docket_numbers": "19-0115V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [124] DECISION of Special Master - Fees", "case_name_shorts": "Bishara" }, { @@ -25302,9 +25302,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-502V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 01/25/2024) regarding [142] DECISION of Special Master - Fees Signed by Special Master Herbrina Sanders. (jm) Service on parties made.", + "docket_numbers": "15-0502V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 01/25/2024) regarding [142] DECISION of Special Master - Fees", "case_name_shorts": "Ambriz" }, { @@ -25314,9 +25314,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-843V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/31/2024) regarding [34] Motion to Dismiss, (Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0843V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/31/2024) regarding [34] Motion to Dismiss", "case_name_shorts": "Zuckerman" }, { @@ -25326,9 +25326,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-89V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 2/6/2024) regarding [33] DECISION of Special Master - Stipulation. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "docket_numbers": "22-0089V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 2/6/2024) regarding [33] DECISION of Special Master - Stipulation", "case_name_shorts": "Wiltz" }, { @@ -25339,8 +25339,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1121V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [34] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -25351,8 +25351,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1420V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [62] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [62] DECISION of Special Master", "case_name_shorts": "" }, { @@ -25363,8 +25363,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2171V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/02/2024) regarding [34] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/02/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Stimson" }, { @@ -25374,9 +25374,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-135V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [43] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0135V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Salgado" }, { @@ -25386,9 +25386,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-448V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/02/2024) regarding [27] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0448V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/02/2024) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Padratzik" }, { @@ -25398,9 +25398,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-234V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [33] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0234V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Nix" }, { @@ -25410,9 +25410,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-38V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/29/2024 ) regarding [35] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0038V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/29/2024 ) regarding [35] Ruling on Entitlement", "case_name_shorts": "Nava" }, { @@ -25423,8 +25423,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1989V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [44] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Mason-Chavez" }, { @@ -25435,8 +25435,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1462V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/29/2024) regarding [91] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/29/2024) regarding [91] DECISION of Special Master - Fees", "case_name_shorts": "M." }, { @@ -25446,9 +25446,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-7V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024 ) regarding [24] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0007V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024 ) regarding [24] DECISION Stipulation/Proffer", "case_name_shorts": "Kudalis" }, { @@ -25458,9 +25458,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-66V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/29/2024) regarding [33] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0066V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/29/2024) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -25471,8 +25471,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1442V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [32] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [32] DECISION of Special Master", "case_name_shorts": "Hobbs" }, { @@ -25483,8 +25483,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1877V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 1/23/2024) regarding [30] DECISION Dismissing Petition. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 1/23/2024) regarding [30] DECISION Dismissing Petition", "case_name_shorts": "Heinle" }, { @@ -25495,8 +25495,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1304V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/02/2024) regarding [40] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/02/2024) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "Hannon" }, { @@ -25506,9 +25506,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-140V", - "judges": "K. Oler", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 2/7/2024) regarding [100] Ruling on Entitlement. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "docket_numbers": "16-0140V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 2/7/2024) regarding [100] Ruling on Entitlement", "case_name_shorts": "HEILIG" }, { @@ -25518,9 +25518,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-406V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/29/2024) regarding [18] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0406V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/29/2024) regarding [18] Ruling on Entitlement", "case_name_shorts": "Glover" }, { @@ -25531,8 +25531,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1558V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 2/5/2024) regarding [112] DECISION of Special Master - Proffer. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 2/5/2024) regarding [112] DECISION of Special Master - Proffer", "case_name_shorts": "Geschwindner" }, { @@ -25543,8 +25543,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1900V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [21] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [21] DECISION Stipulation/Proffer", "case_name_shorts": "Farmer" }, { @@ -25554,9 +25554,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-795V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 1/22/2024) regarding [38] DECISION of Special Master - Stipulation. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "docket_numbers": "22-0795V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 1/22/2024) regarding [38] DECISION of Special Master - Stipulation", "case_name_shorts": "Erbsen" }, { @@ -25566,9 +25566,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-400V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/02/2024) regarding [35] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0400V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 02/02/2024) regarding [35] Ruling on Entitlement", "case_name_shorts": "Covey" }, { @@ -25578,9 +25578,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-914V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 02/02/2024) regarding [38] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0914V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 02/02/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Conley" }, { @@ -25591,8 +25591,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1060V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/30/2024) regarding [20] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/30/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "Cohen" }, { @@ -25602,9 +25602,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-196V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/30/2024) regarding [24] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0196V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/30/2024) regarding [24] Ruling on Entitlement", "case_name_shorts": "Tonjes" }, { @@ -25614,9 +25614,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-965V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [47] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0965V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [47] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -25626,9 +25626,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-380V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/30/2024) regarding [20] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0380V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/30/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "Rini" }, { @@ -25638,9 +25638,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-30V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [47] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0030V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [47] DECISION Stipulation/Proffer", "case_name_shorts": "Nyarko" }, { @@ -25650,9 +25650,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-726V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/31/2024) regarding [25] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0726V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/31/2024) regarding [25] Ruling on Entitlement", "case_name_shorts": "Kiser" }, { @@ -25663,8 +25663,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1667V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/31/2024) regarding [42] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/31/2024) regarding [42] Ruling on Entitlement", "case_name_shorts": "Kempkes" }, { @@ -25674,9 +25674,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-513V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [54] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0513V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [54] DECISION Stipulation/Proffer", "case_name_shorts": "Karasen" }, { @@ -25687,8 +25687,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1457V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [29] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/31/2024) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "Ingalsbe" }, { @@ -25698,9 +25698,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-398V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [40] Ruling on Entitlement, DECISION of Special Master, Order on Motion for Ruling on the Record, PUBLIC ORDER/RULING (Originally filed: 01/30/2024) regarding [40] Ruling on Entitlement, DECISION of Special Master, Order on Motion for Ruling on the Record. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0398V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [40] Ruling on Entitlement, DECISION of Special Master, Order on Motion for Ruling on the Record, PUBLIC ORDER/RULING (Originally filed: 01/30/2024) regarding [40] Ruling on Entitlement, DECISION of Special Master, Order on Motion for Ruling on the Record", "case_name_shorts": "Horn" }, { @@ -25710,9 +25710,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-398V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [40] Ruling on Entitlement, DECISION of Special Master, Order on Motion for Ruling on the Record, PUBLIC ORDER/RULING (Originally filed: 01/30/2024) regarding [40] Ruling on Entitlement, DECISION of Special Master, Order on Motion for Ruling on the Record. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0398V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [40] Ruling on Entitlement, DECISION of Special Master, Order on Motion for Ruling on the Record, PUBLIC ORDER/RULING (Originally filed: 01/30/2024) regarding [40] Ruling on Entitlement, DECISION of Special Master, Order on Motion for Ruling on the Record", "case_name_shorts": "Horn" }, { @@ -25723,8 +25723,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1521V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [39] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Heller" }, { @@ -25734,9 +25734,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-472V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/29/2024) regarding [42] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0472V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/29/2024) regarding [42] Ruling on Entitlement", "case_name_shorts": "Crete" }, { @@ -25746,9 +25746,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-127V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/26/2024) regarding [42] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0127V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/26/2024) regarding [42] DECISION Stipulation/Proffer", "case_name_shorts": "Bullock" }, { @@ -25759,8 +25759,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1094V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/29/2024) regarding [35] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/29/2024) regarding [35] Ruling on Entitlement", "case_name_shorts": "Williamson" }, { @@ -25770,9 +25770,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-481V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/25/2024) regarding [32] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0481V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/25/2024) regarding [32] Ruling on Entitlement", "case_name_shorts": "Washburn" }, { @@ -25783,8 +25783,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2003V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/29/2024) regarding [42] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/29/2024) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -25794,9 +25794,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-678V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/29/2024) regarding [31] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0678V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/29/2024) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Schaefer" }, { @@ -25807,8 +25807,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1132V", - "judges": "T. Gowen", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/09/2024) regarding [32] DECISION Stipulation. Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/09/2024) regarding [32] DECISION Stipulation", "case_name_shorts": "Rose" }, { @@ -25819,8 +25819,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1781V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/22/2024) regarding [36] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/22/2024) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -25831,8 +25831,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1866V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/29/2024) regarding [30] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/29/2024) regarding [30] Ruling on Entitlement", "case_name_shorts": "Pick" }, { @@ -25842,9 +25842,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-104V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [40] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0104V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "Nuzzo" }, { @@ -25855,8 +25855,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1842V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [38] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Morelos" }, { @@ -25867,8 +25867,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1712V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/29/2024) regarding [24] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/29/2024) regarding [24] Ruling on Entitlement", "case_name_shorts": "Moore" }, { @@ -25878,9 +25878,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-692V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/22/2024) regarding [30] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0692V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/22/2024) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "McIntyre" }, { @@ -25890,9 +25890,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-179V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [58] DECISION Stipulation/Proffer, Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "docket_numbers": "19-0179V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [58] DECISION Stipulation/Proffer", "case_name_shorts": "Leon" }, { @@ -25903,8 +25903,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1796V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [33] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [33] DECISION of Special Master - Fees", "case_name_shorts": "Lariviere" }, { @@ -25914,9 +25914,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-436V", - "judges": "T. Gowen", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/02/2024) regarding [78] Order Concluding Proceedings. Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "docket_numbers": "19-0436V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/02/2024) regarding [78] Order Concluding Proceedings", "case_name_shorts": "Lagos" }, { @@ -25926,9 +25926,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-284V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [35] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0284V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [35] DECISION of Special Master - Fees", "case_name_shorts": "Karpenski" }, { @@ -25939,8 +25939,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-1454V", - "judges": "T. Gowen", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/23/2024) regarding [112] Ruling on Entitlement Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/23/2024) regarding [112] Ruling on Entitlement", "case_name_shorts": "Irwin" }, { @@ -25951,8 +25951,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1621V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/29/2024 ) regarding [54] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/29/2024 ) regarding [54] DECISION of Special Master - Fees", "case_name_shorts": "Hilbrich" }, { @@ -25962,9 +25962,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-257V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/29/2024) regarding [21] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0257V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/29/2024) regarding [21] Ruling on Entitlement", "case_name_shorts": "Hernandez" }, { @@ -25974,9 +25974,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-65V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [46] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0065V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Haas" }, { @@ -25987,8 +25987,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1276V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/29/2024) regarding [43] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/29/2024) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "Guy" }, { @@ -25998,9 +25998,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-542V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/29/2024) regarding [46] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0542V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/29/2024) regarding [46] DECISION Stipulation/Proffer", "case_name_shorts": "Giancaterino" }, { @@ -26010,9 +26010,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-316V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/29/2024) regarding [44] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0316V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/29/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Frani" }, { @@ -26022,9 +26022,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-545V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [43] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0545V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/30/2024) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Dasilva" }, { @@ -26035,8 +26035,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1918V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 02/06/2024) regarding [27] DECISION of Special Master Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 02/06/2024) regarding [27] DECISION of Special Master", "case_name_shorts": "Taylor" }, { @@ -26046,9 +26046,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-753V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 2/13/24) regarding [160] DECISION Stipulation/Proffer, Signed by Special Master Herbrina Sanders. (sh) Service on parties made.", + "docket_numbers": "14-0753V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 2/13/24) regarding [160] DECISION Stipulation/Proffer", "case_name_shorts": "M." }, { @@ -26058,9 +26058,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-462V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [54] DECISION of Special Master Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "docket_numbers": "19-0462V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [54] DECISION of Special Master", "case_name_shorts": "Larson" }, { @@ -26071,8 +26071,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1703V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 1/31/2024) regarding [62] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 1/31/2024) regarding [62] DECISION of Special Master", "case_name_shorts": "Velasquez" }, { @@ -26082,9 +26082,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-781V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/29/2024) regarding [15] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0781V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/29/2024) regarding [15] Order Concluding Proceedings", "case_name_shorts": "Tome" }, { @@ -26095,8 +26095,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1156V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/26/2024 ) regarding [36] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/26/2024 ) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Thorn" }, { @@ -26106,9 +26106,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-785V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/29/2024) regarding [17] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0785V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/29/2024) regarding [17] Order Concluding Proceedings", "case_name_shorts": "STRICKLAND" }, { @@ -26118,9 +26118,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-799V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 2/2/2024) regarding [16] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0799V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 2/2/2024) regarding [16] Order Concluding Proceedings", "case_name_shorts": "Mudrenco" }, { @@ -26130,9 +26130,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-101V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/26/2024) regarding [50] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0101V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/26/2024) regarding [50] DECISION Stipulation/Proffer", "case_name_shorts": "Beyer" }, { @@ -26143,8 +26143,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1451V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/22/2024) regarding [28] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/22/2024) regarding [28] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -26154,9 +26154,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-695V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/26/2024) regarding [33] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0695V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/26/2024) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Watson" }, { @@ -26167,8 +26167,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1772V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 1/29/2024) regarding [79] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 1/29/2024) regarding [79] DECISION of Special Master - Fees", "case_name_shorts": "Truett" }, { @@ -26178,9 +26178,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-43V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 1/29/2024) regarding [92] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "docket_numbers": "18-0043V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 1/29/2024) regarding [92] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -26191,8 +26191,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1703V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 2/8/24) regarding [51] DECISION Stipulation/Proffer. Signed by Special Master Herbrina Sanders. (sh) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 2/8/24) regarding [51] DECISION Stipulation/Proffer", "case_name_shorts": "Seei" }, { @@ -26202,9 +26202,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-244V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/26/2024) regarding [23] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0244V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/26/2024) regarding [23] Ruling on Entitlement", "case_name_shorts": "Schaeffer" }, { @@ -26214,9 +26214,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-241V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 02/02/24) regarding [207] DECISION of Special Master - Interim Attorney&039;s Fees Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "16-0241V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 02/02/24) regarding [207] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Rocha" }, { @@ -26226,9 +26226,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-592V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/22/2024) regarding [22] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0592V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/22/2024) regarding [22] Ruling on Entitlement", "case_name_shorts": "Palermo" }, { @@ -26238,9 +26238,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-271V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/26/2024) regarding [54] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0271V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/26/2024) regarding [54] DECISION Stipulation/Proffer", "case_name_shorts": "Moses" }, { @@ -26250,9 +26250,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-206V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/17/2024) regarding [28] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0206V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/17/2024) regarding [28] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -26262,9 +26262,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-431V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [38] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0431V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Gottbeheat" }, { @@ -26274,9 +26274,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-65V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/25/2024) regarding [40] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0065V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/25/2024) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "Davis" }, { @@ -26286,9 +26286,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-83V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/25/2024) regarding [44] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0083V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/25/2024) regarding [44] DECISION Stipulation/Proffer", "case_name_shorts": "Brown" }, { @@ -26298,9 +26298,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-574V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/26/2024) regarding [41] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0574V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/26/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Boice" }, { @@ -26310,9 +26310,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-612V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/24/2024) regarding [46] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0612V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/24/2024) regarding [46] DECISION Stipulation/Proffer", "case_name_shorts": "Baine" }, { @@ -26322,9 +26322,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-702V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [39] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0702V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -26334,9 +26334,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-312V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/24/2024) regarding [36] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0312V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/24/2024) regarding [36] Ruling on Entitlement", "case_name_shorts": "Vivier" }, { @@ -26346,9 +26346,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-241V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 02/01/2024) regarding [206] DECISION of Special Master Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "16-0241V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 02/01/2024) regarding [206] DECISION of Special Master", "case_name_shorts": "Rocha" }, { @@ -26358,9 +26358,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-691V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [29] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0691V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "Portee" }, { @@ -26370,9 +26370,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-454V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [32] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0454V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [32] DECISION Stipulation/Proffer", "case_name_shorts": "Pendleton" }, { @@ -26382,9 +26382,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-948V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [66] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "20-0948V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [66] DECISION of Special Master - Fees", "case_name_shorts": "Olsen-Santoro" }, { @@ -26394,9 +26394,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-192V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [57] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0192V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [57] DECISION of Special Master - Fees", "case_name_shorts": "Maxheimer" }, { @@ -26407,8 +26407,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2228V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [46] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "MacAvoy" }, { @@ -26418,9 +26418,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-334V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/23/2024 ) regarding [41] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0334V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/23/2024 ) regarding [41] Ruling on Entitlement", "case_name_shorts": "Lenhart" }, { @@ -26431,8 +26431,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1444V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [33] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Jennings" }, { @@ -26443,8 +26443,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1577V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [28] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -26455,8 +26455,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1482V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/22/2024) regarding [56] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/22/2024) regarding [56] Ruling on Entitlement", "case_name_shorts": "Holtzhafer" }, { @@ -26467,8 +26467,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1292V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 1/22/2024) regarding [74] DECISION Stipulation/Proffer, Signed by Special Master Christian J. Moran. (dksc) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 1/22/2024) regarding [74] DECISION Stipulation/Proffer", "case_name_shorts": "Godoy" }, { @@ -26479,8 +26479,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1556V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [38] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Gilmore" }, { @@ -26491,8 +26491,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "15-1470V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 1/29/2024) regarding [252] DECISION Proffer. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 1/29/2024) regarding [252] DECISION Proffer", "case_name_shorts": "Fuller" }, { @@ -26502,9 +26502,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-168V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [39] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0168V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Evans" }, { @@ -26514,9 +26514,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-2V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/22/2024) regarding [71] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "19-0002V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/22/2024) regarding [71] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -26526,9 +26526,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-706V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [41] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0706V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Crimmings" }, { @@ -26539,8 +26539,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1856V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [51] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [51] DECISION of Special Master - Fees", "case_name_shorts": "Burrell" }, { @@ -26550,9 +26550,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-363V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [51] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0363V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [51] DECISION of Special Master - Fees", "case_name_shorts": "Bent" }, { @@ -26563,8 +26563,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1762V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/19/2024) regarding [18] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/19/2024) regarding [18] DECISION Stipulation/Proffer", "case_name_shorts": "Walker" }, { @@ -26575,8 +26575,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1509V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/22/2024) regarding [28] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/22/2024) regarding [28] Ruling on Entitlement", "case_name_shorts": "Nagelberg" }, { @@ -26587,8 +26587,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2035V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/22/2024) regarding [57] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/22/2024) regarding [57] DECISION Stipulation/Proffer", "case_name_shorts": "Hastings" }, { @@ -26599,8 +26599,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1927V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/22/2024) regarding [32] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/22/2024) regarding [32] DECISION Stipulation/Proffer", "case_name_shorts": "Grim" }, { @@ -26611,8 +26611,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1762V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/19/2024) regarding [17] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/19/2024) regarding [17] Ruling on Entitlement", "case_name_shorts": "Walker" }, { @@ -26622,9 +26622,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-532V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/17/2024) regarding [35] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0532V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/17/2024) regarding [35] DECISION of Special Master - Fees", "case_name_shorts": "Shaw" }, { @@ -26634,9 +26634,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-401V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/18/2024) regarding [46] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0401V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/18/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Idnani" }, { @@ -26646,9 +26646,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-812V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/18/2024) regarding [33] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0812V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/18/2024) regarding [33] DECISION of Special Master - Fees", "case_name_shorts": "Groen" }, { @@ -26658,9 +26658,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-735V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [53] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "21-0735V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/23/2024) regarding [53] DECISION Stipulation/Proffer", "case_name_shorts": "Babo" }, { @@ -26671,8 +26671,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1776V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/18/2024) regarding [42] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/18/2024) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Aquino" }, { @@ -26682,9 +26682,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-790V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 1/22/2024) regarding [16] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0790V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 1/22/2024) regarding [16] DECISION of Special Master", "case_name_shorts": "Young" }, { @@ -26695,8 +26695,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1662V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/12/2024) regarding [24] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/12/2024) regarding [24] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -26707,8 +26707,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1821V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/18/2024) regarding [51] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/18/2024) regarding [51] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -26718,9 +26718,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-225V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 1/23/2024) regarding [36] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "docket_numbers": "20-0225V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 1/23/2024) regarding [36] DECISION of Special Master - Fees", "case_name_shorts": "Warner" }, { @@ -26730,9 +26730,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-264V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/17/2024) regarding [38] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0264V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/17/2024) regarding [38] DECISION of Special Master - Fees", "case_name_shorts": "Terrell" }, { @@ -26743,8 +26743,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "14-1212V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 1/26/2024) regarding [192] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 1/26/2024) regarding [192] DECISION of Special Master - Fees", "case_name_shorts": "Skinner-Smith" }, { @@ -26755,8 +26755,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1652V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/18/2024) regarding [61] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/18/2024) regarding [61] DECISION of Special Master - Fees", "case_name_shorts": "Seawel" }, { @@ -26767,8 +26767,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1731V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/12/2024) regarding [47] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/12/2024) regarding [47] DECISION Stipulation/Proffer", "case_name_shorts": "Schaffer" }, { @@ -26779,8 +26779,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1522V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [31] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Sabra" }, { @@ -26791,8 +26791,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1843V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 2/5/24) regarding [32] DECISION Stipulation/Proffer, Signed by Special Master Herbrina Sanders. (sh) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 2/5/24) regarding [32] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -26802,9 +26802,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-480V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/18/2024 ) regarding [65] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "20-0480V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/18/2024 ) regarding [65] DECISION of Special Master - Fees", "case_name_shorts": "Rawlings" }, { @@ -26815,8 +26815,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1299V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/12/2024) regarding [35] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/12/2024) regarding [35] DECISION of Special Master", "case_name_shorts": "Presson" }, { @@ -26827,8 +26827,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1743V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/17/2024) regarding [47] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/17/2024) regarding [47] DECISION Stipulation/Proffer", "case_name_shorts": "Mullen" }, { @@ -26839,8 +26839,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1671V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/17/2024) regarding [53] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/17/2024) regarding [53] DECISION of Special Master - Fees", "case_name_shorts": "Mohnal" }, { @@ -26850,9 +26850,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-779V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/12/2024) regarding [48] Findings of Fact & Conclusions of Law. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "20-0779V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/12/2024) regarding [48] Findings of Fact & Conclusions of Law", "case_name_shorts": "Meyers" }, { @@ -26863,8 +26863,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2007V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/17/2024) regarding [44] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/17/2024) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "McGraw" }, { @@ -26874,9 +26874,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-439V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 1/26/2024) regarding [78] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "docket_numbers": "18-0439V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 1/26/2024) regarding [78] DECISION of Special Master - Fees", "case_name_shorts": "Linville" }, { @@ -26886,9 +26886,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-995V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 1/25/2024) regarding [126] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "docket_numbers": "17-0995V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 1/25/2024) regarding [126] DECISION of Special Master - Fees", "case_name_shorts": "Lang" }, { @@ -26898,9 +26898,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-753V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/18/2024) regarding [30] Findings of Fact & Conclusions of Law. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0753V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/18/2024) regarding [30] Findings of Fact & Conclusions of Law", "case_name_shorts": "Hydutsky" }, { @@ -26910,9 +26910,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-13V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 1/26/2024) regarding [97] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made. (Main Document 98 replaced on 3/4/2024 to correct the case caption.) (fm).", + "docket_numbers": "18-0013V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 1/26/2024) regarding [97] DECISION of Special Master - Fees", "case_name_shorts": "Grossmann" }, { @@ -26922,9 +26922,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-597V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/18/2024) regarding [43] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0597V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/18/2024) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Greene" }, { @@ -26935,8 +26935,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1389V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 1/26/2024) regarding [65] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Mindy Michaels Roth. (msg) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 1/26/2024) regarding [65] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Gonso" }, { @@ -26947,8 +26947,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1900V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/11/2024) regarding [18] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/11/2024) regarding [18] Ruling on Entitlement", "case_name_shorts": "Farmer" }, { @@ -26959,8 +26959,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2063V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/12/2024) regarding [39] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/12/2024) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Ellis" }, { @@ -26971,8 +26971,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2068V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/12/2024 ) regarding [40] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/12/2024 ) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "Day" }, { @@ -26983,8 +26983,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1534V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/17/2024) regarding [59] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/17/2024) regarding [59] DECISION of Special Master - Fees", "case_name_shorts": "Dasilveira" }, { @@ -26995,8 +26995,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1158V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 1/23/2024) regarding [62] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 1/23/2024) regarding [62] DECISION Stipulation/Proffer", "case_name_shorts": "Basdakis" }, { @@ -27006,9 +27006,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-81V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/11/2024) regarding [54] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0081V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/11/2024) regarding [54] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -27019,8 +27019,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1097V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 1/23/2024) regarding [77] DECISION of Special Master. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 1/23/2024) regarding [77] DECISION of Special Master", "case_name_shorts": "Alsaadeh" }, { @@ -27031,8 +27031,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1550V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/17/2024) regarding [57] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/17/2024) regarding [57] DECISION of Special Master - Fees", "case_name_shorts": "Aldridge" }, { @@ -27043,8 +27043,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1463V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/17/2024) regarding [34] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/17/2024) regarding [34] DECISION of Special Master - Fees", "case_name_shorts": "Wentworth" }, { @@ -27054,9 +27054,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-742V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/17/2024) regarding [17] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0742V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/17/2024) regarding [17] Ruling on Entitlement", "case_name_shorts": "Weber" }, { @@ -27067,8 +27067,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1879V", - "judges": "N. Dorsey", - "summaries": "PUBLIC RULING (Originally filed: 1/22/2024) regarding [19] Ruling on Entitlement. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC RULING (Originally filed: 1/22/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Wagner" }, { @@ -27079,8 +27079,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1645V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/17/2024) regarding [50] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/17/2024) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Lekas" }, { @@ -27090,9 +27090,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-220V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/17/2024) regarding [42] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0220V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/17/2024) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Langerud" }, { @@ -27102,9 +27102,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-29V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/11/2024) regarding [35] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0029V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/11/2024) regarding [35] DECISION Stipulation/Proffer", "case_name_shorts": "Reid" }, { @@ -27115,8 +27115,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1606V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 1/23/2024) regarding [92] DECISION Stipulation/Proffer, Signed by Special Master Christian J. Moran. (dksc) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 1/23/2024) regarding [92] DECISION Stipulation/Proffer", "case_name_shorts": "Laws" }, { @@ -27126,9 +27126,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-914V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/10/2024) regarding [48] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0914V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/10/2024) regarding [48] DECISION Stipulation/Proffer", "case_name_shorts": "Kelly" }, { @@ -27138,9 +27138,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-176V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/16/2024) regarding [45] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0176V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/16/2024) regarding [45] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -27150,9 +27150,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-622V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/12/2024) regarding [43] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0622V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/12/2024) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Harvey" }, { @@ -27163,8 +27163,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1518V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 1/23/2024) regarding [49] DECISION Stipulation/Proffer, Signed by Special Master Christian J. Moran. (dksc) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 1/23/2024) regarding [49] DECISION Stipulation/Proffer", "case_name_shorts": "Boerckel" }, { @@ -27174,9 +27174,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-523V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/12/2024) regarding [32] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0523V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/12/2024) regarding [32] DECISION Stipulation/Proffer", "case_name_shorts": "Watson" }, { @@ -27186,9 +27186,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-463V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/09/2024) regarding [50] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0463V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/09/2024) regarding [50] DECISION Stipulation/Proffer", "case_name_shorts": "Stabler" }, { @@ -27198,9 +27198,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-240V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 1/19/2024) regarding [39] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "docket_numbers": "21-0240V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 1/19/2024) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Rhoades" }, { @@ -27210,9 +27210,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-853V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/11/2024) regarding [52] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0853V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/11/2024) regarding [52] Ruling on Entitlement", "case_name_shorts": "Paaswell" }, { @@ -27223,8 +27223,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1027V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/11/2024) regarding [34] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/11/2024) regarding [34] Ruling on Entitlement", "case_name_shorts": "Masangcay" }, { @@ -27234,9 +27234,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-402V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/10/2024) regarding [45] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0402V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/10/2024) regarding [45] DECISION Stipulation/Proffer", "case_name_shorts": "Kersting" }, { @@ -27246,9 +27246,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-731V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/19/2024) regarding [16] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0731V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/19/2024) regarding [16] Order Concluding Proceedings", "case_name_shorts": "Drake" }, { @@ -27259,8 +27259,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1287V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/12/2024) regarding [26] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/12/2024) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Denzik" }, { @@ -27270,9 +27270,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-729V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/12/2024) regarding [20] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0729V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/12/2024) regarding [20] Order Concluding Proceedings", "case_name_shorts": "Bednarczyk" }, { @@ -27283,8 +27283,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2282V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/09/2024) regarding [43] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/09/2024) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Barefield" }, { @@ -27294,9 +27294,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-580V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/11/2024) regarding [36] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0580V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/11/2024) regarding [36] DECISION of Special Master - Fees", "case_name_shorts": "Anderson" }, { @@ -27306,9 +27306,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-743V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/11/2024) regarding [28] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0743V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/11/2024) regarding [28] DECISION of Special Master - Fees", "case_name_shorts": "Pierce" }, { @@ -27318,9 +27318,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-26V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/11/2024) regarding [43] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0026V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/11/2024) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -27330,9 +27330,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-142V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/11/2024) regarding [42] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0142V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/11/2024) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Jones" }, { @@ -27342,9 +27342,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-428V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/12/2024) regarding [40] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0428V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/12/2024) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "Connelly" }, { @@ -27355,8 +27355,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1898V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/12/2024) regarding [24] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/12/2024) regarding [24] Ruling on Entitlement", "case_name_shorts": "Cameron" }, { @@ -27367,8 +27367,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1218V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/10/2024) regarding [46] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/10/2024) regarding [46] DECISION Stipulation/Proffer", "case_name_shorts": "Beach" }, { @@ -27378,9 +27378,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-484V", - "judges": "N. Dorsey", - "summaries": "PUBLIC RULING (Originally filed: 1/17/2024) regarding [145] Ruling on Entitlement. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "docket_numbers": "18-0484V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC RULING (Originally filed: 1/17/2024) regarding [145] Ruling on Entitlement", "case_name_shorts": "Anderson" }, { @@ -27391,8 +27391,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1005V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [48] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [48] DECISION Stipulation/Proffer", "case_name_shorts": "Zimmer" }, { @@ -27402,9 +27402,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-466V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [47] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0466V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Wilmouth" }, { @@ -27415,8 +27415,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1855V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [60] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [60] DECISION Stipulation/Proffer", "case_name_shorts": "Whitaker" }, { @@ -27427,8 +27427,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1805V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [26] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Waszak" }, { @@ -27438,9 +27438,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-309V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024 ) regarding [34] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0309V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024 ) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Robitille" }, { @@ -27450,9 +27450,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-183V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [37] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0183V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [37] DECISION of Special Master - Fees", "case_name_shorts": "Rekoff" }, { @@ -27463,8 +27463,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1849V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/03/2024) regarding [38] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/03/2024) regarding [38] Ruling on Entitlement", "case_name_shorts": "Quezada" }, { @@ -27475,8 +27475,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1543V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [69] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [69] DECISION Stipulation/Proffer", "case_name_shorts": "Nandkumar" }, { @@ -27487,8 +27487,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1449V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [56] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [56] DECISION Stipulation/Proffer", "case_name_shorts": "Mire" }, { @@ -27498,9 +27498,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-34V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/09/2024) regarding [34] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0034V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/09/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "McNey" }, { @@ -27510,9 +27510,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-109V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [57] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0109V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [57] DECISION of Special Master - Fees", "case_name_shorts": "Lasak" }, { @@ -27522,9 +27522,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-7V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/09/2024) regarding [19] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0007V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/09/2024) regarding [19] Ruling on Entitlement", "case_name_shorts": "Kudalis" }, { @@ -27535,8 +27535,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1153V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [30] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [30] DECISION of Special Master - Fees", "case_name_shorts": "King" }, { @@ -27547,8 +27547,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1785V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/04/2024) regarding [37] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/04/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Janosik" }, { @@ -27558,9 +27558,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-274V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/09/2024 ) regarding [16] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0274V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/09/2024 ) regarding [16] Ruling on Entitlement", "case_name_shorts": "Inman" }, { @@ -27571,8 +27571,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1681V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/08/2024) regarding [34] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/08/2024) regarding [34] Ruling on Entitlement", "case_name_shorts": "Huber" }, { @@ -27583,8 +27583,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1305V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/09/2024) regarding [32] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/09/2024) regarding [32] DECISION Stipulation/Proffer", "case_name_shorts": "Hoyt" }, { @@ -27595,8 +27595,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1207V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [38] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Gompf" }, { @@ -27607,8 +27607,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1196V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/04/2024) regarding [59] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/04/2024) regarding [59] DECISION Stipulation/Proffer", "case_name_shorts": "Flores" }, { @@ -27618,9 +27618,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-781V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [32] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0781V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [32] DECISION Stipulation/Proffer", "case_name_shorts": "Fata" }, { @@ -27630,9 +27630,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-341V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [56] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0341V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [56] DECISION of Special Master - Fees", "case_name_shorts": "Fagan" }, { @@ -27643,8 +27643,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1025V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/26/2023) regarding [28] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/26/2023) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Doenlen" }, { @@ -27655,8 +27655,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1025V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/26/2023) regarding [27] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/26/2023) regarding [27] Ruling on Entitlement", "case_name_shorts": "Doenlen" }, { @@ -27666,9 +27666,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-187V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [41] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0187V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Burkemper" }, { @@ -27679,8 +27679,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1452V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [48] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Bright" }, { @@ -27691,8 +27691,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1926V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [55] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [55] DECISION of Special Master - Fees", "case_name_shorts": "Ball" }, { @@ -27702,9 +27702,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-19V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/08/2024) regarding [66] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0019V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/08/2024) regarding [66] Ruling on Entitlement", "case_name_shorts": "Andrews" }, { @@ -27715,8 +27715,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2252V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [54] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [54] DECISION of Special Master - Fees", "case_name_shorts": "Zeimetz" }, { @@ -27727,8 +27727,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1780V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/04/2024) regarding [28] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/04/2024) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Weseman" }, { @@ -27739,8 +27739,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1594V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/09/2024) regarding [20] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/09/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "Thomas" }, { @@ -27750,9 +27750,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-845V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [45] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0845V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Teichner" }, { @@ -27762,9 +27762,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-910V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [26] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0910V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Redman" }, { @@ -27774,9 +27774,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-374V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/09/2024) regarding [41] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0374V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/09/2024) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Mann" }, { @@ -27786,9 +27786,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-305V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 1/9/2024) regarding [33] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "docket_numbers": "22-0305V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 1/9/2024) regarding [33] DECISION of Special Master - Fees", "case_name_shorts": "Mandril" }, { @@ -27799,8 +27799,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1911V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [40] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Kochevar" }, { @@ -27811,8 +27811,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1577V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/09/2024) regarding [25] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/09/2024) regarding [25] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -27823,8 +27823,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1593V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [39] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "Hatten" }, { @@ -27834,9 +27834,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-209V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [37] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0209V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [37] DECISION of Special Master - Fees", "case_name_shorts": "Goff" }, { @@ -27846,9 +27846,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-181V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [46] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "20-0181V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Gavin" }, { @@ -27858,9 +27858,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-929V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [49] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0929V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Congilose" }, { @@ -27871,8 +27871,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1022V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/09/2024) regarding [40] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/09/2024) regarding [40] Ruling on Entitlement", "case_name_shorts": "Angerosa" }, { @@ -27882,9 +27882,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-115V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [34] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0115V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Sims" }, { @@ -27895,8 +27895,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1776V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [24] DECISION of Special Master (Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [24] DECISION of Special Master", "case_name_shorts": "Siddiqui" }, { @@ -27906,9 +27906,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-353V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [40] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0353V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "Sarna" }, { @@ -27918,9 +27918,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-968V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/03/2024) regarding [33] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0968V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/03/2024) regarding [33] Ruling on Entitlement", "case_name_shorts": "Sanchez" }, { @@ -27930,9 +27930,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-705V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [19] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0705V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [19] DECISION of Special Master", "case_name_shorts": "Roman" }, { @@ -27942,9 +27942,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-807V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [51] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "20-0807V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/08/2024) regarding [51] DECISION Stipulation/Proffer", "case_name_shorts": "Millett" }, { @@ -27954,9 +27954,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-215V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/03/2024) regarding [26] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0215V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/03/2024) regarding [26] Ruling on Entitlement", "case_name_shorts": "McDonald" }, { @@ -27966,9 +27966,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-697V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [43] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0697V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Briggs" }, { @@ -27978,9 +27978,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-712V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [39] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0712V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Babington" }, { @@ -27991,8 +27991,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1435V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [37] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Vadeboncoeur" }, { @@ -28003,8 +28003,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1023V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 2/2/24) regarding [53] DECISION Stipulation/Proffer, Signed by Special Master Herbrina Sanders. (sh) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 2/2/24) regarding [53] DECISION Stipulation/Proffer", "case_name_shorts": "Moua" }, { @@ -28014,9 +28014,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-952V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [41] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0952V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "White" }, { @@ -28026,9 +28026,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-385V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [37] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0385V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [37] DECISION of Special Master - Fees", "case_name_shorts": "Whiddon" }, { @@ -28039,8 +28039,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1780V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/04/2024) regarding [27] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/04/2024) regarding [27] Ruling on Entitlement", "case_name_shorts": "Weseman" }, { @@ -28050,9 +28050,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-505V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [42] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0505V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [42] DECISION Stipulation/Proffer", "case_name_shorts": "Wagner" }, { @@ -28062,9 +28062,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-56V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 01/11/24) regarding [148] DECISION of Special Master - Interim Attorney&039;s Fees Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "18-0056V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 01/11/24) regarding [148] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Stricker" }, { @@ -28074,9 +28074,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-682V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/03/2024) regarding [34] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0682V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/03/2024) regarding [34] Ruling on Entitlement", "case_name_shorts": "Simmons" }, { @@ -28087,8 +28087,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1813V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/03/2024) regarding [23] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/03/2024) regarding [23] Ruling on Entitlement", "case_name_shorts": "Risner" }, { @@ -28098,9 +28098,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-502V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 1/2/2024) regarding [65] DECISION of Special Master - Stipulation. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "docket_numbers": "20-0502V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 1/2/2024) regarding [65] DECISION of Special Master - Stipulation", "case_name_shorts": "Piermattei" }, { @@ -28111,8 +28111,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1615V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/04/2024) regarding [40] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/04/2024) regarding [40] Ruling on Entitlement", "case_name_shorts": "Patrick" }, { @@ -28122,9 +28122,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-536V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 12/18/2023) regarding [35] DECISION of Special Master - Stipulation. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "docket_numbers": "22-0536V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 12/18/2023) regarding [35] DECISION of Special Master - Stipulation", "case_name_shorts": "Palmore" }, { @@ -28135,8 +28135,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1162V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024 ) regarding [46] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024 ) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "O&039;connell" }, { @@ -28146,9 +28146,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-180V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/03/2024) regarding [16] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0180V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/03/2024) regarding [16] Ruling on Entitlement", "case_name_shorts": "McLaughlin" }, { @@ -28158,9 +28158,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-871V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [35] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0871V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [35] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -28171,8 +28171,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1607V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 1/19/24) regarding [85] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Herbrina Sanders. (sh) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 1/19/24) regarding [85] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Martin" }, { @@ -28182,9 +28182,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-71V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [33] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0071V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Lawrence" }, { @@ -28195,8 +28195,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1032V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 1/11/2024) regarding [81] DECISION - Stipulation. Signed by Special Master Mindy Michaels Roth. (msg) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 1/11/2024) regarding [81] DECISION - Stipulation", "case_name_shorts": "" }, { @@ -28206,9 +28206,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-292V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/03/2024) regarding [18] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0292V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/03/2024) regarding [18] Ruling on Entitlement", "case_name_shorts": "Hambright" }, { @@ -28218,9 +28218,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-511V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [52] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "20-0511V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Drees" }, { @@ -28230,9 +28230,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-228V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/04/2024) regarding [41] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0228V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/04/2024) regarding [41] DECISION of Special Master", "case_name_shorts": "Dittoe" }, { @@ -28242,9 +28242,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-400V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/02/2024) regarding [31] Findings of Fact & Conclusions of Law, Scheduling Order, Order on Motion for Ruling on the Record. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0400V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/02/2024) regarding [31] Findings of Fact & Conclusions of Law, Scheduling Order, Order on Motion for Ruling on the Record", "case_name_shorts": "Covey" }, { @@ -28255,8 +28255,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1039V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [45] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [45] DECISION Stipulation/Proffer", "case_name_shorts": "Cama" }, { @@ -28266,9 +28266,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-257V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [34] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0257V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Argeris" }, { @@ -28278,9 +28278,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-20V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [55] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0020V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/03/2024) regarding [55] DECISION of Special Master - Fees", "case_name_shorts": "Advani" }, { @@ -28291,8 +28291,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1014V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/26/2023) regarding [33] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/26/2023) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Ying" }, { @@ -28302,9 +28302,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-553V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [55] DECISION of Special Master - Fees Signed by Special Master Mindy Michaels Roth. (jm) Service on parties made.", + "docket_numbers": "21-0553V", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [55] DECISION of Special Master - Fees", "case_name_shorts": "Wyman" }, { @@ -28314,9 +28314,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-299V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 12/1/23) regarding [177] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "docket_numbers": "18-0299V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 12/1/23) regarding [177] DECISION of Special Master - Fees", "case_name_shorts": "Walker" }, { @@ -28327,8 +28327,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2000V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023) regarding [35] DECISION of Special Master - Fees, Signed by Special Master Thomas L. Gowen. (jm) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023) regarding [35] DECISION of Special Master - Fees", "case_name_shorts": "Thayer" }, { @@ -28339,8 +28339,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1998V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/02/2024) regarding [33] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/02/2024) regarding [33] Ruling on Entitlement", "case_name_shorts": "Terry" }, { @@ -28350,9 +28350,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-611V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/28/2023) regarding [24] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0611V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/28/2023) regarding [24] DECISION Stipulation/Proffer", "case_name_shorts": "Stewart" }, { @@ -28362,9 +28362,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-72V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/03/2024) regarding [20] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "23-0072V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/03/2024) regarding [20] Ruling on Entitlement", "case_name_shorts": "Schneiders" }, { @@ -28375,8 +28375,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1471V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 12/20/23) regarding [59] DECISION of Special Master - Fees Signed by Special Master Thomas L. Gowen. (jm) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 12/20/23) regarding [59] DECISION of Special Master - Fees", "case_name_shorts": "Roman" }, { @@ -28387,8 +28387,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-1385V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 12/29/23) regarding [111] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 12/29/23) regarding [111] DECISION of Special Master - Fees", "case_name_shorts": "Robbins" }, { @@ -28398,9 +28398,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-704V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 12/22/23) regarding [117] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "docket_numbers": "18-0704V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 12/22/23) regarding [117] DECISION of Special Master - Fees", "case_name_shorts": "Radford" }, { @@ -28410,9 +28410,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-276V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 12/1/23) regarding [78] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "docket_numbers": "20-0276V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 12/1/23) regarding [78] DECISION of Special Master - Fees", "case_name_shorts": "Pickard" }, { @@ -28422,9 +28422,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-903V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 12/1/23) regarding [57] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "docket_numbers": "20-0903V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 12/1/23) regarding [57] DECISION of Special Master - Fees", "case_name_shorts": "Patel" }, { @@ -28434,9 +28434,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-784V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 12/20/23) regarding [87] DECISION of Special Master - Fees Signed by Special Master Thomas L. Gowen. (jm) Service on parties made.", + "docket_numbers": "17-0784V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 12/20/23) regarding [87] DECISION of Special Master - Fees", "case_name_shorts": "P." }, { @@ -28447,8 +28447,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1976V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 12/22/23) regarding [71] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 12/22/23) regarding [71] DECISION of Special Master - Fees", "case_name_shorts": "Murray" }, { @@ -28459,8 +28459,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1428V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 12/21/23) regarding [94] DECISION of Special Master - Fees Signed by Special Master Nora Beth Dorsey. (jm) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 12/21/23) regarding [94] DECISION of Special Master - Fees", "case_name_shorts": "Morales" }, { @@ -28471,8 +28471,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2344V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [38] DECISION of Special Master - Fees Signed by Special Master Katherine E. Oler. (jm) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [38] DECISION of Special Master - Fees", "case_name_shorts": "Moore" }, { @@ -28482,9 +28482,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-298V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 12/19/23) regarding [48] DECISION of Special Master - Fees Signed by Special Master Daniel T. Horner. (jm) Service on parties made.", + "docket_numbers": "21-0298V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 12/19/23) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Marsh" }, { @@ -28495,8 +28495,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1342V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 12/21/23) regarding [63] DECISION of Special Master - Fees Signed by Special Master Mindy Michaels Roth. (jm) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 12/21/23) regarding [63] DECISION of Special Master - Fees", "case_name_shorts": "Ledee" }, { @@ -28507,8 +28507,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-1078V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 12/20/23) regarding [146] DECISION of Special Master - Fees Signed by Special Master Nora Beth Dorsey. (jm) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 12/20/23) regarding [146] DECISION of Special Master - Fees", "case_name_shorts": "Le" }, { @@ -28519,8 +28519,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1501V", - "judges": "D. Horner", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/21/2023) regarding [72] Order on Motion to Redact Decision. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 7/21/2023) regarding [72] Order on Motion to Redact Decision", "case_name_shorts": "Krupp" }, { @@ -28531,8 +28531,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1501V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 1/23/2023) regarding [66] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made. (Main Document 78 replaced on 2/5/2024 to remove double header) (sw).", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 1/23/2023) regarding [66] DECISION of Special Master", "case_name_shorts": "Krupp" }, { @@ -28543,8 +28543,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1501V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 12/22/23) regarding [75] DECISION of Special Master - Fees Signed by Special Master Daniel T. Horner. (jm) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 12/22/23) regarding [75] DECISION of Special Master - Fees", "case_name_shorts": "Krupp" }, { @@ -28555,8 +28555,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1604V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 12/20/23) regarding [45] DECISION of Special Master - Fees Signed by Special Master Nora Beth Dorsey. (jm) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 12/20/23) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Kramer" }, { @@ -28567,8 +28567,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1777V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/02/2024) regarding [29] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/02/2024) regarding [29] Ruling on Entitlement", "case_name_shorts": "Knouse" }, { @@ -28579,8 +28579,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1586V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 12/20/23) regarding [92] DECISION of Special Master - Fees Signed by Special Master Nora Beth Dorsey. (jm) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 12/20/23) regarding [92] DECISION of Special Master - Fees", "case_name_shorts": "Jordan" }, { @@ -28590,9 +28590,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-549V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/27/2023) regarding [36] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0549V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/27/2023) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Holubowicz" }, { @@ -28602,9 +28602,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-983V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 12/21/23) regarding [124] DECISION of Special Master - Fees Signed by Special Master Nora Beth Dorsey. (jm) Service on parties made.", + "docket_numbers": "17-0983V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 12/21/23) regarding [124] DECISION of Special Master - Fees", "case_name_shorts": "HUMPHREYS" }, { @@ -28615,8 +28615,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-1466V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 12/20/23) regarding [170] DECISION of Special Master - Fees, Signed by Special Master Nora Beth Dorsey. (jm) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 12/20/23) regarding [170] DECISION of Special Master - Fees", "case_name_shorts": "GINN" }, { @@ -28626,9 +28626,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-664V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 1/8/2024) regarding [86] DECISION of Special Master. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "docket_numbers": "20-0664V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 1/8/2024) regarding [86] DECISION of Special Master", "case_name_shorts": "G." }, { @@ -28638,9 +28638,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-206V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/26/2023) regarding [58] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "20-0206V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/26/2023) regarding [58] DECISION Stipulation/Proffer", "case_name_shorts": "Davenport" }, { @@ -28651,8 +28651,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1746V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/02/2024) regarding [32] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 01/02/2024) regarding [32] Ruling on Entitlement", "case_name_shorts": "Boyer" }, { @@ -28662,9 +28662,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-742V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 12/20/23) regarding [55] DECISION of Special Master - Fees Signed by Special Master Thomas L. Gowen. (jm) Service on parties made.", + "docket_numbers": "20-0742V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 12/20/23) regarding [55] DECISION of Special Master - Fees", "case_name_shorts": "Bazell" }, { @@ -28674,9 +28674,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-549V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023) regarding [32] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0549V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023) regarding [32] DECISION of Special Master", "case_name_shorts": "Trinnaman" }, { @@ -28686,9 +28686,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-111V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 1/10/2024) regarding [89] DECISION of Special Master, Signed by Special Master Christian J. Moran. (dksc) Service on parties made. (Main Document 90 replaced on 2/12/2024 to correct a citation on page 19 of the Decision.) (fm). (Main Document 90 replaced on 3/11/2024 to correct a typo on page 12 of the Decision.) (fm).", + "docket_numbers": "19-0111V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 1/10/2024) regarding [89] DECISION of Special Master", "case_name_shorts": "Hoffman" }, { @@ -28699,8 +28699,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1483V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 1/3/2024) regarding [74] DECISION Stipulation/Proffer Signed by Special Master Thomas L. Gowen. (ms) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 1/3/2024) regarding [74] DECISION Stipulation/Proffer", "case_name_shorts": "Hamilton" }, { @@ -28710,9 +28710,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-227V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 1/10/2024) regarding [26] DECISION of Special Master Signed by Special Master Christian J. Moran. (dksc) Service on parties made.", + "docket_numbers": "23-0227V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 1/10/2024) regarding [26] DECISION of Special Master", "case_name_shorts": "Dotson" }, { @@ -28722,9 +28722,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-521V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 12/22/2023) regarding [84] DECISION Stipulation/Proffer Signed by Special Master Thomas L. Gowen. (ms) Service on parties made.", + "docket_numbers": "20-0521V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 12/22/2023) regarding [84] DECISION Stipulation/Proffer", "case_name_shorts": "Colon" }, { @@ -28735,8 +28735,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1728V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 12/22/2023) regarding [49] DECISION Stipulation/Proffer Signed by Special Master Thomas L. Gowen. (ms) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 12/22/2023) regarding [49] DECISION Stipulation/Proffer", "case_name_shorts": "Avila" }, { @@ -28746,9 +28746,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-599V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/4/2024) regarding [21] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0599V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/4/2024) regarding [21] Order Concluding Proceedings", "case_name_shorts": "Wren" }, { @@ -28758,9 +28758,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-633V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/4/2024) regarding [16] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0633V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/4/2024) regarding [16] Order Concluding Proceedings", "case_name_shorts": "Weiss" }, { @@ -28770,9 +28770,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-596V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/4/2024) regarding [25] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0596V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/4/2024) regarding [25] Order Concluding Proceedings", "case_name_shorts": "Tutt" }, { @@ -28783,8 +28783,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-1024V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [111] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [111] DECISION of Special Master - Fees", "case_name_shorts": "R." }, { @@ -28794,9 +28794,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-625V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/4/2024) regarding [23] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0625V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/4/2024) regarding [23] Order Concluding Proceedings", "case_name_shorts": "Petz" }, { @@ -28806,9 +28806,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-590V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/4/2024) regarding [19] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0590V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/4/2024) regarding [19] Order Concluding Proceedings", "case_name_shorts": "McLaughlin" }, { @@ -28819,8 +28819,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1960V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [30] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 01/05/2024) regarding [30] DECISION of Special Master", "case_name_shorts": "MONTE" }, { @@ -28830,9 +28830,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-628V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/4/2024) regarding [26] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0628V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/4/2024) regarding [26] Order Concluding Proceedings", "case_name_shorts": "Kidder" }, { @@ -28842,9 +28842,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-672V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 1/4/2024) regarding [10] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0672V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 1/4/2024) regarding [10] DECISION of Special Master", "case_name_shorts": "Hargens" }, { @@ -28854,9 +28854,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-312V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/4/2024) regarding [31] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0312V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/4/2024) regarding [31] Order Concluding Proceedings", "case_name_shorts": "Ferguson" }, { @@ -28866,9 +28866,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-16V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/29/2023) regarding [32] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0016V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/29/2023) regarding [32] DECISION Stipulation/Proffer", "case_name_shorts": "Birnie" }, { @@ -28878,9 +28878,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-627V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/4/2024) regarding [29] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0627V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/4/2024) regarding [29] Order Concluding Proceedings", "case_name_shorts": "Bernhang" }, { @@ -28890,9 +28890,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-674V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/4/2024) regarding [17] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0674V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/4/2024) regarding [17] Order Concluding Proceedings", "case_name_shorts": "Barber" }, { @@ -28902,9 +28902,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-657V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/4/2024) regarding [16] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0657V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/4/2024) regarding [16] Order Concluding Proceedings", "case_name_shorts": "Barber" }, { @@ -28915,8 +28915,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1305V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/27/2023) regarding [32] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/27/2023) regarding [32] Ruling on Entitlement", "case_name_shorts": "Tani" }, { @@ -28927,8 +28927,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1827V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/27/2023) regarding [56] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/27/2023) regarding [56] DECISION Stipulation/Proffer", "case_name_shorts": "Omar" }, { @@ -28938,9 +28938,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-93V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 1/5/2024) regarding [137] DECISION Stipulation. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "docket_numbers": "19-0093V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 1/5/2024) regarding [137] DECISION Stipulation", "case_name_shorts": "Ferrari" }, { @@ -28950,9 +28950,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-16V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/29/2023) regarding [31] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0016V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/29/2023) regarding [31] Ruling on Entitlement", "case_name_shorts": "Birnie" }, { @@ -28962,9 +28962,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-918V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 04/11/2023) regarding [142] DECISION of Special Master. Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "docket_numbers": "15-0918V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 04/11/2023) regarding [142] DECISION of Special Master", "case_name_shorts": "BURCHIANTI" }, { @@ -28974,9 +28974,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-100V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023) regarding [38] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0100V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Trevis" }, { @@ -28986,9 +28986,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-454V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [44] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0454V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [44] DECISION Stipulation/Proffer", "case_name_shorts": "Suba" }, { @@ -28999,8 +28999,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1674V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/18/2023) regarding [37] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/18/2023) regarding [37] DECISION of Special Master", "case_name_shorts": "Ross" }, { @@ -29011,8 +29011,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1333V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 1/2/2024) regarding [53] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 1/2/2024) regarding [53] DECISION Stipulation/Proffer", "case_name_shorts": "Montague" }, { @@ -29023,8 +29023,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1640V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/18/2023) regarding [34] Findings of Fact & Conclusions of Law, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/18/2023) regarding [34] Findings of Fact & Conclusions of Law", "case_name_shorts": "Masters" }, { @@ -29035,8 +29035,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2118V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/28/2023) regarding [43] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/28/2023) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Lebar" }, { @@ -29047,8 +29047,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1290V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [37] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Larson" }, { @@ -29058,9 +29058,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-748V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 1/4/2024) regarding [105] DECISION of Special Master - Fees. Signed by Special Master Mindy Michaels Roth. (msg) Service on parties made.", + "docket_numbers": "16-0748V", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 1/4/2024) regarding [105] DECISION of Special Master - Fees", "case_name_shorts": "Kohl" }, { @@ -29071,8 +29071,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1550V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/28/2023) regarding [28] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/28/2023) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Huffman" }, { @@ -29083,8 +29083,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1141V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 1/2/2024) regarding [51] DECISION of Special Master - Fees. Signed by Special Master Mindy Michaels Roth. (msg) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 1/2/2024) regarding [51] DECISION of Special Master - Fees", "case_name_shorts": "Hall" }, { @@ -29095,8 +29095,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1859V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/28/2023) regarding [47] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/28/2023) regarding [47] DECISION Stipulation/Proffer", "case_name_shorts": "Gonzalez" }, { @@ -29106,9 +29106,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-664V", - "judges": "N. Dorsey", - "summaries": "PUBLIC RULING (Originally filed: 1/3/2024) regarding [84] Ruling on Damages. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "docket_numbers": "20-0664V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC RULING (Originally filed: 1/3/2024) regarding [84] Ruling on Damages", "case_name_shorts": "G." }, { @@ -29119,8 +29119,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1259V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/29/2023) regarding [38] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/29/2023) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Eckert" }, { @@ -29131,8 +29131,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1179V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 1/2/2024) regarding [58] DECISION of Special Master - Fees. Signed by Special Master Mindy Michaels Roth. (dkj) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 1/2/2024) regarding [58] DECISION of Special Master - Fees", "case_name_shorts": "Clavio" }, { @@ -29142,9 +29142,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-23V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/29/2023) regarding [22] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0023V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/29/2023) regarding [22] DECISION Stipulation/Proffer", "case_name_shorts": "Cauley" }, { @@ -29155,8 +29155,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2256V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 1/3/2024) regarding [48] DECISION Stipulation. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 1/3/2024) regarding [48] DECISION Stipulation", "case_name_shorts": "Botti" }, { @@ -29166,9 +29166,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-290V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/28/2023) regarding [35] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0290V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/28/2023) regarding [35] Ruling on Entitlement", "case_name_shorts": "Bodie" }, { @@ -29179,8 +29179,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1324V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/29/2023) regarding [24] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/29/2023) regarding [24] DECISION Stipulation/Proffer", "case_name_shorts": "Andrews" }, { @@ -29191,8 +29191,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1535V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/26/2023) regarding [31] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/26/2023) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Wade" }, { @@ -29202,9 +29202,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-112V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 12/18/2023) regarding [58] DECISION of Special Master. Signed by Special Master Mindy Michaels Roth. (msg) Service on parties made. Petitioner served via e-mail on 1/29/2024 (sw). Petitioner served via Certified mail on 1/30/2024; Article Number 7014 1200 0000 9093 8990 (sw).", + "docket_numbers": "20-0112V", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 12/18/2023) regarding [58] DECISION of Special Master", "case_name_shorts": "Bogue" }, { @@ -29214,9 +29214,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-480V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/27/2023) regarding [40] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0480V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/27/2023) regarding [40] Ruling on Entitlement", "case_name_shorts": "Bernard" }, { @@ -29226,9 +29226,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-956V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/26/2023) regarding [29] Order Concluding Proceedings Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0956V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/26/2023) regarding [29] Order Concluding Proceedings", "case_name_shorts": "Law" }, { @@ -29239,8 +29239,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1560V", - "judges": "C. Moran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/3/24) regarding [53] Ruling on Entitlement Signed by Special Master Christian J. Moran. (dksc) Service on parties made. (Main Document 55 replaced on 1/29/2024 to correct Petitioner&039;s first name.) (fm).", + "judges": "Christian J. Moran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 1/3/24) regarding [53] Ruling on Entitlement", "case_name_shorts": "Koonce" }, { @@ -29250,9 +29250,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-56V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 01/02/24) regarding [147] DECISION of Special Master Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "18-0056V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 01/02/24) regarding [147] DECISION of Special Master", "case_name_shorts": "Stricker" }, { @@ -29262,9 +29262,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-286V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 01/02/24) regarding [48] DECISION Stipulation/Proffer Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "22-0286V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 01/02/24) regarding [48] DECISION Stipulation/Proffer", "case_name_shorts": "Patton" }, { @@ -29274,9 +29274,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-500V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [107] DECISION Stipulation/Proffer. Signed by Special Master Herbrina Sanders. (sh) Service on parties made.", + "docket_numbers": "16-0500V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [107] DECISION Stipulation/Proffer", "case_name_shorts": "Pasco" }, { @@ -29287,8 +29287,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1410V", - "judges": "H. Sanders", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/29/2023) regarding [48] Order Concluding Proceedings. Signed by Special Master Herbrina Sanders. (rig) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/29/2023) regarding [48] Order Concluding Proceedings", "case_name_shorts": "Honeycutt" }, { @@ -29298,9 +29298,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-639V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [106] DECISION of Special Master - Fees Signed by Special Master Nora Beth Dorsey. (jm) Service on parties made.", + "docket_numbers": "19-0639V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [106] DECISION of Special Master - Fees", "case_name_shorts": "Haji" }, { @@ -29311,8 +29311,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2032V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 1/2/2024) regarding [81] DECISION of Special Master Signed by Special Master Christian J. Moran. (dksc) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 1/2/2024) regarding [81] DECISION of Special Master", "case_name_shorts": "Greenhaw" }, { @@ -29322,9 +29322,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-937V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 1/2/2024) regarding [30] DECISION Stipulation/Proffer, Signed by Special Master Christian J. Moran. (dksc) Service on parties made.", + "docket_numbers": "22-0937V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 1/2/2024) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Gence" }, { @@ -29334,9 +29334,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-157V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/29/2023) regarding [48] Ruling on Entitlement, Order on Motion for Ruling on the Record ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0157V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/29/2023) regarding [48] Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "DEOLEO" }, { @@ -29346,9 +29346,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-674V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 1/2/2024) regarding [42] DECISION Stipulation/Proffer, Signed by Special Master Christian J. Moran. (dksc) Service on parties made.", + "docket_numbers": "22-0674V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 1/2/2024) regarding [42] DECISION Stipulation/Proffer", "case_name_shorts": "Bohlmann" }, { @@ -29358,9 +29358,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-633V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023) regarding [36] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0633V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Wiggins" }, { @@ -29371,8 +29371,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1463V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/22/2023) regarding [21] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (sw) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/22/2023) regarding [21] Ruling on Entitlement", "case_name_shorts": "Wentworth" }, { @@ -29383,8 +29383,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1167V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023 ) regarding [53] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023 ) regarding [53] DECISION of Special Master - Fees", "case_name_shorts": "Walls-Grom" }, { @@ -29395,8 +29395,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1717V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/22/2023) regarding [29] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/22/2023) regarding [29] Ruling on Entitlement", "case_name_shorts": "Sunshine" }, { @@ -29407,8 +29407,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1478V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/22/2023) regarding [29] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/22/2023) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "Stubbs" }, { @@ -29418,9 +29418,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-419V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/29/2023) regarding [29] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0419V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/29/2023) regarding [29] Order Concluding Proceedings", "case_name_shorts": "Simms" }, { @@ -29430,9 +29430,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-218V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/22/2023 ) regarding [39] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0218V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/22/2023 ) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Kelliher" }, { @@ -29442,9 +29442,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-877V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/21/2023) regarding [29] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0877V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/21/2023) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "Fisher" }, { @@ -29455,8 +29455,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1406V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION regarding [59] DECISION - Stipulation/Proffer (Originally filed: 12/27/2023). Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION regarding [59] DECISION - Stipulation/Proffer (Originally filed: 12/27/2023", "case_name_shorts": "Filipovich" }, { @@ -29466,9 +29466,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-313V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/22/2023) regarding [41] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0313V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/22/2023) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Erb" }, { @@ -29479,8 +29479,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1929V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION: [45] DECISION Stipulation/Proffer (Originally filed: 12/29/2023). Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION: [45] DECISION Stipulation/Proffer (Originally filed: 12/29/2023", "case_name_shorts": "Elliott" }, { @@ -29490,9 +29490,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-916V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/14/2023) regarding [15] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0916V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/14/2023) regarding [15] Ruling on Entitlement", "case_name_shorts": "Dhanrajh" }, { @@ -29502,9 +29502,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-582V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/29/2023) regarding [15] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0582V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/29/2023) regarding [15] Order Concluding Proceedings", "case_name_shorts": "" }, { @@ -29514,9 +29514,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-514V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/21/2023) regarding [41] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0514V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/21/2023) regarding [41] Ruling on Entitlement", "case_name_shorts": "Cartwright" }, { @@ -29527,8 +29527,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1691V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023) regarding [40] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "Burgo" }, { @@ -29538,9 +29538,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-837V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/21/2023) regarding [39] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0837V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/21/2023) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Blake" }, { @@ -29550,9 +29550,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-658V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023 ) regarding [36] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0658V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023 ) regarding [36] DECISION of Special Master - Fees", "case_name_shorts": "Ayala" }, { @@ -29562,9 +29562,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-101V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/18/2023) regarding [22] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0101V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/18/2023) regarding [22] Ruling on Entitlement", "case_name_shorts": "Pugh" }, { @@ -29574,9 +29574,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-798V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/14/2023) regarding [38] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0798V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/14/2023) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Nepomuceno" }, { @@ -29586,9 +29586,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-844V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023) regarding [40] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0844V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023) regarding [40] DECISION of Special Master", "case_name_shorts": "Longo" }, { @@ -29599,8 +29599,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2180V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/21/2023) regarding [38] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/21/2023) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -29610,9 +29610,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-997V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023) regarding [66] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "20-0997V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023) regarding [66] DECISION of Special Master - Fees", "case_name_shorts": "Halloum" }, { @@ -29623,8 +29623,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1002V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023) regarding [78] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023) regarding [78] DECISION of Special Master - Fees", "case_name_shorts": "Eaton" }, { @@ -29634,9 +29634,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-23V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/20/2023) regarding [20] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0023V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/20/2023) regarding [20] Ruling on Entitlement", "case_name_shorts": "Cauley" }, { @@ -29646,9 +29646,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-534V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/19/2023) regarding [20] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0534V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/19/2023) regarding [20] Ruling on Entitlement", "case_name_shorts": "Capozzoli" }, { @@ -29659,8 +29659,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1461V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/21/2023) regarding [65] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/21/2023) regarding [65] DECISION Stipulation/Proffer", "case_name_shorts": "Becker" }, { @@ -29671,8 +29671,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2302V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [42] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Wolin" }, { @@ -29682,9 +29682,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-287V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [38] DECISION of Special Master - Fees (Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0287V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [38] DECISION of Special Master - Fees", "case_name_shorts": "Wilson" }, { @@ -29694,9 +29694,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-456V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [39] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0456V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -29706,9 +29706,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-473V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [94] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "docket_numbers": "16-0473V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [94] DECISION of Special Master - Fees", "case_name_shorts": "Trollinger" }, { @@ -29718,9 +29718,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-287V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/18/2023) regarding [21] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0287V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/18/2023) regarding [21] Ruling on Entitlement", "case_name_shorts": "Thornton" }, { @@ -29730,9 +29730,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-552V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [36] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0552V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [36] DECISION of Special Master - Fees", "case_name_shorts": "Stangarone" }, { @@ -29743,8 +29743,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1875V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [44] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Scatchard" }, { @@ -29754,9 +29754,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-987V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [48] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0987V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Scarborough" }, { @@ -29766,9 +29766,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-339V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/14/2023) regarding [33] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0339V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/14/2023) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Parolski" }, { @@ -29778,9 +29778,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-217V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [55] DECISION of Special Master - Fees (Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0217V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [55] DECISION of Special Master - Fees", "case_name_shorts": "Morgan" }, { @@ -29790,9 +29790,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-997V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [48] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0997V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Marshall" }, { @@ -29802,9 +29802,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-451V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [34] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0451V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Mains" }, { @@ -29815,8 +29815,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1096V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/18/2023) regarding [22] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/18/2023) regarding [22] DECISION Stipulation/Proffer", "case_name_shorts": "MacAlister" }, { @@ -29826,9 +29826,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-246V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [47] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0246V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [47] DECISION Stipulation/Proffer", "case_name_shorts": "Lindsey" }, { @@ -29838,9 +29838,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-794V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/19/2023) regarding [30] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0794V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/19/2023) regarding [30] Ruling on Entitlement", "case_name_shorts": "Koski" }, { @@ -29850,9 +29850,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-199V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [38] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0199V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Goff" }, { @@ -29863,8 +29863,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1259V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/18/2023) regarding [36] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/18/2023) regarding [36] Ruling on Entitlement", "case_name_shorts": "Eckert" }, { @@ -29874,9 +29874,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-533V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/19/2023) regarding [20] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0533V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/19/2023) regarding [20] Ruling on Entitlement", "case_name_shorts": "Daneshrad" }, { @@ -29887,8 +29887,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1350V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [45] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -29898,9 +29898,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-861V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/20/2023) regarding [31] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0861V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/20/2023) regarding [31] Ruling on Entitlement", "case_name_shorts": "Center" }, { @@ -29910,9 +29910,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-684V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/19/2023) regarding [28] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0684V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/19/2023) regarding [28] Ruling on Entitlement", "case_name_shorts": "Steck" }, { @@ -29923,8 +29923,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1902V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [27] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -29935,8 +29935,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1096V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/18/2023) regarding [21] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/18/2023) regarding [21] Ruling on Entitlement", "case_name_shorts": "MacAlister" }, { @@ -29947,8 +29947,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1566V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/14/2023) regarding [34] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/14/2023) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Green" }, { @@ -29959,8 +29959,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1287V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/14/2023) regarding [22] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/14/2023) regarding [22] Ruling on Entitlement", "case_name_shorts": "Denzik" }, { @@ -29971,8 +29971,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1526V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/14/2023) regarding [34] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/14/2023) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Walden" }, { @@ -29983,8 +29983,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1535V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/14/2023) regarding [27] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/14/2023) regarding [27] Ruling on Entitlement", "case_name_shorts": "Wade" }, { @@ -29995,8 +29995,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1435V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/14/2023) regarding [34] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/14/2023) regarding [34] Ruling on Entitlement", "case_name_shorts": "Vadeboncoeur" }, { @@ -30007,8 +30007,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1688V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [35] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [35] DECISION of Special Master - Fees", "case_name_shorts": "Tillman" }, { @@ -30018,9 +30018,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-119V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023) regarding [44] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0119V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Thompson" }, { @@ -30030,9 +30030,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-523V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/11/2023) regarding [41] Ruling on Entitlement, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0523V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/11/2023) regarding [41] Ruling on Entitlement", "case_name_shorts": "Sprigg" }, { @@ -30042,9 +30042,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-409V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/11/2023) regarding [44] DECISION of Special Master, Ruling on Entitlement and Decision Awarding Damages ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0409V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/11/2023) regarding [44] DECISION of Special Master, Ruling on Entitlement and Decision Awarding Damages", "case_name_shorts": "" }, { @@ -30055,8 +30055,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1744V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [44] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Reddington" }, { @@ -30067,8 +30067,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1628V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [42] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Quattromani" }, { @@ -30079,8 +30079,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1099V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023) regarding [65] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023) regarding [65] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Peka" }, { @@ -30090,9 +30090,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-343V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023) regarding [50] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0343V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023) regarding [50] DECISION Stipulation/Proffer", "case_name_shorts": "Overton" }, { @@ -30102,9 +30102,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-630V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023) regarding [20] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0630V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023) regarding [20] DECISION of Special Master", "case_name_shorts": "Needham" }, { @@ -30114,9 +30114,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-404V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/18/2023) regarding [30] Order Concluding Proceedings, Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0404V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/18/2023) regarding [30] Order Concluding Proceedings", "case_name_shorts": "McMurtry" }, { @@ -30126,9 +30126,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-880V", - "judges": "N. Dorsey", - "summaries": "PUBLIC RULING (Originally filed: 10/16/2023) regarding [22] Findings of Fact & Conclusions of Law. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "docket_numbers": "22-0880V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC RULING (Originally filed: 10/16/2023) regarding [22] Findings of Fact & Conclusions of Law", "case_name_shorts": "Mahan" }, { @@ -30138,9 +30138,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-170V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/18/2023) regarding [24] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0170V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/18/2023) regarding [24] Ruling on Entitlement", "case_name_shorts": "Ladwig" }, { @@ -30151,8 +30151,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1277V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/14/2023) regarding [36] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/14/2023) regarding [36] Ruling on Entitlement", "case_name_shorts": "Kola" }, { @@ -30163,8 +30163,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1008V", - "judges": "D. Horner", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/20/2023) regarding [44] Ruling on Entitlement. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/20/2023) regarding [44] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -30174,9 +30174,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-22V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/15/2023) regarding [20] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0022V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/15/2023) regarding [20] Ruling on Entitlement", "case_name_shorts": "Hura" }, { @@ -30186,9 +30186,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-379V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/18/2023) regarding [24] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0379V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/18/2023) regarding [24] Order Concluding Proceedings", "case_name_shorts": "Huie" }, { @@ -30199,8 +30199,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1851V", - "judges": "T. Gowen", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/21/2023) regarding [110] Ruling on Entitlement Signed by Special Master Thomas L. Gowen. (ms) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/21/2023) regarding [110] Ruling on Entitlement", "case_name_shorts": "Gardner" }, { @@ -30210,9 +30210,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-412V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/15/2023) regarding [23] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0412V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/15/2023) regarding [23] Order Concluding Proceedings", "case_name_shorts": "Gardett" }, { @@ -30222,9 +30222,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-408V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/15/2023) regarding [21] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0408V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/15/2023) regarding [21] Order Concluding Proceedings", "case_name_shorts": "Flores" }, { @@ -30234,9 +30234,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-1V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/13/2023) regarding [43] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0001V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/13/2023) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Esters" }, { @@ -30247,8 +30247,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1766V", - "judges": "T. Gowen", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/11/2023) regarding [43] Ruling on Entitlement Signed by Special Master Thomas L. Gowen. (ms) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/11/2023) regarding [43] Ruling on Entitlement", "case_name_shorts": "Drcar" }, { @@ -30258,9 +30258,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-276V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 12/21/2023) regarding [169] DECISION of Special Master Signed by Special Master Thomas L. Gowen. (ms) Service on parties made.", + "docket_numbers": "16-0276V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 12/21/2023) regarding [169] DECISION of Special Master", "case_name_shorts": "Davis" }, { @@ -30270,9 +30270,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-388V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/18/2023) regarding [25] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0388V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/18/2023) regarding [25] Order Concluding Proceedings", "case_name_shorts": "Cantalupo" }, { @@ -30283,8 +30283,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1672V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [33] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [33] DECISION of Special Master - Fees", "case_name_shorts": "Brooks" }, { @@ -30295,8 +30295,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1621V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/15/2023) regarding [19] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/15/2023) regarding [19] Ruling on Entitlement", "case_name_shorts": "Baker" }, { @@ -30307,8 +30307,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1803V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/18/2023) regarding [8] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/18/2023) regarding [8] Order Concluding Proceedings", "case_name_shorts": "Alfarouki" }, { @@ -30318,9 +30318,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-467V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/11/2023) regarding [39] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0467V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/11/2023) regarding [39] Ruling on Entitlement", "case_name_shorts": "Aidone" }, { @@ -30330,9 +30330,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-772V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/15/2023) regarding [48] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0772V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/15/2023) regarding [48] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -30343,8 +30343,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1537V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023) regarding [58] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023) regarding [58] DECISION Stipulation/Proffer", "case_name_shorts": "Phillips" }, { @@ -30354,9 +30354,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-411V", - "judges": "N. Dorsey", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/20/2023) regarding [86] Ruling on Entitlement, Order on Motion for Ruling on the Record. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "docket_numbers": "20-0411V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/20/2023) regarding [86] Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "Parker" }, { @@ -30367,8 +30367,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1658V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [56] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [56] DECISION of Special Master - Fees", "case_name_shorts": "Kim" }, { @@ -30379,8 +30379,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1030V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023) regarding [81] DECISION Proffer. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 12/20/2023) regarding [81] DECISION Proffer", "case_name_shorts": "" }, { @@ -30390,9 +30390,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-478V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/14/2023) regarding [18] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0478V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/14/2023) regarding [18] Ruling on Entitlement", "case_name_shorts": "Cirello" }, { @@ -30402,9 +30402,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-980V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023 ) regarding [61] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0980V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023 ) regarding [61] DECISION of Special Master", "case_name_shorts": "Axelrod" }, { @@ -30415,8 +30415,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1306V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/07/2023) regarding [34] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/07/2023) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Yanovsky" }, { @@ -30427,8 +30427,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1136V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 12/18/2023) regarding [65] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 12/18/2023) regarding [65] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Wakileh" }, { @@ -30438,9 +30438,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-58V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/05/2023) regarding [59] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0058V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/05/2023) regarding [59] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -30451,8 +30451,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1543V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/12/2023) regarding [22] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/12/2023) regarding [22] Ruling on Entitlement", "case_name_shorts": "Savage" }, { @@ -30462,9 +30462,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-989V", - "judges": "D. Horner", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/18/2023) regarding [96] Ruling on Entitlement. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "docket_numbers": "17-0989V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/18/2023) regarding [96] Ruling on Entitlement", "case_name_shorts": "Quirino" }, { @@ -30474,9 +30474,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-936V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023) regarding [42] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0936V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023) regarding [42] DECISION Stipulation/Proffer", "case_name_shorts": "O&039;brien" }, { @@ -30486,9 +30486,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-398V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023) regarding [38] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0398V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023) regarding [38] DECISION of Special Master - Fees", "case_name_shorts": "Murray" }, { @@ -30498,9 +30498,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-303V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/07/2023) regarding [35] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0303V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/07/2023) regarding [35] DECISION of Special Master - Fees", "case_name_shorts": "Murray" }, { @@ -30510,9 +30510,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-294V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/11/2023) regarding [28] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0294V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/11/2023) regarding [28] Order Concluding Proceedings", "case_name_shorts": "" }, { @@ -30522,9 +30522,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-71V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023) regarding [38] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0071V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023) regarding [38] DECISION of Special Master", "case_name_shorts": "McKay" }, { @@ -30534,9 +30534,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-652V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/07/2023) regarding [25] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0652V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/07/2023) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "McGovern" }, { @@ -30546,9 +30546,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-112V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023 ) regarding [47] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0112V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023 ) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Marian" }, { @@ -30558,9 +30558,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-211V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/08/2023) regarding [61] Ruling on Entitlement, Order on Motion for Ruling on the Record. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "20-0211V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/08/2023) regarding [61] Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "Lower" }, { @@ -30571,8 +30571,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1650V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/07/2023) regarding [47] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/07/2023) regarding [47] DECISION Stipulation/Proffer", "case_name_shorts": "Lindsey" }, { @@ -30582,9 +30582,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-672V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/05/2023) regarding [53] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0672V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/05/2023) regarding [53] DECISION of Special Master - Fees", "case_name_shorts": "Labor" }, { @@ -30595,8 +30595,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1110V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/05/2023) regarding [35] DECISION of Special Master, Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/05/2023) regarding [35] DECISION of Special Master, Ruling on Entitlement", "case_name_shorts": "Hirsch" }, { @@ -30606,9 +30606,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-45V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/08/2023) regarding [34] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0045V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/08/2023) regarding [34] DECISION of Special Master", "case_name_shorts": "" }, { @@ -30618,9 +30618,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-702V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/06/2023) regarding [37] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0702V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/06/2023) regarding [37] Ruling on Entitlement", "case_name_shorts": "Gushue" }, { @@ -30631,8 +30631,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1484V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/12/2023) regarding [32] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/12/2023) regarding [32] DECISION Stipulation/Proffer", "case_name_shorts": "Gebel" }, { @@ -30642,9 +30642,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-314V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/08/2023) regarding [29] Ruling on Entitlement, Order on Motion for Ruling on the Record. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0314V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/08/2023) regarding [29] Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "Ervin-Spencer" }, { @@ -30655,8 +30655,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1241V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/05/2023) regarding [41] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/05/2023) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Dupleasis" }, { @@ -30666,9 +30666,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-296V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/08/2023) regarding [70] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "19-0296V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/08/2023) regarding [70] DECISION of Special Master", "case_name_shorts": "C." }, { @@ -30678,9 +30678,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-303V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/06/2023) regarding [39] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0303V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/06/2023) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Bluefort" }, { @@ -30690,9 +30690,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-206V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/07/2023) regarding [45] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0206V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/07/2023) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Bailey" }, { @@ -30703,8 +30703,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1548V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/11/2023) regarding [22] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/11/2023) regarding [22] Ruling on Entitlement", "case_name_shorts": "Tisdale" }, { @@ -30714,9 +30714,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-122V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/11/2023) regarding [20] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "23-0122V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/11/2023) regarding [20] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -30727,8 +30727,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2321V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023) regarding [37] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023) regarding [37] DECISION of Special Master - Fees", "case_name_shorts": "Metcalf" }, { @@ -30739,8 +30739,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1605V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023) regarding [41] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Mease" }, { @@ -30750,9 +30750,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-582V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023) regarding [71] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "20-0582V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023) regarding [71] DECISION of Special Master - Fees", "case_name_shorts": "Colver" }, { @@ -30762,9 +30762,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-778V", - "judges": "M. Roth", - "summaries": "PUBLIC RULING (Originally filed: 12/15/2023) regarding [122] Ruling on Entitlement. Signed by Special Master Mindy Michaels Roth. (msg) Service on parties made.", + "docket_numbers": "14-0778V", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC RULING (Originally filed: 12/15/2023) regarding [122] Ruling on Entitlement", "case_name_shorts": "Rothstein" }, { @@ -30775,8 +30775,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1138V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 10/16/2023) regarding [69] DECISION of Special Master - Fees. Signed by Special Master Mindy Michaels Roth. (dkj) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 10/16/2023) regarding [69] DECISION of Special Master - Fees", "case_name_shorts": "Malik" }, { @@ -30786,9 +30786,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-890V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023) regarding [67] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "19-0890V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023) regarding [67] DECISION of Special Master", "case_name_shorts": "M." }, { @@ -30798,9 +30798,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-328V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/11/2023) regarding [21] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0328V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/11/2023) regarding [21] Ruling on Entitlement", "case_name_shorts": "Flanagan" }, { @@ -30810,9 +30810,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-295V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [142] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (dksc) Service on parties made.", + "docket_numbers": "17-0295V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [142] DECISION of Special Master - Fees", "case_name_shorts": "FAULK" }, { @@ -30822,9 +30822,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-475V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 12/6/23) regarding [47] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Herbrina Sanders. (sh) Service on parties made.", + "docket_numbers": "19-0475V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 12/6/23) regarding [47] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "YOUNG" }, { @@ -30834,9 +30834,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-592V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [98] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "docket_numbers": "18-0592V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [98] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "White" }, { @@ -30847,8 +30847,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1356V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [43] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Herbrina Sanders. (sh) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 12/19/2023) regarding [43] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Torres" }, { @@ -30859,8 +30859,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1737V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/06/2023) regarding [24] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/06/2023) regarding [24] DECISION Stipulation/Proffer", "case_name_shorts": "Stegall" }, { @@ -30870,9 +30870,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-190V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/08/2023) regarding [22] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0190V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/08/2023) regarding [22] DECISION Stipulation/Proffer", "case_name_shorts": "McBride" }, { @@ -30882,9 +30882,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-494V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/11/2023) regarding [17] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0494V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/11/2023) regarding [17] Order Concluding Proceedings", "case_name_shorts": "" }, { @@ -30894,9 +30894,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-143V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [88] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "docket_numbers": "17-0143V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 12/15/2023) regarding [88] DECISION of Special Master", "case_name_shorts": "HERNANDEZ" }, { @@ -30907,8 +30907,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2011V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/12/2023) regarding [35] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/12/2023) regarding [35] Order Concluding Proceedings", "case_name_shorts": "Ames" }, { @@ -30918,9 +30918,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-476V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/11/2023) regarding [28] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0476V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/11/2023) regarding [28] Order Concluding Proceedings", "case_name_shorts": "Aguilera" }, { @@ -30930,9 +30930,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-471V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/07/2023) regarding [40] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0471V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/07/2023) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "White" }, { @@ -30942,9 +30942,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-482V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/05/2023) regarding [42] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0482V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/05/2023) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Vernon" }, { @@ -30954,9 +30954,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-277V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/07/2023) regarding [38] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0277V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/07/2023) regarding [38] DECISION of Special Master - Fees", "case_name_shorts": "Toliver" }, { @@ -30967,8 +30967,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1737V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/06/2023 ) regarding [23] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/06/2023 ) regarding [23] Ruling on Entitlement", "case_name_shorts": "Stegall" }, { @@ -30978,9 +30978,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-473V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/07/2023) regarding [28] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0473V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/07/2023) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Solorio" }, { @@ -30990,9 +30990,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-655V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/07/2023) regarding [35] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0655V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/07/2023) regarding [35] DECISION Stipulation/Proffer", "case_name_shorts": "Oxenberg" }, { @@ -31002,9 +31002,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-190V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/08/2023 ) regarding [21] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0190V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/08/2023 ) regarding [21] Ruling on Entitlement", "case_name_shorts": "McBride" }, { @@ -31015,8 +31015,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1915V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/07/2023) regarding [40] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/07/2023) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Levine" }, { @@ -31026,9 +31026,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-680V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/05/2023) regarding [44] DECISION of Special Master, Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "20-0680V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/05/2023) regarding [44] DECISION of Special Master, Ruling on Entitlement", "case_name_shorts": "Kleinschmidt" }, { @@ -31038,9 +31038,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-519V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/07/2023) regarding [35] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0519V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/07/2023) regarding [35] DECISION of Special Master - Fees", "case_name_shorts": "Hartogh" }, { @@ -31050,9 +31050,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-310V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/07/2023) regarding [37] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0310V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/07/2023) regarding [37] DECISION of Special Master - Fees", "case_name_shorts": "D&039;agostino" }, { @@ -31063,8 +31063,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2192V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/05/2023) regarding [46] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/05/2023) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Carpenter" }, { @@ -31075,8 +31075,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1039V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/06/2023) regarding [42] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/06/2023) regarding [42] Ruling on Entitlement", "case_name_shorts": "Cama" }, { @@ -31087,8 +31087,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1218V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/07/2023) regarding [41] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/07/2023) regarding [41] Ruling on Entitlement", "case_name_shorts": "Beach" }, { @@ -31099,8 +31099,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1599V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 12/13/2023) regarding [35] DECISION Stipulation. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 12/13/2023) regarding [35] DECISION Stipulation", "case_name_shorts": "ALMUDHARI" }, { @@ -31110,9 +31110,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-843V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/04/2023) regarding [23] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0843V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/04/2023) regarding [23] DECISION Stipulation/Proffer", "case_name_shorts": "Ragsdale" }, { @@ -31123,8 +31123,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2290V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/05/2023 ) regarding [35] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/05/2023 ) regarding [35] DECISION Stipulation/Proffer", "case_name_shorts": "Blake" }, { @@ -31134,9 +31134,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-601V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/05/2023) regarding [53] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0601V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/05/2023) regarding [53] DECISION of Special Master - Fees", "case_name_shorts": "Whitham" }, { @@ -31147,8 +31147,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1557V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 11/16/2023) regarding [111] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 11/16/2023) regarding [111] DECISION of Special Master - Fees", "case_name_shorts": "WHITESELL" }, { @@ -31159,8 +31159,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1887V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 11/1/2023) regarding [84] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 11/1/2023) regarding [84] DECISION of Special Master - Fees", "case_name_shorts": "Sutton" }, { @@ -31171,8 +31171,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1644V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/04/2023) regarding [42] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made. (Main Document 46 replaced on 1/4/2024 to correct the pdf.) (fm).", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/04/2023) regarding [42] DECISION Stipulation/Proffer", "case_name_shorts": "Stuart" }, { @@ -31183,8 +31183,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1427V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 11/22/2023) regarding [103] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 11/22/2023) regarding [103] DECISION of Special Master - Fees", "case_name_shorts": "Ryan" }, { @@ -31194,9 +31194,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-843V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/04/2023) regarding [22] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0843V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/04/2023) regarding [22] Ruling on Entitlement", "case_name_shorts": "Ragsdale" }, { @@ -31206,9 +31206,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-525V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/04/2023) regarding [35] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0525V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/04/2023) regarding [35] Ruling on Entitlement", "case_name_shorts": "Pickett" }, { @@ -31219,8 +31219,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2063V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/05/2023) regarding [32] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/05/2023) regarding [32] DECISION Stipulation/Proffer", "case_name_shorts": "Mouyos" }, { @@ -31231,8 +31231,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2295V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/04/2023) regarding [38] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/04/2023) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -31243,8 +31243,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2295V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/04/2023) regarding [37] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/04/2023) regarding [37] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -31254,9 +31254,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-97V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/04/2023) regarding [22] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0097V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/04/2023) regarding [22] Ruling on Entitlement", "case_name_shorts": "Joyce" }, { @@ -31267,8 +31267,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1402V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/04/2023) regarding [30] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/04/2023) regarding [30] Ruling on Entitlement", "case_name_shorts": "Jones" }, { @@ -31278,9 +31278,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-164V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [85] DECISION of Special Master - Fees Signed by Special Master Thomas L. Gowen. (jm) Service on parties made.", + "docket_numbers": "18-0164V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [85] DECISION of Special Master - Fees", "case_name_shorts": "Jones" }, { @@ -31291,8 +31291,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1662V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 11/27/2023) regarding [117] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 11/27/2023) regarding [117] DECISION of Special Master - Fees", "case_name_shorts": "Holt" }, { @@ -31302,9 +31302,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-752V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/04/2023) regarding [26] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0752V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/04/2023) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Fletcher" }, { @@ -31314,9 +31314,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-716V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/05/2023) regarding [33] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0716V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/05/2023) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Ervin" }, { @@ -31327,8 +31327,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1353V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [81] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [81] DECISION of Special Master - Fees", "case_name_shorts": "Dunlap" }, { @@ -31338,9 +31338,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-712V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 6/13/2023) regarding [84] DECISION of Special Master - Fees Signed by Special Master Nora Beth Dorsey. (jm) Service on parties made.", + "docket_numbers": "19-0712V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 6/13/2023) regarding [84] DECISION of Special Master - Fees", "case_name_shorts": "Cartwright" }, { @@ -31351,8 +31351,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1352V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [127] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [127] DECISION of Special Master - Fees", "case_name_shorts": "Britt" }, { @@ -31363,8 +31363,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1526V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 10/2/2023) regarding [85] DECISION of Special Master - Fees, Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 10/2/2023) regarding [85] DECISION of Special Master - Fees", "case_name_shorts": "Borden" }, { @@ -31375,8 +31375,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1578V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 11/27/2023) regarding [79] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 11/27/2023) regarding [79] DECISION of Special Master - Fees", "case_name_shorts": "Barnett" }, { @@ -31387,8 +31387,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1136V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 11/16/2023) regarding [113] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 11/16/2023) regarding [113] DECISION of Special Master - Fees", "case_name_shorts": "ALICEA" }, { @@ -31398,9 +31398,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-688V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [48] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0688V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Stevens" }, { @@ -31410,9 +31410,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-558V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [34] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0558V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [34] DECISION of Special Master - Fees", "case_name_shorts": "Scherer" }, { @@ -31423,8 +31423,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1621V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/30/2023) regarding [69] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/30/2023) regarding [69] DECISION of Special Master", "case_name_shorts": "Ruppert" }, { @@ -31434,9 +31434,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-608V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [35] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0608V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [35] DECISION Stipulation/Proffer", "case_name_shorts": "Rouse" }, { @@ -31446,9 +31446,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-506V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/29/2023) regarding [50] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0506V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/29/2023) regarding [50] Ruling on Entitlement", "case_name_shorts": "Painter" }, { @@ -31458,9 +31458,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-271V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/04/2023) regarding [49] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0271V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/04/2023) regarding [49] Ruling on Entitlement", "case_name_shorts": "Moses" }, { @@ -31470,9 +31470,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-16V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [34] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0016V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [34] DECISION of Special Master - Fees", "case_name_shorts": "McKnight" }, { @@ -31482,9 +31482,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-425V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/29/2023) regarding [39] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0425V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/29/2023) regarding [39] DECISION of Special Master", "case_name_shorts": "McCarthy" }, { @@ -31495,8 +31495,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1496V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/28/2023) regarding [27] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/28/2023) regarding [27] Ruling on Entitlement", "case_name_shorts": "Lay" }, { @@ -31507,8 +31507,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1394V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/01/2023) regarding [29] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/01/2023) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "Kreuze" }, { @@ -31518,9 +31518,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-178V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [41] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0178V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Kovarskiy" }, { @@ -31531,8 +31531,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1947V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [41] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Hutchens" }, { @@ -31542,9 +31542,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-269V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/04/2023) regarding [41] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0269V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/04/2023) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Hazard" }, { @@ -31555,8 +31555,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1715V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/01/2023) regarding [62] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/01/2023) regarding [62] DECISION Stipulation/Proffer", "case_name_shorts": "Collins" }, { @@ -31567,8 +31567,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1775V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/27/2023) regarding [40] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/27/2023) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "Alvarez" }, { @@ -31578,9 +31578,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-663V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/01/2023) regarding [36] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0663V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/01/2023) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Alsup" }, { @@ -31591,8 +31591,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1728V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/27/2023) regarding [23] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/27/2023) regarding [23] DECISION Stipulation/Proffer", "case_name_shorts": "Adams" }, { @@ -31603,8 +31603,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1014V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/21/2023) regarding [28] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/21/2023) regarding [28] Ruling on Entitlement", "case_name_shorts": "Ying" }, { @@ -31615,8 +31615,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1585V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/22/2023) regarding [37] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/22/2023) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Yerks" }, { @@ -31627,8 +31627,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1264V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 12/7/2023) regarding [67] DECISION Dismissing Petition. Signed by Special Master Katherine E. Oler. (emh) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 12/7/2023) regarding [67] DECISION Dismissing Petition", "case_name_shorts": "Wilson" }, { @@ -31638,9 +31638,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-267V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [40] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0267V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Valdivieso" }, { @@ -31650,9 +31650,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-141V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/29/2023) regarding [54] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0141V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/29/2023) regarding [54] Ruling on Entitlement", "case_name_shorts": "Turrell" }, { @@ -31663,8 +31663,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1217V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 12/5/2023) regarding [60] DECISION Dismissing Petition. Signed by Special Master Katherine E. Oler. (emh) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 12/5/2023) regarding [60] DECISION Dismissing Petition", "case_name_shorts": "Thompson" }, { @@ -31675,8 +31675,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1011V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/16/2023) regarding [26] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/16/2023) regarding [26] Ruling on Entitlement", "case_name_shorts": "Thai" }, { @@ -31686,9 +31686,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-210V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/21/2023) regarding [33] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0210V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/21/2023) regarding [33] Ruling on Entitlement", "case_name_shorts": "Templeton" }, { @@ -31698,9 +31698,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-650V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/16/2023) regarding [44] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0650V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/16/2023) regarding [44] Ruling on Entitlement", "case_name_shorts": "Sweeney" }, { @@ -31710,9 +31710,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-458V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/4/2023) regarding [19] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0458V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/4/2023) regarding [19] Order Concluding Proceedings", "case_name_shorts": "Sullivan" }, { @@ -31722,9 +31722,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-940V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023) regarding [120] DECISION of Special Master - Stipulation. Signed by Special Master Katherine E. Oler. (emh) Service on parties made.", + "docket_numbers": "16-0940V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 12/11/2023) regarding [120] DECISION of Special Master - Stipulation", "case_name_shorts": "Stuart" }, { @@ -31734,9 +31734,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-121V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 12/7/2023) regarding [23] DECISION Dismissing Petition. Signed by Special Master Katherine E. Oler. (emh) Service on parties made. (Main Document 24 replaced on 1/2/2024 to add reissued date and footnote) (sw). Petitioner served via Certified mail on 1/2/2024; Article Number 7014 1200 0000 9093 8983 (sw).", + "docket_numbers": "23-0121V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 12/7/2023) regarding [23] DECISION Dismissing Petition", "case_name_shorts": "Simmons" }, { @@ -31746,9 +31746,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-333V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [30] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0333V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Shrum" }, { @@ -31758,9 +31758,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-109V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [110] DECISION of Special Master - Interim Attorneys&039; Fees and Costs. Signed by Special Master Katherine E. Oler. (emh) Service on parties made.", + "docket_numbers": "17-0109V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [110] DECISION of Special Master - Interim Attorneys&039; Fees and Costs", "case_name_shorts": "Ruzicka" }, { @@ -31770,9 +31770,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-740V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [43] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "20-0740V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Rowe" }, { @@ -31783,8 +31783,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1756V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [49] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Rodriguez" }, { @@ -31795,8 +31795,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1902V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/20/2023) regarding [24] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/20/2023) regarding [24] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -31807,8 +31807,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1867V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/29/2023) regarding [35] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/29/2023) regarding [35] DECISION Stipulation/Proffer", "case_name_shorts": "Price" }, { @@ -31818,9 +31818,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-588V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/27/2023) regarding [33] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0588V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/27/2023) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Pearl" }, { @@ -31830,9 +31830,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-185V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/27/2023) regarding [56] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0185V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/27/2023) regarding [56] DECISION Stipulation/Proffer", "case_name_shorts": "Patterson" }, { @@ -31843,8 +31843,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1150V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/30/2023) regarding [52] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made. (Main Document 61 replaced on 1/3/2024 to correct a typo in the conclusion of the Decision.) (fm).", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/30/2023) regarding [52] DECISION of Special Master", "case_name_shorts": "Parsons" }, { @@ -31854,9 +31854,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-435V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/4/2023) regarding [19] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0435V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/4/2023) regarding [19] Order Concluding Proceedings", "case_name_shorts": "Olive" }, { @@ -31867,8 +31867,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1508V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/20/2023) regarding [57] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/20/2023) regarding [57] DECISION of Special Master", "case_name_shorts": "O&039;donnell" }, { @@ -31879,8 +31879,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1314V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/01/2023) regarding [28] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/01/2023) regarding [28] Ruling on Entitlement", "case_name_shorts": "Minera" }, { @@ -31891,8 +31891,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1266V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [43] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "McGOWEN" }, { @@ -31903,8 +31903,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1576V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [29] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [29] DECISION of Special Master - Fees", "case_name_shorts": "McCAUGHEY" }, { @@ -31914,9 +31914,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-613V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/29/2023) regarding [50] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0613V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/29/2023) regarding [50] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -31927,8 +31927,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1404V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/27/2023) regarding [23] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/27/2023) regarding [23] Ruling on Entitlement", "case_name_shorts": "Mack" }, { @@ -31939,8 +31939,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1320V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 11/27/2023) regarding [65] DECISION of Special Master - Stipulation. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 11/27/2023) regarding [65] DECISION of Special Master - Stipulation", "case_name_shorts": "Leidner" }, { @@ -31950,9 +31950,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-71V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/27/2023 ) regarding [28] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0071V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/27/2023 ) regarding [28] Ruling on Entitlement", "case_name_shorts": "Lawrence" }, { @@ -31962,9 +31962,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-426V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [52] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0426V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Lamport" }, { @@ -31975,8 +31975,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1665V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 12/13/2023) regarding [28] DECISION of Special Master - Stipulation. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 12/13/2023) regarding [28] DECISION of Special Master - Stipulation", "case_name_shorts": "Korb" }, { @@ -31986,9 +31986,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-639V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [48] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0639V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Klenke" }, { @@ -31998,9 +31998,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-274V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/27/2023) regarding [41] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0274V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/27/2023) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "John" }, { @@ -32010,9 +32010,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-957V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/05/2023) regarding [50] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "21-0957V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/05/2023) regarding [50] DECISION Stipulation/Proffer", "case_name_shorts": "Jacobs" }, { @@ -32022,9 +32022,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-459V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/4/2023) regarding [17] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0459V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/4/2023) regarding [17] Order Concluding Proceedings", "case_name_shorts": "Holt" }, { @@ -32035,8 +32035,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1113V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 12/6/2023) regarding [50] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (sh). Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 12/6/2023) regarding [50] DECISION of Special Master", "case_name_shorts": "Guthrie" }, { @@ -32046,9 +32046,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-838V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [36] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0838V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Groves" }, { @@ -32058,9 +32058,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-321V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [36] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0321V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Goff" }, { @@ -32071,8 +32071,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1606V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [22] DECISION of Special Master - Stipulation. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [22] DECISION of Special Master - Stipulation", "case_name_shorts": "Frepan" }, { @@ -32082,9 +32082,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-611V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/01/2023) regarding [34] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made. (Main Document 38 replaced on 1/3/2024) (sw).", + "docket_numbers": "21-0611V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/01/2023) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Foti" }, { @@ -32095,8 +32095,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1247V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [54] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [54] DECISION of Special Master - Fees", "case_name_shorts": "Farlin" }, { @@ -32107,8 +32107,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1450V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [76] DECISION Dismissing Petition. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [76] DECISION Dismissing Petition", "case_name_shorts": "Eloyan" }, { @@ -32118,9 +32118,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-125V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [36] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0125V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Edwards" }, { @@ -32130,9 +32130,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-472V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/4/2023) regarding [21] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0472V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/4/2023) regarding [21] Order Concluding Proceedings", "case_name_shorts": "Douglas" }, { @@ -32142,9 +32142,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-94V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 11/27/2023) regarding [53] DECISION of Special Master - Stipulation. Signed by Special Master Katherine E. Oler. (sl) Service on parties made. (Main Document 58 replaced on 1/16/2024 to attach corrected PDF) (ypb).", + "docket_numbers": "20-0094V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 11/27/2023) regarding [53] DECISION of Special Master - Stipulation", "case_name_shorts": "Doe" }, { @@ -32155,8 +32155,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2049V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/27/2023) regarding [41] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/27/2023) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Diaz" }, { @@ -32166,9 +32166,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-307V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/28/2023) regarding [34] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0307V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/28/2023) regarding [34] Ruling on Entitlement", "case_name_shorts": "Cote" }, { @@ -32179,8 +32179,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1761V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/29/2023) regarding [19] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/29/2023) regarding [19] Order Concluding Proceedings", "case_name_shorts": "Bright" }, { @@ -32191,8 +32191,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1861V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/30/2023) regarding [46] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/30/2023) regarding [46] Ruling on Entitlement", "case_name_shorts": "Blumenthal" }, { @@ -32203,8 +32203,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "15-1417V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 11/30/2023) regarding [150] DECISION of Special Master - Attorneys&039; Fees and Costs. Signed by Special Master Katherine E. Oler. (emh) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 11/30/2023) regarding [150] DECISION of Special Master - Attorneys&039; Fees and Costs", "case_name_shorts": "Blumenstiel" }, { @@ -32214,9 +32214,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-686V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/01/2023) regarding [49] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0686V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/01/2023) regarding [49] DECISION Stipulation/Proffer", "case_name_shorts": "Blaine" }, { @@ -32227,8 +32227,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1133V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [52] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Battle" }, { @@ -32238,9 +32238,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-887V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/30/2023) regarding [99] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "16-0887V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/30/2023) regarding [99] DECISION of Special Master - Fees", "case_name_shorts": "BECHEL" }, { @@ -32250,9 +32250,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-821V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/20/2023) regarding [57] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0821V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/20/2023) regarding [57] DECISION Stipulation/Proffer", "case_name_shorts": "Awe" }, { @@ -32262,9 +32262,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-216V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/29/2023) regarding [22] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0216V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/29/2023) regarding [22] DECISION Stipulation/Proffer", "case_name_shorts": "Au" }, { @@ -32274,9 +32274,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-64V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/30/2023) regarding [37] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0064V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/30/2023) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Allen" }, { @@ -32287,8 +32287,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1992V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [80] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [80] DECISION of Special Master - Fees", "case_name_shorts": "Ahartz" }, { @@ -32299,8 +32299,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1928V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [45] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Acosta" }, { @@ -32310,9 +32310,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-296V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [47] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0296V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/28/2023) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Achelus-Knox" }, { @@ -32322,9 +32322,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-455V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 12/4/2023) regarding [41] DECISION Stipulation. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "docket_numbers": "22-0455V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 12/4/2023) regarding [41] DECISION Stipulation", "case_name_shorts": "Galvan" }, { @@ -32334,9 +32334,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-678V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/27/2023) regarding [26] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0678V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/27/2023) regarding [26] Ruling on Entitlement", "case_name_shorts": "Schaefer" }, { @@ -32346,9 +32346,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-308V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/27/2023) regarding [32] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0308V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/27/2023) regarding [32] Ruling on Entitlement", "case_name_shorts": "Rampton" }, { @@ -32359,8 +32359,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1317V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 10/30/2023) regarding [47] DECISION of Special Master Signed by Special Master Thomas L. Gowen. (ms) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 10/30/2023) regarding [47] DECISION of Special Master", "case_name_shorts": "" }, { @@ -32370,9 +32370,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-162V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/27/2023) regarding [24] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0162V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/27/2023) regarding [24] Ruling on Entitlement", "case_name_shorts": "Jennings" }, { @@ -32382,9 +32382,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-508V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/27/2023) regarding [50] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0508V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/27/2023) regarding [50] Ruling on Entitlement", "case_name_shorts": "Eden" }, { @@ -32395,8 +32395,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1133V", - "judges": "T. Gowen", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/4/2023) regarding [31] Ruling on Entitlement Signed by Special Master Thomas L. Gowen. (ms) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 12/4/2023) regarding [31] Ruling on Entitlement", "case_name_shorts": "Conner" }, { @@ -32406,9 +32406,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-312V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/27/2023) regarding [24] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0312V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/27/2023) regarding [24] Ruling on Entitlement", "case_name_shorts": "Castelein" }, { @@ -32419,8 +32419,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1476V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 9/8/2023) regarding [80] DECISION of Special Master - Interim Attorney&039;s Fees Signed by Special Master Thomas L. Gowen. (ms) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 9/8/2023) regarding [80] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Byrd" }, { @@ -32431,8 +32431,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1775V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/27/2023) regarding [39] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/27/2023) regarding [39] Ruling on Entitlement", "case_name_shorts": "Alvarez" }, { @@ -32443,8 +32443,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1728V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/27/2023) regarding [22] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/27/2023) regarding [22] Ruling on Entitlement", "case_name_shorts": "Adams" }, { @@ -32455,8 +32455,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1318V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 12/8/2023) regarding [54] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 12/8/2023) regarding [54] DECISION of Special Master - Fees", "case_name_shorts": "Walker" }, { @@ -32467,8 +32467,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2030V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/29/2023) regarding [33] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/29/2023) regarding [33] DECISION of Special Master - Fees", "case_name_shorts": "Guzman" }, { @@ -32478,9 +32478,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-634V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 11/29/2023) regarding [57] DECISION of Special Master - Fees. Signed by Special Master Mindy Michaels Roth. (dkj) Service on parties made.", + "docket_numbers": "18-0634V", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 11/29/2023) regarding [57] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -32490,9 +32490,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-235V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 11/29/2023) regarding [153] DECISION - Proffer. Signed by Special Master Mindy Michaels Roth. (dkj) Service on parties made.", + "docket_numbers": "15-0235V", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 11/29/2023) regarding [153] DECISION - Proffer", "case_name_shorts": "SILVERIO" }, { @@ -32502,9 +32502,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-574V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/22/2023) regarding [36] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0574V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/22/2023) regarding [36] Ruling on Entitlement", "case_name_shorts": "Boice" }, { @@ -32514,9 +32514,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-878V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 11/30/2023) regarding [52] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (sh) Service on parties made.", + "docket_numbers": "20-0878V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 11/30/2023) regarding [52] DECISION Stipulation/Proffer", "case_name_shorts": "Bailey" }, { @@ -32527,8 +32527,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1512V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/22/2023) regarding [26] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/22/2023) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Andrew" }, { @@ -32539,8 +32539,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-2061V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 11/29/2023) regarding [98] DECISION of Special Master. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 11/29/2023) regarding [98] DECISION of Special Master", "case_name_shorts": "ANKLAM" }, { @@ -32550,9 +32550,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-479V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 11/30/2023) regarding [90] DECISION Stipulation/Proffer Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "20-0479V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 11/30/2023) regarding [90] DECISION Stipulation/Proffer", "case_name_shorts": "Santoro" }, { @@ -32562,9 +32562,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-342V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [37] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0342V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Pitts" }, { @@ -32575,8 +32575,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2006V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [51] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [51] DECISION of Special Master - Fees", "case_name_shorts": "Phipps" }, { @@ -32587,8 +32587,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1362V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 11/27/2023) regarding [147] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 11/27/2023) regarding [147] DECISION of Special Master", "case_name_shorts": "Kaltenmark" }, { @@ -32598,9 +32598,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-652V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [47] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0652V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Gould" }, { @@ -32610,9 +32610,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-877V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/21/2023) regarding [25] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0877V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/21/2023) regarding [25] Ruling on Entitlement", "case_name_shorts": "Fisher" }, { @@ -32623,8 +32623,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2206V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [31] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Connors" }, { @@ -32634,9 +32634,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-799V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [31] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0799V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Conine" }, { @@ -32646,9 +32646,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-906V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [41] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0906V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Cabral" }, { @@ -32658,9 +32658,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-860V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [36] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0860V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Bodenbender" }, { @@ -32670,9 +32670,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-235V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 11/08/2023) regarding [62] DECISION of Special Master - Fees. Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "docket_numbers": "19-0235V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 11/08/2023) regarding [62] DECISION of Special Master - Fees", "case_name_shorts": "Aycock" }, { @@ -32683,8 +32683,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1013V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/20/2023) regarding [25] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/20/2023) regarding [25] DECISION of Special Master", "case_name_shorts": "Strout" }, { @@ -32694,9 +32694,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-946V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [46] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0946V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -32706,9 +32706,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-57V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [48] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0057V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Jewell" }, { @@ -32719,8 +32719,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1537V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [54] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [54] DECISION of Special Master - Fees", "case_name_shorts": "Grant" }, { @@ -32731,8 +32731,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2054V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/20/2023) regarding [48] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/20/2023) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Dilger" }, { @@ -32742,9 +32742,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-904V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/20/2023) regarding [30] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0904V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/20/2023) regarding [30] DECISION of Special Master - Fees", "case_name_shorts": "Delaney" }, { @@ -32754,9 +32754,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-799V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/21/2023) regarding [30] Ruling on Entitlement, Order on Motion for Ruling on the Record. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0799V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/21/2023) regarding [30] Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "Conine" }, { @@ -32767,8 +32767,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1217V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/20/2023) regarding [74] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/20/2023) regarding [74] DECISION Stipulation/Proffer", "case_name_shorts": "Cameron" }, { @@ -32778,9 +32778,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-559V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/20/2023) regarding [27] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0559V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/20/2023) regarding [27] Ruling on Entitlement", "case_name_shorts": "Blanco" }, { @@ -32790,9 +32790,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-266V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/20/2023) regarding [17] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0266V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/20/2023) regarding [17] Order Concluding Proceedings", "case_name_shorts": "" }, { @@ -32802,9 +32802,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-414V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/20/2023) regarding [18] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0414V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/20/2023) regarding [18] Order Concluding Proceedings", "case_name_shorts": "Morefield" }, { @@ -32814,9 +32814,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-262V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/20/2023) regarding [26] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0262V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/20/2023) regarding [26] Order Concluding Proceedings", "case_name_shorts": "Maiella" }, { @@ -32826,9 +32826,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-268V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/20/2023) regarding [20] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0268V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/20/2023) regarding [20] Order Concluding Proceedings", "case_name_shorts": "Leathers" }, { @@ -32839,8 +32839,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1290V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/20/2023) regarding [34] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/20/2023) regarding [34] Ruling on Entitlement", "case_name_shorts": "Larson" }, { @@ -32850,9 +32850,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-395V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/20/2023) regarding [17] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0395V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/20/2023) regarding [17] Order Concluding Proceedings", "case_name_shorts": "Iroku" }, { @@ -32862,9 +32862,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-151V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [49] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "20-0151V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "B." }, { @@ -32874,9 +32874,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-431V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [34] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0431V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Scarfpin" }, { @@ -32886,9 +32886,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-915V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 11/22/2023) regarding [122] DECISION Stipulation. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "docket_numbers": "18-0915V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 11/22/2023) regarding [122] DECISION Stipulation", "case_name_shorts": "SCOTT" }, { @@ -32898,9 +32898,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-378V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [42] DECISION of Special Master Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0378V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [42] DECISION of Special Master", "case_name_shorts": "Romo" }, { @@ -32910,9 +32910,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-766V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/16/2023) regarding [25] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0766V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/16/2023) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "Powers" }, { @@ -32922,9 +32922,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-369V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 12/4/23) regarding [48] DECISION of Special Master Signed by Special Master Herbrina Sanders. (sh) Service on parties made.", + "docket_numbers": "20-0369V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 12/4/23) regarding [48] DECISION of Special Master", "case_name_shorts": "Messer" }, { @@ -32935,8 +32935,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1559V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/17/2023) regarding [20] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/17/2023) regarding [20] Ruling on Entitlement", "case_name_shorts": "Long" }, { @@ -32946,9 +32946,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-29V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/17/2023) regarding [35] Ruling on Entitlement, Order on Motion for Ruling on the Record ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0029V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/17/2023) regarding [35] Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "Lombardo" }, { @@ -32959,8 +32959,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1091V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/16/2023) regarding [34] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/16/2023) regarding [34] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -32971,8 +32971,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1222V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/16/2023) regarding [39] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/16/2023) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "Burgess" }, { @@ -32983,8 +32983,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1301V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [41] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Buck" }, { @@ -32994,9 +32994,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-367V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/16/2023) regarding [55] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0367V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/16/2023) regarding [55] DECISION of Special Master - Fees", "case_name_shorts": "Werbicki" }, { @@ -33007,8 +33007,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1849V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/15/2023) regarding [34] DECISION of Special Master - Fees, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/15/2023) regarding [34] DECISION of Special Master - Fees", "case_name_shorts": "Vashro" }, { @@ -33019,8 +33019,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1806V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/16/2023) regarding [52] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/16/2023) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Tornatore" }, { @@ -33031,8 +33031,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1814V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/15/2023) regarding [40] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/15/2023) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Rodriguez" }, { @@ -33043,8 +33043,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2077V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [50] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [50] DECISION Stipulation/Proffer", "case_name_shorts": "Roa" }, { @@ -33054,9 +33054,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-225V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/16/2023 ) regarding [36] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0225V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/16/2023 ) regarding [36] DECISION of Special Master - Fees", "case_name_shorts": "Muhling" }, { @@ -33066,9 +33066,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-995V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/15/2023) regarding [25] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0995V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/15/2023) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "Moises" }, { @@ -33078,9 +33078,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-457V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [107] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (sh) Service on parties made.", + "docket_numbers": "17-0457V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 11/21/2023) regarding [107] DECISION Stipulation/Proffer", "case_name_shorts": "Mills" }, { @@ -33091,8 +33091,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1916V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/16/2023) regarding [35] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/16/2023) regarding [35] DECISION Stipulation/Proffer", "case_name_shorts": "Mazlin" }, { @@ -33103,8 +33103,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1390V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/16/2023) regarding [29] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/16/2023) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "Kilgore" }, { @@ -33115,8 +33115,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1785V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/15/2023) regarding [27] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/15/2023) regarding [27] Ruling on Entitlement", "case_name_shorts": "Janosik" }, { @@ -33126,9 +33126,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-153V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/15/2023) regarding [38] DECISION Stipulation/Proffer (Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0153V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/15/2023) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Hemenway" }, { @@ -33139,8 +33139,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2017V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [43] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "Crowell" }, { @@ -33151,8 +33151,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2264V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/16/2023) regarding [34] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/16/2023) regarding [34] DECISION of Special Master - Fees", "case_name_shorts": "Carter" }, { @@ -33162,9 +33162,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-948V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/15/2023) regarding [48] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0948V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/15/2023) regarding [48] DECISION Stipulation/Proffer", "case_name_shorts": "Cantafio" }, { @@ -33174,9 +33174,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-905V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [38] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0905V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Brotman" }, { @@ -33186,9 +33186,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-623V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/15/2023) regarding [33] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0623V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/15/2023) regarding [33] DECISION of Special Master - Fees", "case_name_shorts": "Bennett" }, { @@ -33199,8 +33199,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2135V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/15/2023) regarding [41] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/15/2023) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Aretz" }, { @@ -33211,8 +33211,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1512V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/17/2023) regarding [23] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/17/2023) regarding [23] Ruling on Entitlement", "case_name_shorts": "Andrew" }, { @@ -33222,9 +33222,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-43V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/15/2023) regarding [59] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0043V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/15/2023) regarding [59] DECISION of Special Master - Fees", "case_name_shorts": "Aguilar" }, { @@ -33234,9 +33234,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-320V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [43] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0320V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "Wall" }, { @@ -33247,8 +33247,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2111V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [43] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -33259,8 +33259,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1150V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 11/30/23) regarding [42] DECISION of Special Master Signed by Special Master Herbrina Sanders. (sh) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 11/30/23) regarding [42] DECISION of Special Master", "case_name_shorts": "" }, { @@ -33270,9 +33270,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-540V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/15/2023) regarding [38] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0540V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/15/2023) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Terefe" }, { @@ -33283,8 +33283,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1303V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/13/2023) regarding [28] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/13/2023) regarding [28] Ruling on Entitlement", "case_name_shorts": "Stewart" }, { @@ -33294,9 +33294,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-854V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/14/2023) regarding [36] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0854V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/14/2023) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Norville" }, { @@ -33306,9 +33306,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-841V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/14/2023) regarding [38] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0841V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/14/2023) regarding [38] DECISION of Special Master - Fees", "case_name_shorts": "Moye" }, { @@ -33318,9 +33318,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-73V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/13/2023) regarding [32] Ruling on Entitlement, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0073V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/13/2023) regarding [32] Ruling on Entitlement", "case_name_shorts": "Middleton" }, { @@ -33331,8 +33331,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1572V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [78] DECISION AWARDING DAMAGES. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [78] DECISION AWARDING DAMAGES", "case_name_shorts": "Meagher" }, { @@ -33342,9 +33342,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-652V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/13/2023) regarding [22] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0652V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/13/2023) regarding [22] Ruling on Entitlement", "case_name_shorts": "McGovern" }, { @@ -33354,9 +33354,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-312V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [50] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "docket_numbers": "20-0312V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [50] DECISION of Special Master", "case_name_shorts": "Kuczarski" }, { @@ -33366,9 +33366,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-249V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/15/2023) regarding [43] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0249V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/15/2023) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Gigantino" }, { @@ -33378,9 +33378,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-285V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/14/2023) regarding [85] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "19-0285V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/14/2023) regarding [85] DECISION of Special Master - Fees", "case_name_shorts": "Gamez" }, { @@ -33390,9 +33390,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-351V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [63] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made. (Main Document 64 replaced on 12/20/2023 to correct typo) (sw).", + "docket_numbers": "20-0351V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [63] DECISION of Special Master", "case_name_shorts": "Larson" }, { @@ -33402,9 +33402,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-125V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [53] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0125V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [53] DECISION of Special Master - Fees", "case_name_shorts": "Jopes" }, { @@ -33415,8 +33415,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1056V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/14/2023) regarding [54] Ruling on Entitlement, Order on Motion for Ruling on the Record ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/14/2023) regarding [54] Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "Giddens" }, { @@ -33427,8 +33427,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1042V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023 ) regarding [50] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023 ) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Fields" }, { @@ -33438,9 +33438,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-963V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [37] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0963V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Fagan" }, { @@ -33451,8 +33451,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1278V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [37] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [37] DECISION of Special Master - Fees", "case_name_shorts": "Dixon" }, { @@ -33463,8 +33463,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1256V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/14/2023) regarding [30] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/14/2023) regarding [30] Ruling on Entitlement", "case_name_shorts": "Crouse" }, { @@ -33474,9 +33474,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-739V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/14/2023) regarding [49] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0739V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/14/2023) regarding [49] Ruling on Entitlement", "case_name_shorts": "Cain" }, { @@ -33487,8 +33487,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1840V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [42] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Busey" }, { @@ -33498,9 +33498,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-386V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [52] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0386V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Brown" }, { @@ -33510,9 +33510,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-737V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [31] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0737V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [31] DECISION of Special Master - Fees", "case_name_shorts": "Beckner" }, { @@ -33523,8 +33523,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2033V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [50] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Anthony" }, { @@ -33535,8 +33535,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1407V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [39] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "Ades" }, { @@ -33547,8 +33547,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1103V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 11/15/2023) regarding [46] DECISION of Special Master Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 11/15/2023) regarding [46] DECISION of Special Master", "case_name_shorts": "Schutz" }, { @@ -33559,8 +33559,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2166V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 11/20/2023) regarding [52] DECISION Stipulation/Proffer, Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 11/20/2023) regarding [52] DECISION Stipulation/Proffer", "case_name_shorts": "Scarboro" }, { @@ -33570,9 +33570,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-575V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [112] DECISION Proffer. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "docket_numbers": "18-0575V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [112] DECISION Proffer", "case_name_shorts": "Osso" }, { @@ -33583,8 +33583,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1855V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/08/2023) regarding [55] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/08/2023) regarding [55] Ruling on Entitlement", "case_name_shorts": "Whitaker" }, { @@ -33594,9 +33594,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-354V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/15/2023) regarding [18] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0354V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/15/2023) regarding [18] Order Concluding Proceedings", "case_name_shorts": "Warpula" }, { @@ -33607,8 +33607,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1193V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/08/2023) regarding [53] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/08/2023) regarding [53] DECISION Stipulation/Proffer", "case_name_shorts": "Onwubiko" }, { @@ -33618,9 +33618,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-195V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/15/2023) regarding [18] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0195V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/15/2023) regarding [18] Order Concluding Proceedings", "case_name_shorts": "Meier" }, { @@ -33631,8 +33631,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1030V", - "judges": "N. Dorsey", - "summaries": "PUBLIC RULING (Originally filed: 11/17/2023) regarding [74] Ruling on Entitlement. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC RULING (Originally filed: 11/17/2023) regarding [74] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -33642,9 +33642,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-353V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/15/2023) regarding [16] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0353V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/15/2023) regarding [16] Order Concluding Proceedings", "case_name_shorts": "Gadd" }, { @@ -33655,8 +33655,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1409V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [10] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/17/2023) regarding [10] DECISION of Special Master", "case_name_shorts": "Fitzgibbons" }, { @@ -33666,9 +33666,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-206V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/08/2023) regarding [53] Ruling on Entitlement, Order on Motion for Ruling on the Record. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "20-0206V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/08/2023) regarding [53] Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "Davenport" }, { @@ -33678,9 +33678,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-597V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/06/2023) regarding [40] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0597V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/06/2023) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "Crider" }, { @@ -33691,8 +33691,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1479V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/06/2023) regarding [39] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/06/2023) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "Butts" }, { @@ -33703,8 +33703,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1779V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/06/2023) regarding [41] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/06/2023) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Blankenship" }, { @@ -33714,9 +33714,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-208V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/08/2023) regarding [40] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0208V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/08/2023) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -33726,9 +33726,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-87V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/08/2023) regarding [25] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "23-0087V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/08/2023) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "Aman" }, { @@ -33738,9 +33738,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-219V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/15/2023) regarding [19] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0219V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/15/2023) regarding [19] Order Concluding Proceedings", "case_name_shorts": "Allen" }, { @@ -33751,8 +33751,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1478V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/08/2023) regarding [23] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/08/2023) regarding [23] Ruling on Entitlement", "case_name_shorts": "Stubbs" }, { @@ -33762,9 +33762,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-279V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 11/14/2023) regarding [101] Ruling on Entitlement, Order on Motion for Ruling on the Record. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "docket_numbers": "18-0279V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 11/14/2023) regarding [101] Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "Sprenger" }, { @@ -33774,9 +33774,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-925V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/08/2023) regarding [36] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "20-0925V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/08/2023) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Solem" }, { @@ -33786,9 +33786,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-431V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/7/2023) regarding [30] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made. Modified on 12/19/2023 to correct originally filed date (sw).", + "docket_numbers": "22-0431V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/7/2023) regarding [30] Ruling on Entitlement", "case_name_shorts": "Scarfpin" }, { @@ -33799,8 +33799,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1784V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/08/2023) regarding [16] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/08/2023) regarding [16] Ruling on Entitlement", "case_name_shorts": "Mello" }, { @@ -33810,9 +33810,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-422V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/06/2023) regarding [39] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0422V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/06/2023) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Langman" }, { @@ -33822,9 +33822,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-522V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/08/2023) regarding [38] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0522V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/08/2023) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Keith" }, { @@ -33834,9 +33834,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-550V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/06/2023) regarding [26] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0550V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/06/2023) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Heckathorn" }, { @@ -33846,9 +33846,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-126V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 11/16/2023) regarding [160] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "docket_numbers": "17-0126V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 11/16/2023) regarding [160] DECISION of Special Master - Fees", "case_name_shorts": "H." }, { @@ -33858,9 +33858,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-781V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/08/2023) regarding [27] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0781V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/08/2023) regarding [27] Ruling on Entitlement", "case_name_shorts": "Fata" }, { @@ -33870,9 +33870,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-779V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/15/2023) regarding [44] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "21-0779V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/15/2023) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Elwell" }, { @@ -33883,8 +33883,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1928V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/09/2023) regarding [40] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/09/2023) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "Egan" }, { @@ -33895,8 +33895,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1841V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/09/2023 ) regarding [34] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/09/2023 ) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Becker" }, { @@ -33906,9 +33906,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-50V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/08/2023) regarding [31] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0050V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/08/2023) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Barber" }, { @@ -33918,9 +33918,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-887V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 05/22/2023) regarding [86] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made. (Main Document 105 replaced on 12/13/2023 to correct the redacted information section.) (fm).", + "docket_numbers": "16-0887V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 05/22/2023) regarding [86] DECISION of Special Master", "case_name_shorts": "BECHEL" }, { @@ -33930,9 +33930,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-887V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/14/2023) regarding [89] Order on Motion to Redact Decision. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "16-0887V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 06/14/2023) regarding [89] Order on Motion to Redact Decision", "case_name_shorts": "BECHEL" }, { @@ -33943,8 +33943,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1841V", - "judges": "D. Horner", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/13/2023) regarding [38] Ruling on Entitlement. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/13/2023) regarding [38] Ruling on Entitlement", "case_name_shorts": "Stiller" }, { @@ -33954,9 +33954,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-277V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/06/2023) regarding [27] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0277V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/06/2023) regarding [27] Ruling on Entitlement", "case_name_shorts": "Piermatteo" }, { @@ -33967,8 +33967,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1938V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/07/2023) regarding [18] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/07/2023) regarding [18] Ruling on Entitlement", "case_name_shorts": "Paul" }, { @@ -33979,8 +33979,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1831V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/06/2023) regarding [30] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/06/2023) regarding [30] Ruling on Entitlement", "case_name_shorts": "Oliver" }, { @@ -33991,8 +33991,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1396V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/06/2023) regarding [64] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/06/2023) regarding [64] DECISION of Special Master - Fees", "case_name_shorts": "Mulloy" }, { @@ -34002,9 +34002,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-669V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [50] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "docket_numbers": "21-0669V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [50] DECISION Stipulation/Proffer", "case_name_shorts": "Lutes" }, { @@ -34014,9 +34014,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-182V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/06/2023) regarding [50] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "20-0182V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/06/2023) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Harris" }, { @@ -34026,9 +34026,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-840V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/08/2023) regarding [26] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0840V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/08/2023) regarding [26] Ruling on Entitlement", "case_name_shorts": "Etchebarren-Scholes" }, { @@ -34038,9 +34038,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-154V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/07/2023) regarding [44] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "20-0154V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/07/2023) regarding [44] DECISION of Special Master", "case_name_shorts": "Eichorn" }, { @@ -34051,8 +34051,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1917V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [59] DECISION AWARDING DAMAGES. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [59] DECISION AWARDING DAMAGES", "case_name_shorts": "Cain" }, { @@ -34062,9 +34062,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-296V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/09/2022) regarding [51] Ruling on Entitlement, Order on Motion for Ruling on the Record. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "19-0296V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/09/2022) regarding [51] Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "C." }, { @@ -34074,9 +34074,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-646V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/07/2023) regarding [42] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0646V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/07/2023) regarding [42] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -34087,8 +34087,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1289V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/07/2023) regarding [19] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/07/2023) regarding [19] Ruling on Entitlement", "case_name_shorts": "Beckmann" }, { @@ -34099,8 +34099,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1649V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 10/31/2023) regarding [33] DECISION of Special Master - Fees Signed by Special Master Daniel T. Horner. (jm) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 10/31/2023) regarding [33] DECISION of Special Master - Fees", "case_name_shorts": "Vazquez-Gonzalez" }, { @@ -34110,9 +34110,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-818V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 10/30/2023) regarding [115] DECISION of Special Master - Fees Signed by Special Master Herbrina Sanders. (jm) Service on parties made.", + "docket_numbers": "14-0818V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 10/30/2023) regarding [115] DECISION of Special Master - Fees", "case_name_shorts": "TILLEY" }, { @@ -34123,8 +34123,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1270V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 10/4/2023) regarding [62] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 10/4/2023) regarding [62] DECISION of Special Master - Fees", "case_name_shorts": "Stern" }, { @@ -34134,9 +34134,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-491V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 10/31/2023) regarding [98] DECISION of Special Master - Fees Signed by Special Master Herbrina Sanders. (jm) Service on parties made.", + "docket_numbers": "15-0491V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 10/31/2023) regarding [98] DECISION of Special Master - Fees", "case_name_shorts": "Specks" }, { @@ -34146,9 +34146,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-522V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 10/26/2023) regarding [71] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "docket_numbers": "20-0522V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 10/26/2023) regarding [71] DECISION of Special Master - Fees", "case_name_shorts": "Quartarone" }, { @@ -34158,9 +34158,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-766V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/06/2023) regarding [22] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0766V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/06/2023) regarding [22] Ruling on Entitlement", "case_name_shorts": "Powers" }, { @@ -34171,8 +34171,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1094V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [61] DECISION of Special Master - Fees Signed by Special Master Nora Beth Dorsey. (jm) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [61] DECISION of Special Master - Fees", "case_name_shorts": "Pierson" }, { @@ -34182,9 +34182,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-424V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 10/26/2023) regarding [75] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "docket_numbers": "20-0424V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 10/26/2023) regarding [75] DECISION of Special Master - Fees", "case_name_shorts": "Myers" }, { @@ -34194,9 +34194,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-462V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/06/2023) regarding [55] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "20-0462V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/06/2023) regarding [55] DECISION of Special Master - Fees", "case_name_shorts": "Mox" }, { @@ -34206,9 +34206,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-368V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 10/26/2023) regarding [85] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "docket_numbers": "18-0368V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 10/26/2023) regarding [85] DECISION of Special Master - Fees", "case_name_shorts": "Mengistu" }, { @@ -34218,9 +34218,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "15-113V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 10/18/23) regarding [145] DECISION of Special Master - Fees Signed by Special Master Herbrina Sanders. (jm) Service on parties made.", + "docket_numbers": "15-0113V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 10/18/23) regarding [145] DECISION of Special Master - Fees", "case_name_shorts": "MATTUS-LANG" }, { @@ -34231,8 +34231,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1619V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [150] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [150] DECISION of Special Master - Fees", "case_name_shorts": "Livingston" }, { @@ -34242,9 +34242,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "13-799V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 10/31/2023) regarding [213] DECISION of Special Master - Fees Signed by Special Master Daniel T. Horner. (jm) Service on parties made.", + "docket_numbers": "13-0799V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 10/31/2023) regarding [213] DECISION of Special Master - Fees", "case_name_shorts": "F." }, { @@ -34255,8 +34255,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1632V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [74] DECISION of Special Master - Fees Signed by Special Master Daniel T. Horner. (jm) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [74] DECISION of Special Master - Fees", "case_name_shorts": "Crawford" }, { @@ -34266,9 +34266,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-813V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [73] DECISION of Special Master - Fees Signed by Special Master Daniel T. Horner. (jm) Service on parties made.", + "docket_numbers": "18-0813V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [73] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -34278,9 +34278,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-24V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 10/31/2023) regarding [40] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "docket_numbers": "22-0024V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 10/31/2023) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Cascio" }, { @@ -34291,8 +34291,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1672V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 10/31/2023) regarding [41] DECISION of Special Master - Fees Signed by Special Master Mindy Michaels Roth. (jm) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 10/31/2023) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Brown" }, { @@ -34303,8 +34303,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1715V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [112] DECISION of Special Master - Fees Signed by Special Master Katherine E. Oler. (jm) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [112] DECISION of Special Master - Fees", "case_name_shorts": "Argiri" }, { @@ -34314,9 +34314,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-608V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/18/2023) regarding [29] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (sw) Service on parties made.", + "docket_numbers": "21-0608V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/18/2023) regarding [29] Ruling on Entitlement", "case_name_shorts": "Rouse" }, { @@ -34327,8 +34327,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1189V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/02/2023) regarding [38] Findings of Fact & Conclusions of Law. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/02/2023) regarding [38] Findings of Fact & Conclusions of Law", "case_name_shorts": "" }, { @@ -34338,9 +34338,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-550V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [75] DECISION of Special Master Signed by Special Master Christian J. Moran. (dksc) Service on parties made.", + "docket_numbers": "20-0550V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [75] DECISION of Special Master", "case_name_shorts": "Harlow" }, { @@ -34351,8 +34351,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1973V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/22/2023) regarding [23] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (sw) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/22/2023) regarding [23] Ruling on Entitlement", "case_name_shorts": "Elverum" }, { @@ -34362,9 +34362,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-2V", - "judges": "B. Corcoran", - "summaries": "PUBLIC RULING (Originally filed: 09/14/2023) regarding [45] FINDINGS OF FACT AND CONCLUSIONS OF LAW DISMISSING TABLE CLAIM. Signed by Chief Special Master Brian H. Corcoran. (dkj) Service on parties made.", + "docket_numbers": "20-0002V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC RULING (Originally filed: 09/14/2023) regarding [45] FINDINGS OF FACT AND CONCLUSIONS OF LAW DISMISSING TABLE CLAIM", "case_name_shorts": "A." }, { @@ -34374,9 +34374,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-191V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/03/2023) regarding [29] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0191V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/03/2023) regarding [29] DECISION of Special Master - Fees", "case_name_shorts": "Wabbe" }, { @@ -34386,9 +34386,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-776V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/03/2023) regarding [38] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0776V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/03/2023) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Tyree" }, { @@ -34399,8 +34399,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1951V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/02/2023) regarding [36] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/02/2023) regarding [36] DECISION of Special Master - Fees", "case_name_shorts": "Staffaroni" }, { @@ -34410,9 +34410,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-705V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/01/2023) regarding [46] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0705V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/01/2023) regarding [46] DECISION Stipulation/Proffer", "case_name_shorts": "Snoddy" }, { @@ -34422,9 +34422,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-75V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/02/2023) regarding [33] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0075V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/02/2023) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Robinson" }, { @@ -34434,9 +34434,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-667V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/03/2023) regarding [21] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0667V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/03/2023) regarding [21] Ruling on Entitlement", "case_name_shorts": "Poulin" }, { @@ -34447,8 +34447,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1126V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/03/2023 ) regarding [28] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/03/2023 ) regarding [28] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -34458,9 +34458,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-713V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/27/2023) regarding [37] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0713V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/27/2023) regarding [37] Ruling on Entitlement", "case_name_shorts": "Nguyen" }, { @@ -34470,9 +34470,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-995V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/01/2023) regarding [21] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0995V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/01/2023) regarding [21] Ruling on Entitlement", "case_name_shorts": "Moises" }, { @@ -34482,9 +34482,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-699V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/02/2023) regarding [47] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0699V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/02/2023) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Law" }, { @@ -34495,8 +34495,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1366V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [47] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Knasel" }, { @@ -34506,9 +34506,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-27V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [54] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0027V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [54] DECISION of Special Master - Fees", "case_name_shorts": "Killpack" }, { @@ -34519,8 +34519,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1852V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/03/2023) regarding [32] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/03/2023) regarding [32] DECISION Stipulation/Proffer", "case_name_shorts": "Kell" }, { @@ -34530,9 +34530,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-601V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/03/2023) regarding [26] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0601V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/03/2023) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Kauterman" }, { @@ -34543,8 +34543,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1798V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/01/2023) regarding [27] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/01/2023) regarding [27] Ruling on Entitlement", "case_name_shorts": "Helldoerfer" }, { @@ -34554,9 +34554,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-266V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/30/2023) regarding [44] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0266V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/30/2023) regarding [44] DECISION Stipulation/Proffer", "case_name_shorts": "Harrison" }, { @@ -34567,8 +34567,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2082V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/02/2023) regarding [34] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/02/2023) regarding [34] DECISION of Special Master", "case_name_shorts": "Grimes" }, { @@ -34579,8 +34579,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2098V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [39] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "Granville" }, { @@ -34590,9 +34590,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-313V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/30/2023) regarding [36] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0313V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/30/2023) regarding [36] Ruling on Entitlement", "case_name_shorts": "Erb" }, { @@ -34603,8 +34603,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1003V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/01/2023) regarding [43] Ruling on Entitlement, Order on Motion for Ruling on the Record ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/01/2023) regarding [43] Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "Diaz" }, { @@ -34614,9 +34614,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-502V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [51] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0502V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [51] DECISION of Special Master - Fees", "case_name_shorts": "Delgado" }, { @@ -34627,8 +34627,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1628V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/30/2023) regarding [43] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/30/2023) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Cox" }, { @@ -34638,9 +34638,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-594V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/02/2023) regarding [45] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0594V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/02/2023) regarding [45] DECISION Stipulation/Proffer", "case_name_shorts": "Camire" }, { @@ -34651,8 +34651,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2219V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/02/2023) regarding [35] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/02/2023) regarding [35] DECISION of Special Master - Fees", "case_name_shorts": "Beachy" }, { @@ -34663,8 +34663,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1440V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/02/2023) regarding [22] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/02/2023) regarding [22] DECISION Stipulation/Proffer", "case_name_shorts": "Bauer" }, { @@ -34675,8 +34675,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-2008V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/02/2023) regarding [56] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/02/2023) regarding [56] DECISION of Special Master - Fees", "case_name_shorts": "Wood" }, { @@ -34687,8 +34687,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-1499V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 11/7/2023) regarding [248] DECISION of Special Master. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 11/7/2023) regarding [248] DECISION of Special Master", "case_name_shorts": "Spayde" }, { @@ -34699,8 +34699,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1921V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [33] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [33] DECISION of Special Master - Fees", "case_name_shorts": "Rockey" }, { @@ -34711,8 +34711,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2061V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/02/2023) regarding [57] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/02/2023) regarding [57] DECISION of Special Master - Fees", "case_name_shorts": "Marcillo" }, { @@ -34723,8 +34723,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1655V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/01/2023) regarding [20] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/01/2023) regarding [20] Ruling on Entitlement", "case_name_shorts": "Lasseter" }, { @@ -34735,8 +34735,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1311V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [75] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [75] DECISION of Special Master - Fees", "case_name_shorts": "Langdon" }, { @@ -34746,9 +34746,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-561V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/23/2023) regarding [27] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0561V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/23/2023) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Kouzmov" }, { @@ -34758,9 +34758,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-850V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/02/2023) regarding [24] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0850V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/02/2023) regarding [24] Ruling on Entitlement", "case_name_shorts": "Jones" }, { @@ -34771,8 +34771,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1548V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/7/2023) regarding [55] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/7/2023) regarding [55] DECISION of Special Master", "case_name_shorts": "Hughes" }, { @@ -34783,8 +34783,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1454V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/24/2023) regarding [21] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/24/2023) regarding [21] Ruling on Entitlement", "case_name_shorts": "Hawk" }, { @@ -34794,9 +34794,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-417V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/03/2023) regarding [29] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0417V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/03/2023) regarding [29] DECISION of Special Master - Fees", "case_name_shorts": "Gabriel" }, { @@ -34807,8 +34807,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1762V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 11/8/2023) regarding [83] DECISION Proffer. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 11/8/2023) regarding [83] DECISION Proffer", "case_name_shorts": "Ellis" }, { @@ -34818,9 +34818,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-406V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 11/7/2023) regarding [147] DECISION Proffer. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "docket_numbers": "18-0406V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 11/7/2023) regarding [147] DECISION Proffer", "case_name_shorts": "Eason" }, { @@ -34831,8 +34831,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1192V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/06/2023) regarding [78] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/06/2023) regarding [78] DECISION of Special Master - Fees", "case_name_shorts": "Dowdle" }, { @@ -34842,9 +34842,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-501V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/23/2023) regarding [29] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0501V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/23/2023) regarding [29] Ruling on Entitlement", "case_name_shorts": "Baird" }, { @@ -34854,9 +34854,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-260V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [61] DECISION of Special Master - Stipulation. Signed by Special Master Katherine E. Oler. (emh) Service on parties made.", + "docket_numbers": "19-0260V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [61] DECISION of Special Master - Stipulation", "case_name_shorts": "Scheffler" }, { @@ -34866,9 +34866,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-109V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [106] DECISION of Special Master. Signed by Special Master Katherine E. Oler. (emh) Service on parties made.", + "docket_numbers": "17-0109V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 11/13/2023) regarding [106] DECISION of Special Master", "case_name_shorts": "Ruzicka" }, { @@ -34879,8 +34879,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2058V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/31/2023) regarding [31] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/31/2023) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Ohlsen" }, { @@ -34891,8 +34891,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1394V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/30/2023) regarding [24] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/30/2023) regarding [24] Ruling on Entitlement", "case_name_shorts": "Kreuze" }, { @@ -34903,8 +34903,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-1676V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 10/23/2023) regarding [104] DECISION of Special Master. Signed by Special Master Katherine E. Oler. (emh) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 10/23/2023) regarding [104] DECISION of Special Master", "case_name_shorts": "Goodwin" }, { @@ -34915,8 +34915,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1378V", - "judges": "K. Oler", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/13/2023) regarding [79] Ruling on Entitlement. Signed by Special Master Katherine E. Oler. (emh) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/13/2023) regarding [79] Ruling on Entitlement", "case_name_shorts": "Fiske" }, { @@ -34926,9 +34926,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-588V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 11/2/2023) regarding [23] DECISION of Special Master. Signed by Special Master Katherine E. Oler. (emh) Service on parties made.", + "docket_numbers": "22-0588V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 11/2/2023) regarding [23] DECISION of Special Master", "case_name_shorts": "Casteel" }, { @@ -34939,8 +34939,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-2019V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/31/2023) regarding [49] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/31/2023) regarding [49] DECISION of Special Master", "case_name_shorts": "Bodak" }, { @@ -34950,9 +34950,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-473V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/30/2023) regarding [23] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0473V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/30/2023) regarding [23] Ruling on Entitlement", "case_name_shorts": "Solorio" }, { @@ -34963,8 +34963,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1641V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/23/2023) regarding [24] Findings of Fact & Conclusions of Law, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/23/2023) regarding [24] Findings of Fact & Conclusions of Law", "case_name_shorts": "Plummer" }, { @@ -34975,8 +34975,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1270V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/24/2023) regarding [23] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/24/2023) regarding [23] Ruling on Entitlement", "case_name_shorts": "Parkinson" }, { @@ -34986,9 +34986,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-31V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [45] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0031V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Mussehl" }, { @@ -34998,9 +34998,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-289V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [33] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0289V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Kimmick" }, { @@ -35010,9 +35010,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-235V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/30/2023) regarding [25] Findings of Fact & Conclusions of Law, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0235V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/30/2023) regarding [25] Findings of Fact & Conclusions of Law", "case_name_shorts": "" }, { @@ -35023,8 +35023,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1884V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [66] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [66] DECISION of Special Master - Fees", "case_name_shorts": "Gao" }, { @@ -35034,9 +35034,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-609V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/26/2023) regarding [48] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0609V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/26/2023) regarding [48] DECISION Stipulation/Proffer", "case_name_shorts": "Blackmon" }, { @@ -35046,9 +35046,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-93V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023 ) regarding [52] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "20-0093V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023 ) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Bidlack" }, { @@ -35058,9 +35058,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-89V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/23/2023) regarding [43] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0089V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/23/2023) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Arrogante" }, { @@ -35071,8 +35071,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1523V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [41] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Rousseau" }, { @@ -35082,9 +35082,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-704V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [41] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0704V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Porter" }, { @@ -35095,8 +35095,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1007V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/26/2023) regarding [58] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/26/2023) regarding [58] DECISION Stipulation/Proffer", "case_name_shorts": "Myers" }, { @@ -35106,9 +35106,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-908V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023 ) regarding [43] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0908V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023 ) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "Merrill" }, { @@ -35118,9 +35118,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-289V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/25/2023) regarding [32] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0289V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/25/2023) regarding [32] Ruling on Entitlement", "case_name_shorts": "Kimmick" }, { @@ -35130,9 +35130,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-428V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 11/1/2023) regarding [39] DECISION of Special Master - Interim Attorney&039;s Fees, Signed by Special Master Christian J. Moran. (dksc) Service on parties made.", + "docket_numbers": "22-0428V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 11/1/2023) regarding [39] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "JARANILLA" }, { @@ -35142,9 +35142,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-600V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/30/2023) regarding [28] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0600V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/30/2023) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Hoss" }, { @@ -35155,8 +35155,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2020V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [48] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Enstrom" }, { @@ -35166,9 +35166,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-868V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [45] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0868V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Cucinotta" }, { @@ -35179,8 +35179,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1357V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [34] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Bennett" }, { @@ -35190,9 +35190,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-338V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 11/3/2023) regarding [62] DECISION Stipulation Signed by Special Master Thomas L. Gowen. (ms) Service on parties made.", + "docket_numbers": "20-0338V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 11/3/2023) regarding [62] DECISION Stipulation", "case_name_shorts": "Ahern" }, { @@ -35202,9 +35202,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-88V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/26/2023) regarding [29] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "23-0088V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/26/2023) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "Zimmerman" }, { @@ -35214,9 +35214,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-518V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/23/2023) regarding [35] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "21-0518V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/23/2023) regarding [35] DECISION of Special Master", "case_name_shorts": "Wessinger" }, { @@ -35226,9 +35226,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-142V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/2/2023) regarding [24] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0142V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 11/2/2023) regarding [24] Order Concluding Proceedings", "case_name_shorts": "Seager" }, { @@ -35238,9 +35238,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-723V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [25] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0723V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [25] DECISION Stipulation/Proffer", "case_name_shorts": "Olszewski" }, { @@ -35250,9 +35250,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-691V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 11/1/2023) regarding [25] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "21-0691V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 11/1/2023) regarding [25] DECISION of Special Master", "case_name_shorts": "Northington" }, { @@ -35262,9 +35262,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-401V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [39] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0401V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Idnani" }, { @@ -35274,9 +35274,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-655V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/26/2023) regarding [32] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0655V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/26/2023) regarding [32] DECISION Stipulation/Proffer", "case_name_shorts": "Demoss" }, { @@ -35286,9 +35286,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "14-706V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 10/30/2023) regarding [137] DECISION of Special Master - Fees. Signed by Special Master Mindy Michaels Roth. (dkj) Service on parties made.", + "docket_numbers": "14-0706V", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 10/30/2023) regarding [137] DECISION of Special Master - Fees", "case_name_shorts": "Wyatt" }, { @@ -35299,8 +35299,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1400V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [51] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [51] DECISION of Special Master - Fees", "case_name_shorts": "Wilson-Blount" }, { @@ -35310,9 +35310,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-393V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/23/2023) regarding [29] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0393V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/23/2023) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "Wilson" }, { @@ -35322,9 +35322,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-44V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [49] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0044V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Valdez" }, { @@ -35334,9 +35334,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-128V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [33] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0128V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [33] DECISION of Special Master", "case_name_shorts": "Steede" }, { @@ -35347,8 +35347,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1972V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [51] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [51] DECISION of Special Master - Fees", "case_name_shorts": "Soussan" }, { @@ -35358,9 +35358,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-205V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [33] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0205V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Salgado" }, { @@ -35371,8 +35371,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1401V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/23/2023) regarding [60] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/23/2023) regarding [60] DECISION of Special Master - Fees", "case_name_shorts": "R." }, { @@ -35382,9 +35382,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-966V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/23/2023) regarding [93] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0966V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/23/2023) regarding [93] Ruling on Entitlement", "case_name_shorts": "O&039;connor" }, { @@ -35394,9 +35394,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-406V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [56] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0406V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [56] DECISION of Special Master - Fees", "case_name_shorts": "Meyers" }, { @@ -35406,9 +35406,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-30V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [50] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0030V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -35418,9 +35418,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-305V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/30/2023) regarding [25] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "docket_numbers": "22-0305V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/30/2023) regarding [25] DECISION of Special Master", "case_name_shorts": "Mandril" }, { @@ -35431,8 +35431,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1571V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 11/1/2023) regarding [97] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 11/1/2023) regarding [97] DECISION Stipulation/Proffer", "case_name_shorts": "Malcolm" }, { @@ -35443,8 +35443,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1794V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/26/2023) regarding [53] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/26/2023) regarding [53] DECISION Stipulation/Proffer", "case_name_shorts": "Kasulis" }, { @@ -35454,9 +35454,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-884V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/31/2023) regarding [52] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "docket_numbers": "21-0884V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/31/2023) regarding [52] DECISION of Special Master", "case_name_shorts": "Jeffries" }, { @@ -35466,9 +35466,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-91V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/26/2023) regarding [39] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0091V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/26/2023) regarding [39] DECISION of Special Master", "case_name_shorts": "Huber" }, { @@ -35478,9 +35478,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-26V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [60] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0026V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [60] DECISION of Special Master - Fees", "case_name_shorts": "Harry" }, { @@ -35491,8 +35491,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1093V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [31] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Ha" }, { @@ -35503,8 +35503,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2007V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [38] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/25/2023) regarding [38] DECISION of Special Master - Fees", "case_name_shorts": "Gaughan" }, { @@ -35515,8 +35515,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1310V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 11/2/2023) regarding [81] DECISION Stipulation. Signed by Special Master Mindy Michaels Roth. (dkj) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 11/2/2023) regarding [81] DECISION Stipulation", "case_name_shorts": "Fetterman" }, { @@ -35526,9 +35526,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-655V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/26/2023) regarding [31] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0655V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/26/2023) regarding [31] Ruling on Entitlement", "case_name_shorts": "Demoss" }, { @@ -35538,9 +35538,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-389V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [39] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0389V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "Cavalier" }, { @@ -35551,8 +35551,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1055V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/23/2023) regarding [34] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/23/2023) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Cassese" }, { @@ -35563,8 +35563,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1767V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [58] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [58] DECISION of Special Master - Fees", "case_name_shorts": "Callejas" }, { @@ -35575,8 +35575,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1217V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/31/2023) regarding [48] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/31/2023) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Bulman" }, { @@ -35586,9 +35586,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-893V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/19/2023) regarding [45] Findings of Fact & Conclusions of Law ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "20-0893V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/19/2023) regarding [45] Findings of Fact & Conclusions of Law", "case_name_shorts": "Bolick" }, { @@ -35598,9 +35598,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-180V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 10/31/2023) regarding [124] DECISION Stipulation. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "docket_numbers": "18-0180V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 10/31/2023) regarding [124] DECISION Stipulation", "case_name_shorts": "Barenblit" }, { @@ -35610,9 +35610,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-132V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [39] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0132V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "Arreola" }, { @@ -35623,8 +35623,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1782V", - "judges": "N. Dorsey", - "summaries": "PUBLIC RULING (Originally filed: 10/31/2023) regarding [92] Ruling on Entitlement. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC RULING (Originally filed: 10/31/2023) regarding [92] Ruling on Entitlement", "case_name_shorts": "Arredondo" }, { @@ -35634,9 +35634,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-116V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/23/2023) regarding [24] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0116V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/23/2023) regarding [24] Order Concluding Proceedings", "case_name_shorts": "" }, { @@ -35646,9 +35646,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-842V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/18/2023) regarding [45] Ruling on Entitlement, Order on Motion for Ruling on the Record. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "20-0842V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/18/2023) regarding [45] Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "Rodionov" }, { @@ -35658,9 +35658,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-115V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/23/2023) regarding [19] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0115V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/23/2023) regarding [19] Order Concluding Proceedings", "case_name_shorts": "Peppers" }, { @@ -35670,9 +35670,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-261V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/23/2023) regarding [21] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0261V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/23/2023) regarding [21] Order Concluding Proceedings", "case_name_shorts": "Noel" }, { @@ -35682,9 +35682,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-117V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/23/2023) regarding [19] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0117V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/23/2023) regarding [19] Order Concluding Proceedings", "case_name_shorts": "Nehring" }, { @@ -35694,9 +35694,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-246V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/23/2023) regarding [19] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0246V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/23/2023) regarding [19] Order Concluding Proceedings", "case_name_shorts": "McCafferty" }, { @@ -35707,8 +35707,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1368V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [9] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [9] DECISION of Special Master", "case_name_shorts": "Masao" }, { @@ -35719,8 +35719,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1720V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [39] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "Mantagas" }, { @@ -35731,8 +35731,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1346V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [56] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [56] DECISION of Special Master - Fees", "case_name_shorts": "Majerus" }, { @@ -35742,9 +35742,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-114V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/23/2023) regarding [19] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0114V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/23/2023) regarding [19] Order Concluding Proceedings", "case_name_shorts": "Layne" }, { @@ -35755,8 +35755,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1063V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/23/2023) regarding [32] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/23/2023) regarding [32] Ruling on Entitlement", "case_name_shorts": "Gross" }, { @@ -35766,9 +35766,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-111V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/23/2023) regarding [19] Order Concluding Proceedings Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0111V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/23/2023) regarding [19] Order Concluding Proceedings", "case_name_shorts": "Graeme" }, { @@ -35778,9 +35778,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-123V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/23/2023) regarding [18] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0123V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/23/2023) regarding [18] Order Concluding Proceedings", "case_name_shorts": "Gonzalez" }, { @@ -35790,9 +35790,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-760V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/19/2023) regarding [31] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0760V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/19/2023) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Fallstead" }, { @@ -35802,9 +35802,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-782V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/20/2023) regarding [39] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0782V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/20/2023) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Duclos" }, { @@ -35815,8 +35815,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1913V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [57] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [57] DECISION of Special Master", "case_name_shorts": "Clapp" }, { @@ -35826,9 +35826,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-936V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/17/2023) regarding [51] Ruling on Entitlement, Order on Motion for Decision. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "20-0936V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/17/2023) regarding [51] Ruling on Entitlement, Order on Motion for Decision", "case_name_shorts": "Chukwudum" }, { @@ -35838,9 +35838,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-189V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [48] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "docket_numbers": "22-0189V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Carron" }, { @@ -35851,8 +35851,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1507V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/20/2023) regarding [39] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/20/2023) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Briggs" }, { @@ -35862,9 +35862,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-577V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/19/2023) regarding [29] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0577V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/19/2023) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "Bier" }, { @@ -35875,8 +35875,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1318V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [22] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/24/2023) regarding [22] DECISION of Special Master", "case_name_shorts": "" }, { @@ -35887,8 +35887,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2285V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/16/2023) regarding [35] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/16/2023) regarding [35] DECISION Stipulation/Proffer", "case_name_shorts": "Winning" }, { @@ -35899,8 +35899,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1554V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/13/2023) regarding [35] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/13/2023) regarding [35] DECISION of Special Master", "case_name_shorts": "Weidner" }, { @@ -35911,8 +35911,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1514V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/13/2023) regarding [45] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/13/2023) regarding [45] DECISION of Special Master", "case_name_shorts": "Starnes" }, { @@ -35923,8 +35923,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1250V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/20/2023) regarding [48] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/20/2023) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Savino" }, { @@ -35935,8 +35935,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1318V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [71] DECISION of Special Master - Fees. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [71] DECISION of Special Master - Fees", "case_name_shorts": "Punswick" }, { @@ -35946,9 +35946,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-231V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [40] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0231V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "Myers" }, { @@ -35959,8 +35959,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1889V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [37] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Mosley" }, { @@ -35971,8 +35971,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1861V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 10/11/2023) regarding [27] DECISION of Special Master. Signed by Special Master Thomas L. Gowen. (hs) Service on parties made. (Main Document 29 replaced on 11/27/2023 with reissued date) (sw). Petitioner served via e-mail on 11/27/2023 (sw).", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 10/11/2023) regarding [27] DECISION of Special Master", "case_name_shorts": "Meltzer" }, { @@ -35982,9 +35982,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-848V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/19/2023) regarding [41] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "20-0848V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/19/2023) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "McMahon" }, { @@ -35994,9 +35994,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-524V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/19/2023) regarding [33] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0524V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/19/2023) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "McCann" }, { @@ -36007,8 +36007,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1903V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/16/2023) regarding [27] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/16/2023) regarding [27] Ruling on Entitlement", "case_name_shorts": "Luginsky" }, { @@ -36019,8 +36019,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2137V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/20/2023) regarding [45] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/20/2023) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Lombardo" }, { @@ -36030,9 +36030,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-672V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [57] DECISION of Special Master - Fees. Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "docket_numbers": "19-0672V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [57] DECISION of Special Master - Fees", "case_name_shorts": "Linnett" }, { @@ -36043,8 +36043,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2009V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/18/2023) regarding [68] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/18/2023) regarding [68] DECISION Stipulation/Proffer", "case_name_shorts": "Komarchuk" }, { @@ -36054,9 +36054,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-233V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [129] DECISION of Special Master. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "docket_numbers": "17-0233V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 10/27/2023) regarding [129] DECISION of Special Master", "case_name_shorts": "HARGROVE" }, { @@ -36066,9 +36066,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-59V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/16/2023) regarding [49] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made. (Main Document 52 replaced on 11/21/2023 to correct the pdf.) (fm).", + "docket_numbers": "20-0059V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/16/2023) regarding [49] DECISION Stipulation/Proffer", "case_name_shorts": "Borman" }, { @@ -36078,9 +36078,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-353V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/19/2023) regarding [59] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "20-0353V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/19/2023) regarding [59] DECISION Stipulation/Proffer", "case_name_shorts": "Blunt" }, { @@ -36091,8 +36091,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1810V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/19/2023 ) regarding [33] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/19/2023 ) regarding [33] Ruling on Entitlement", "case_name_shorts": "Bacik" }, { @@ -36102,9 +36102,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-774V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/16/2023) regarding [29] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0774V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/16/2023) regarding [29] Ruling on Entitlement", "case_name_shorts": "Wyckoff" }, { @@ -36115,8 +36115,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-2036V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/19/2023) regarding [51] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/19/2023) regarding [51] DECISION Stipulation/Proffer", "case_name_shorts": "Wharton" }, { @@ -36126,9 +36126,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-831V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/20/2023) regarding [40] DECISION of Special Master - Fees, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0831V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/20/2023) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Weil" }, { @@ -36139,8 +36139,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1448V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 10/23/2023) regarding [50] DECISION Stipulation. Signed by Special Master Nora Beth Dorsey. (mjf) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 10/23/2023) regarding [50] DECISION Stipulation", "case_name_shorts": "" }, { @@ -36150,9 +36150,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-129V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [34] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0129V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [34] DECISION of Special Master - Fees", "case_name_shorts": "Short" }, { @@ -36163,8 +36163,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1768V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/20/2023) regarding [42] DECISION of Special Master - Fees, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/20/2023) regarding [42] DECISION of Special Master - Fees", "case_name_shorts": "Schenck" }, { @@ -36175,8 +36175,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1753V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/20/2023) regarding [59] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/20/2023) regarding [59] DECISION of Special Master - Fees", "case_name_shorts": "Perez" }, { @@ -36186,9 +36186,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-921V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/20/2023) regarding [60] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "20-0921V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/20/2023) regarding [60] DECISION of Special Master - Fees", "case_name_shorts": "Morrison" }, { @@ -36198,9 +36198,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-297V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/20/2023) regarding [38] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0297V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/20/2023) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Meyer" }, { @@ -36210,9 +36210,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-524V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/18/2023) regarding [32] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0524V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/18/2023) regarding [32] Ruling on Entitlement", "case_name_shorts": "McCann" }, { @@ -36223,8 +36223,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1989V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/18/2023) regarding [33] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/18/2023) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Mason-Chavez" }, { @@ -36234,9 +36234,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-586V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/20/2023) regarding [43] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0586V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/20/2023) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Lucks" }, { @@ -36246,9 +36246,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-827V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/18/2023) regarding [24] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0827V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/18/2023) regarding [24] Ruling on Entitlement", "case_name_shorts": "Gootee" }, { @@ -36258,9 +36258,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-209V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [29] DECISION Stipulation/Proffer, (Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0209V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [29] DECISION Stipulation/Proffer", "case_name_shorts": "Goff" }, { @@ -36271,8 +36271,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1237V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 10/26/2023) regarding [53] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 10/26/2023) regarding [53] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Day" }, { @@ -36283,8 +36283,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1066V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/16/2023) regarding [36] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/16/2023) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Brickman" }, { @@ -36294,9 +36294,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-609V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/19/2023) regarding [45] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0609V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/19/2023) regarding [45] Ruling on Entitlement", "case_name_shorts": "Blackmon" }, { @@ -36307,8 +36307,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1463V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/16/2023) regarding [24] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/16/2023) regarding [24] DECISION Stipulation/Proffer", "case_name_shorts": "Wentworth" }, { @@ -36318,9 +36318,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-439V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [55] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "19-0439V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [55] DECISION of Special Master - Fees", "case_name_shorts": "Venier" }, { @@ -36330,9 +36330,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-525V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/10/2023) regarding [27] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0525V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/10/2023) regarding [27] Ruling on Entitlement", "case_name_shorts": "Tincher" }, { @@ -36342,9 +36342,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-349V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/11/2023) regarding [49] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0349V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/11/2023) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Scanlan" }, { @@ -36355,8 +36355,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1406V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/11/2023) regarding [55] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/11/2023) regarding [55] DECISION Stipulation/Proffer", "case_name_shorts": "Sauter" }, { @@ -36366,9 +36366,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-396V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/28/2023) regarding [23] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0396V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/28/2023) regarding [23] Ruling on Entitlement", "case_name_shorts": "Precil" }, { @@ -36379,8 +36379,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1097V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [50] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [50] DECISION Stipulation/Proffer", "case_name_shorts": "Plavnik" }, { @@ -36390,9 +36390,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-342V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/17/2023) regarding [32] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0342V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/17/2023) regarding [32] Ruling on Entitlement", "case_name_shorts": "Pitts" }, { @@ -36402,9 +36402,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-333V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/28/2023) regarding [53] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0333V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/28/2023) regarding [53] DECISION of Special Master - Fees", "case_name_shorts": "Phipps" }, { @@ -36415,8 +36415,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2267V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [36] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [36] DECISION of Special Master - Fees", "case_name_shorts": "O&039;dea" }, { @@ -36427,8 +36427,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1232V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/13/2023) regarding [36] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/13/2023) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Matheny" }, { @@ -36439,8 +36439,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2228V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [38] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "MacAvoy" }, { @@ -36451,8 +36451,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1635V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/11/2023) regarding [43] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/11/2023) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "Lund" }, { @@ -36462,9 +36462,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-561V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/11/2023) regarding [24] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0561V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/11/2023) regarding [24] Ruling on Entitlement", "case_name_shorts": "Kouzmov" }, { @@ -36475,8 +36475,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1153V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/10/2023) regarding [23] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/10/2023) regarding [23] DECISION Stipulation/Proffer", "case_name_shorts": "King" }, { @@ -36487,8 +36487,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2322V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/12/2023) regarding [51] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/12/2023) regarding [51] DECISION Stipulation/Proffer", "case_name_shorts": "Jasper" }, { @@ -36499,8 +36499,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1534V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/28/2023) regarding [26] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/28/2023) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Hintzke" }, { @@ -36510,9 +36510,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-472V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/28/2023) regarding [46] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0472V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/28/2023) regarding [46] DECISION Stipulation/Proffer", "case_name_shorts": "Hillman" }, { @@ -36522,9 +36522,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-550V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/13/2023) regarding [23] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0550V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/13/2023) regarding [23] Ruling on Entitlement", "case_name_shorts": "Heckathorn" }, { @@ -36534,9 +36534,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-65V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/13/2023) regarding [37] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "22-0065V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/13/2023) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Haas" }, { @@ -36546,9 +36546,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-217V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/10/2023) regarding [34] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0217V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/10/2023) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Glenn" }, { @@ -36559,8 +36559,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1661V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/12/2023) regarding [49] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/12/2023) regarding [49] DECISION Stipulation/Proffer", "case_name_shorts": "Flores" }, { @@ -36570,9 +36570,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-1V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/28/2023) regarding [36] Ruling on Entitlement, Order on Motion for Ruling on the Record. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0001V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/28/2023) regarding [36] Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "Esters" }, { @@ -36583,8 +36583,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1581V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/28/2023) regarding [106] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/28/2023) regarding [106] DECISION of Special Master - Fees", "case_name_shorts": "Durant" }, { @@ -36595,8 +36595,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1279V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/29/2023) regarding [46] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/29/2023) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Dixon" }, { @@ -36606,9 +36606,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-32V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [35] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0032V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [35] DECISION Stipulation/Proffer", "case_name_shorts": "Cicarelli" }, { @@ -36619,8 +36619,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1573V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [54] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [54] DECISION of Special Master - Fees", "case_name_shorts": "Boudreau" }, { @@ -36630,9 +36630,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-860V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/17/2023) regarding [31] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0860V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/17/2023) regarding [31] Ruling on Entitlement", "case_name_shorts": "Bodenbender" }, { @@ -36643,8 +36643,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2072V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [38] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Beck" }, { @@ -36655,8 +36655,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1777V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/10/2023 ) regarding [40] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/10/2023 ) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Ayotte" }, { @@ -36667,8 +36667,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1324V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/06/2023) regarding [19] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/06/2023) regarding [19] Ruling on Entitlement", "case_name_shorts": "Andrews" }, { @@ -36679,8 +36679,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1815V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/28/2023) regarding [34] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/28/2023) regarding [34] DECISION of Special Master - Fees", "case_name_shorts": "Alsip" }, { @@ -36690,9 +36690,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-393V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/16/2023) regarding [26] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0393V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/16/2023) regarding [26] Ruling on Entitlement", "case_name_shorts": "Wilson" }, { @@ -36703,8 +36703,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-1676V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 10/23/2023) regarding [104] DECISION Dismissing Petition. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 10/23/2023) regarding [104] DECISION Dismissing Petition", "case_name_shorts": "Goodwin" }, { @@ -36715,8 +36715,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1416V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 10/20/2023) regarding [90] DECISION of Special Master Signed by Special Master Christian J. Moran. (dksc) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 10/20/2023) regarding [90] DECISION of Special Master", "case_name_shorts": "Brantley" }, { @@ -36727,8 +36727,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1576V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/16/2023) regarding [7] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/16/2023) regarding [7] Order Concluding Proceedings", "case_name_shorts": "Zaidi" }, { @@ -36738,9 +36738,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-221V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/16/2023) regarding [18] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0221V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/16/2023) regarding [18] Order Concluding Proceedings", "case_name_shorts": "Unrath" }, { @@ -36750,9 +36750,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-420V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/10/2023) regarding [42] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0420V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/10/2023) regarding [42] DECISION Stipulation/Proffer", "case_name_shorts": "Nussbaum" }, { @@ -36762,9 +36762,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-223V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/16/2023) regarding [17] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0223V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/16/2023) regarding [17] Order Concluding Proceedings", "case_name_shorts": "Keeshan" }, { @@ -36775,8 +36775,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1421V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/17/2023) regarding [6] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made. (Main Document 8 replaced on 11/15/2023 with correct order) (sw).", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/17/2023) regarding [6] Order Concluding Proceedings", "case_name_shorts": "Jumbo" }, { @@ -36786,9 +36786,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-213V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/16/2023) regarding [18] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0213V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/16/2023) regarding [18] Order Concluding Proceedings", "case_name_shorts": "Hoard" }, { @@ -36798,9 +36798,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-108V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/16/2023) regarding [18] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0108V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/16/2023) regarding [18] Order Concluding Proceedings", "case_name_shorts": "Hass" }, { @@ -36811,8 +36811,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "23-1581V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/16/2023) regarding [7] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/16/2023) regarding [7] Order Concluding Proceedings", "case_name_shorts": "Guzman" }, { @@ -36822,9 +36822,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-220V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/16/2023) regarding [23] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0220V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/16/2023) regarding [23] Order Concluding Proceedings", "case_name_shorts": "Gratovich" }, { @@ -36834,9 +36834,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-109V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/16/2023) regarding [20] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0109V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/16/2023) regarding [20] Order Concluding Proceedings", "case_name_shorts": "Archibald-Romero" }, { @@ -36846,9 +36846,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-538V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/12/2023) regarding [36] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0538V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/12/2023) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Kosma" }, { @@ -36858,9 +36858,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-597V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/11/2023) regarding [30] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0597V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/11/2023) regarding [30] Ruling on Entitlement", "case_name_shorts": "Greene" }, { @@ -36870,9 +36870,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-176V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/13/2023) regarding [30] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0176V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/13/2023) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Fox" }, { @@ -36882,9 +36882,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-541V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/12/2023) regarding [38] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0541V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/12/2023) regarding [38] Ruling on Entitlement", "case_name_shorts": "Emilita" }, { @@ -36895,8 +36895,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1474V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/13/2023) regarding [77] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/13/2023) regarding [77] DECISION Stipulation/Proffer", "case_name_shorts": "Davis" }, { @@ -36907,8 +36907,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1235V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/13/2023 ) regarding [37] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/13/2023 ) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Brummett" }, { @@ -36918,9 +36918,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-81V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/11/2023) regarding [46] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0081V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/11/2023) regarding [46] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -36930,9 +36930,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-765V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/11/2023 ) regarding [74] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "20-0765V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/11/2023 ) regarding [74] DECISION of Special Master - Fees", "case_name_shorts": "Arseneault" }, { @@ -36942,9 +36942,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-326V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/12/2023) regarding [30] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0326V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/12/2023) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Arnold" }, { @@ -36954,9 +36954,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-535V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/18/2023) regarding [32] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "docket_numbers": "22-0535V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/18/2023) regarding [32] DECISION Stipulation/Proffer", "case_name_shorts": "White" }, { @@ -36966,9 +36966,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-454V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/10/2023) regarding [25] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0454V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/10/2023) regarding [25] Ruling on Entitlement", "case_name_shorts": "Pendleton" }, { @@ -36978,9 +36978,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-689V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/13/2023) regarding [37] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0689V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/13/2023) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Pearce" }, { @@ -36991,8 +36991,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1591V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/10/2023) regarding [48] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/10/2023) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "Pachucki" }, { @@ -37002,9 +37002,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-452V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/13/2023) regarding [31] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0452V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/13/2023) regarding [31] Ruling on Entitlement", "case_name_shorts": "Meyer" }, { @@ -37015,8 +37015,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2037V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/11/2023) regarding [48] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/11/2023) regarding [48] DECISION of Special Master - Fees", "case_name_shorts": "McNally" }, { @@ -37026,9 +37026,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-900V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/13/2023) regarding [48] DECISION Stipulation/Proffer (Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0900V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/13/2023) regarding [48] DECISION Stipulation/Proffer", "case_name_shorts": "McKEEHAN" }, { @@ -37039,8 +37039,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1916V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/11/2023) regarding [30] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/11/2023) regarding [30] Ruling on Entitlement", "case_name_shorts": "Mazlin" }, { @@ -37050,9 +37050,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-292V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/10/2023) regarding [45] Ruling on Entitlement, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0292V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/10/2023) regarding [45] Ruling on Entitlement", "case_name_shorts": "King" }, { @@ -37062,9 +37062,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-193V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/10/2023) regarding [34] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0193V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/10/2023) regarding [34] DECISION Stipulation/Proffer", "case_name_shorts": "Jones" }, { @@ -37074,9 +37074,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-671V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/13/2023) regarding [46] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0671V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/13/2023) regarding [46] DECISION Stipulation/Proffer", "case_name_shorts": "Gonzalez" }, { @@ -37087,8 +37087,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1951V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/11/2023) regarding [50] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/11/2023) regarding [50] DECISION of Special Master - Fees", "case_name_shorts": "Danso-Danquah" }, { @@ -37098,9 +37098,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-621V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/12/2023) regarding [36] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0621V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/12/2023) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Crysler-Ehlen" }, { @@ -37110,9 +37110,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-189V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [42] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "22-0189V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/17/2023) regarding [42] DECISION Stipulation/Proffer", "case_name_shorts": "Carron" }, { @@ -37123,8 +37123,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1358V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/10/2023) regarding [53] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/10/2023) regarding [53] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -37134,9 +37134,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-812V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/11/2023) regarding [27] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0812V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/11/2023) regarding [27] Ruling on Entitlement", "case_name_shorts": "Brugueras" }, { @@ -37147,8 +37147,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1078V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/10/2023) regarding [40] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/10/2023) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Britt" }, { @@ -37158,9 +37158,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-51V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/06/2023) regarding [40] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0051V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/06/2023) regarding [40] DECISION of Special Master", "case_name_shorts": "Brennom" }, { @@ -37170,9 +37170,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-113V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/12/2023) regarding [34] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0113V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/12/2023) regarding [34] Ruling on Entitlement", "case_name_shorts": "Boyd" }, { @@ -37183,8 +37183,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1215V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/10/2023) regarding [53] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/10/2023) regarding [53] DECISION of Special Master - Fees", "case_name_shorts": "Baldwin" }, { @@ -37195,8 +37195,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1645V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/11/2023) regarding [40] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/11/2023) regarding [40] DECISION of Special Master - Fees", "case_name_shorts": "Anderson" }, { @@ -37207,8 +37207,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2040V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/12/2023) regarding [38] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/12/2023) regarding [38] DECISION of Special Master - Fees", "case_name_shorts": "Qiu" }, { @@ -37219,8 +37219,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-1273V", - "judges": "D. Horner", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 8/21/2023) regarding [156] Order on Motion to Alter or Amend Judgment. Signed by Special Master Daniel T. Horner. (ksb) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 8/21/2023) regarding [156] Order on Motion to Alter or Amend Judgment", "case_name_shorts": "PUTNAM" }, { @@ -37230,9 +37230,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-109V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/05/2023) regarding [48] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0109V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/05/2023) regarding [48] DECISION Stipulation/Proffer", "case_name_shorts": "Lasak" }, { @@ -37242,9 +37242,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-699V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/05/2023) regarding [31] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0699V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/05/2023) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Conn" }, { @@ -37254,9 +37254,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-100V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/05/2023) regarding [23] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0100V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/05/2023) regarding [23] Ruling on Entitlement", "case_name_shorts": "Brent" }, { @@ -37266,9 +37266,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-698V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/06/2023 ) regarding [42] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0698V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/06/2023 ) regarding [42] DECISION Stipulation/Proffer", "case_name_shorts": "Bean" }, { @@ -37278,9 +37278,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-873V", - "judges": "D. Horner", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/16/2023) regarding [55] Ruling on Entitlement. Signed by Special Master Daniel T. Horner. (sh) Service on parties made.", + "docket_numbers": "20-0873V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/16/2023) regarding [55] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -37290,9 +37290,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-61V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/10/2023) regarding [45] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "21-0061V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/10/2023) regarding [45] DECISION of Special Master", "case_name_shorts": "" }, { @@ -37302,9 +37302,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-768V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 10/03/2023) regarding [42] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "docket_numbers": "20-0768V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 10/03/2023) regarding [42] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "MAYNARD" }, { @@ -37314,9 +37314,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-384V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 10/13/2023) regarding [93] DECISION Stipulation/Proffer. Signed by Special Master Daniel T. Horner. (sh) Service on parties made.", + "docket_numbers": "19-0384V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 10/13/2023) regarding [93] DECISION Stipulation/Proffer", "case_name_shorts": "Hill" }, { @@ -37327,8 +37327,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1307V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 09/28/2023) regarding [42] DECISION Stipulation. Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 09/28/2023) regarding [42] DECISION Stipulation", "case_name_shorts": "Goode" }, { @@ -37339,8 +37339,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1811V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 10/11/2023) regarding [37] DECISION of Special Master. Signed by Special Master Daniel T. Horner. (sh) Service on parties made. Petitioner served via first class mail on 11.07.2023 (cam). Modified on 11/7/2023 (cam).", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 10/11/2023) regarding [37] DECISION of Special Master", "case_name_shorts": "Wu" }, { @@ -37350,9 +37350,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-385V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/02/2023 ) regarding [28] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0385V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/02/2023 ) regarding [28] DECISION Stipulation/Proffer", "case_name_shorts": "Whiddon" }, { @@ -37362,9 +37362,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-398V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/05/2023) regarding [47] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "20-0398V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/05/2023) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Washburn" }, { @@ -37374,9 +37374,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-532V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/04/2023) regarding [27] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0532V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/04/2023) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Shaw" }, { @@ -37386,9 +37386,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-507V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/05/2023) regarding [26] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "19-0507V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/05/2023) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Samble" }, { @@ -37398,9 +37398,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-743V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/05/2023) regarding [20] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0743V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/05/2023) regarding [20] DECISION Stipulation/Proffer", "case_name_shorts": "Pierce" }, { @@ -37410,9 +37410,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-79V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/06/2023) regarding [30] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0079V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/06/2023) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Phoneprasith" }, { @@ -37423,8 +37423,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1690V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/06/2023) regarding [41] DECISION of Special Master (Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/06/2023) regarding [41] DECISION of Special Master", "case_name_shorts": "Pappas" }, { @@ -37434,9 +37434,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-854V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/06/2023) regarding [32] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0854V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/06/2023) regarding [32] Ruling on Entitlement", "case_name_shorts": "Norville" }, { @@ -37447,8 +37447,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-1192V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 10/10/2023) regarding [85] DECISION of Special Master. Signed by Special Master Mindy Michaels Roth. (dkj) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 10/10/2023) regarding [85] DECISION of Special Master", "case_name_shorts": "McFadden" }, { @@ -37458,9 +37458,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-246V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/04/2023) regarding [40] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0246V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/04/2023) regarding [40] Ruling on Entitlement", "case_name_shorts": "Lindsey" }, { @@ -37471,8 +37471,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1870V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/03/2023) regarding [23] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/03/2023) regarding [23] Ruling on Entitlement", "case_name_shorts": "Li" }, { @@ -37482,9 +37482,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-601V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/06/2023) regarding [23] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0601V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/06/2023) regarding [23] Ruling on Entitlement", "case_name_shorts": "Kauterman" }, { @@ -37494,9 +37494,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-596V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/06/2023) regarding [32] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0596V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/06/2023) regarding [32] Ruling on Entitlement", "case_name_shorts": "Hartz" }, { @@ -37506,9 +37506,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-127V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/06/2023) regarding [37] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "20-0127V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/06/2023) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Fletcher" }, { @@ -37518,9 +37518,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-76V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/04/2023) regarding [30] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0076V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/04/2023) regarding [30] Ruling on Entitlement", "case_name_shorts": "Fields" }, { @@ -37530,9 +37530,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-716V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/03/2023 ) regarding [29] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0716V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/03/2023 ) regarding [29] Ruling on Entitlement", "case_name_shorts": "Ervin" }, { @@ -37542,9 +37542,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-503V", - "judges": "D. Horner", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/12/2023) regarding [47] Findings of Fact & Conclusions of Law. Signed by Special Master Daniel T. Horner. (sh) Service on parties made.", + "docket_numbers": "20-0503V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/12/2023) regarding [47] Findings of Fact & Conclusions of Law", "case_name_shorts": "" }, { @@ -37554,9 +37554,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-699V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/05/2023) regarding [30] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0699V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/05/2023) regarding [30] Ruling on Entitlement", "case_name_shorts": "Conn" }, { @@ -37567,8 +37567,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1343V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/05/2023) regarding [57] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/05/2023) regarding [57] DECISION of Special Master - Fees", "case_name_shorts": "Cantrell" }, { @@ -37579,8 +37579,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1197V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/06/2023) regarding [44] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/06/2023) regarding [44] DECISION of Special Master", "case_name_shorts": "Benz" }, { @@ -37590,9 +37590,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-698V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/06/2023) regarding [41] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "21-0698V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/06/2023) regarding [41] Ruling on Entitlement", "case_name_shorts": "Bean" }, { @@ -37603,8 +37603,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1054V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/03/2023) regarding [27] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made. (Main Document 31 replaced on 11/7/2023 to attach corrected PDF) (ypb).", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/03/2023) regarding [27] DECISION Stipulation/Proffer", "case_name_shorts": "Baker" }, { @@ -37615,8 +37615,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1774V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/04/2023) regarding [37] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/04/2023) regarding [37] DECISION Stipulation/Proffer", "case_name_shorts": "Allen" }, { @@ -37627,8 +37627,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1193V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/05/2023) regarding [52] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/05/2023) regarding [52] DECISION of Special Master - Fees", "case_name_shorts": "Abdulkadir" }, { @@ -37639,8 +37639,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1433V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 10/12/23) regarding [75] DECISION of Special Master Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 10/12/23) regarding [75] DECISION of Special Master", "case_name_shorts": "Stoev" }, { @@ -37650,9 +37650,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-466V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 10/12/23) regarding [170] DECISION of Special Master Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "16-0466V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 10/12/23) regarding [170] DECISION of Special Master", "case_name_shorts": "ROSE" }, { @@ -37662,9 +37662,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-465V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 10/12/23) regarding [188] DECISION of Special Master Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "16-0465V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 10/12/23) regarding [188] DECISION of Special Master", "case_name_shorts": "ROSE" }, { @@ -37674,9 +37674,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-396V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/03/2023) regarding [26] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0396V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/03/2023) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Precil" }, { @@ -37687,8 +37687,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1671V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/03/2023) regarding [45] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/03/2023) regarding [45] DECISION Stipulation/Proffer", "case_name_shorts": "Mohnal" }, { @@ -37698,9 +37698,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-266V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/04/2023) regarding [28] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0266V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/04/2023) regarding [28] Ruling on Entitlement", "case_name_shorts": "McCleary" }, { @@ -37710,9 +37710,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-192V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/04/2023) regarding [47] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0192V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/04/2023) regarding [47] DECISION Stipulation/Proffer", "case_name_shorts": "Maxheimer" }, { @@ -37722,9 +37722,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-192V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/04/23) regarding [46] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0192V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/04/23) regarding [46] Ruling on Entitlement", "case_name_shorts": "Maxheimer" }, { @@ -37734,9 +37734,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-161V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/6/23) regarding [16] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0161V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/6/23) regarding [16] Order Concluding Proceedings", "case_name_shorts": "Zuggi" }, { @@ -37746,9 +37746,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-735V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 9/29/23) regarding [64] DECISION of Special Master - Fees Signed by Special Master Thomas L. Gowen. (jm) Service on parties made.", + "docket_numbers": "19-0735V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 9/29/23) regarding [64] DECISION of Special Master - Fees", "case_name_shorts": "Zhao" }, { @@ -37759,8 +37759,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2026V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 10/5/2023) regarding [31] DECISION of Special Master - Stipulation. Signed by Special Master Katherine E. Oler. (emh) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 10/5/2023) regarding [31] DECISION of Special Master - Stipulation", "case_name_shorts": "Yu" }, { @@ -37770,9 +37770,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-815V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 9/19/23) regarding [72] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "docket_numbers": "19-0815V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 9/19/23) regarding [72] DECISION of Special Master - Fees", "case_name_shorts": "Winkelstein" }, { @@ -37782,9 +37782,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-746V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 9/27/23) regarding [76] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "docket_numbers": "19-0746V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 9/27/23) regarding [76] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -37794,9 +37794,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-508V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/02/2023) regarding [46] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "20-0508V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/02/2023) regarding [46] DECISION of Special Master", "case_name_shorts": "Taylor" }, { @@ -37806,9 +37806,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-195V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 09/13/23) regarding [112] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "docket_numbers": "19-0195V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 09/13/23) regarding [112] DECISION of Special Master - Fees", "case_name_shorts": "Stolec" }, { @@ -37818,9 +37818,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-498V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 9/26/2023) regarding [36] DECISION of Special Master - Stipulation. Signed by Special Master Katherine E. Oler. (emh) Service on parties made.", + "docket_numbers": "22-0498V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 9/26/2023) regarding [36] DECISION of Special Master - Stipulation", "case_name_shorts": "" }, { @@ -37830,9 +37830,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-619V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 9/25/2023) regarding [71] DECISION of Special Master - Interim Attorneys&039; Fees. Signed by Special Master Katherine E. Oler. (emh) Service on parties made.", + "docket_numbers": "18-0619V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 9/25/2023) regarding [71] DECISION of Special Master - Interim Attorneys&039; Fees", "case_name_shorts": "Schwarz" }, { @@ -37843,8 +37843,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "16-1468V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 9/28/23) regarding [126] DECISION of Special Master - Fees Signed by Special Master Katherine E. Oler. (jm) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 9/28/23) regarding [126] DECISION of Special Master - Fees", "case_name_shorts": "Ross" }, { @@ -37855,8 +37855,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1257V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 9/26/23) regarding [218] DECISION of Special Master - Fees Signed by Special Master Katherine E. Oler. (jm) Service on parties made.", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 9/26/23) regarding [218] DECISION of Special Master - Fees", "case_name_shorts": "Reinhardt" }, { @@ -37866,9 +37866,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-968V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 9/28/2023) regarding [56] DECISION of Special Master - Interim Attorneys&039; Fees. Signed by Special Master Katherine E. Oler. (emh) Service on parties made.", + "docket_numbers": "20-0968V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 9/28/2023) regarding [56] DECISION of Special Master - Interim Attorneys&039; Fees", "case_name_shorts": "Reese" }, { @@ -37878,9 +37878,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-169V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/6/2023) regarding [16] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0169V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/6/2023) regarding [16] Order Concluding Proceedings", "case_name_shorts": "Phillippi" }, { @@ -37890,9 +37890,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-999V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 9/28/23) regarding [91] DECISION of Special Master - Fees Signed by Special Master Thomas L. Gowen. (jm) Service on parties made.", + "docket_numbers": "18-0999V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 9/28/23) regarding [91] DECISION of Special Master - Fees", "case_name_shorts": "Perez" }, { @@ -37903,8 +37903,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1919V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/02/2023) regarding [31] Findings of Fact & Conclusions of Law, Scheduling Order. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/02/2023) regarding [31] Findings of Fact & Conclusions of Law, Scheduling Order", "case_name_shorts": "Patterson" }, { @@ -37914,9 +37914,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-140V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/6/2023) regarding [18] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0140V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/6/2023) regarding [18] Order Concluding Proceedings", "case_name_shorts": "Orton" }, { @@ -37926,9 +37926,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-217V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/02/2023) regarding [48] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0217V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/02/2023) regarding [48] DECISION Stipulation/Proffer", "case_name_shorts": "Morgan" }, { @@ -37938,9 +37938,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-168V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/6/2023) regarding [16] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0168V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/6/2023) regarding [16] Order Concluding Proceedings", "case_name_shorts": "Mercer" }, { @@ -37951,8 +37951,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1152V", - "judges": "M. Roth", - "summaries": "PUBLIC DECISION (Originally filed: 09/29/23) regarding [45] DECISION of Special Master - Fees Signed by Special Master Mindy Michaels Roth. (jm) Service on parties made.", + "judges": "Mindy Michaels Roth", + "summaries": "PUBLIC DECISION (Originally filed: 09/29/23) regarding [45] DECISION of Special Master - Fees", "case_name_shorts": "Lenox" }, { @@ -37962,9 +37962,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-837V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 9/7/23) regarding [129] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "docket_numbers": "17-0837V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 9/7/23) regarding [129] DECISION of Special Master - Fees", "case_name_shorts": "Langley" }, { @@ -37974,9 +37974,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-721V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 9/15/23) regarding [92] DECISION of Special Master - Fees Signed by Special Master Katherine E. Oler. (jm) Service on parties made.", + "docket_numbers": "17-0721V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 9/15/23) regarding [92] DECISION of Special Master - Fees", "case_name_shorts": "Henry" }, { @@ -37986,9 +37986,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-141V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/6/2023) regarding [19] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0141V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/6/2023) regarding [19] Order Concluding Proceedings", "case_name_shorts": "Grabish" }, { @@ -37998,9 +37998,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-422V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 9/8/23) regarding [76] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "docket_numbers": "19-0422V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 9/8/23) regarding [76] DECISION of Special Master - Fees", "case_name_shorts": "Gapen" }, { @@ -38010,9 +38010,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-177V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/6/2023) regarding [17] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0177V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 10/6/2023) regarding [17] Order Concluding Proceedings", "case_name_shorts": "Ford" }, { @@ -38022,9 +38022,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-461V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 9/29/23) regarding [106] DECISION of Special Master - Fees Signed by Special Master Nora Beth Dorsey. (jm) Service on parties made.", + "docket_numbers": "18-0461V", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 9/29/23) regarding [106] DECISION of Special Master - Fees", "case_name_shorts": "ENGEL" }, { @@ -38034,9 +38034,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-904V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/28/2023) regarding [22] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0904V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/28/2023) regarding [22] DECISION Stipulation/Proffer", "case_name_shorts": "Delaney" }, { @@ -38046,9 +38046,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-531V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/02/2023) regarding [39] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0531V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/02/2023) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Crowder" }, { @@ -38059,8 +38059,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1251V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 9/22/2023) regarding [69] DECISION of Special Master - Fees, Signed by Special Master Christian J. Moran. (jm) Service on parties made.", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 9/22/2023) regarding [69] DECISION of Special Master - Fees", "case_name_shorts": "CLOYD" }, { @@ -38070,9 +38070,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-834V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 10/11/2023) regarding [48] DECISION of Special Master - Interim Attorneys&039; Fees. Signed by Special Master Katherine E. Oler. (emh) Service on parties made.", + "docket_numbers": "20-0834V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 10/11/2023) regarding [48] DECISION of Special Master - Interim Attorneys&039; Fees", "case_name_shorts": "Buchman" }, { @@ -38082,9 +38082,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-701V", - "judges": "K. Oler", - "summaries": "PUBLIC DECISION (Originally filed: 9/29/2023) regarding [105] DECISION of Special Master - Proffer. Signed by Special Master Katherine E. Oler. (sl) Service on parties made.", + "docket_numbers": "16-0701V", + "judges": "Katherine E. Oler", + "summaries": "PUBLIC DECISION (Originally filed: 9/29/2023) regarding [105] DECISION of Special Master - Proffer", "case_name_shorts": "Antalosky" }, { @@ -38095,8 +38095,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1875V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/26/2023) regarding [35] DECISION Stipulation/Proffer ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/26/2023) regarding [35] DECISION Stipulation/Proffer", "case_name_shorts": "Scatchard" }, { @@ -38107,8 +38107,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "17-1890V", - "judges": "H. Sanders", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/29/2023) regarding [51] Ruling on Entitlement. Signed by Special Master Herbrina Sanders. (rig) Service on parties made.", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/29/2023) regarding [51] Ruling on Entitlement", "case_name_shorts": "Jones" }, { @@ -38118,9 +38118,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "17-714V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 09/29/2023) regarding [86] DECISION of Special Master. Signed by Special Master Herbrina Sanders. (rig) Service on parties made.", + "docket_numbers": "17-0714V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 09/29/2023) regarding [86] DECISION of Special Master", "case_name_shorts": "Farag" }, { @@ -38130,9 +38130,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-580V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/27/2023) regarding [26] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0580V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/27/2023) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Anderson" }, { @@ -38142,9 +38142,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-307V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/29/2023) regarding [44] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "19-0307V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/29/2023) regarding [44] DECISION of Special Master - Fees", "case_name_shorts": "Welsh" }, { @@ -38155,8 +38155,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1235V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 10/6/2023) regarding [65] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Daniel T. Horner. (sh) Service on parties made.", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 10/6/2023) regarding [65] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Sonnenburg" }, { @@ -38167,8 +38167,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2003V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/25/2003) regarding [35] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/25/2003) regarding [35] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -38179,8 +38179,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1875V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/26/2023) regarding [34] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/26/2023) regarding [34] Ruling on Entitlement", "case_name_shorts": "Scatchard" }, { @@ -38190,9 +38190,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-213V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/28/2023) regarding [41] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "21-0213V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/28/2023) regarding [41] DECISION of Special Master - Fees", "case_name_shorts": "Nalwoga" }, { @@ -38203,8 +38203,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1743V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/28/2023) regarding [39] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/28/2023) regarding [39] Ruling on Entitlement", "case_name_shorts": "Mullen" }, { @@ -38214,9 +38214,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-946V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/29/2023) regarding [38] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (kp) Service on parties made.", + "docket_numbers": "21-0946V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/29/2023) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -38227,8 +38227,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-1959V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/25/2023) regarding [58] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/25/2023) regarding [58] Ruling on Entitlement", "case_name_shorts": "Hogan" }, { @@ -38238,9 +38238,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-622V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/26/2023) regarding [21] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0622V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/26/2023) regarding [21] Ruling on Entitlement", "case_name_shorts": "Brown" }, { @@ -38251,8 +38251,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1844V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/13/2023) regarding [36] Ruling on Entitlement,, Order on Motion for Ruling on the Record, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/13/2023) regarding [36] Ruling on Entitlement,, Order on Motion for Ruling on the Record", "case_name_shorts": "Brennan" }, { @@ -38263,8 +38263,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1058V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/28/2023) regarding [51] Ruling on Entitlement, DECISION of Special Master, PUBLIC DECISION (Originally filed: 09/28/2023) regarding [51] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/28/2023) regarding [51] Ruling on Entitlement, DECISION of Special Master, PUBLIC DECISION (Originally filed: 09/28/2023) regarding [51] DECISION of Special Master", "case_name_shorts": "Brantley-Karasinski" }, { @@ -38275,8 +38275,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1058V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/28/2023) regarding [51] Ruling on Entitlement, DECISION of Special Master, PUBLIC DECISION (Originally filed: 09/28/2023) regarding [51] DECISION of Special Master ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/28/2023) regarding [51] Ruling on Entitlement, DECISION of Special Master, PUBLIC DECISION (Originally filed: 09/28/2023) regarding [51] DECISION of Special Master", "case_name_shorts": "Brantley-Karasinski" }, { @@ -38287,8 +38287,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1123V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/29/2023) regarding [59] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/29/2023) regarding [59] DECISION Stipulation/Proffer", "case_name_shorts": "Baxter" }, { @@ -38298,9 +38298,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-619V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/26/2023) regarding [47] DECISION Stipulation/Proffer, ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made. (Main Document 51 replaced on 10/31/2023 to correct the pdf.) (fm).", + "docket_numbers": "21-0619V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/26/2023) regarding [47] DECISION Stipulation/Proffer", "case_name_shorts": "Armenta" }, { @@ -38310,9 +38310,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-580V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/27/2023) regarding [25] Ruling on Entitlement ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "docket_numbers": "22-0580V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/27/2023) regarding [25] Ruling on Entitlement", "case_name_shorts": "Anderson" }, { @@ -38322,9 +38322,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-290V", - "judges": "D. Horner", - "summaries": "PUBLIC DECISION (Originally filed: 10/6/2023) regarding [46] DECISION of Special Master - Fees. Signed by Special Master Daniel T. Horner. (sh) Service on parties made.", + "docket_numbers": "20-0290V", + "judges": "Daniel T. Horner", + "summaries": "PUBLIC DECISION (Originally filed: 10/6/2023) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Amin" }, { @@ -38335,8 +38335,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2279V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/28/2023) regarding [39] DECISION of Special Master - Fees ( Signed by Chief Special Master Brian H. Corcoran. )(mpj) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/28/2023) regarding [39] DECISION of Special Master - Fees", "case_name_shorts": "Abraham" }, { @@ -38347,8 +38347,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2226V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/28/2023) regarding [47] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/28/2023) regarding [47] DECISION of Special Master - Fees", "case_name_shorts": "Zakoo" }, { @@ -38359,8 +38359,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1306V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/28/2023) regarding [29] Ruling on Entitlement, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/28/2023) regarding [29] Ruling on Entitlement", "case_name_shorts": "Yanovsky" }, { @@ -38371,8 +38371,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1774V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/03/2023) regarding [59] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (ag) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/03/2023) regarding [59] DECISION of Special Master - Fees", "case_name_shorts": "" }, { @@ -38382,9 +38382,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-705V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/28/2023) regarding [39] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0705V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/28/2023) regarding [39] Ruling on Entitlement", "case_name_shorts": "Snoddy" }, { @@ -38394,9 +38394,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-903V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/26/2023) regarding [38] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0903V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/26/2023) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Romeo" }, { @@ -38407,8 +38407,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1602V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/02/2023) regarding [124] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/02/2023) regarding [124] DECISION of Special Master - Fees", "case_name_shorts": "Nieves" }, { @@ -38418,9 +38418,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "16-859V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 09/27/2023) regarding [145] DECISION on Stipulation. Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "docket_numbers": "16-0859V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 09/27/2023) regarding [145] DECISION on Stipulation", "case_name_shorts": "Mekwinski" }, { @@ -38430,9 +38430,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-128V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/28/2023) regarding [43] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0128V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/28/2023) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "Lung" }, { @@ -38443,8 +38443,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1390V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/29/2023) regarding [24] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/29/2023) regarding [24] Ruling on Entitlement", "case_name_shorts": "Kilgore" }, { @@ -38454,9 +38454,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-298V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 10/02/2023) regarding [33] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (mva) Service on parties made.", + "docket_numbers": "22-0298V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 10/02/2023) regarding [33] DECISION of Special Master - Fees", "case_name_shorts": "Kabayan" }, { @@ -38467,8 +38467,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1012V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/29/2023) regarding [39] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/29/2023) regarding [39] Ruling on Entitlement", "case_name_shorts": "Hamilton" }, { @@ -38478,9 +38478,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-207V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/29/2023) regarding [33] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0207V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/29/2023) regarding [33] DECISION Stipulation/Proffer", "case_name_shorts": "Grue" }, { @@ -38490,9 +38490,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-862V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/27/2023) regarding [48] Findings of Fact & Conclusions of Law, Scheduling Order. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "20-0862V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/27/2023) regarding [48] Findings of Fact & Conclusions of Law, Scheduling Order", "case_name_shorts": "French" }, { @@ -38502,9 +38502,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-904V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/28/2023) regarding [21] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0904V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/28/2023) regarding [21] Ruling on Entitlement", "case_name_shorts": "Delaney" }, { @@ -38514,9 +38514,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "18-679V", - "judges": "T. Gowen", - "summaries": "PUBLIC DECISION (Originally filed: 09/08/2023) regarding [99] DECISION of Special Master - Interim Attorney&039;s Fees. Signed by Special Master Thomas L. Gowen. (hs) Service on parties made.", + "docket_numbers": "18-0679V", + "judges": "Thomas L. Gowen", + "summaries": "PUBLIC DECISION (Originally filed: 09/08/2023) regarding [99] DECISION of Special Master - Interim Attorney&039;s Fees", "case_name_shorts": "Billing" }, { @@ -38527,8 +38527,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1655V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/25/2023) regarding [39] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/25/2023) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "Wilson" }, { @@ -38538,9 +38538,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-466V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/26/2023) regarding [36] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0466V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/26/2023) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Wilmouth" }, { @@ -38551,8 +38551,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1526V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/25/2023) regarding [27] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/25/2023) regarding [27] Ruling on Entitlement", "case_name_shorts": "Walden" }, { @@ -38562,9 +38562,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-404V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/22/2023) regarding [43] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "20-0404V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/22/2023) regarding [43] DECISION of Special Master - Fees", "case_name_shorts": "Underwood" }, { @@ -38575,8 +38575,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1879V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/22/2023) regarding [46] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/22/2023) regarding [46] DECISION of Special Master - Fees", "case_name_shorts": "Strobl" }, { @@ -38587,8 +38587,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1353V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/22/2023) regarding [49] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kp) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/22/2023) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "Schuehrer" }, { @@ -38598,9 +38598,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-47V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/22/2023) regarding [37] Ruling on Entitlement, Order on Motion for Ruling on the Record. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0047V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/22/2023) regarding [37] Ruling on Entitlement, Order on Motion for Ruling on the Record", "case_name_shorts": "Schmaltz" }, { @@ -38610,9 +38610,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-903V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/26/2023) regarding [37] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "21-0903V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/26/2023) regarding [37] Ruling on Entitlement", "case_name_shorts": "Romeo" }, { @@ -38622,9 +38622,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-347V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/30/2023) regarding [39] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (kp) Service on parties made.", + "docket_numbers": "21-0347V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/30/2023) regarding [39] DECISION Stipulation/Proffer", "case_name_shorts": "" }, { @@ -38635,8 +38635,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "19-2020V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/22/2023) regarding [42] Findings of Fact & Conclusions of Law. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/22/2023) regarding [42] Findings of Fact & Conclusions of Law", "case_name_shorts": "Rivas" }, { @@ -38647,8 +38647,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2015V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/11/2023) regarding [43] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kp) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/11/2023) regarding [43] Ruling on Entitlement", "case_name_shorts": "Quenneville" }, { @@ -38658,9 +38658,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-351V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/02/2023) regarding [38] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kp) Service on parties made.", + "docket_numbers": "21-0351V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/02/2023) regarding [38] DECISION of Special Master", "case_name_shorts": "Pozil" }, { @@ -38671,8 +38671,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2320V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/22/2023) regarding [30] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kp) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/22/2023) regarding [30] DECISION Stipulation/Proffer", "case_name_shorts": "Peterson" }, { @@ -38682,9 +38682,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-998V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/28/2023) regarding [42] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kp) Service on parties made. (Main Document 49 replaced on 11/1/2023 to correct PDF)(ypb).", + "docket_numbers": "21-0998V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/28/2023) regarding [42] DECISION Stipulation/Proffer", "case_name_shorts": "Perez" }, { @@ -38695,8 +38695,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1996V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/26/2023) regarding [46] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/26/2023) regarding [46] DECISION Stipulation/Proffer", "case_name_shorts": "Noa" }, { @@ -38706,9 +38706,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-660V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/18/2023) regarding [38] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kp) Service on parties made.", + "docket_numbers": "21-0660V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/18/2023) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Newdall" }, { @@ -38719,8 +38719,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1319V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/31/2023) regarding [85] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kp) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/31/2023) regarding [85] DECISION of Special Master - Fees", "case_name_shorts": "Moreland" }, { @@ -38730,9 +38730,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-683V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/22/2023) regarding [49] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kp) Service on parties made.", + "docket_numbers": "20-0683V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/22/2023) regarding [49] DECISION of Special Master - Fees", "case_name_shorts": "McNulty" }, { @@ -38743,8 +38743,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1232V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/21/2023) regarding [33] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/21/2023) regarding [33] Ruling on Entitlement", "case_name_shorts": "Matheny" }, { @@ -38755,8 +38755,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1608V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 07/08/2022) regarding [62] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kp) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 07/08/2022) regarding [62] DECISION Stipulation/Proffer", "case_name_shorts": "M" }, { @@ -38766,9 +38766,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-972V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/05/2023) regarding [38] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kp) Service on parties made.", + "docket_numbers": "21-0972V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/05/2023) regarding [38] Ruling on Entitlement", "case_name_shorts": "Lang" }, { @@ -38778,9 +38778,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-920V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/18/2023) regarding [37] DECISION of Special Master - Fees. Signed by Chief Special Master Brian H. Corcoran. (kp) Service on parties made.", + "docket_numbers": "21-0920V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/18/2023) regarding [37] DECISION of Special Master - Fees", "case_name_shorts": "Lalla" }, { @@ -38790,9 +38790,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-682V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/30/2023) regarding [41] Findings of Fact & Conclusions of Law. Signed by Chief Special Master Brian H. Corcoran. (kp) Service on parties made.", + "docket_numbers": "19-0682V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/30/2023) regarding [41] Findings of Fact & Conclusions of Law", "case_name_shorts": "Laird" }, { @@ -38802,9 +38802,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-946V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/28/2023) regarding [35] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kp) Service on parties made.", + "docket_numbers": "21-0946V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/28/2023) regarding [35] Ruling on Entitlement", "case_name_shorts": "" }, { @@ -38814,9 +38814,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-709V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/22/2023) regarding [38] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0709V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/22/2023) regarding [38] DECISION Stipulation/Proffer", "case_name_shorts": "Iovino-Schoenfeld" }, { @@ -38827,8 +38827,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1104V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/29/2023) regarding [52] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kp) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/29/2023) regarding [52] DECISION Stipulation/Proffer", "case_name_shorts": "Hooks" }, { @@ -38838,9 +38838,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-269V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/23/2023) regarding [34] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kp) Service on parties made.", + "docket_numbers": "21-0269V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/23/2023) regarding [34] Ruling on Entitlement", "case_name_shorts": "Hazard" }, { @@ -38851,8 +38851,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "22-1552V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/07/2023) regarding [20] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kp) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/07/2023) regarding [20] Ruling on Entitlement", "case_name_shorts": "Grebb" }, { @@ -38862,9 +38862,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-376V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/20/2023) regarding [36] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0376V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/20/2023) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Graczyk" }, { @@ -38875,8 +38875,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1196V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/21/2023) regarding [51] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/21/2023) regarding [51] Ruling on Entitlement", "case_name_shorts": "Flores" }, { @@ -38886,9 +38886,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-752V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/26/2023) regarding [21] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "22-0752V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/26/2023) regarding [21] Ruling on Entitlement", "case_name_shorts": "Fletcher" }, { @@ -38898,9 +38898,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-138V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/26/2023) regarding [21] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "docket_numbers": "23-0138V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/26/2023) regarding [21] Ruling on Entitlement", "case_name_shorts": "Fiumara" }, { @@ -38911,8 +38911,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1832V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/27/2023) regarding [47] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/27/2023) regarding [47] DECISION Stipulation/Proffer", "case_name_shorts": "Fey" }, { @@ -38923,8 +38923,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1832V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/21/2023) regarding [44] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/21/2023) regarding [44] Ruling on Entitlement", "case_name_shorts": "Fey" }, { @@ -38934,9 +38934,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-130V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/23/2023) regarding [37] DECISION of Special Master. Signed by Chief Special Master Brian H. Corcoran. (kp) Service on parties made.", + "docket_numbers": "21-0130V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/23/2023) regarding [37] DECISION of Special Master", "case_name_shorts": "Eskenazi" }, { @@ -38947,8 +38947,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "18-1514V", - "judges": "N. Dorsey", - "summaries": "PUBLIC DECISION (Originally filed: 10/2/2023) regarding [109] DECISION Stipulation. Signed by Special Master Nora Beth Dorsey. (kis) Service on parties made.", + "judges": "Nora Beth Dorsey", + "summaries": "PUBLIC DECISION (Originally filed: 10/2/2023) regarding [109] DECISION Stipulation", "case_name_shorts": "Dowdell" }, { @@ -38958,9 +38958,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-502V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 08/02/2023) regarding [44] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kp) Service on parties made.", + "docket_numbers": "21-0502V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 08/02/2023) regarding [44] DECISION Stipulation/Proffer", "case_name_shorts": "Delgado" }, { @@ -38971,8 +38971,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1702V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/08/2023) regarding [58] DECISION Stipulation/Proffer. Signed by Chief Special Master Brian H. Corcoran. (kp) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/08/2023) regarding [58] DECISION Stipulation/Proffer", "case_name_shorts": "Darroca" }, { @@ -38982,9 +38982,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-504V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/29/2023) regarding [24] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kp) Service on parties made.", + "docket_numbers": "22-0504V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 08/29/2023) regarding [24] Ruling on Entitlement", "case_name_shorts": "Chisholm" }, { @@ -38994,9 +38994,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-594V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/20/2023) regarding [40] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kle) Service on parties made.", + "docket_numbers": "21-0594V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/20/2023) regarding [40] Ruling on Entitlement", "case_name_shorts": "Camire" }, { @@ -39006,9 +39006,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-577V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/18/2023) regarding [25] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (kp) Service on parties made.", + "docket_numbers": "22-0577V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/18/2023) regarding [25] Ruling on Entitlement", "case_name_shorts": "Bier" }, { @@ -39018,9 +39018,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-363V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/27/2023) regarding [43] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0363V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/27/2023) regarding [43] DECISION Stipulation/Proffer", "case_name_shorts": "Bent" }, { @@ -39030,9 +39030,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-394V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/26/2023) regarding [35] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "22-0394V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/26/2023) regarding [35] DECISION Stipulation/Proffer", "case_name_shorts": "Schory" }, { @@ -39042,9 +39042,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-424V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 09/02/2022) regarding [67] DECISION Stipulation/Proffer Signed by Special Master Christian J. Moran. (ceo) Service on parties made.", + "docket_numbers": "20-0424V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 09/02/2022) regarding [67] DECISION Stipulation/Proffer", "case_name_shorts": "Myers" }, { @@ -39054,9 +39054,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-581V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/25/2023) regarding [31] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0581V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/25/2023) regarding [31] DECISION Stipulation/Proffer", "case_name_shorts": "Momchilovich" }, { @@ -39066,9 +39066,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-107V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/29/2023) regarding [22] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0107V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/29/2023) regarding [22] Order Concluding Proceedings", "case_name_shorts": "Heisey" }, { @@ -39079,8 +39079,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-1077V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/25/2023) regarding [32] Ruling on Entitlement. Signed by Chief Special Master Brian H. Corcoran. (tlf) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/25/2023) regarding [32] Ruling on Entitlement", "case_name_shorts": "Carter" }, { @@ -39090,9 +39090,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-155V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/26/2023) regarding [36] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "docket_numbers": "21-0155V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/26/2023) regarding [36] DECISION Stipulation/Proffer", "case_name_shorts": "Brown" }, { @@ -39103,8 +39103,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2244V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/26/2023) regarding [40] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (ppa) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/26/2023) regarding [40] DECISION Stipulation/Proffer", "case_name_shorts": "Belarbi" }, { @@ -39115,8 +39115,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "21-2075V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 10/2/23) regarding [36] DECISION of Special Master Signed by Special Master Christian J. Moran. (ceo) Service on parties made. E-mailed to the Petitioner on 10/25/23 (tjk).", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 10/2/23) regarding [36] DECISION of Special Master", "case_name_shorts": "Vancuren" }, { @@ -39126,9 +39126,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-552V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/11/2023) regarding [26] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0552V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/11/2023) regarding [26] DECISION Stipulation/Proffer", "case_name_shorts": "Stangarone" }, { @@ -39138,9 +39138,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "19-667V", - "judges": "C. Moran", - "summaries": "VACATED pursuant to order [87] issued on 3/6/2024. PUBLIC DECISION (Originally filed: 10/03/2023) regarding [80] DECISION of Special Master - Fees Signed by Special Master Christian J. Moran. (ceo) Service on parties made. Modified on 3/19/2024 to mark entry as vacated (ypb).", + "docket_numbers": "19-0667V", + "judges": "Christian J. Moran", + "summaries": "VACATED pursuant to order [87] issued on 3/6/2024. PUBLIC DECISION (Originally filed: 10/03/2023) regarding [80] DECISION of Special Master - Fees", "case_name_shorts": "Mead" }, { @@ -39150,9 +39150,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "21-961V", - "judges": "H. Sanders", - "summaries": "PUBLIC DECISION (Originally filed: 10/10/23) regarding [41] DECISION Stipulation/Proffer, Signed by Special Master Herbrina Sanders. (sh) Service on parties made.", + "docket_numbers": "21-0961V", + "judges": "Herbrina Sanders", + "summaries": "PUBLIC DECISION (Originally filed: 10/10/23) regarding [41] DECISION Stipulation/Proffer", "case_name_shorts": "Marshall" }, { @@ -39162,9 +39162,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-80V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/22/2023) regarding [20] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0080V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/22/2023) regarding [20] Order Concluding Proceedings", "case_name_shorts": "LEWIS" }, { @@ -39174,9 +39174,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-82V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/22/2023) regarding [19] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0082V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/22/2023) regarding [19] Order Concluding Proceedings", "case_name_shorts": "Kephart" }, { @@ -39186,9 +39186,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-83V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/22/2023) regarding [20] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0083V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/22/2023) regarding [20] Order Concluding Proceedings", "case_name_shorts": "James" }, { @@ -39198,9 +39198,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-69V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/22/2023) regarding [18] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0069V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/22/2023) regarding [18] Order Concluding Proceedings", "case_name_shorts": "Carleson" }, { @@ -39210,9 +39210,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "23-81V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/22/2023) regarding [22] Order Concluding Proceedings. Signed by Chief Special Master Brian H. Corcoran. (abs) Service on parties made.", + "docket_numbers": "23-0081V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 9/22/2023) regarding [22] Order Concluding Proceedings", "case_name_shorts": "Blood" }, { @@ -39222,9 +39222,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-552V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/11/2023) regarding [23] Ruling on Entitlement, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0552V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/11/2023) regarding [23] Ruling on Entitlement", "case_name_shorts": "Stangarone" }, { @@ -39234,9 +39234,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-825V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/22/2023) regarding [56] DECISION of Special Master - Fees Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "20-0825V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/22/2023) regarding [56] DECISION of Special Master - Fees", "case_name_shorts": "Reser" }, { @@ -39246,9 +39246,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "20-948V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/21/2023) regarding [59] DECISION Stipulation/Proffer Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "20-0948V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/21/2023) regarding [59] DECISION Stipulation/Proffer", "case_name_shorts": "Olsen-Santoro" }, { @@ -39258,9 +39258,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-639V", - "judges": "C. Moran", - "summaries": "PUBLIC DECISION (Originally filed: 10/2/2023) regarding [35] DECISION of Special Master Signed by Special Master Christian J. Moran. (dksc) Service on parties made.", + "docket_numbers": "22-0639V", + "judges": "Christian J. Moran", + "summaries": "PUBLIC DECISION (Originally filed: 10/2/2023) regarding [35] DECISION of Special Master", "case_name_shorts": "Kendrick" }, { @@ -39270,9 +39270,9 @@ "precedential_statuses": "Unpublished", "blocked_statuses": false, "date_filed_is_approximate": false, - "docket_numbers": "22-600V", - "judges": "B. Corcoran", - "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/22/2023) regarding [22] Ruling on Entitlement Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "docket_numbers": "22-0600V", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC ORDER/RULING (Originally filed: 09/22/2023) regarding [22] Ruling on Entitlement", "case_name_shorts": "Hoss" }, { @@ -39283,8 +39283,8 @@ "blocked_statuses": false, "date_filed_is_approximate": false, "docket_numbers": "20-1766V", - "judges": "B. Corcoran", - "summaries": "PUBLIC DECISION (Originally filed: 09/22/2023) regarding [44] DECISION Stipulation/Proffer, Signed by Chief Special Master Brian H. Corcoran. (nh) Service on parties made.", + "judges": "Brian H. Corcoran", + "summaries": "PUBLIC DECISION (Originally filed: 09/22/2023) regarding [44] DECISION Stipulation/Proffer", "case_name_shorts": "Decker" } ] \ No newline at end of file diff --git a/tests/local/test_ScraperExtractFromTextTest.py b/tests/local/test_ScraperExtractFromTextTest.py index c4cfb64b3..1dd9551bc 100644 --- a/tests/local/test_ScraperExtractFromTextTest.py +++ b/tests/local/test_ScraperExtractFromTextTest.py @@ -675,6 +675,22 @@ class ScraperExtractFromText(unittest.TestCase): }, ), ], + "juriscraper.opinions.united_states.federal_special.uscfc_vaccine": [ + ( + # https://ecf.cofc.uscourts.gov/cgi-bin/show_public_doc?2018vv1562-53-0= / https://www.courtlistener.com/api/rest/v3/opinions/5119138/ + " In the United States Court of Federal Claims\n OFFICE OF SPECIAL MASTERS\n\n*********************\nLINDA WIRTSHAFTER, *\n * No. 18-1562V\n Petitioner, * Special Master Christian J. Moran\n *\nv. * Filed: September 22, 2021\n *\nSECRETARY OF HEALTH * Attorneys’ fees and costs; remand\nAND HUMAN SERVICES, *\n *\n Respondent. *\n*********************\nHoward D. Mishkind, Mishkind Law Firm Co., L.P.A., Beachwood, OH, for\npetitioner;\nRyan D. Pyles, United States Dep’t of Justice, Washington, DC, for respondent.\n\nPUBLISHED DECISION AWARDING ATTORNEYS’ FEES AND COSTS1\n\n An April 16, 2021 decision found that Linda Wirtshafter was not eligible for\nan award of attorneys’ fees and costs because she did not establish that a\nreasonable basis supported the claim that", + { + "OpinionCluster": { + "precedential_status": "Published", + }, + }, + ), + ( + # https://www.courtlistener.com/api/rest/v3/opinions/4184749/ + " In the United States Court of Federal Claims\n OFFICE OF SPECIAL MASTERS\n No. 15-1404V\n (not to be published)\n\n*****************************\n *\nJEFFREY TREADWAY, * Special Master Corcoran\n *\n *\n Petitioner, * Filed: May 16, 2017\n *\n v. * Decision; Attorney’s Fees and Costs.\n *\n *\nSECRETARY OF HEALTH AND *\nHUMAN SERVICES, *\n *\n Respondent. *\n *\n*****************************\n\nWilliam E. Cochran, Black McLaren, et al., P.C., Memphis, TN, for Petitioner.\n\nAlexis B. Babcock, U. S. Dep’t of Justice, Washington, DC, for Respondent.\n\n DECISION GRANTING ATTORNEY’S FEES AND COSTS 1\n\n On November 11, 2015, Jeffrey Treadway filed a petition seeking compensation under the\nNational Vaccine Injury Compensation Program (the “Vaccine Program”), alleging that he suffers\nfrom Bell’s palsy as a result of his October 10, 2014 receipt of the influenza vaccine.2 The parties\neventually filed a stipulation for damages on February 14, 2017 (ECF No. 24), which I adopted as\nmy dec", + {}, + ), + ], } def test_extract_from_text(self):