diff --git a/FEEDBACK.md b/FEEDBACK.md
index 010fecd..863aa8c 100644
--- a/FEEDBACK.md
+++ b/FEEDBACK.md
@@ -1,13 +1,17 @@
# Feedback
1. Your team:
+ It's a team of one, so if this is meant to be a name, Elaine's team
2. Name of each individual participating:
-3. How many unit tests were you able to pass?
+ Kristen "Elaine" Waddle
+3. How many unit tests were you able to pass?
+ 12! (the one I didn't pass was Test 12, the one that was made optional through email)
4. Document and describe any enhancements included to help the judges properly grade your submission.
- - Example One
- - Example Two
- - Example Three
+ - I created a helper method to build the dictionaries for getting the states with the most and
+ least disasters
+ - I added comments in my methods that were harder to parse
5. Any feedback for the coding competition? Things you would like to see in future events?
+ I had a great time! This was really approachable as my first GitHub project/the first time I read from a JSON file, and I feel like I learned a decent amount. No feedback besides that I wish the competition were happening in the Spring, too.
This form can also be emailed to [codingcompetition@statefarm.com](mailto:codingcompetition@statefarm.com). Just make sure that you include a link to your GitHub pull requests.
diff --git a/java/.vscode/extensions.json b/java/.vscode/extensions.json
deleted file mode 100644
index 850092d..0000000
--- a/java/.vscode/extensions.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "recommendations": [
- "streetsidesoftware.code-spell-checker",
- "vscode-icons-team.vscode-icons",
- "dbaeumer.vscode-eslint",
- "christian-kohler.path-intellisense",
- "vscjava.vscode-java-pack"
- ]
-}
diff --git a/java/Example-Run-JUnits-In-VSCode.jpg b/java/Example-Run-JUnits-In-VSCode.jpg
deleted file mode 100644
index e70223e..0000000
Binary files a/java/Example-Run-JUnits-In-VSCode.jpg and /dev/null differ
diff --git a/java/README.md b/java/README.md
deleted file mode 100644
index 1322706..0000000
--- a/java/README.md
+++ /dev/null
@@ -1,58 +0,0 @@
-# 2023 State Farm Coding Competition - Java Version
-
-## Welcome
-
-This is the skeleton project for the 2023 State Farm Coding Competition in Java. This will be the same project you'll use once Round 1 begins.
-
-Once Round 1 begins, we'll add the problem statement and the actual JSON files and unit tests you'll be using.
-
-## Setup
-
-### Pre-Req
-
-- Java JDK - version 17 or higher
-- Maven - version 3.8.6 or higher
-
-#### Java
-
-We recommend one of the following JDKs and versions. Other ones may also work, but have not been tested.
-
-- [Oracle JDK 17](https://www.oracle.com/java/technologies/downloads/#jdk17-windows)
-- [OpenJDK 17 via Microsoft](https://learn.microsoft.com/en-us/java/openjdk/download#openjdk-17)
-
-#### Maven
-
-- [Apache Maven Download](https://maven.apache.org/download.cgi)
-- [Apache Maven Install Guide](https://maven.apache.org/install.html)
-
-#### Git and VSCode
-
-For setting up Git and VSCode, please see [the overall README.md](../README.md).
-
-#### VSCode Extensions
-
-When you open this folder up in VSCode, you should see a dialog box open in the bottom-right hand corner of your screen. We've added several extensions that should help you spend less time on your environment, syntax, and manual work and more time on working on the problem statement.
-
-You can view this file in `.vscode/extensions.json`.
-
-## Run
-
-To build and test this project:
-
-```sh
-mvn clean install
-```
-
-In VSCode, you can also run the unit tests either per file or per method. See the screenshot below for examples.
-
-
-
-You should see the circles on the left-hand side. They are checkmarks in this case, because we've already run the unit tests, but they can also come up as a red circle for failures or a green play button.
-
-For more information, see Microsoft's official guide - [Testing Java with Visual Studio Code - Features Section](https://code.visualstudio.com/docs/java/java-testing#_features).
-
-**Note: Use this functionality for quick and easy testing, but, before you turn your submission in, please attempt to run the maven command at least once to determine how many unit tests have been passed.**
-
-## Installing Additional Packages
-
-To install additional packages, follow [this guide](https://www.tech-recipes.com/computer-programming/add-dependencies-to-maven-pom-xml-file/). You can also search around the Internet for more guidance.
diff --git a/java/pom.xml b/java/pom.xml
deleted file mode 100644
index 2f928ee..0000000
--- a/java/pom.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
- 4.0.0
-
- com.statefarm.codingcompetition
- Round1Java
- 1.0.0.0-SNAPSHOT
-
-
- 11
- 11
-
-
-
-
- junit
- junit
- 4.12
- test
-
-
- com.google.code.gson
- gson
- 2.10.1
-
-
-
-
-
diff --git a/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/Application.java b/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/Application.java
deleted file mode 100644
index 1b2e64c..0000000
--- a/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/Application.java
+++ /dev/null
@@ -1,12 +0,0 @@
-package com.statefarm.codingcompetition.simpledatatool;
-
-import com.statefarm.codingcompetition.simpledatatool.controller.SimpleDataTool;
-
-public class Application {
-
- public static void main(String[] args) {
- SimpleDataTool sdt = new SimpleDataTool();
-
- System.out.println("working");
- }
-}
diff --git a/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/controller/SimpleDataTool.java b/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/controller/SimpleDataTool.java
deleted file mode 100644
index d056ad0..0000000
--- a/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/controller/SimpleDataTool.java
+++ /dev/null
@@ -1,236 +0,0 @@
-package com.statefarm.codingcompetition.simpledatatool.controller;
-
-import java.util.List;
-import java.util.Map;
-
-import com.statefarm.codingcompetition.simpledatatool.io.JsonHelper;
-import com.statefarm.codingcompetition.simpledatatool.model.Agent;
-import com.statefarm.codingcompetition.simpledatatool.model.Claim;
-import com.statefarm.codingcompetition.simpledatatool.model.ClaimHandler;
-import com.statefarm.codingcompetition.simpledatatool.model.Disaster;
-
-public class SimpleDataTool {
-
- private static final String JSON_FILENAME_AGENTS = "sfcc_2023_agents.json";
- private static final String JSON_FILENAME_CLAIM_HANDLERS = "sfcc_2023_claim_handlers.json";
- private static final String JSON_FILENAME_CLAIMS = "sfcc_2023_claims.json";
- private static final String JSON_FILENAME_DISASTERS = "sfcc_2023_disasters.json";
-
- private List agents;
- private List claimHandlers;
- private List claims;
- private List disasters;
-
- public SimpleDataTool() {
- agents = new JsonHelper().loadJson(JSON_FILENAME_AGENTS, Agent.class);
- claimHandlers = new JsonHelper().loadJson(JSON_FILENAME_CLAIM_HANDLERS, ClaimHandler.class);
- claims = new JsonHelper().loadJson(JSON_FILENAME_CLAIMS, Claim.class);
- disasters = new JsonHelper().loadJson(JSON_FILENAME_DISASTERS, Disaster.class);
- }
-
- // region Helper Methods
-
- public List getAgents() {
- return agents;
- }
-
- public List getClaimHandlers() {
- return claimHandlers;
- }
-
- public List getClaims() {
- return claims;
- }
-
- public List getDisasters() {
- return disasters;
- }
-
- // endregion
-
- // Unit Test Methods
-
- // region TestSet1
-
- /**
- * Calculates the number of claims where that status is "Closed"
- *
- * @return number of closed claims
- */
- public int getNumClosedClaims() {
- return 0;
- }
-
- /**
- * Calculates the number of claims assigned to a specific claim handler
- *
- * @param id id of claim handler
- * @return number of claims assigned to claim handler
- */
- public int getNumClaimsForClaimHandlerId(int id) {
- return 0;
- }
-
- /**
- * Calculates the number of disasters for a specific state
- *
- * @param stateName name of a state in the United States of America,
- * including the District of Columbia
- * @return number of disasters for state
- */
- public int getNumDisastersForState(String stateName) {
- return -1;
- }
-
- // endregion
-
- // region TestSet2
-
- /**
- * Sums the estimated cost of a specific disaster by its claims
- *
- * @param id id of disaster
- * @return estimate cost of disaster, rounded to the nearest hundredths place
- * returns null if no claims are found
- */
- public Float getTotalClaimCostForDisaster(int id) {
- return -0.01f;
- }
-
- /**
- * Gets the average estimated cost of all claims assigned to a claim handler
- *
- * @param id id of claim handler
- * @return average cost of claims, rounded to the nearest hundredths place,
- * or null if no claims are found
- */
- public Float getAverageClaimCostforClaimHandler(int id) {
- return -0.01f;
- }
-
- /**
- * Returns the name of the state with the most disasters based on disaster data
- *
- * If two states have the same number of disasters, then sort by alphabetical
- * (a-z) and take the first.
- *
- * Example: Say New Jersey and Delaware both have the highest number of
- * disasters at 12 disasters each. Then, this method would return "Delaware"
- * since "D"comes before "N" in the alphabet.
- *
- * @return single name of state
- */
- public String getStateWithTheMostDisasters() {
- return null;
- }
-
- /**
- * Returns the name of the state with the least disasters based on disaster data
- *
- * If two states have the same number of disasters, then sort by alphabetical
- * (a-z) and take the first.
- *
- * Example: Say New Mexico and West Virginia both have the least number of
- * disasters at 1 disaster each. Then, this method would return "New Mexico"
- * since "N" comes before "W" in the alphabet.
- *
- * @return single name of state
- */
- public String getStateWithTheLeastDisasters() {
- return null;
- }
-
- /**
- * Returns the name of the most spoken language by agents (besides English) for
- * a specific state
- *
- * @param string name of state
- * @return name of language
- * or empty string if state doesn't exist
- */
- public String getMostSpokenAgentLanguageByState(String string) {
- return null;
- }
-
- /**
- * Returns the number of open claims for a specific agent and for a minimum
- * severity level and higher
- *
- * Note: Severity rating scale for claims is 1 to 10, inclusive.
- *
- * @param agentId id of agent
- * @param minSeverityRating minimum claim severity rating
- * @return number of claims that are not closed and have minimum severity rating
- * or greater
- * -1 if severity rating out of bounds
- * None if agent does not exist, or agent has no claims (open or not)
- */
- public int getNumOfOpenClaimsForAgentAndSeverity(int agentId, int minSeverityRating) {
- return -2;
- }
-
- // endregion
-
- // region TestSet3
-
- /**
- * Gets the number of disasters where it was declared after it ended
- *
- * @return number of disasters where the declared date is after the end date
- */
- public int getNumDisastersDeclaredAfterEndDate() {
- return -1;
- }
-
- /**
- * Builds a map of agent and their total claim cost
- *
- * Hints:
- * - An agent with no claims should return 0
- * - Invalid agent id should have a value of null
- * - You should round your total_claim_cost to the nearest hundredths
- *
- * @return Map where key is agent id, value is total cost of claims associated
- * to the agent
- */
- public Map buildMapOfAgentsToTotalClaimCost() {
- return null;
- }
-
- /**
- * Calculates density of a diaster based on the number of claims and impact
- * radius
- *
- * Hints:
- * - Assume uniform spacing between claims
- * - Assume disaster impact area is a circle
- *
- * @param id id of disaster
- * @return density of claims to disaster area, rounded to the nearest
- * thousandths place
- * null if disaster does not exist
- */
- public float calculateDisasterClaimDensity(int id) {
- return -0.01f;
- }
-
- // endregion
-
- // region TestSet4
-
- /**
- * Gets the top three months with the highest total claim cost
- *
- * Hint:
- * - Month should be full name like 01 is January and 12 is December
- * - Year should be full four-digit year
- * - List should be in descending order
- *
- * @return three strings of month and year, descending order of highest claims
- */
- public String[] getTopThreeMonthsWithHighestNumOfClaimsDesc() {
- return new String[1];
- }
-
- // endregion
-}
\ No newline at end of file
diff --git a/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/io/GsonLocalDateSerializer.java b/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/io/GsonLocalDateSerializer.java
deleted file mode 100644
index 12b8719..0000000
--- a/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/io/GsonLocalDateSerializer.java
+++ /dev/null
@@ -1,17 +0,0 @@
-package com.statefarm.codingcompetition.simpledatatool.io;
-
-import java.lang.reflect.Type;
-import java.time.LocalDate;
-import java.time.format.DateTimeFormatter;
-
-import com.google.gson.JsonElement;
-import com.google.gson.JsonPrimitive;
-import com.google.gson.JsonSerializationContext;
-import com.google.gson.JsonSerializer;
-
-public class GsonLocalDateSerializer implements JsonSerializer {
-
- public JsonElement serialize(LocalDate date, Type typeOfSrc, JsonSerializationContext context) {
- return new JsonPrimitive(date.format(DateTimeFormatter.ISO_LOCAL_DATE)); // "yyyy-mm-dd"
- }
-}
diff --git a/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/io/JsonHelper.java b/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/io/JsonHelper.java
deleted file mode 100644
index ab4b803..0000000
--- a/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/io/JsonHelper.java
+++ /dev/null
@@ -1,56 +0,0 @@
-package com.statefarm.codingcompetition.simpledatatool.io;
-
-import java.lang.reflect.Type;
-import java.nio.file.Files;
-import java.nio.file.Path;
-import java.time.LocalDate;
-import java.util.List;
-
-import com.google.gson.Gson;
-import com.google.gson.GsonBuilder;
-import com.google.gson.JsonDeserializationContext;
-import com.google.gson.JsonDeserializer;
-import com.google.gson.JsonElement;
-import com.google.gson.JsonParseException;
-import com.google.gson.reflect.TypeToken;
-
-public class JsonHelper {
-
- public static final String RESOURCE_FOLDER_PATH = "src/main/resources/";
-
- private static Gson gson = new GsonBuilder()
- .registerTypeAdapter(LocalDate.class, new JsonDeserializer() {
- @Override
- public LocalDate deserialize(JsonElement json, Type type,
- JsonDeserializationContext jsonDeserializationContext) throws JsonParseException {
-
- return LocalDate.parse(json.getAsString());
- }
- }).create();
-
- public List loadJson(String fileName, Class clazz) {
-
- String filePathString = new StringBuilder(RESOURCE_FOLDER_PATH).append(fileName).toString();
- Path filePath = Path.of(filePathString);
-
- try {
- String jsonAsString = new String(Files.readAllBytes(filePath));
-
- Type typeOfT = TypeToken.getParameterized(List.class, clazz).getType();
-
- List javaModels = gson.fromJson(jsonAsString, typeOfT);
-
- return javaModels;
-
- } catch (Exception e) {
- System.err.println(e.getMessage());
- e.printStackTrace();
-
- return null;
- }
- }
-
- public Gson getGson() {
- return gson;
- }
-}
diff --git a/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/io/SimpleModel.java b/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/io/SimpleModel.java
deleted file mode 100644
index 0a47efd..0000000
--- a/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/io/SimpleModel.java
+++ /dev/null
@@ -1,46 +0,0 @@
-package com.statefarm.codingcompetition.simpledatatool.io;
-
-import java.math.BigDecimal;
-
-import com.google.gson.Gson;
-
-public class SimpleModel {
-
- private static final Gson GSON = new Gson();
-
- private String name;
- private int integer;
- private BigDecimal decimal;
-
- public String getName() {
- return name;
- }
-
- public SimpleModel setName(String name) {
- this.name = name;
- return this;
- }
-
- public int getInteger() {
- return integer;
- }
-
- public SimpleModel setInteger(int integer) {
- this.integer = integer;
- return this;
- }
-
- public BigDecimal getDecimal() {
- return decimal;
- }
-
- public SimpleModel setDecimal(BigDecimal decimal) {
- this.decimal = decimal;
- return this;
- }
-
- @Override
- public String toString() {
- return GSON.toJson(this);
- }
-}
diff --git a/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/model/Agent.java b/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/model/Agent.java
deleted file mode 100644
index b4aad9f..0000000
--- a/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/model/Agent.java
+++ /dev/null
@@ -1,80 +0,0 @@
-package com.statefarm.codingcompetition.simpledatatool.model;
-
-import com.google.gson.Gson;
-
-public class Agent {
-
- private static final Gson GSON = new Gson();
-
- private int id, years_active;
- private String first_name, last_name, state, region, primary_language, secondary_language;
-
- public int getId() {
- return this.id;
- }
-
- public void setId(int id) {
- this.id = id;
- }
-
- public int getYears_active() {
- return this.years_active;
- }
-
- public void setYears_active(int years_active) {
- this.years_active = years_active;
- }
-
- public String getFirst_name() {
- return this.first_name;
- }
-
- public void setFirst_name(String first_name) {
- this.first_name = first_name;
- }
-
- public String getLast_name() {
- return this.last_name;
- }
-
- public void setLast_name(String last_name) {
- this.last_name = last_name;
- }
-
- public String getState() {
- return this.state;
- }
-
- public void setState(String state) {
- this.state = state;
- }
-
- public String getRegion() {
- return this.region;
- }
-
- public void setRegion(String region) {
- this.region = region;
- }
-
- public String getPrimary_language() {
- return this.primary_language;
- }
-
- public void setPrimary_language(String primary_language) {
- this.primary_language = primary_language;
- }
-
- public String getSecondary_language() {
- return this.secondary_language;
- }
-
- public void setSecondary_language(String secondary_language) {
- this.secondary_language = secondary_language;
- }
-
- @Override
- public String toString() {
- return GSON.toJson(this);
- }
-}
diff --git a/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/model/Claim.java b/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/model/Claim.java
deleted file mode 100644
index db223d9..0000000
--- a/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/model/Claim.java
+++ /dev/null
@@ -1,106 +0,0 @@
-package com.statefarm.codingcompetition.simpledatatool.model;
-
-import com.google.gson.Gson;
-
-public class Claim {
-
- private static final Gson GSON = new Gson();
-
- private int id, disaster_id, severity_rating, agent_assigned_id, claim_handler_assigned_id;
- private float estimate_cost;
- private boolean total_loss, loss_of_life;
- private String status, type;
-
- public int getId() {
- return this.id;
- }
-
- public void setId(int id) {
- this.id = id;
- }
-
- public int getDisaster_id() {
- return this.disaster_id;
- }
-
- public void setDisaster_id(int disaster_id) {
- this.disaster_id = disaster_id;
- }
-
- public int getSeverity_rating() {
- return this.severity_rating;
- }
-
- public void setSeverity_rating(int severity_rating) {
- this.severity_rating = severity_rating;
- }
-
- public int getAgent_assigned_id() {
- return this.agent_assigned_id;
- }
-
- public void setAgent_assigned_id(int agent_assigned_id) {
- this.agent_assigned_id = agent_assigned_id;
- }
-
- public int getClaim_handler_assigned_id() {
- return this.claim_handler_assigned_id;
- }
-
- public void setClaim_handler_assigned_id(int claim_handler_assigned_id) {
- this.claim_handler_assigned_id = claim_handler_assigned_id;
- }
-
- public float getEstimate_cost() {
- return this.estimate_cost;
- }
-
- public void setEstimate_cost(float estimate_cost) {
- this.estimate_cost = estimate_cost;
- }
-
- public boolean isTotal_loss() {
- return this.total_loss;
- }
-
- public boolean getTotal_loss() {
- return this.total_loss;
- }
-
- public void setTotal_loss(boolean total_loss) {
- this.total_loss = total_loss;
- }
-
- public boolean isLoss_of_life() {
- return this.loss_of_life;
- }
-
- public boolean getLoss_of_life() {
- return this.loss_of_life;
- }
-
- public void setLoss_of_life(boolean loss_of_life) {
- this.loss_of_life = loss_of_life;
- }
-
- public String getStatus() {
- return this.status;
- }
-
- public void setStatus(String status) {
- this.status = status;
- }
-
- public String getType() {
- return this.type;
- }
-
- public void setType(String type) {
- this.type = type;
- }
-
- @Override
- public String toString() {
- return GSON.toJson(this);
- }
-}
diff --git a/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/model/ClaimHandler.java b/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/model/ClaimHandler.java
deleted file mode 100644
index 5a4f135..0000000
--- a/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/model/ClaimHandler.java
+++ /dev/null
@@ -1,41 +0,0 @@
-package com.statefarm.codingcompetition.simpledatatool.model;
-
-import com.google.gson.Gson;
-
-public class ClaimHandler {
-
- private static final Gson GSON = new Gson();
-
- private int id;
- private String first_name;
- private String last_name;
-
- public int getId() {
- return this.id;
- }
-
- public void setId(int id) {
- this.id = id;
- }
-
- public String getFirst_name() {
- return this.first_name;
- }
-
- public void setFirst_name(String first_name) {
- this.first_name = first_name;
- }
-
- public String getLast_name() {
- return this.last_name;
- }
-
- public void setLast_name(String last_name) {
- this.last_name = last_name;
- }
-
- @Override
- public String toString() {
- return GSON.toJson(this);
- }
-}
diff --git a/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/model/Disaster.java b/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/model/Disaster.java
deleted file mode 100644
index 9167809..0000000
--- a/java/src/main/java/com/statefarm/codingcompetition/simpledatatool/model/Disaster.java
+++ /dev/null
@@ -1,112 +0,0 @@
-package com.statefarm.codingcompetition.simpledatatool.model;
-
-import java.time.LocalDate;
-
-import com.google.gson.Gson;
-import com.google.gson.annotations.SerializedName;
-
-public class Disaster {
-
- private static final Gson GSON = new Gson();
-
- private int id, radius_miles;
- private String type, state, name, description;
- private float lat;
- @SerializedName("long")
- private float _long;
- private LocalDate start_date, end_date, declared_date;
-
- public int getId() {
- return this.id;
- }
-
- public void setId(int id) {
- this.id = id;
- }
-
- public int getRadius_miles() {
- return this.radius_miles;
- }
-
- public void setRadius_miles(int radius_miles) {
- this.radius_miles = radius_miles;
- }
-
- public String getType() {
- return this.type;
- }
-
- public void setType(String type) {
- this.type = type;
- }
-
- public String getState() {
- return this.state;
- }
-
- public void setState(String state) {
- this.state = state;
- }
-
- public String getName() {
- return this.name;
- }
-
- public void setName(String name) {
- this.name = name;
- }
-
- public String getDescription() {
- return this.description;
- }
-
- public void setDescription(String description) {
- this.description = description;
- }
-
- public float getLat() {
- return this.lat;
- }
-
- public void setLat(float lat) {
- this.lat = lat;
- }
-
- public float getLong() {
- return this._long;
- }
-
- public void setLong(float _long) {
- this._long = _long;
- }
-
- public LocalDate getStart_date() {
- return this.start_date;
- }
-
- public void setStart_date(LocalDate start_date) {
- this.start_date = start_date;
- }
-
- public LocalDate getEnd_date() {
- return this.end_date;
- }
-
- public void setEnd_date(LocalDate end_date) {
- this.end_date = end_date;
- }
-
- public LocalDate getDeclared_date() {
- return this.declared_date;
- }
-
- public void setDeclared_date(LocalDate declared_date) {
- this.declared_date = declared_date;
- }
-
- @Override
- public String toString() {
- return GSON.toJson(this);
- }
-
-}
diff --git a/java/src/test/java/com/statefarm/codingcompetition/simpledatatool/TestSet0.java b/java/src/test/java/com/statefarm/codingcompetition/simpledatatool/TestSet0.java
deleted file mode 100644
index d9b5f99..0000000
--- a/java/src/test/java/com/statefarm/codingcompetition/simpledatatool/TestSet0.java
+++ /dev/null
@@ -1,30 +0,0 @@
-package com.statefarm.codingcompetition.simpledatatool;
-
-import static org.junit.Assert.assertEquals;
-
-import org.junit.Before;
-import org.junit.Test;
-
-import com.statefarm.codingcompetition.simpledatatool.controller.SimpleDataTool;
-
-public class TestSet0 {
-
- private static SimpleDataTool controller;
-
- @Before
- public void initialize() {
- controller = new SimpleDataTool();
- }
-
- /**
- * Making sure that JSON files load properly. This test does not count towards
- * your score.
- */
- @Test
- public void test0_readDataFiles() {
- assertEquals(100, controller.getAgents().size());
- assertEquals(156, controller.getClaimHandlers().size());
- assertEquals(1000, controller.getClaims().size());
- assertEquals(100, controller.getDisasters().size());
- }
-}
diff --git a/java/src/test/java/com/statefarm/codingcompetition/simpledatatool/TestSet1.java b/java/src/test/java/com/statefarm/codingcompetition/simpledatatool/TestSet1.java
deleted file mode 100644
index 8dbd1a3..0000000
--- a/java/src/test/java/com/statefarm/codingcompetition/simpledatatool/TestSet1.java
+++ /dev/null
@@ -1,39 +0,0 @@
-package com.statefarm.codingcompetition.simpledatatool;
-
-import static org.junit.Assert.assertEquals;
-
-import org.junit.Before;
-import org.junit.Test;
-
-import com.statefarm.codingcompetition.simpledatatool.controller.SimpleDataTool;
-
-public class TestSet1 {
-
- private static SimpleDataTool controller;
-
- @Before
- public void initialize() {
- controller = new SimpleDataTool();
- }
-
- @Test
- public void test1_getNumClosedClaims() {
- assertEquals(362, controller.getNumClosedClaims());
- }
-
- @Test
- public void test2_getNumClaimsForClaimHandlerId() {
- assertEquals(9, controller.getNumClaimsForClaimHandlerId(1));
- assertEquals(4, controller.getNumClaimsForClaimHandlerId(93));
- assertEquals(6, controller.getNumClaimsForClaimHandlerId(127));
- }
-
- @Test
- public void test3_getNumDisastersForState() {
- assertEquals(2, controller.getNumDisastersForState("Arizona"));
- assertEquals(5, controller.getNumDisastersForState("Georgia"));
- assertEquals(2, controller.getNumDisastersForState("Illinois"));
- assertEquals(9, controller.getNumDisastersForState("Texas"));
- assertEquals(2, controller.getNumDisastersForState("District of Columbia"));
- }
-}
diff --git a/java/src/test/java/com/statefarm/codingcompetition/simpledatatool/TestSet2.java b/java/src/test/java/com/statefarm/codingcompetition/simpledatatool/TestSet2.java
deleted file mode 100644
index 1700191..0000000
--- a/java/src/test/java/com/statefarm/codingcompetition/simpledatatool/TestSet2.java
+++ /dev/null
@@ -1,59 +0,0 @@
-package com.statefarm.codingcompetition.simpledatatool;
-
-import static org.junit.Assert.assertEquals;
-
-import org.junit.Before;
-import org.junit.Test;
-
-import com.statefarm.codingcompetition.simpledatatool.controller.SimpleDataTool;
-
-public class TestSet2 {
-
- private static SimpleDataTool controller;
-
- @Before
- public void initialize() {
- controller = new SimpleDataTool();
- }
-
- @Test
- public void test4_getTotalClaimCostForDisaster() {
- assertEquals(377726.38, controller.getTotalClaimCostForDisaster(5), 0.01);
- assertEquals(null, controller.getTotalClaimCostForDisaster(0));
- assertEquals(1287476.19, controller.getTotalClaimCostForDisaster(56), 0.01);
- assertEquals(null, controller.getTotalClaimCostForDisaster(101));
- assertEquals(614822.68, controller.getTotalClaimCostForDisaster(78), 0.01);
- }
-
- @Test
- public void test5_getAverageClaimCostforClaimHandler() {
- assertEquals(87330.89, controller.getAverageClaimCostforClaimHandler(2), 0.01);
- assertEquals(122195.90, controller.getAverageClaimCostforClaimHandler(42), 0.01);
- assertEquals(null, controller.getAverageClaimCostforClaimHandler(-5));
- assertEquals(null, controller.getAverageClaimCostforClaimHandler(225));
- assertEquals(242134.96, controller.getAverageClaimCostforClaimHandler(151), 0.01);
- }
-
- @Test
- public void test6_getStateWithMostAndLeastDisasters() {
- assertEquals("California", controller.getStateWithTheMostDisasters());
- assertEquals("Alaska", controller.getStateWithTheLeastDisasters());
- }
-
- @Test
- public void test7_getMostSpokenAgentLanguageByState() {
- assertEquals("Arabic", controller.getMostSpokenAgentLanguageByState("New Hampshire"));
- assertEquals("", controller.getMostSpokenAgentLanguageByState("Wisconsin"));
- assertEquals("Spanish", controller.getMostSpokenAgentLanguageByState("Florida"));
- }
-
- @Test
- public void test8_getNumOfOpenClaimsForAgentAndSeverity() {
- assertEquals(-1, controller.getNumOfOpenClaimsForAgentAndSeverity(0, 0));
- assertEquals(-1, controller.getNumOfOpenClaimsForAgentAndSeverity(25, 11));
- assertEquals(null, controller.getNumOfOpenClaimsForAgentAndSeverity(65, 3));
- assertEquals(16, controller.getNumOfOpenClaimsForAgentAndSeverity(24, 1));
- assertEquals(3, controller.getNumOfOpenClaimsForAgentAndSeverity(87, 6));
- assertEquals(2, controller.getNumOfOpenClaimsForAgentAndSeverity(85, 6));
- }
-}
diff --git a/java/src/test/java/com/statefarm/codingcompetition/simpledatatool/TestSet3.java b/java/src/test/java/com/statefarm/codingcompetition/simpledatatool/TestSet3.java
deleted file mode 100644
index 8dbf87b..0000000
--- a/java/src/test/java/com/statefarm/codingcompetition/simpledatatool/TestSet3.java
+++ /dev/null
@@ -1,63 +0,0 @@
-package com.statefarm.codingcompetition.simpledatatool;
-
-import static org.junit.Assert.assertEquals;
-
-import java.util.Map;
-import java.util.Random;
-
-import org.junit.Before;
-import org.junit.Test;
-
-import com.statefarm.codingcompetition.simpledatatool.controller.SimpleDataTool;
-
-public class TestSet3 {
-
- private static SimpleDataTool controller;
-
- private static int[] expectedAgentIdsWithoutCost = new int[] {
- 2, 6, 9, 12, 16, 22, 25, 32, 33, 37, 38, 40,
- 41, 44, 45, 48, 50, 51, 52, 53, 54, 61, 64,
- 65, 67, 69, 72, 81, 90, 93, 96 };
-
- @Before
- public void initialize() {
- controller = new SimpleDataTool();
- }
-
- @Test
- public void test9_getNumDisastersDeclaredAfterEndDate() {
- assertEquals(8, controller.getNumDisastersDeclaredAfterEndDate());
- }
-
- @Test
- public void test10_buildMapOfAgentsToTotalClaimCost() {
- Map agentCostMap = controller.buildMapOfAgentsToTotalClaimCost();
-
- assertEquals(100, agentCostMap.size());
-
- assertEquals(27856.13f, agentCostMap.get(1), 0.01);
- assertEquals(2253847.27f, agentCostMap.get(3), 0.01);
- assertEquals(529685.97f, agentCostMap.get(5), 0.01);
- assertEquals(282307.93f, agentCostMap.get(8), 0.01);
- assertEquals(2310862.86f, agentCostMap.get(13), 0.01);
-
- int numAgentIdsWithoutCost = expectedAgentIdsWithoutCost.length;
- Random rand = new Random();
-
- for (int i = 0; i < 3; i++) {
- int randomAgentId = expectedAgentIdsWithoutCost[rand.nextInt(numAgentIdsWithoutCost)];
- assertEquals(0.0f, agentCostMap.get(randomAgentId), 0.01);
- }
-
- assertEquals(null, agentCostMap.get(-5));
- assertEquals(null, agentCostMap.get(255));
- }
-
- @Test
- public void test11_calculateDisasterClaimDensity() {
- assertEquals(0.00172f, controller.calculateDisasterClaimDensity(15), 0.00001);
- assertEquals(0.00029f, controller.calculateDisasterClaimDensity(68), 0.00001);
- assertEquals(null, controller.calculateDisasterClaimDensity(101));
- assertEquals(0.01624f, controller.calculateDisasterClaimDensity(64), 0.00001);
- }
-}
diff --git a/java/src/test/java/com/statefarm/codingcompetition/simpledatatool/TestSet4.java b/java/src/test/java/com/statefarm/codingcompetition/simpledatatool/TestSet4.java
deleted file mode 100644
index fbd3469..0000000
--- a/java/src/test/java/com/statefarm/codingcompetition/simpledatatool/TestSet4.java
+++ /dev/null
@@ -1,28 +0,0 @@
-package com.statefarm.codingcompetition.simpledatatool;
-
-import static org.junit.Assert.assertEquals;
-
-import org.junit.Before;
-import org.junit.Test;
-
-import com.statefarm.codingcompetition.simpledatatool.controller.SimpleDataTool;
-
-public class TestSet4 {
-
- private static SimpleDataTool controller;
-
- @Before
- public void initialize() {
- controller = new SimpleDataTool();
- }
-
- @Test
- public void test12_getTopThreeMonthsWithHighestNumOfClaimsDesc() {
- String[] topThreeMonths = controller.getTopThreeMonthsWithHighestNumOfClaimsDesc();
- assertEquals(3, topThreeMonths.length);
- assertEquals("April 2023", topThreeMonths[0]);
- assertEquals("November 2022", topThreeMonths[1]);
- assertEquals("February 2023", topThreeMonths[2]);
-
- }
-}
diff --git a/nodejs/.prettierrc b/nodejs/.prettierrc
deleted file mode 100644
index 222861c..0000000
--- a/nodejs/.prettierrc
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "tabWidth": 2,
- "useTabs": false
-}
diff --git a/nodejs/.vscode/extensions.json b/nodejs/.vscode/extensions.json
deleted file mode 100644
index 25338a3..0000000
--- a/nodejs/.vscode/extensions.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "recommendations": [
- "streetsidesoftware.code-spell-checker",
- "vscode-icons-team.vscode-icons",
- "dbaeumer.vscode-eslint",
- "christian-kohler.path-intellisense",
- "christian-kohler.npm-intellisense",
- "Orta.vscode-jest"
- ]
-}
\ No newline at end of file
diff --git a/nodejs/.vscode/settings.json b/nodejs/.vscode/settings.json
deleted file mode 100644
index cb521ce..0000000
--- a/nodejs/.vscode/settings.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "[javascript]": {
- "editor.tabSize": 2
- }
-}
\ No newline at end of file
diff --git a/nodejs/README.md b/nodejs/README.md
deleted file mode 100644
index 1a5a083..0000000
--- a/nodejs/README.md
+++ /dev/null
@@ -1,57 +0,0 @@
-# 2023 State Farm Coding Competition - NodeJS JavaScript Version
-
-## Welcome
-
-This is the stub project for the 2023 State Farm Coding Competition Round 1 in NodeJS JavaScript. This will be the same project you'll use once Round 1 begins.
-
-Once Round 1 begins, we'll add the problem statement and the actual JSON files and unit tests you'll be using.
-
-## Setup
-
-### Pre-Req
-
-- Node.js - version 18 or higher
-- npm (comes with Node.js) - version 8 or higher
-- Jest (for testing) - version 28 or higher
-
-#### Node.js
-
-We recommend downloading the LTS version of Node.js from the official website.
-
-- [Node.js Download](https://nodejs.org/)
-
-#### Jest
-
-You can install Jest using the following command:
-
-```sh
-npm install
-```
-
-#### Git and VSCode
-
-For setting up Git and VSCode, please see [the overall README.md](../README.md).
-
-#### VSCode Extensions
-
-When you open this folder up in VSCode, you should see a dialog box open in the bottom-right hand corner of your screen. We've added several extensions that should help you spend less time on your environment, syntax, and manual work and more time on working on the problem statement.
-
-You can view this file in `.vscode/extensions.json`.
-
-## Run
-
-To test this project:
-
-```sh
-npm test
-```
-
-In VSCode, you can also run the unit tests by clicking on the play button beside each test when you open the test file.
-
-For more information on testing with Jest, see the official Jest documentation - [Getting Started with Jest](https://jestjs.io/docs/getting-started).
-
-**Note: Use this functionality for quick and easy testing, but, before you turn your submission in, please attempt to run the `npm test` command at least once to determine how many unit tests have been passed.**
-
-## Installing Additional Packages
-
-To install additional packages, follow [this guide](https://docs.npmjs.com/downloading-and-installing-packages-locally). You can also search around the Internet for more guidance.
diff --git a/nodejs/application.js b/nodejs/application.js
deleted file mode 100644
index f27747b..0000000
--- a/nodejs/application.js
+++ /dev/null
@@ -1,6 +0,0 @@
-const SimpleDataTool = require("./simpleDataTool");
-
-console.log("I'm working");
-
-const controller = new SimpleDataTool();
-controller.loadSimpleModels();
diff --git a/nodejs/application.test.js b/nodejs/application.test.js
deleted file mode 100644
index 0553da9..0000000
--- a/nodejs/application.test.js
+++ /dev/null
@@ -1,128 +0,0 @@
-const SimpleDataTool = require("./simpleDataTool");
-
-let controller;
-
-beforeAll(() => {
- controller = new SimpleDataTool();
-});
-
-describe("Test Set One", () => {
- test("Test 1 - getNumClosedClaims", () => {
- const actualNumClosedClaims = controller.getNumClosedClaims();
- expect(actualNumClosedClaims).toBe(362);
- });
-
- test("Test 2 - getNumClaimsForClaimHandlerId", () => {
- expect(controller.getNumClaimsForClaimHandlerId(1)).toBe(9);
- expect(controller.getNumClaimsForClaimHandlerId(93)).toBe(4);
- expect(controller.getNumClaimsForClaimHandlerId(127)).toBe(6);
- });
-
- test("Test 3 - getNumDisastersForState", () => {
- expect(controller.getNumDisastersForState("Arizona")).toBe(2);
- expect(controller.getNumDisastersForState("Georgia")).toBe(5);
- expect(controller.getNumDisastersForState("Illinois")).toBe(2);
- expect(controller.getNumDisastersForState("Texas")).toBe(9);
- expect(controller.getNumDisastersForState("District of Columbia")).toBe(2);
- });
-});
-
-describe("Test Set Two", () => {
- test("Test 4 - getTotalClaimCostForDisaster", () => {
- expect(controller.getTotalClaimCostForDisaster(5)).toBe(377726.38);
- expect(controller.getTotalClaimCostForDisaster(0)).toBe(null);
- expect(controller.getTotalClaimCostForDisaster(56)).toBe(1287476.19);
- expect(controller.getTotalClaimCostForDisaster(101)).toBe(null);
- expect(controller.getTotalClaimCostForDisaster(78)).toBe(614822.68);
- });
-
- test("Test 5 - getAverageClaimCostForClaimHandler", () => {
- expect(controller.getAverageClaimCostForClaimHandler(2)).toBe(87330.89);
- expect(
- Math.round(controller.getAverageClaimCostForClaimHandler(42) * 100) / 100
- ).toBe(122195.9);
- expect(controller.getAverageClaimCostForClaimHandler(-5)).toBe(null);
- expect(controller.getAverageClaimCostForClaimHandler(225)).toBe(null);
- expect(
- Math.round(controller.getAverageClaimCostForClaimHandler(151) * 100) / 100
- ).toBe(242134.96);
- });
-
- test("Test 6 - getStateWithMostAndLeastDisasters", () => {
- expect(controller.getStateWithMostDisasters()).toBe("California");
- expect(controller.getStateWithLeastDisasters()).toBe("Alaska");
- });
-
- test("Test 7 - getMostSpokenAgentLanguageByState", () => {
- expect(controller.getMostSpokenAgentLanguageByState("New Hampshire")).toBe(
- "Arabic"
- );
- expect(controller.getMostSpokenAgentLanguageByState("Wisconsin")).toBe("");
- expect(controller.getMostSpokenAgentLanguageByState("Florida")).toBe(
- "Spanish"
- );
- });
-
- test("Test 8 - getNumOfOpenClaimsForAgentAndSeverity", () => {
- expect(controller.getNumOfOpenClaimsForAgentAndSeverity(0, 0)).toBe(-1);
- expect(controller.getNumOfOpenClaimsForAgentAndSeverity(25, 11)).toBe(-1);
- expect(controller.getNumOfOpenClaimsForAgentAndSeverity(65, 3)).toBe(null);
- expect(controller.getNumOfOpenClaimsForAgentAndSeverity(24, 1)).toBe(16);
- expect(controller.getNumOfOpenClaimsForAgentAndSeverity(87, 6)).toBe(3);
- expect(controller.getNumOfOpenClaimsForAgentAndSeverity(85, 6)).toBe(2);
- });
-});
-
-describe("Test Set Three", () => {
- test("Test 9 - getNumDisastersDeclaredAfterEndDate", () => {
- expect(controller.getNumDisastersDeclaredAfterEndDate()).toBe(8);
- });
-
- test("Test 10 - buildMapOfAgentsToTotalClaimCost", () => {
- const agentCostMap = controller.buildMapOfAgentsToTotalClaimCost();
- expect(Object.keys(agentCostMap).length).toBe(100);
-
- // Normal cases
- expect(agentCostMap[1]).toBe(27856.13);
- expect(agentCostMap[3]).toBe(2253847.27);
- expect(agentCostMap[5]).toBe(529685.97);
- expect(agentCostMap[8]).toBe(282307.93);
- expect(agentCostMap[13]).toBe(2310862.86);
-
- // Spot-check random agent ids that we expect to have no cost
- const expectedAgentIdsWithoutCost = [
- 2, 6, 9, 12, 16, 22, 25, 32, 33, 37, 38, 40, 41, 44, 45, 48, 50, 51, 52,
- 53, 54, 61, 64, 65, 67, 69, 72, 81, 90, 93, 96,
- ];
-
- for (let i = 0; i < 3; i++) {
- const randomIndex = Math.floor(
- Math.random() * expectedAgentIdsWithoutCost.length
- );
- const randomAgentId = expectedAgentIdsWithoutCost[randomIndex];
- expect(agentCostMap[randomAgentId]).toBe(0);
- }
-
- // Testing invalid agent ids
- expect(agentCostMap[-5]).toBe(undefined);
- expect(agentCostMap[255]).toBe(undefined);
- });
-
- test("Test 11 - calculateDisasterClaimDensity", () => {
- expect(controller.calculateDisasterClaimDensity(15)).toBe(0.00172);
- expect(controller.calculateDisasterClaimDensity(68)).toBe(0.00029);
- expect(controller.calculateDisasterClaimDensity(101)).toBe(null);
- expect(controller.calculateDisasterClaimDensity(64)).toBe(0.01624);
- });
-});
-
-describe("Test Set Four", () => {
- test("Test 12 - getTopThreeMonthsWithHighestNumOfClaimsDesc", () => {
- const topThreeMonths =
- controller.getTopThreeMonthsWithHighestNumOfClaimsDesc();
- expect(topThreeMonths.length).toBe(3);
- expect(top_three_months[0]).toBe("April 2023");
- expect(top_three_months[1]).toBe("November 2022");
- expect(top_three_months[2]).toBe("February 2023");
- });
-});
\ No newline at end of file
diff --git a/nodejs/data/sfcc_2023_agents.json b/nodejs/data/sfcc_2023_agents.json
deleted file mode 100644
index 645e104..0000000
--- a/nodejs/data/sfcc_2023_agents.json
+++ /dev/null
@@ -1,1002 +0,0 @@
-[
- {
- "id": 1,
- "first_name": "Catha",
- "last_name": "Abrahmer",
- "state": "Minnesota",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "German",
- "years_active": 10
- },
- {
- "id": 2,
- "first_name": "Yetta",
- "last_name": "Eason",
- "state": "Oregon",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Korean",
- "years_active": 12
- },
- {
- "id": 3,
- "first_name": "Janeta",
- "last_name": "D'Avaux",
- "state": "Connecticut",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 47
- },
- {
- "id": 4,
- "first_name": "Kalie",
- "last_name": "Tomkins",
- "state": "Virginia",
- "region": "South",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 33
- },
- {
- "id": 5,
- "first_name": "Teddy",
- "last_name": "Dennitts",
- "state": "Illinois",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "Chinese",
- "years_active": 48
- },
- {
- "id": 6,
- "first_name": "Xylina",
- "last_name": "MacMurray",
- "state": "New Jersey",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": "Italian",
- "years_active": 17
- },
- {
- "id": 7,
- "first_name": "Walker",
- "last_name": "Nosworthy",
- "state": "Tennessee",
- "region": "South",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 39
- },
- {
- "id": 8,
- "first_name": "Kip",
- "last_name": "Scuffham",
- "state": "Maine",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": "French",
- "years_active": 35
- },
- {
- "id": 9,
- "first_name": "Winifred",
- "last_name": "Duddy",
- "state": "North Dakota",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "Italian",
- "years_active": 32
- },
- {
- "id": 10,
- "first_name": "Layney",
- "last_name": "Drewry",
- "state": "Maryland",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 25
- },
- {
- "id": 11,
- "first_name": "Beatrice",
- "last_name": "Sprowles",
- "state": "Arizona",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Arabic",
- "years_active": 7
- },
- {
- "id": 12,
- "first_name": "Candida",
- "last_name": "Dungay",
- "state": "South Carolina",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "Chinese",
- "years_active": 43
- },
- {
- "id": 13,
- "first_name": "Whitby",
- "last_name": "Awin",
- "state": "Pennsylvania",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 1
- },
- {
- "id": 14,
- "first_name": "Buck",
- "last_name": "Withringten",
- "state": "Alabama",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "Italian",
- "years_active": 16
- },
- {
- "id": 15,
- "first_name": "Ladonna",
- "last_name": "Earengey",
- "state": "Indiana",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 36
- },
- {
- "id": 16,
- "first_name": "Guglielmo",
- "last_name": "Lamboll",
- "state": "Vermont",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 4
- },
- {
- "id": 17,
- "first_name": "Gardner",
- "last_name": "Nasey",
- "state": "Idaho",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 21
- },
- {
- "id": 18,
- "first_name": "Georgina",
- "last_name": "Lovegrove",
- "state": "California",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 11
- },
- {
- "id": 19,
- "first_name": "Xaviera",
- "last_name": "Darell",
- "state": "Massachusetts",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": "German",
- "years_active": 10
- },
- {
- "id": 20,
- "first_name": "Dick",
- "last_name": "Andras",
- "state": "Ohio",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 14
- },
- {
- "id": 21,
- "first_name": "Luise",
- "last_name": "Reeken",
- "state": "North Carolina",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 14
- },
- {
- "id": 22,
- "first_name": "Gale",
- "last_name": "Cantua",
- "state": "Arkansas",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "German",
- "years_active": 2
- },
- {
- "id": 23,
- "first_name": "Gracie",
- "last_name": "Polland",
- "state": "Washington",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Italian",
- "years_active": 29
- },
- {
- "id": 24,
- "first_name": "Connie",
- "last_name": "Loyley",
- "state": "Ohio",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 33
- },
- {
- "id": 25,
- "first_name": "Laryssa",
- "last_name": "Affleck",
- "state": "South Dakota",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 7
- },
- {
- "id": 26,
- "first_name": "Erina",
- "last_name": "Coan",
- "state": "North Carolina",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 43
- },
- {
- "id": 27,
- "first_name": "Evered",
- "last_name": "Sergent",
- "state": "Utah",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 50
- },
- {
- "id": 28,
- "first_name": "Cassandry",
- "last_name": "Curston",
- "state": "New Mexico",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 49
- },
- {
- "id": 29,
- "first_name": "Cirstoforo",
- "last_name": "Yurov",
- "state": "Washington",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "German",
- "years_active": 34
- },
- {
- "id": 30,
- "first_name": "Hewe",
- "last_name": "Matveiko",
- "state": "Missouri",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 25
- },
- {
- "id": 31,
- "first_name": "Nevil",
- "last_name": "O' Hern",
- "state": "Alabama",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "French",
- "years_active": 19
- },
- {
- "id": 32,
- "first_name": "Cynthea",
- "last_name": "Pitkins",
- "state": "New Jersey",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 16
- },
- {
- "id": 33,
- "first_name": "Irita",
- "last_name": "Segebrecht",
- "state": "South Carolina",
- "region": "South",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 38
- },
- {
- "id": 34,
- "first_name": "Loraine",
- "last_name": "Turmel",
- "state": "Iowa",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "Italian",
- "years_active": 21
- },
- {
- "id": 35,
- "first_name": "Doris",
- "last_name": "Illem",
- "state": "Oklahoma",
- "region": "South",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 5
- },
- {
- "id": 36,
- "first_name": "Maritsa",
- "last_name": "Hulme",
- "state": "Michigan",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 28
- },
- {
- "id": 37,
- "first_name": "Hagen",
- "last_name": "Baxter",
- "state": "Oregon",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Arabic",
- "years_active": 44
- },
- {
- "id": 38,
- "first_name": "Patty",
- "last_name": "Saxelby",
- "state": "Hawaii",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 4
- },
- {
- "id": 39,
- "first_name": "Hans",
- "last_name": "Hardway",
- "state": "Georgia",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 47
- },
- {
- "id": 40,
- "first_name": "Lind",
- "last_name": "Loughton",
- "state": "Rhode Island",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": "Italian",
- "years_active": 6
- },
- {
- "id": 41,
- "first_name": "Cynthie",
- "last_name": "Gytesham",
- "state": "North Dakota",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 36
- },
- {
- "id": 42,
- "first_name": "Dougie",
- "last_name": "Faulconer",
- "state": "Utah",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 15
- },
- {
- "id": 43,
- "first_name": "Briano",
- "last_name": "Lowell",
- "state": "Missouri",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "Italian",
- "years_active": 36
- },
- {
- "id": 44,
- "first_name": "Eli",
- "last_name": "Ginity",
- "state": "Nevada",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Arabic",
- "years_active": 7
- },
- {
- "id": 45,
- "first_name": "Wendell",
- "last_name": "Tolputt",
- "state": "New Jersey",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 50
- },
- {
- "id": 46,
- "first_name": "Briggs",
- "last_name": "Snasdell",
- "state": "Minnesota",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "German",
- "years_active": 6
- },
- {
- "id": 47,
- "first_name": "Peadar",
- "last_name": "D'Hooge",
- "state": "Idaho",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 17
- },
- {
- "id": 48,
- "first_name": "Babbette",
- "last_name": "Tower",
- "state": "Rhode Island",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 45
- },
- {
- "id": 49,
- "first_name": "Tedda",
- "last_name": "Highwood",
- "state": "Kansas",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "Arabic",
- "years_active": 41
- },
- {
- "id": 50,
- "first_name": "Davina",
- "last_name": "Totton",
- "state": "Oregon",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Korean",
- "years_active": 35
- },
- {
- "id": 51,
- "first_name": "Blondelle",
- "last_name": "MacDearmaid",
- "state": "South Dakota",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 31
- },
- {
- "id": 52,
- "first_name": "Vinnie",
- "last_name": "Chree",
- "state": "South Carolina",
- "region": "South",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 43
- },
- {
- "id": 53,
- "first_name": "Boniface",
- "last_name": "Antwis",
- "state": "Rhode Island",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 25
- },
- {
- "id": 54,
- "first_name": "Merrill",
- "last_name": "Pallin",
- "state": "New Hampshire",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": "Arabic",
- "years_active": 40
- },
- {
- "id": 55,
- "first_name": "Brent",
- "last_name": "Alywen",
- "state": "New Mexico",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 13
- },
- {
- "id": 56,
- "first_name": "Vinnie",
- "last_name": "Lindemann",
- "state": "District of Columbia",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 45
- },
- {
- "id": 57,
- "first_name": "Pooh",
- "last_name": "Wilce",
- "state": "Louisiana",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "German",
- "years_active": 19
- },
- {
- "id": 58,
- "first_name": "Kaiser",
- "last_name": "Toffolini",
- "state": "Ohio",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "Chinese",
- "years_active": 21
- },
- {
- "id": 59,
- "first_name": "Clark",
- "last_name": "Tussaine",
- "state": "Washington",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Italian",
- "years_active": 1
- },
- {
- "id": 60,
- "first_name": "Annissa",
- "last_name": "Moxted",
- "state": "Utah",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 26
- },
- {
- "id": 61,
- "first_name": "Imelda",
- "last_name": "McMenamie",
- "state": "New Jersey",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 6
- },
- {
- "id": 62,
- "first_name": "Melanie",
- "last_name": "Blunsom",
- "state": "Arizona",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 49
- },
- {
- "id": 63,
- "first_name": "Sarge",
- "last_name": "Iredale",
- "state": "Alaska",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 6
- },
- {
- "id": 64,
- "first_name": "Hanson",
- "last_name": "Buxam",
- "state": "Nevada",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 35
- },
- {
- "id": 65,
- "first_name": "Nettle",
- "last_name": "Apps",
- "state": "Hawaii",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Arabic",
- "years_active": 19
- },
- {
- "id": 66,
- "first_name": "Joellen",
- "last_name": "Chapiro",
- "state": "Nebraska",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "French",
- "years_active": 25
- },
- {
- "id": 67,
- "first_name": "Smith",
- "last_name": "Budden",
- "state": "Hawaii",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Chinese",
- "years_active": 7
- },
- {
- "id": 68,
- "first_name": "Roz",
- "last_name": "Sygroves",
- "state": "Alaska",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 42
- },
- {
- "id": 69,
- "first_name": "Emylee",
- "last_name": "Simonetto",
- "state": "Wyoming",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 24
- },
- {
- "id": 70,
- "first_name": "Trev",
- "last_name": "Balint",
- "state": "District of Columbia",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 14
- },
- {
- "id": 71,
- "first_name": "Karrah",
- "last_name": "Gartenfeld",
- "state": "Mississippi",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "French",
- "years_active": 25
- },
- {
- "id": 72,
- "first_name": "Newton",
- "last_name": "Orro",
- "state": "Kentucky",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 40
- },
- {
- "id": 73,
- "first_name": "Letta",
- "last_name": "Fury",
- "state": "Massachusetts",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 15
- },
- {
- "id": 74,
- "first_name": "Ashien",
- "last_name": "McGeachey",
- "state": "Massachusetts",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": "Chinese",
- "years_active": 46
- },
- {
- "id": 75,
- "first_name": "Calypso",
- "last_name": "Yuryev",
- "state": "Alaska",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 16
- },
- {
- "id": 76,
- "first_name": "Rhys",
- "last_name": "Kobelt",
- "state": "California",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 34
- },
- {
- "id": 77,
- "first_name": "Gaspard",
- "last_name": "Pegden",
- "state": "Michigan",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 35
- },
- {
- "id": 78,
- "first_name": "Lory",
- "last_name": "de Juares",
- "state": "Alabama",
- "region": "South",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 27
- },
- {
- "id": 79,
- "first_name": "Nils",
- "last_name": "Brashier",
- "state": "Texas",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "Italian",
- "years_active": 18
- },
- {
- "id": 80,
- "first_name": "Idalia",
- "last_name": "Farleigh",
- "state": "North Carolina",
- "region": "South",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 16
- },
- {
- "id": 81,
- "first_name": "Vi",
- "last_name": "Barkus",
- "state": "New Jersey",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 33
- },
- {
- "id": 82,
- "first_name": "Darcee",
- "last_name": "Timewell",
- "state": "Arizona",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 26
- },
- {
- "id": 83,
- "first_name": "Rozanna",
- "last_name": "Heakins",
- "state": "Minnesota",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "French",
- "years_active": 20
- },
- {
- "id": 84,
- "first_name": "Jemima",
- "last_name": "Rosling",
- "state": "California",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Korean",
- "years_active": 37
- },
- {
- "id": 85,
- "first_name": "Fancie",
- "last_name": "Kilner",
- "state": "Nebraska",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 6
- },
- {
- "id": 86,
- "first_name": "Gabrila",
- "last_name": "Ridgedell",
- "state": "California",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Arabic",
- "years_active": 32
- },
- {
- "id": 87,
- "first_name": "Curcio",
- "last_name": "Musgrave",
- "state": "Colorado",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 19
- },
- {
- "id": 88,
- "first_name": "Honey",
- "last_name": "Duffill",
- "state": "Pennsylvania",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": "Italian",
- "years_active": 26
- },
- {
- "id": 89,
- "first_name": "Harley",
- "last_name": "Vittel",
- "state": "Arizona",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 20
- },
- {
- "id": 90,
- "first_name": "Blake",
- "last_name": "Penddreth",
- "state": "New Jersey",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 36
- },
- {
- "id": 91,
- "first_name": "Starlene",
- "last_name": "Boscott",
- "state": "Illinois",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "Italian",
- "years_active": 34
- },
- {
- "id": 92,
- "first_name": "Orsa",
- "last_name": "Bellamy",
- "state": "Florida",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 38
- },
- {
- "id": 93,
- "first_name": "Philis",
- "last_name": "Bover",
- "state": "Rhode Island",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 25
- },
- {
- "id": 94,
- "first_name": "Kathe",
- "last_name": "Tipler",
- "state": "New York",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 47
- },
- {
- "id": 95,
- "first_name": "Durand",
- "last_name": "Ellwood",
- "state": "Alaska",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 45
- },
- {
- "id": 96,
- "first_name": "Brana",
- "last_name": "Drinan",
- "state": "South Dakota",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 42
- },
- {
- "id": 97,
- "first_name": "Wiatt",
- "last_name": "Kitchenman",
- "state": "North Carolina",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "Korean",
- "years_active": 40
- },
- {
- "id": 98,
- "first_name": "Lionello",
- "last_name": "Krauze",
- "state": "Mississippi",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "German",
- "years_active": 48
- },
- {
- "id": 99,
- "first_name": "Louella",
- "last_name": "Evangelinos",
- "state": "Georgia",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "Korean",
- "years_active": 6
- },
- {
- "id": 100,
- "first_name": "Christa",
- "last_name": "McPartling",
- "state": "California",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 39
- }
-]
diff --git a/nodejs/data/sfcc_2023_claim_handlers.json b/nodejs/data/sfcc_2023_claim_handlers.json
deleted file mode 100644
index 6d951b5..0000000
--- a/nodejs/data/sfcc_2023_claim_handlers.json
+++ /dev/null
@@ -1,782 +0,0 @@
-[
- {
- "first_name": "Barnabe",
- "last_name": "Clynman",
- "id": 1
- },
- {
- "first_name": "Valdemar",
- "last_name": "Size",
- "id": 2
- },
- {
- "first_name": "Edithe",
- "last_name": "Bleakley",
- "id": 3
- },
- {
- "first_name": "Sonja",
- "last_name": "Diamant",
- "id": 4
- },
- {
- "first_name": "Elsey",
- "last_name": "Sreenan",
- "id": 5
- },
- {
- "first_name": "Wilmer",
- "last_name": "Sykes",
- "id": 6
- },
- {
- "first_name": "Wang",
- "last_name": "California",
- "id": 7
- },
- {
- "first_name": "Shadow",
- "last_name": "Cabane",
- "id": 8
- },
- {
- "first_name": "Deborah",
- "last_name": "Longfellow",
- "id": 9
- },
- {
- "first_name": "Albertina",
- "last_name": "McCrorie",
- "id": 10
- },
- {
- "first_name": "Trude",
- "last_name": "Vakhonin",
- "id": 11
- },
- {
- "first_name": "Corabel",
- "last_name": "Greeding",
- "id": 12
- },
- {
- "first_name": "Farra",
- "last_name": "Pickett",
- "id": 13
- },
- {
- "first_name": "Sal",
- "last_name": "Plott",
- "id": 14
- },
- {
- "first_name": "Eddi",
- "last_name": "Cicchitello",
- "id": 15
- },
- {
- "first_name": "Jonas",
- "last_name": "East",
- "id": 16
- },
- {
- "first_name": "Emiline",
- "last_name": "Moultrie",
- "id": 17
- },
- {
- "first_name": "Laverna",
- "last_name": "Rignold",
- "id": 18
- },
- {
- "first_name": "Ludovico",
- "last_name": "Hebborn",
- "id": 19
- },
- {
- "first_name": "Des",
- "last_name": "Tubritt",
- "id": 20
- },
- {
- "first_name": "Fritz",
- "last_name": "Angove",
- "id": 21
- },
- {
- "first_name": "Persis",
- "last_name": "Dinesen",
- "id": 22
- },
- {
- "first_name": "Christian",
- "last_name": "Kelshaw",
- "id": 23
- },
- {
- "first_name": "Bartholomeo",
- "last_name": "McBlain",
- "id": 24
- },
- {
- "first_name": "Lorrie",
- "last_name": "Lightbourn",
- "id": 25
- },
- {
- "first_name": "Bobbi",
- "last_name": "Adriani",
- "id": 26
- },
- {
- "first_name": "Heriberto",
- "last_name": "Carlesi",
- "id": 27
- },
- {
- "first_name": "Stearn",
- "last_name": "Quilligan",
- "id": 28
- },
- {
- "first_name": "Amalle",
- "last_name": "Vanyutin",
- "id": 29
- },
- {
- "first_name": "Wilden",
- "last_name": "Stratley",
- "id": 30
- },
- {
- "first_name": "Netty",
- "last_name": "Motion",
- "id": 31
- },
- {
- "first_name": "Garvin",
- "last_name": "Cotte",
- "id": 32
- },
- {
- "first_name": "Ashby",
- "last_name": "Woolbrook",
- "id": 33
- },
- {
- "first_name": "Modesty",
- "last_name": "Doldon",
- "id": 34
- },
- {
- "first_name": "Maurene",
- "last_name": "Hesbrook",
- "id": 35
- },
- {
- "first_name": "Cindee",
- "last_name": "Mogey",
- "id": 36
- },
- {
- "first_name": "Korie",
- "last_name": "Donwell",
- "id": 37
- },
- {
- "first_name": "Casi",
- "last_name": "Miebes",
- "id": 38
- },
- {
- "first_name": "Alvira",
- "last_name": "Loxdale",
- "id": 39
- },
- {
- "first_name": "Ellis",
- "last_name": "Cadagan",
- "id": 40
- },
- {
- "first_name": "Jarib",
- "last_name": "Brownsett",
- "id": 41
- },
- {
- "first_name": "Esdras",
- "last_name": "Gullis",
- "id": 42
- },
- {
- "first_name": "Jordain",
- "last_name": "Gaine",
- "id": 43
- },
- {
- "first_name": "Kingsly",
- "last_name": "Kelemen",
- "id": 44
- },
- {
- "first_name": "Sallee",
- "last_name": "Ashworth",
- "id": 45
- },
- {
- "first_name": "Erika",
- "last_name": "Willmont",
- "id": 46
- },
- {
- "first_name": "Rinaldo",
- "last_name": "Standbrook",
- "id": 47
- },
- {
- "first_name": "Abbey",
- "last_name": "Scholer",
- "id": 48
- },
- {
- "first_name": "Colver",
- "last_name": "Ilyenko",
- "id": 49
- },
- {
- "first_name": "Phillipp",
- "last_name": "Klulik",
- "id": 50
- },
- {
- "first_name": "Rancell",
- "last_name": "Salvidge",
- "id": 51
- },
- {
- "first_name": "Lesli",
- "last_name": "Sidry",
- "id": 52
- },
- {
- "first_name": "Ellette",
- "last_name": "Connikie",
- "id": 53
- },
- {
- "first_name": "Olivie",
- "last_name": "Easterbrook",
- "id": 54
- },
- {
- "first_name": "Idell",
- "last_name": "McVicker",
- "id": 55
- },
- {
- "first_name": "Tonie",
- "last_name": "Roos",
- "id": 56
- },
- {
- "first_name": "Herby",
- "last_name": "Duffit",
- "id": 57
- },
- {
- "first_name": "Lila",
- "last_name": "Byrd",
- "id": 58
- },
- {
- "first_name": "Shayna",
- "last_name": "McCluskey",
- "id": 59
- },
- {
- "first_name": "Ellie",
- "last_name": "Bottomer",
- "id": 60
- },
- {
- "first_name": "Gardie",
- "last_name": "Lamputt",
- "id": 61
- },
- {
- "first_name": "Angelina",
- "last_name": "Incogna",
- "id": 62
- },
- {
- "first_name": "Berget",
- "last_name": "Nussen",
- "id": 63
- },
- {
- "first_name": "Alley",
- "last_name": "Wrighton",
- "id": 64
- },
- {
- "first_name": "Dione",
- "last_name": "Shire",
- "id": 65
- },
- {
- "first_name": "Ashly",
- "last_name": "Connichie",
- "id": 66
- },
- {
- "first_name": "Ossie",
- "last_name": "Besson",
- "id": 67
- },
- {
- "first_name": "Luce",
- "last_name": "Jackling",
- "id": 68
- },
- {
- "first_name": "Juliann",
- "last_name": "Wickham",
- "id": 69
- },
- {
- "first_name": "Lillian",
- "last_name": "Lansdale",
- "id": 70
- },
- {
- "first_name": "Cornie",
- "last_name": "Tindall",
- "id": 71
- },
- {
- "first_name": "Dina",
- "last_name": "Alster",
- "id": 72
- },
- {
- "first_name": "Normand",
- "last_name": "Mein",
- "id": 73
- },
- {
- "first_name": "Wildon",
- "last_name": "Rizzillo",
- "id": 74
- },
- {
- "first_name": "Hailee",
- "last_name": "Jeroch",
- "id": 75
- },
- {
- "first_name": "Corissa",
- "last_name": "Newarte",
- "id": 76
- },
- {
- "first_name": "Rancell",
- "last_name": "Chrispin",
- "id": 77
- },
- {
- "first_name": "Kariotta",
- "last_name": "Zammett",
- "id": 78
- },
- {
- "first_name": "Tammy",
- "last_name": "Jeannet",
- "id": 79
- },
- {
- "first_name": "Osbourne",
- "last_name": "Heinert",
- "id": 80
- },
- {
- "first_name": "Marcia",
- "last_name": "Kaes",
- "id": 81
- },
- {
- "first_name": "Curry",
- "last_name": "MacCracken",
- "id": 82
- },
- {
- "first_name": "Duke",
- "last_name": "Ramalhete",
- "id": 83
- },
- {
- "first_name": "Domeniga",
- "last_name": "Cutajar",
- "id": 84
- },
- {
- "first_name": "Blaire",
- "last_name": "Kolyagin",
- "id": 85
- },
- {
- "first_name": "Kerry",
- "last_name": "Glassard",
- "id": 86
- },
- {
- "first_name": "Adolphe",
- "last_name": "Snook",
- "id": 87
- },
- {
- "first_name": "Byrom",
- "last_name": "Kaygill",
- "id": 88
- },
- {
- "first_name": "Neddie",
- "last_name": "Klimaszewski",
- "id": 89
- },
- {
- "first_name": "Neal",
- "last_name": "Marzelle",
- "id": 90
- },
- {
- "first_name": "Laureen",
- "last_name": "Ezzell",
- "id": 91
- },
- {
- "first_name": "Davine",
- "last_name": "Druce",
- "id": 92
- },
- {
- "first_name": "Carny",
- "last_name": "Baird",
- "id": 93
- },
- {
- "first_name": "Thadeus",
- "last_name": "Alcido",
- "id": 94
- },
- {
- "first_name": "Berry",
- "last_name": "Chanter",
- "id": 95
- },
- {
- "first_name": "Kamillah",
- "last_name": "Mott",
- "id": 96
- },
- {
- "first_name": "Godfree",
- "last_name": "Cains",
- "id": 97
- },
- {
- "first_name": "Rubia",
- "last_name": "Blundan",
- "id": 98
- },
- {
- "first_name": "Bart",
- "last_name": "Godain",
- "id": 99
- },
- {
- "first_name": "Carlina",
- "last_name": "Chamberlayne",
- "id": 100
- },
- {
- "first_name": "Alaric",
- "last_name": "Dils",
- "id": 101
- },
- {
- "first_name": "Tracy",
- "last_name": "Bamell",
- "id": 102
- },
- {
- "first_name": "Laural",
- "last_name": "Melly",
- "id": 103
- },
- {
- "first_name": "Bary",
- "last_name": "Ableson",
- "id": 104
- },
- {
- "first_name": "Joell",
- "last_name": "M'Chirrie",
- "id": 105
- },
- {
- "first_name": "Danni",
- "last_name": "Vaines",
- "id": 106
- },
- {
- "first_name": "Emelia",
- "last_name": "Bullough",
- "id": 107
- },
- {
- "first_name": "Cinnamon",
- "last_name": "Flounders",
- "id": 108
- },
- {
- "first_name": "Farica",
- "last_name": "Soaper",
- "id": 109
- },
- {
- "first_name": "Peggy",
- "last_name": "Lemerie",
- "id": 110
- },
- {
- "first_name": "Craig",
- "last_name": "Greenslade",
- "id": 111
- },
- {
- "first_name": "Zitella",
- "last_name": "Bachman",
- "id": 112
- },
- {
- "first_name": "Willa",
- "last_name": "Schlag",
- "id": 113
- },
- {
- "first_name": "Leonerd",
- "last_name": "Dewes",
- "id": 114
- },
- {
- "first_name": "Jacquelin",
- "last_name": "Willavize",
- "id": 115
- },
- {
- "first_name": "Amble",
- "last_name": "Brahams",
- "id": 116
- },
- {
- "first_name": "Rona",
- "last_name": "McGlew",
- "id": 117
- },
- {
- "first_name": "Libbi",
- "last_name": "Cargenven",
- "id": 118
- },
- {
- "first_name": "Ina",
- "last_name": "Le",
- "id": 119
- },
- {
- "first_name": "Jamie",
- "last_name": "Skittle",
- "id": 120
- },
- {
- "first_name": "Stephani",
- "last_name": "Battle",
- "id": 121
- },
- {
- "first_name": "Rogers",
- "last_name": "Ciccetti",
- "id": 122
- },
- {
- "first_name": "Calv",
- "last_name": "Drinkhill",
- "id": 123
- },
- {
- "first_name": "Timothea",
- "last_name": "Sprulls",
- "id": 124
- },
- {
- "first_name": "Darb",
- "last_name": "Seston",
- "id": 125
- },
- {
- "first_name": "Jessee",
- "last_name": "Wale",
- "id": 126
- },
- {
- "first_name": "Eve",
- "last_name": "Reith",
- "id": 127
- },
- {
- "first_name": "Rolland",
- "last_name": "Currier",
- "id": 128
- },
- {
- "first_name": "Hayes",
- "last_name": "Halshaw",
- "id": 129
- },
- {
- "first_name": "Pieter",
- "last_name": "Ventris",
- "id": 130
- },
- {
- "first_name": "Dalia",
- "last_name": "Blades",
- "id": 131
- },
- {
- "first_name": "Sabine",
- "last_name": "Fader",
- "id": 132
- },
- {
- "first_name": "Steward",
- "last_name": "Rogez",
- "id": 133
- },
- {
- "first_name": "Vanya",
- "last_name": "Cicchinelli",
- "id": 134
- },
- {
- "first_name": "Rene",
- "last_name": "Rockhill",
- "id": 135
- },
- {
- "first_name": "Marji",
- "last_name": "Coulbeck",
- "id": 136
- },
- {
- "first_name": "Nicolle",
- "last_name": "Strain",
- "id": 137
- },
- {
- "first_name": "Xaviera",
- "last_name": "Swash",
- "id": 138
- },
- {
- "first_name": "Selle",
- "last_name": "Johnston",
- "id": 139
- },
- {
- "first_name": "Caressa",
- "last_name": "Bavridge",
- "id": 140
- },
- {
- "first_name": "Benedict",
- "last_name": "Robichon",
- "id": 141
- },
- {
- "first_name": "Rogerio",
- "last_name": "Armitage",
- "id": 142
- },
- {
- "first_name": "Otto",
- "last_name": "Nelius",
- "id": 143
- },
- {
- "first_name": "Bing",
- "last_name": "Ferrai",
- "id": 144
- },
- {
- "first_name": "Avril",
- "last_name": "Wagner",
- "id": 145
- },
- {
- "first_name": "Devondra",
- "last_name": "Cutforth",
- "id": 146
- },
- {
- "first_name": "Giustino",
- "last_name": "Minchella",
- "id": 147
- },
- {
- "first_name": "Dore",
- "last_name": "McIlvaney",
- "id": 148
- },
- {
- "first_name": "Elene",
- "last_name": "Lukacs",
- "id": 149
- },
- {
- "first_name": "Leicester",
- "last_name": "Mattedi",
- "id": 150
- },
- {
- "first_name": "Blayne",
- "last_name": "Wordsworth",
- "id": 151
- },
- {
- "first_name": "Bidget",
- "last_name": "Royle",
- "id": 152
- },
- {
- "first_name": "Heidie",
- "last_name": "Cossem",
- "id": 153
- },
- {
- "first_name": "Seward",
- "last_name": "Greenhead",
- "id": 154
- },
- {
- "first_name": "Ariana",
- "last_name": "Duigan",
- "id": 155
- },
- {
- "first_name": "Rollin",
- "last_name": "Dainton",
- "id": 156
- }
-]
\ No newline at end of file
diff --git a/nodejs/data/sfcc_2023_claims.json b/nodejs/data/sfcc_2023_claims.json
deleted file mode 100644
index 6c4e089..0000000
--- a/nodejs/data/sfcc_2023_claims.json
+++ /dev/null
@@ -1,12002 +0,0 @@
-[
- {
- "id": 1,
- "disaster_id": 15,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 3580.02,
- "agent_assigned_id": 97,
- "claim_handler_assigned_id": 50
- },
- {
- "id": 2,
- "disaster_id": 24,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 1741.32,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 92
- },
- {
- "id": 3,
- "disaster_id": 31,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 15224.3,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 133
- },
- {
- "id": 4,
- "disaster_id": 14,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 6542.46,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 39
- },
- {
- "id": 5,
- "disaster_id": 30,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 979.81,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 103
- },
- {
- "id": 6,
- "disaster_id": 77,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 200430.52,
- "agent_assigned_id": 98,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 7,
- "disaster_id": 31,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 1362.17,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 156
- },
- {
- "id": 8,
- "disaster_id": 17,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 438400.51,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 112
- },
- {
- "id": 9,
- "disaster_id": 20,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 1326.11,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 35
- },
- {
- "id": 10,
- "disaster_id": 86,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 437.48,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 49
- },
- {
- "id": 11,
- "disaster_id": 86,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 8797.07,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 68
- },
- {
- "id": 12,
- "disaster_id": 21,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 2918.5,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 13,
- "disaster_id": 74,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 23890.38,
- "agent_assigned_id": 26,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 14,
- "disaster_id": 55,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 1681.48,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 117
- },
- {
- "id": 15,
- "disaster_id": 35,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 993.53,
- "agent_assigned_id": 85,
- "claim_handler_assigned_id": 59
- },
- {
- "id": 16,
- "disaster_id": 25,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 13560.17,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 73
- },
- {
- "id": 17,
- "disaster_id": 66,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 30294.14,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 122
- },
- {
- "id": 18,
- "disaster_id": 97,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 264700.71,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 138
- },
- {
- "id": 19,
- "disaster_id": 29,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 39400.46,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 30
- },
- {
- "id": 20,
- "disaster_id": 92,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 140820.81,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 11
- },
- {
- "id": 21,
- "disaster_id": 57,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 68880.07,
- "agent_assigned_id": 89,
- "claim_handler_assigned_id": 115
- },
- {
- "id": 22,
- "disaster_id": 98,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 1544.33,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 97
- },
- {
- "id": 23,
- "disaster_id": 91,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 5534.35,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 21
- },
- {
- "id": 24,
- "disaster_id": 72,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 7509.84,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 22
- },
- {
- "id": 25,
- "disaster_id": 16,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 13195.12,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 23
- },
- {
- "id": 26,
- "disaster_id": 40,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1021.43,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 118
- },
- {
- "id": 27,
- "disaster_id": 2,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 11272.93,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 28
- },
- {
- "id": 28,
- "disaster_id": 51,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 81160.19,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 108
- },
- {
- "id": 29,
- "disaster_id": 81,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 8,
- "estimate_cost": 28912.89,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 11
- },
- {
- "id": 30,
- "disaster_id": 6,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 423760.7,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 152
- },
- {
- "id": 31,
- "disaster_id": 77,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 8,
- "estimate_cost": 63488.54,
- "agent_assigned_id": 71,
- "claim_handler_assigned_id": 11
- },
- {
- "id": 32,
- "disaster_id": 22,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 1256.87,
- "agent_assigned_id": 70,
- "claim_handler_assigned_id": 27
- },
- {
- "id": 33,
- "disaster_id": 20,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 13762.36,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 31
- },
- {
- "id": 34,
- "disaster_id": 89,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 8764.87,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 148
- },
- {
- "id": 35,
- "disaster_id": 63,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 95060.58,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 36,
- "disaster_id": 11,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 72510.72,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 27
- },
- {
- "id": 37,
- "disaster_id": 94,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 10,
- "estimate_cost": 860000.96,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 34
- },
- {
- "id": 38,
- "disaster_id": 23,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 440.44,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 39,
- "disaster_id": 34,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 420540.13,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 85
- },
- {
- "id": 40,
- "disaster_id": 61,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 972.58,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 143
- },
- {
- "id": 41,
- "disaster_id": 56,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 186210.41,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 114
- },
- {
- "id": 42,
- "disaster_id": 85,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 1105.04,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 136
- },
- {
- "id": 43,
- "disaster_id": 65,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 1651.13,
- "agent_assigned_id": 14,
- "claim_handler_assigned_id": 38
- },
- {
- "id": 44,
- "disaster_id": 87,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 2587.56,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 2
- },
- {
- "id": 45,
- "disaster_id": 30,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 161.71,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 62
- },
- {
- "id": 46,
- "disaster_id": 73,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 32380.38,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 37
- },
- {
- "id": 47,
- "disaster_id": 99,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 76840.43,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 57
- },
- {
- "id": 48,
- "disaster_id": 71,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 748080.1,
- "agent_assigned_id": 27,
- "claim_handler_assigned_id": 142
- },
- {
- "id": 49,
- "disaster_id": 83,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 6508.15,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 41
- },
- {
- "id": 50,
- "disaster_id": 41,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 7954.76,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 32
- },
- {
- "id": 51,
- "disaster_id": 99,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 829.6,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 155
- },
- {
- "id": 52,
- "disaster_id": 88,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 98970.24,
- "agent_assigned_id": 47,
- "claim_handler_assigned_id": 1
- },
- {
- "id": 53,
- "disaster_id": 67,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 64372.16,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 73
- },
- {
- "id": 54,
- "disaster_id": 92,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 664240.86,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 93
- },
- {
- "id": 55,
- "disaster_id": 39,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 328770.11,
- "agent_assigned_id": 11,
- "claim_handler_assigned_id": 113
- },
- {
- "id": 56,
- "disaster_id": 87,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 33192.9,
- "agent_assigned_id": 23,
- "claim_handler_assigned_id": 89
- },
- {
- "id": 57,
- "disaster_id": 66,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 150.42,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 137
- },
- {
- "id": 58,
- "disaster_id": 52,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 2803.2,
- "agent_assigned_id": 5,
- "claim_handler_assigned_id": 146
- },
- {
- "id": 59,
- "disaster_id": 56,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 2156.95,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 123
- },
- {
- "id": 60,
- "disaster_id": 59,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 731.8,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 55
- },
- {
- "id": 61,
- "disaster_id": 15,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 292.7,
- "agent_assigned_id": 80,
- "claim_handler_assigned_id": 74
- },
- {
- "id": 62,
- "disaster_id": 37,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 4423.32,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 130
- },
- {
- "id": 63,
- "disaster_id": 56,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 158520.21,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 63
- },
- {
- "id": 64,
- "disaster_id": 74,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 2859.48,
- "agent_assigned_id": 80,
- "claim_handler_assigned_id": 91
- },
- {
- "id": 65,
- "disaster_id": 8,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 4101.33,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 57
- },
- {
- "id": 66,
- "disaster_id": 64,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1904.24,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 118
- },
- {
- "id": 67,
- "disaster_id": 10,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 460.0,
- "agent_assigned_id": 66,
- "claim_handler_assigned_id": 149
- },
- {
- "id": 68,
- "disaster_id": 66,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 6279.52,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 98
- },
- {
- "id": 69,
- "disaster_id": 98,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 290.87,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 111
- },
- {
- "id": 70,
- "disaster_id": 26,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 5725.39,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 97
- },
- {
- "id": 71,
- "disaster_id": 81,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 283.68,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 121
- },
- {
- "id": 72,
- "disaster_id": 80,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 191760.43,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 57
- },
- {
- "id": 73,
- "disaster_id": 34,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 187.21,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 74,
- "disaster_id": 81,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 1932.27,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 61
- },
- {
- "id": 75,
- "disaster_id": 33,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 7,
- "estimate_cost": 30436.07,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 69
- },
- {
- "id": 76,
- "disaster_id": 26,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 12480.86,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 136
- },
- {
- "id": 77,
- "disaster_id": 64,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 741960.11,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 120
- },
- {
- "id": 78,
- "disaster_id": 11,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 4201.27,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 62
- },
- {
- "id": 79,
- "disaster_id": 86,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 12720.15,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 26
- },
- {
- "id": 80,
- "disaster_id": 4,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 5767.29,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 122
- },
- {
- "id": 81,
- "disaster_id": 98,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 330890.3,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 49
- },
- {
- "id": 82,
- "disaster_id": 82,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 1657.61,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 11
- },
- {
- "id": 83,
- "disaster_id": 66,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 26592.59,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 139
- },
- {
- "id": 84,
- "disaster_id": 54,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 580.37,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 85,
- "disaster_id": 9,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 34452.08,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 152
- },
- {
- "id": 86,
- "disaster_id": 39,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 515.0,
- "agent_assigned_id": 62,
- "claim_handler_assigned_id": 78
- },
- {
- "id": 87,
- "disaster_id": 27,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 4578.17,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 141
- },
- {
- "id": 88,
- "disaster_id": 21,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 18592.37,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 112
- },
- {
- "id": 89,
- "disaster_id": 13,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 1479.36,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 104
- },
- {
- "id": 90,
- "disaster_id": 42,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 2668.32,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 22
- },
- {
- "id": 91,
- "disaster_id": 63,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 438360.74,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 92,
- "disaster_id": 67,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 2067.1,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 99
- },
- {
- "id": 93,
- "disaster_id": 47,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 31340.03,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 1
- },
- {
- "id": 94,
- "disaster_id": 67,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 5665.9,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 56
- },
- {
- "id": 95,
- "disaster_id": 57,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 39716.85,
- "agent_assigned_id": 82,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 96,
- "disaster_id": 75,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 733900.72,
- "agent_assigned_id": 78,
- "claim_handler_assigned_id": 141
- },
- {
- "id": 97,
- "disaster_id": 37,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 826700.56,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 118
- },
- {
- "id": 98,
- "disaster_id": 50,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 86340.22,
- "agent_assigned_id": 8,
- "claim_handler_assigned_id": 31
- },
- {
- "id": 99,
- "disaster_id": 86,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 10200.96,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 66
- },
- {
- "id": 100,
- "disaster_id": 29,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 7,
- "estimate_cost": 5174.43,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 72
- },
- {
- "id": 101,
- "disaster_id": 96,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 216600.22,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 131
- },
- {
- "id": 102,
- "disaster_id": 6,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 18492.29,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 148
- },
- {
- "id": 103,
- "disaster_id": 85,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 1586.04,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 12
- },
- {
- "id": 104,
- "disaster_id": 20,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 3883.58,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 14
- },
- {
- "id": 105,
- "disaster_id": 25,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 39910.41,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 82
- },
- {
- "id": 106,
- "disaster_id": 73,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 7378.47,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 15
- },
- {
- "id": 107,
- "disaster_id": 60,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 411120.7,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 80
- },
- {
- "id": 108,
- "disaster_id": 98,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 5652.69,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 109,
- "disaster_id": 66,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 1189.53,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 81
- },
- {
- "id": 110,
- "disaster_id": 79,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 9172.87,
- "agent_assigned_id": 43,
- "claim_handler_assigned_id": 117
- },
- {
- "id": 111,
- "disaster_id": 2,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 230100.3,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 137
- },
- {
- "id": 112,
- "disaster_id": 1,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 1,
- "estimate_cost": 159.96,
- "agent_assigned_id": 75,
- "claim_handler_assigned_id": 93
- },
- {
- "id": 113,
- "disaster_id": 51,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 4446.5,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 28
- },
- {
- "id": 114,
- "disaster_id": 51,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 5364.37,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 37
- },
- {
- "id": 115,
- "disaster_id": 58,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 4368.15,
- "agent_assigned_id": 46,
- "claim_handler_assigned_id": 60
- },
- {
- "id": 116,
- "disaster_id": 56,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 4715.54,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 29
- },
- {
- "id": 117,
- "disaster_id": 59,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 6452.08,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 57
- },
- {
- "id": 118,
- "disaster_id": 77,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 4557.68,
- "agent_assigned_id": 98,
- "claim_handler_assigned_id": 22
- },
- {
- "id": 119,
- "disaster_id": 26,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 651.75,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 80
- },
- {
- "id": 120,
- "disaster_id": 89,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 2,
- "estimate_cost": 1929.28,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 57
- },
- {
- "id": 121,
- "disaster_id": 89,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 687300.71,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 82
- },
- {
- "id": 122,
- "disaster_id": 85,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 8225.1,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 123,
- "disaster_id": 2,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 28945.04,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 103
- },
- {
- "id": 124,
- "disaster_id": 29,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 222330.15,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 91
- },
- {
- "id": 125,
- "disaster_id": 92,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 4418.71,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 77
- },
- {
- "id": 126,
- "disaster_id": 18,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 45000.06,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 23
- },
- {
- "id": 127,
- "disaster_id": 56,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 4,
- "estimate_cost": 11873.0,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 5
- },
- {
- "id": 128,
- "disaster_id": 53,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 46.02,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 62
- },
- {
- "id": 129,
- "disaster_id": 38,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 192950.47,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 46
- },
- {
- "id": 130,
- "disaster_id": 31,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 9,
- "estimate_cost": 2762.64,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 11
- },
- {
- "id": 131,
- "disaster_id": 5,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 1336.23,
- "agent_assigned_id": 30,
- "claim_handler_assigned_id": 45
- },
- {
- "id": 132,
- "disaster_id": 91,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 27780.53,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 133,
- "disaster_id": 16,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 1765.29,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 76
- },
- {
- "id": 134,
- "disaster_id": 38,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 173490.61,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 54
- },
- {
- "id": 135,
- "disaster_id": 86,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 298550.27,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 136
- },
- {
- "id": 136,
- "disaster_id": 38,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 581350.32,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 121
- },
- {
- "id": 137,
- "disaster_id": 10,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 270540.99,
- "agent_assigned_id": 66,
- "claim_handler_assigned_id": 123
- },
- {
- "id": 138,
- "disaster_id": 60,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 128400.89,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 79
- },
- {
- "id": 139,
- "disaster_id": 98,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 5936.8,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 58
- },
- {
- "id": 140,
- "disaster_id": 57,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 5145.72,
- "agent_assigned_id": 89,
- "claim_handler_assigned_id": 78
- },
- {
- "id": 141,
- "disaster_id": 16,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 6718.53,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 9
- },
- {
- "id": 142,
- "disaster_id": 95,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 324.53,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 15
- },
- {
- "id": 143,
- "disaster_id": 84,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 185680.91,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 119
- },
- {
- "id": 144,
- "disaster_id": 100,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 1282.19,
- "agent_assigned_id": 70,
- "claim_handler_assigned_id": 143
- },
- {
- "id": 145,
- "disaster_id": 11,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 3733.06,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 53
- },
- {
- "id": 146,
- "disaster_id": 73,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 853920.95,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 82
- },
- {
- "id": 147,
- "disaster_id": 26,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 2336.44,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 9
- },
- {
- "id": 148,
- "disaster_id": 70,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 12980.82,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 139
- },
- {
- "id": 149,
- "disaster_id": 78,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 3449.69,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 95
- },
- {
- "id": 150,
- "disaster_id": 11,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 67480.89,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 93
- },
- {
- "id": 151,
- "disaster_id": 2,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 368840.36,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 50
- },
- {
- "id": 152,
- "disaster_id": 17,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 9865.7,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 124
- },
- {
- "id": 153,
- "disaster_id": 7,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 37324.45,
- "agent_assigned_id": 73,
- "claim_handler_assigned_id": 105
- },
- {
- "id": 154,
- "disaster_id": 54,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 409800.36,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 15
- },
- {
- "id": 155,
- "disaster_id": 47,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 5347.35,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 32
- },
- {
- "id": 156,
- "disaster_id": 87,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 5200.7,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 144
- },
- {
- "id": 157,
- "disaster_id": 2,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 4378.82,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 153
- },
- {
- "id": 158,
- "disaster_id": 90,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 3497.1,
- "agent_assigned_id": 26,
- "claim_handler_assigned_id": 45
- },
- {
- "id": 159,
- "disaster_id": 2,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 7928.67,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 152
- },
- {
- "id": 160,
- "disaster_id": 50,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 38945.93,
- "agent_assigned_id": 8,
- "claim_handler_assigned_id": 74
- },
- {
- "id": 161,
- "disaster_id": 80,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 65520.68,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 40
- },
- {
- "id": 162,
- "disaster_id": 17,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 52368.11,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 102
- },
- {
- "id": 163,
- "disaster_id": 74,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 78210.71,
- "agent_assigned_id": 26,
- "claim_handler_assigned_id": 78
- },
- {
- "id": 164,
- "disaster_id": 22,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 3747.84,
- "agent_assigned_id": 70,
- "claim_handler_assigned_id": 119
- },
- {
- "id": 165,
- "disaster_id": 6,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 7620.94,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 166,
- "disaster_id": 2,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1691.21,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 14
- },
- {
- "id": 167,
- "disaster_id": 39,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 206250.11,
- "agent_assigned_id": 89,
- "claim_handler_assigned_id": 79
- },
- {
- "id": 168,
- "disaster_id": 6,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 972.56,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 101
- },
- {
- "id": 169,
- "disaster_id": 39,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 47995.42,
- "agent_assigned_id": 89,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 170,
- "disaster_id": 56,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 3423.49,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 113
- },
- {
- "id": 171,
- "disaster_id": 10,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 21945.23,
- "agent_assigned_id": 66,
- "claim_handler_assigned_id": 70
- },
- {
- "id": 172,
- "disaster_id": 42,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 2063.11,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 111
- },
- {
- "id": 173,
- "disaster_id": 10,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 334000.63,
- "agent_assigned_id": 85,
- "claim_handler_assigned_id": 107
- },
- {
- "id": 174,
- "disaster_id": 97,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 5,
- "estimate_cost": 4483.3,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 63
- },
- {
- "id": 175,
- "disaster_id": 50,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 12705.11,
- "agent_assigned_id": 8,
- "claim_handler_assigned_id": 81
- },
- {
- "id": 176,
- "disaster_id": 61,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 21140.3,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 103
- },
- {
- "id": 177,
- "disaster_id": 24,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 1233.05,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 178,
- "disaster_id": 32,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 120540.32,
- "agent_assigned_id": 19,
- "claim_handler_assigned_id": 38
- },
- {
- "id": 179,
- "disaster_id": 65,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 620.26,
- "agent_assigned_id": 14,
- "claim_handler_assigned_id": 121
- },
- {
- "id": 180,
- "disaster_id": 99,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 2756.2,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 10
- },
- {
- "id": 181,
- "disaster_id": 83,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 206520.21,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 100
- },
- {
- "id": 182,
- "disaster_id": 84,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 51730.89,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 125
- },
- {
- "id": 183,
- "disaster_id": 82,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 438.07,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 23
- },
- {
- "id": 184,
- "disaster_id": 7,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 13600.66,
- "agent_assigned_id": 19,
- "claim_handler_assigned_id": 115
- },
- {
- "id": 185,
- "disaster_id": 34,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 147280.09,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 30
- },
- {
- "id": 186,
- "disaster_id": 58,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 2260.64,
- "agent_assigned_id": 46,
- "claim_handler_assigned_id": 110
- },
- {
- "id": 187,
- "disaster_id": 61,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 4,
- "estimate_cost": 2481.55,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 102
- },
- {
- "id": 188,
- "disaster_id": 46,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 43030.83,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 41
- },
- {
- "id": 189,
- "disaster_id": 63,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 2,
- "estimate_cost": 3988.1,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 86
- },
- {
- "id": 190,
- "disaster_id": 66,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 44450.24,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 148
- },
- {
- "id": 191,
- "disaster_id": 8,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 1107.71,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 87
- },
- {
- "id": 192,
- "disaster_id": 49,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 2268.44,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 138
- },
- {
- "id": 193,
- "disaster_id": 24,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 43735.56,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 45
- },
- {
- "id": 194,
- "disaster_id": 88,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 3721.85,
- "agent_assigned_id": 47,
- "claim_handler_assigned_id": 135
- },
- {
- "id": 195,
- "disaster_id": 72,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 326450.84,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 145
- },
- {
- "id": 196,
- "disaster_id": 39,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 6288.55,
- "agent_assigned_id": 82,
- "claim_handler_assigned_id": 82
- },
- {
- "id": 197,
- "disaster_id": 43,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 227360.9,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 99
- },
- {
- "id": 198,
- "disaster_id": 48,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 1,
- "estimate_cost": 25630.07,
- "agent_assigned_id": 91,
- "claim_handler_assigned_id": 43
- },
- {
- "id": 199,
- "disaster_id": 71,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 6,
- "estimate_cost": 561000.07,
- "agent_assigned_id": 42,
- "claim_handler_assigned_id": 2
- },
- {
- "id": 200,
- "disaster_id": 81,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 18314.97,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 23
- },
- {
- "id": 201,
- "disaster_id": 14,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 134800.54,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 55
- },
- {
- "id": 202,
- "disaster_id": 67,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 92450.18,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 42
- },
- {
- "id": 203,
- "disaster_id": 29,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 733600.26,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 86
- },
- {
- "id": 204,
- "disaster_id": 95,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 4,
- "estimate_cost": 7948.67,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 112
- },
- {
- "id": 205,
- "disaster_id": 4,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 29718.91,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 76
- },
- {
- "id": 206,
- "disaster_id": 44,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 46386.26,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 53
- },
- {
- "id": 207,
- "disaster_id": 71,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 67.8,
- "agent_assigned_id": 60,
- "claim_handler_assigned_id": 141
- },
- {
- "id": 208,
- "disaster_id": 78,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 467400.75,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 65
- },
- {
- "id": 209,
- "disaster_id": 12,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 141160.26,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 4
- },
- {
- "id": 210,
- "disaster_id": 65,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 9068.43,
- "agent_assigned_id": 14,
- "claim_handler_assigned_id": 46
- },
- {
- "id": 211,
- "disaster_id": 88,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 15864.62,
- "agent_assigned_id": 17,
- "claim_handler_assigned_id": 136
- },
- {
- "id": 212,
- "disaster_id": 50,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 32625.66,
- "agent_assigned_id": 8,
- "claim_handler_assigned_id": 25
- },
- {
- "id": 213,
- "disaster_id": 77,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 45070.87,
- "agent_assigned_id": 71,
- "claim_handler_assigned_id": 151
- },
- {
- "id": 214,
- "disaster_id": 69,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 676.13,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 91
- },
- {
- "id": 215,
- "disaster_id": 49,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 12552.15,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 4
- },
- {
- "id": 216,
- "disaster_id": 39,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 323440.7,
- "agent_assigned_id": 89,
- "claim_handler_assigned_id": 146
- },
- {
- "id": 217,
- "disaster_id": 60,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 406750.64,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 12
- },
- {
- "id": 218,
- "disaster_id": 1,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 4700.79,
- "agent_assigned_id": 95,
- "claim_handler_assigned_id": 80
- },
- {
- "id": 219,
- "disaster_id": 88,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 6029.17,
- "agent_assigned_id": 17,
- "claim_handler_assigned_id": 7
- },
- {
- "id": 220,
- "disaster_id": 61,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 3760.85,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 103
- },
- {
- "id": 221,
- "disaster_id": 32,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 23708.94,
- "agent_assigned_id": 19,
- "claim_handler_assigned_id": 85
- },
- {
- "id": 222,
- "disaster_id": 92,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 58633.0,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 39
- },
- {
- "id": 223,
- "disaster_id": 87,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 2599.44,
- "agent_assigned_id": 23,
- "claim_handler_assigned_id": 21
- },
- {
- "id": 224,
- "disaster_id": 40,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 370880.21,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 133
- },
- {
- "id": 225,
- "disaster_id": 86,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 14217.39,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 55
- },
- {
- "id": 226,
- "disaster_id": 29,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 65360.93,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 227,
- "disaster_id": 71,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 47605.46,
- "agent_assigned_id": 42,
- "claim_handler_assigned_id": 15
- },
- {
- "id": 228,
- "disaster_id": 35,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 456.18,
- "agent_assigned_id": 85,
- "claim_handler_assigned_id": 104
- },
- {
- "id": 229,
- "disaster_id": 61,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 586.18,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 39
- },
- {
- "id": 230,
- "disaster_id": 79,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 2275.1,
- "agent_assigned_id": 43,
- "claim_handler_assigned_id": 1
- },
- {
- "id": 231,
- "disaster_id": 36,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 619.31,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 40
- },
- {
- "id": 232,
- "disaster_id": 45,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 3672.15,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 20
- },
- {
- "id": 233,
- "disaster_id": 9,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 1,
- "estimate_cost": 2956.68,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 135
- },
- {
- "id": 234,
- "disaster_id": 24,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 83720.65,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 78
- },
- {
- "id": 235,
- "disaster_id": 15,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 773.79,
- "agent_assigned_id": 21,
- "claim_handler_assigned_id": 123
- },
- {
- "id": 236,
- "disaster_id": 22,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 14100.29,
- "agent_assigned_id": 70,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 237,
- "disaster_id": 64,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 616770.92,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 142
- },
- {
- "id": 238,
- "disaster_id": 6,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 4050.75,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 133
- },
- {
- "id": 239,
- "disaster_id": 87,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 2745.09,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 47
- },
- {
- "id": 240,
- "disaster_id": 20,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 4320.75,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 114
- },
- {
- "id": 241,
- "disaster_id": 35,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 1170.8,
- "agent_assigned_id": 66,
- "claim_handler_assigned_id": 74
- },
- {
- "id": 242,
- "disaster_id": 36,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 273600.71,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 41
- },
- {
- "id": 243,
- "disaster_id": 89,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 305760.75,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 49
- },
- {
- "id": 244,
- "disaster_id": 99,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 6,
- "estimate_cost": 48804.96,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 27
- },
- {
- "id": 245,
- "disaster_id": 79,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 2314.31,
- "agent_assigned_id": 43,
- "claim_handler_assigned_id": 89
- },
- {
- "id": 246,
- "disaster_id": 86,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 626.28,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 123
- },
- {
- "id": 247,
- "disaster_id": 89,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 648.71,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 33
- },
- {
- "id": 248,
- "disaster_id": 91,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 53053.87,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 58
- },
- {
- "id": 249,
- "disaster_id": 96,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 36560.04,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 141
- },
- {
- "id": 250,
- "disaster_id": 53,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 26940.95,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 22
- },
- {
- "id": 251,
- "disaster_id": 81,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 1205.72,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 35
- },
- {
- "id": 252,
- "disaster_id": 27,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 89370.04,
- "agent_assigned_id": 46,
- "claim_handler_assigned_id": 35
- },
- {
- "id": 253,
- "disaster_id": 6,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 1772.43,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 14
- },
- {
- "id": 254,
- "disaster_id": 67,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 2970.9,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 114
- },
- {
- "id": 255,
- "disaster_id": 38,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 951900.97,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 149
- },
- {
- "id": 256,
- "disaster_id": 57,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 4754.14,
- "agent_assigned_id": 82,
- "claim_handler_assigned_id": 9
- },
- {
- "id": 257,
- "disaster_id": 26,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 15435.74,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 43
- },
- {
- "id": 258,
- "disaster_id": 84,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 1185.26,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 61
- },
- {
- "id": 259,
- "disaster_id": 100,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 85420.5,
- "agent_assigned_id": 56,
- "claim_handler_assigned_id": 47
- },
- {
- "id": 260,
- "disaster_id": 100,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 7743.98,
- "agent_assigned_id": 56,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 261,
- "disaster_id": 38,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 2133.75,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 106
- },
- {
- "id": 262,
- "disaster_id": 5,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 364020.06,
- "agent_assigned_id": 30,
- "claim_handler_assigned_id": 48
- },
- {
- "id": 263,
- "disaster_id": 26,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 4,
- "estimate_cost": 2906.39,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 105
- },
- {
- "id": 264,
- "disaster_id": 14,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 352300.74,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 39
- },
- {
- "id": 265,
- "disaster_id": 51,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 21870.2,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 37
- },
- {
- "id": 266,
- "disaster_id": 94,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 1024.57,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 127
- },
- {
- "id": 267,
- "disaster_id": 16,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 526140.58,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 105
- },
- {
- "id": 268,
- "disaster_id": 47,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 380580.84,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 128
- },
- {
- "id": 269,
- "disaster_id": 65,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 305.7,
- "agent_assigned_id": 14,
- "claim_handler_assigned_id": 108
- },
- {
- "id": 270,
- "disaster_id": 33,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 330840.79,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 36
- },
- {
- "id": 271,
- "disaster_id": 22,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 23832.81,
- "agent_assigned_id": 56,
- "claim_handler_assigned_id": 25
- },
- {
- "id": 272,
- "disaster_id": 89,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 10110.43,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 273,
- "disaster_id": 98,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 32380.37,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 65
- },
- {
- "id": 274,
- "disaster_id": 17,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 19761.82,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 98
- },
- {
- "id": 275,
- "disaster_id": 34,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 4611.72,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 46
- },
- {
- "id": 276,
- "disaster_id": 55,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 4400.1,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 88
- },
- {
- "id": 277,
- "disaster_id": 97,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 32616.0,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 278,
- "disaster_id": 82,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 13894.58,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 51
- },
- {
- "id": 279,
- "disaster_id": 32,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 13167.24,
- "agent_assigned_id": 73,
- "claim_handler_assigned_id": 140
- },
- {
- "id": 280,
- "disaster_id": 76,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 542160.69,
- "agent_assigned_id": 58,
- "claim_handler_assigned_id": 49
- },
- {
- "id": 281,
- "disaster_id": 46,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 4983.17,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 21
- },
- {
- "id": 282,
- "disaster_id": 59,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 210690.04,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 283,
- "disaster_id": 77,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 1579.85,
- "agent_assigned_id": 71,
- "claim_handler_assigned_id": 96
- },
- {
- "id": 284,
- "disaster_id": 94,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 1368.9,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 48
- },
- {
- "id": 285,
- "disaster_id": 31,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 3644.19,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 100
- },
- {
- "id": 286,
- "disaster_id": 28,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 518.81,
- "agent_assigned_id": 35,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 287,
- "disaster_id": 41,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 16790.59,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 18
- },
- {
- "id": 288,
- "disaster_id": 80,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 18872.07,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 59
- },
- {
- "id": 289,
- "disaster_id": 100,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 2,
- "estimate_cost": 562.76,
- "agent_assigned_id": 70,
- "claim_handler_assigned_id": 54
- },
- {
- "id": 290,
- "disaster_id": 69,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 8,
- "estimate_cost": 409600.11,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 77
- },
- {
- "id": 291,
- "disaster_id": 72,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 3803.3,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 107
- },
- {
- "id": 292,
- "disaster_id": 39,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 89830.43,
- "agent_assigned_id": 62,
- "claim_handler_assigned_id": 28
- },
- {
- "id": 293,
- "disaster_id": 34,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 1321.42,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 96
- },
- {
- "id": 294,
- "disaster_id": 57,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1875.43,
- "agent_assigned_id": 62,
- "claim_handler_assigned_id": 112
- },
- {
- "id": 295,
- "disaster_id": 95,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 490980.66,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 18
- },
- {
- "id": 296,
- "disaster_id": 34,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 803.72,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 103
- },
- {
- "id": 297,
- "disaster_id": 5,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 820.64,
- "agent_assigned_id": 30,
- "claim_handler_assigned_id": 54
- },
- {
- "id": 298,
- "disaster_id": 80,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 4396.24,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 73
- },
- {
- "id": 299,
- "disaster_id": 80,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 1336.46,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 300,
- "disaster_id": 6,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 1007.8,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 141
- },
- {
- "id": 301,
- "disaster_id": 81,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 4705.78,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 95
- },
- {
- "id": 302,
- "disaster_id": 67,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 1375.37,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 47
- },
- {
- "id": 303,
- "disaster_id": 17,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 206920.61,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 28
- },
- {
- "id": 304,
- "disaster_id": 49,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 419400.37,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 32
- },
- {
- "id": 305,
- "disaster_id": 44,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 26600.73,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 145
- },
- {
- "id": 306,
- "disaster_id": 26,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 2295.92,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 11
- },
- {
- "id": 307,
- "disaster_id": 58,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 9837.21,
- "agent_assigned_id": 1,
- "claim_handler_assigned_id": 58
- },
- {
- "id": 308,
- "disaster_id": 82,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 5034.36,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 105
- },
- {
- "id": 309,
- "disaster_id": 54,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 6392.54,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 81
- },
- {
- "id": 310,
- "disaster_id": 93,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 5867.6,
- "agent_assigned_id": 30,
- "claim_handler_assigned_id": 9
- },
- {
- "id": 311,
- "disaster_id": 26,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 2439.0,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 131
- },
- {
- "id": 312,
- "disaster_id": 75,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 27252.0,
- "agent_assigned_id": 14,
- "claim_handler_assigned_id": 66
- },
- {
- "id": 313,
- "disaster_id": 47,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 43545.48,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 79
- },
- {
- "id": 314,
- "disaster_id": 41,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 867200.98,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 15
- },
- {
- "id": 315,
- "disaster_id": 63,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 13974.78,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 316,
- "disaster_id": 71,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 22525.23,
- "agent_assigned_id": 27,
- "claim_handler_assigned_id": 122
- },
- {
- "id": 317,
- "disaster_id": 2,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 1802.38,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 123
- },
- {
- "id": 318,
- "disaster_id": 22,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 3704.27,
- "agent_assigned_id": 70,
- "claim_handler_assigned_id": 63
- },
- {
- "id": 319,
- "disaster_id": 92,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 4927.06,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 63
- },
- {
- "id": 320,
- "disaster_id": 70,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 801.01,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 39
- },
- {
- "id": 321,
- "disaster_id": 1,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 4646.24,
- "agent_assigned_id": 75,
- "claim_handler_assigned_id": 118
- },
- {
- "id": 322,
- "disaster_id": 36,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1953.73,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 23
- },
- {
- "id": 323,
- "disaster_id": 19,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 78360.26,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 324,
- "disaster_id": 41,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 703520.12,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 83
- },
- {
- "id": 325,
- "disaster_id": 80,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 6562.11,
- "agent_assigned_id": 59,
- "claim_handler_assigned_id": 110
- },
- {
- "id": 326,
- "disaster_id": 14,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 7522.67,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 45
- },
- {
- "id": 327,
- "disaster_id": 36,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 522540.08,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 91
- },
- {
- "id": 328,
- "disaster_id": 98,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 826.89,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 69
- },
- {
- "id": 329,
- "disaster_id": 20,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 2696.92,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 122
- },
- {
- "id": 330,
- "disaster_id": 81,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 1276.98,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 101
- },
- {
- "id": 331,
- "disaster_id": 87,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 7760.81,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 51
- },
- {
- "id": 332,
- "disaster_id": 81,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 3790.56,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 23
- },
- {
- "id": 333,
- "disaster_id": 31,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 2992.13,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 94
- },
- {
- "id": 334,
- "disaster_id": 45,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 4,
- "estimate_cost": 131440.25,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 83
- },
- {
- "id": 335,
- "disaster_id": 71,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 10,
- "estimate_cost": 6215.09,
- "agent_assigned_id": 60,
- "claim_handler_assigned_id": 154
- },
- {
- "id": 336,
- "disaster_id": 91,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 14340.0,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 337,
- "disaster_id": 3,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 570.18,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 89
- },
- {
- "id": 338,
- "disaster_id": 89,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 78470.86,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 124
- },
- {
- "id": 339,
- "disaster_id": 62,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 886800.79,
- "agent_assigned_id": 55,
- "claim_handler_assigned_id": 129
- },
- {
- "id": 340,
- "disaster_id": 56,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 5450.47,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 127
- },
- {
- "id": 341,
- "disaster_id": 87,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 694260.11,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 146
- },
- {
- "id": 342,
- "disaster_id": 57,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 37468.91,
- "agent_assigned_id": 11,
- "claim_handler_assigned_id": 140
- },
- {
- "id": 343,
- "disaster_id": 4,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 3002.77,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 130
- },
- {
- "id": 344,
- "disaster_id": 83,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 381780.94,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 12
- },
- {
- "id": 345,
- "disaster_id": 98,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 464700.46,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 97
- },
- {
- "id": 346,
- "disaster_id": 43,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 39991.9,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 69
- },
- {
- "id": 347,
- "disaster_id": 34,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 115150.09,
- "agent_assigned_id": 58,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 348,
- "disaster_id": 68,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 3771.23,
- "agent_assigned_id": 10,
- "claim_handler_assigned_id": 55
- },
- {
- "id": 349,
- "disaster_id": 25,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 79416.47,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 350,
- "disaster_id": 6,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 2412.76,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 121
- },
- {
- "id": 351,
- "disaster_id": 20,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 21840.36,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 128
- },
- {
- "id": 352,
- "disaster_id": 79,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 5134.24,
- "agent_assigned_id": 43,
- "claim_handler_assigned_id": 5
- },
- {
- "id": 353,
- "disaster_id": 38,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 5921.77,
- "agent_assigned_id": 58,
- "claim_handler_assigned_id": 145
- },
- {
- "id": 354,
- "disaster_id": 11,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 290310.52,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 153
- },
- {
- "id": 355,
- "disaster_id": 86,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 936.32,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 103
- },
- {
- "id": 356,
- "disaster_id": 70,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 88840.64,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 97
- },
- {
- "id": 357,
- "disaster_id": 47,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1672.03,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 36
- },
- {
- "id": 358,
- "disaster_id": 19,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 555280.47,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 131
- },
- {
- "id": 359,
- "disaster_id": 94,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 88480.03,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 137
- },
- {
- "id": 360,
- "disaster_id": 5,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 4188.24,
- "agent_assigned_id": 43,
- "claim_handler_assigned_id": 144
- },
- {
- "id": 361,
- "disaster_id": 14,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 3264.11,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 123
- },
- {
- "id": 362,
- "disaster_id": 62,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 2727.59,
- "agent_assigned_id": 55,
- "claim_handler_assigned_id": 103
- },
- {
- "id": 363,
- "disaster_id": 40,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 346.41,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 135
- },
- {
- "id": 364,
- "disaster_id": 26,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 13714.18,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 82
- },
- {
- "id": 365,
- "disaster_id": 69,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 63539.85,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 61
- },
- {
- "id": 366,
- "disaster_id": 76,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 667.58,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 4
- },
- {
- "id": 367,
- "disaster_id": 54,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 455.17,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 64
- },
- {
- "id": 368,
- "disaster_id": 16,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 3,
- "estimate_cost": 346.23,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 104
- },
- {
- "id": 369,
- "disaster_id": 66,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 3113.5,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 80
- },
- {
- "id": 370,
- "disaster_id": 54,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 2910.25,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 140
- },
- {
- "id": 371,
- "disaster_id": 19,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 4988.42,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 46
- },
- {
- "id": 372,
- "disaster_id": 19,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 12076.22,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 87
- },
- {
- "id": 373,
- "disaster_id": 55,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 321350.25,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 61
- },
- {
- "id": 374,
- "disaster_id": 22,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 1802.61,
- "agent_assigned_id": 56,
- "claim_handler_assigned_id": 25
- },
- {
- "id": 375,
- "disaster_id": 9,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 4110.7,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 106
- },
- {
- "id": 376,
- "disaster_id": 75,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 18474.94,
- "agent_assigned_id": 78,
- "claim_handler_assigned_id": 74
- },
- {
- "id": 377,
- "disaster_id": 74,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 879.0,
- "agent_assigned_id": 80,
- "claim_handler_assigned_id": 35
- },
- {
- "id": 378,
- "disaster_id": 30,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 2415.33,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 124
- },
- {
- "id": 379,
- "disaster_id": 98,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 9406.97,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 124
- },
- {
- "id": 380,
- "disaster_id": 34,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 5037.71,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 128
- },
- {
- "id": 381,
- "disaster_id": 73,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1966.41,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 128
- },
- {
- "id": 382,
- "disaster_id": 81,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 68850.94,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 383,
- "disaster_id": 30,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 72.01,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 130
- },
- {
- "id": 384,
- "disaster_id": 29,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 41083.54,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 36
- },
- {
- "id": 385,
- "disaster_id": 33,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 5420.82,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 53
- },
- {
- "id": 386,
- "disaster_id": 71,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 661100.69,
- "agent_assigned_id": 60,
- "claim_handler_assigned_id": 119
- },
- {
- "id": 387,
- "disaster_id": 91,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 829.68,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 38
- },
- {
- "id": 388,
- "disaster_id": 26,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 51192.1,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 133
- },
- {
- "id": 389,
- "disaster_id": 16,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 8807.75,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 64
- },
- {
- "id": 390,
- "disaster_id": 13,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 747630.27,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 120
- },
- {
- "id": 391,
- "disaster_id": 94,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 8,
- "estimate_cost": 65336.7,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 109
- },
- {
- "id": 392,
- "disaster_id": 59,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 19660.33,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 88
- },
- {
- "id": 393,
- "disaster_id": 78,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 2297.56,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 120
- },
- {
- "id": 394,
- "disaster_id": 24,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 5130.34,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 119
- },
- {
- "id": 395,
- "disaster_id": 77,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1959.1,
- "agent_assigned_id": 71,
- "claim_handler_assigned_id": 4
- },
- {
- "id": 396,
- "disaster_id": 77,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 40.03,
- "agent_assigned_id": 71,
- "claim_handler_assigned_id": 125
- },
- {
- "id": 397,
- "disaster_id": 64,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 58320.43,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 31
- },
- {
- "id": 398,
- "disaster_id": 25,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 4135.15,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 28
- },
- {
- "id": 399,
- "disaster_id": 49,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 63064.63,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 30
- },
- {
- "id": 400,
- "disaster_id": 88,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 429000.2,
- "agent_assigned_id": 17,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 401,
- "disaster_id": 83,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 310200.59,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 71
- },
- {
- "id": 402,
- "disaster_id": 22,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 4359.38,
- "agent_assigned_id": 56,
- "claim_handler_assigned_id": 5
- },
- {
- "id": 403,
- "disaster_id": 97,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 26252.13,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 106
- },
- {
- "id": 404,
- "disaster_id": 86,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 23635.34,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 72
- },
- {
- "id": 405,
- "disaster_id": 58,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 64224.48,
- "agent_assigned_id": 46,
- "claim_handler_assigned_id": 55
- },
- {
- "id": 406,
- "disaster_id": 14,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 559.17,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 55
- },
- {
- "id": 407,
- "disaster_id": 2,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 36240.71,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 58
- },
- {
- "id": 408,
- "disaster_id": 39,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 9373.4,
- "agent_assigned_id": 62,
- "claim_handler_assigned_id": 23
- },
- {
- "id": 409,
- "disaster_id": 19,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 4078.5,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 85
- },
- {
- "id": 410,
- "disaster_id": 6,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 3,
- "estimate_cost": 22662.83,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 81
- },
- {
- "id": 411,
- "disaster_id": 81,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 3582.41,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 126
- },
- {
- "id": 412,
- "disaster_id": 3,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 481.72,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 24
- },
- {
- "id": 413,
- "disaster_id": 63,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 7001.76,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 49
- },
- {
- "id": 414,
- "disaster_id": 30,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 59484.55,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 133
- },
- {
- "id": 415,
- "disaster_id": 78,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 5938.27,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 77
- },
- {
- "id": 416,
- "disaster_id": 18,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 588960.77,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 154
- },
- {
- "id": 417,
- "disaster_id": 15,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 7024.05,
- "agent_assigned_id": 97,
- "claim_handler_assigned_id": 5
- },
- {
- "id": 418,
- "disaster_id": 2,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 16350.8,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 147
- },
- {
- "id": 419,
- "disaster_id": 31,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 47010.55,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 24
- },
- {
- "id": 420,
- "disaster_id": 10,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 2560.06,
- "agent_assigned_id": 66,
- "claim_handler_assigned_id": 107
- },
- {
- "id": 421,
- "disaster_id": 34,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 680480.2,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 151
- },
- {
- "id": 422,
- "disaster_id": 59,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 11218.95,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 423,
- "disaster_id": 67,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 903.3,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 80
- },
- {
- "id": 424,
- "disaster_id": 34,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 5530.65,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 132
- },
- {
- "id": 425,
- "disaster_id": 56,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 1928.68,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 132
- },
- {
- "id": 426,
- "disaster_id": 76,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 33642.76,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 4
- },
- {
- "id": 427,
- "disaster_id": 10,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 6600.03,
- "agent_assigned_id": 85,
- "claim_handler_assigned_id": 31
- },
- {
- "id": 428,
- "disaster_id": 27,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 299000.33,
- "agent_assigned_id": 46,
- "claim_handler_assigned_id": 58
- },
- {
- "id": 429,
- "disaster_id": 23,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 2255.25,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 111
- },
- {
- "id": 430,
- "disaster_id": 3,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 5361.48,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 81
- },
- {
- "id": 431,
- "disaster_id": 31,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 171840.18,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 45
- },
- {
- "id": 432,
- "disaster_id": 71,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 533.44,
- "agent_assigned_id": 60,
- "claim_handler_assigned_id": 41
- },
- {
- "id": 433,
- "disaster_id": 32,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 523.39,
- "agent_assigned_id": 19,
- "claim_handler_assigned_id": 82
- },
- {
- "id": 434,
- "disaster_id": 28,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 1,
- "estimate_cost": 71350.29,
- "agent_assigned_id": 35,
- "claim_handler_assigned_id": 30
- },
- {
- "id": 435,
- "disaster_id": 42,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 32865.86,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 46
- },
- {
- "id": 436,
- "disaster_id": 41,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 5,
- "estimate_cost": 14445.72,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 146
- },
- {
- "id": 437,
- "disaster_id": 89,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 2,
- "estimate_cost": 77.01,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 9
- },
- {
- "id": 438,
- "disaster_id": 27,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 3709.54,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 28
- },
- {
- "id": 439,
- "disaster_id": 60,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 7198.08,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 5
- },
- {
- "id": 440,
- "disaster_id": 34,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 3165.03,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 141
- },
- {
- "id": 441,
- "disaster_id": 77,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 81171.13,
- "agent_assigned_id": 71,
- "claim_handler_assigned_id": 106
- },
- {
- "id": 442,
- "disaster_id": 23,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 1439.37,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 16
- },
- {
- "id": 443,
- "disaster_id": 56,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 2857.0,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 118
- },
- {
- "id": 444,
- "disaster_id": 27,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 957.86,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 54
- },
- {
- "id": 445,
- "disaster_id": 11,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 197320.46,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 4
- },
- {
- "id": 446,
- "disaster_id": 26,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 1,
- "estimate_cost": 559.25,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 77
- },
- {
- "id": 447,
- "disaster_id": 10,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 25628.87,
- "agent_assigned_id": 85,
- "claim_handler_assigned_id": 56
- },
- {
- "id": 448,
- "disaster_id": 55,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 1,
- "estimate_cost": 297.22,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 79
- },
- {
- "id": 449,
- "disaster_id": 24,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 996.31,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 10
- },
- {
- "id": 450,
- "disaster_id": 77,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 36692.41,
- "agent_assigned_id": 98,
- "claim_handler_assigned_id": 155
- },
- {
- "id": 451,
- "disaster_id": 73,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 267840.17,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 80
- },
- {
- "id": 452,
- "disaster_id": 86,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 629800.4,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 79
- },
- {
- "id": 453,
- "disaster_id": 87,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 6785.98,
- "agent_assigned_id": 59,
- "claim_handler_assigned_id": 68
- },
- {
- "id": 454,
- "disaster_id": 50,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 87520.56,
- "agent_assigned_id": 8,
- "claim_handler_assigned_id": 140
- },
- {
- "id": 455,
- "disaster_id": 48,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 157200.54,
- "agent_assigned_id": 91,
- "claim_handler_assigned_id": 132
- },
- {
- "id": 456,
- "disaster_id": 34,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 3958.45,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 125
- },
- {
- "id": 457,
- "disaster_id": 3,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 507960.66,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 46
- },
- {
- "id": 458,
- "disaster_id": 96,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 8451.8,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 80
- },
- {
- "id": 459,
- "disaster_id": 69,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 784300.86,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 129
- },
- {
- "id": 460,
- "disaster_id": 1,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 35605.15,
- "agent_assigned_id": 75,
- "claim_handler_assigned_id": 54
- },
- {
- "id": 461,
- "disaster_id": 21,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 5556.47,
- "agent_assigned_id": 46,
- "claim_handler_assigned_id": 92
- },
- {
- "id": 462,
- "disaster_id": 84,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 1975.72,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 154
- },
- {
- "id": 463,
- "disaster_id": 25,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 73840.91,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 129
- },
- {
- "id": 464,
- "disaster_id": 89,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 14890.1,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 105
- },
- {
- "id": 465,
- "disaster_id": 10,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 3729.19,
- "agent_assigned_id": 66,
- "claim_handler_assigned_id": 115
- },
- {
- "id": 466,
- "disaster_id": 93,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 115860.44,
- "agent_assigned_id": 30,
- "claim_handler_assigned_id": 41
- },
- {
- "id": 467,
- "disaster_id": 49,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 51471.07,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 113
- },
- {
- "id": 468,
- "disaster_id": 81,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 72.09,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 21
- },
- {
- "id": 469,
- "disaster_id": 87,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 24078.17,
- "agent_assigned_id": 23,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 470,
- "disaster_id": 12,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 4338.81,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 21
- },
- {
- "id": 471,
- "disaster_id": 42,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 12952.8,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 75
- },
- {
- "id": 472,
- "disaster_id": 95,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 1037.09,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 11
- },
- {
- "id": 473,
- "disaster_id": 49,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 768300.8,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 15
- },
- {
- "id": 474,
- "disaster_id": 21,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 254.4,
- "agent_assigned_id": 46,
- "claim_handler_assigned_id": 132
- },
- {
- "id": 475,
- "disaster_id": 26,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 2270.77,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 27
- },
- {
- "id": 476,
- "disaster_id": 1,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 343.72,
- "agent_assigned_id": 95,
- "claim_handler_assigned_id": 42
- },
- {
- "id": 477,
- "disaster_id": 38,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 116620.07,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 31
- },
- {
- "id": 478,
- "disaster_id": 31,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 4755.81,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 1
- },
- {
- "id": 479,
- "disaster_id": 72,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 559620.74,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 65
- },
- {
- "id": 480,
- "disaster_id": 74,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 1899.39,
- "agent_assigned_id": 26,
- "claim_handler_assigned_id": 33
- },
- {
- "id": 481,
- "disaster_id": 5,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 1812.8,
- "agent_assigned_id": 43,
- "claim_handler_assigned_id": 88
- },
- {
- "id": 482,
- "disaster_id": 73,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 5,
- "estimate_cost": 1340.55,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 31
- },
- {
- "id": 483,
- "disaster_id": 40,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 4977.69,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 484,
- "disaster_id": 36,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 2763.97,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 142
- },
- {
- "id": 485,
- "disaster_id": 87,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 78840.96,
- "agent_assigned_id": 59,
- "claim_handler_assigned_id": 67
- },
- {
- "id": 486,
- "disaster_id": 9,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 2830.69,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 487,
- "disaster_id": 2,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 34516.6,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 106
- },
- {
- "id": 488,
- "disaster_id": 8,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 649080.64,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 70
- },
- {
- "id": 489,
- "disaster_id": 44,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 2252.98,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 32
- },
- {
- "id": 490,
- "disaster_id": 53,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 78290.92,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 40
- },
- {
- "id": 491,
- "disaster_id": 40,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 3397.62,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 97
- },
- {
- "id": 492,
- "disaster_id": 34,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 33300.88,
- "agent_assigned_id": 58,
- "claim_handler_assigned_id": 146
- },
- {
- "id": 493,
- "disaster_id": 43,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 2714.89,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 99
- },
- {
- "id": 494,
- "disaster_id": 93,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 14700.76,
- "agent_assigned_id": 30,
- "claim_handler_assigned_id": 1
- },
- {
- "id": 495,
- "disaster_id": 36,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 1183.91,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 18
- },
- {
- "id": 496,
- "disaster_id": 28,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1978.46,
- "agent_assigned_id": 35,
- "claim_handler_assigned_id": 75
- },
- {
- "id": 497,
- "disaster_id": 40,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 561.77,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 10
- },
- {
- "id": 498,
- "disaster_id": 87,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 82830.9,
- "agent_assigned_id": 23,
- "claim_handler_assigned_id": 63
- },
- {
- "id": 499,
- "disaster_id": 7,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 1320.74,
- "agent_assigned_id": 19,
- "claim_handler_assigned_id": 108
- },
- {
- "id": 500,
- "disaster_id": 34,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 6682.52,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 38
- },
- {
- "id": 501,
- "disaster_id": 80,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 370080.13,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 102
- },
- {
- "id": 502,
- "disaster_id": 45,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 8618.41,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 51
- },
- {
- "id": 503,
- "disaster_id": 52,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 4392.43,
- "agent_assigned_id": 5,
- "claim_handler_assigned_id": 54
- },
- {
- "id": 504,
- "disaster_id": 35,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 5,
- "estimate_cost": 34555.98,
- "agent_assigned_id": 85,
- "claim_handler_assigned_id": 111
- },
- {
- "id": 505,
- "disaster_id": 58,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 3923.95,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 120
- },
- {
- "id": 506,
- "disaster_id": 92,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 4923.98,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 139
- },
- {
- "id": 507,
- "disaster_id": 61,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 22854.24,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 31
- },
- {
- "id": 508,
- "disaster_id": 85,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 2098.09,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 30
- },
- {
- "id": 509,
- "disaster_id": 50,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 2462.7,
- "agent_assigned_id": 8,
- "claim_handler_assigned_id": 152
- },
- {
- "id": 510,
- "disaster_id": 52,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 14504.15,
- "agent_assigned_id": 5,
- "claim_handler_assigned_id": 136
- },
- {
- "id": 511,
- "disaster_id": 65,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 11490.8,
- "agent_assigned_id": 31,
- "claim_handler_assigned_id": 122
- },
- {
- "id": 512,
- "disaster_id": 63,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 46494.46,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 513,
- "disaster_id": 54,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 44255.05,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 64
- },
- {
- "id": 514,
- "disaster_id": 33,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 52580.35,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 137
- },
- {
- "id": 515,
- "disaster_id": 26,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 248780.42,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 149
- },
- {
- "id": 516,
- "disaster_id": 57,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 3098.72,
- "agent_assigned_id": 62,
- "claim_handler_assigned_id": 101
- },
- {
- "id": 517,
- "disaster_id": 11,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 191280.69,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 38
- },
- {
- "id": 518,
- "disaster_id": 78,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 704.37,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 24
- },
- {
- "id": 519,
- "disaster_id": 14,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 7231.72,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 16
- },
- {
- "id": 520,
- "disaster_id": 16,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 1736.49,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 48
- },
- {
- "id": 521,
- "disaster_id": 81,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 4525.44,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 45
- },
- {
- "id": 522,
- "disaster_id": 27,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 81210.42,
- "agent_assigned_id": 46,
- "claim_handler_assigned_id": 59
- },
- {
- "id": 523,
- "disaster_id": 65,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 595080.15,
- "agent_assigned_id": 31,
- "claim_handler_assigned_id": 25
- },
- {
- "id": 524,
- "disaster_id": 28,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 118200.92,
- "agent_assigned_id": 35,
- "claim_handler_assigned_id": 128
- },
- {
- "id": 525,
- "disaster_id": 36,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 6610.99,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 126
- },
- {
- "id": 526,
- "disaster_id": 70,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 49440.56,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 84
- },
- {
- "id": 527,
- "disaster_id": 79,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 3647.73,
- "agent_assigned_id": 43,
- "claim_handler_assigned_id": 152
- },
- {
- "id": 528,
- "disaster_id": 89,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 364850.84,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 40
- },
- {
- "id": 529,
- "disaster_id": 63,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 2264.03,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 68
- },
- {
- "id": 530,
- "disaster_id": 22,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 47700.78,
- "agent_assigned_id": 56,
- "claim_handler_assigned_id": 28
- },
- {
- "id": 531,
- "disaster_id": 2,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 24031.55,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 532,
- "disaster_id": 63,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 4616.38,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 124
- },
- {
- "id": 533,
- "disaster_id": 61,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 163.2,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 135
- },
- {
- "id": 534,
- "disaster_id": 66,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 164.1,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 22
- },
- {
- "id": 535,
- "disaster_id": 23,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 2408.9,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 139
- },
- {
- "id": 536,
- "disaster_id": 56,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 1901.39,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 122
- },
- {
- "id": 537,
- "disaster_id": 53,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 3229.48,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 73
- },
- {
- "id": 538,
- "disaster_id": 28,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 585690.69,
- "agent_assigned_id": 35,
- "claim_handler_assigned_id": 70
- },
- {
- "id": 539,
- "disaster_id": 63,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 6353.74,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 71
- },
- {
- "id": 540,
- "disaster_id": 19,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 7,
- "estimate_cost": 66997.51,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 75
- },
- {
- "id": 541,
- "disaster_id": 60,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 2457.73,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 44
- },
- {
- "id": 542,
- "disaster_id": 9,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 9164.77,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 61
- },
- {
- "id": 543,
- "disaster_id": 32,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 5410.19,
- "agent_assigned_id": 74,
- "claim_handler_assigned_id": 107
- },
- {
- "id": 544,
- "disaster_id": 98,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 6,
- "estimate_cost": 11640.36,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 80
- },
- {
- "id": 545,
- "disaster_id": 58,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 11439.73,
- "agent_assigned_id": 1,
- "claim_handler_assigned_id": 142
- },
- {
- "id": 546,
- "disaster_id": 43,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 7196.88,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 156
- },
- {
- "id": 547,
- "disaster_id": 32,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 1720.81,
- "agent_assigned_id": 74,
- "claim_handler_assigned_id": 9
- },
- {
- "id": 548,
- "disaster_id": 5,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 1952.02,
- "agent_assigned_id": 43,
- "claim_handler_assigned_id": 112
- },
- {
- "id": 549,
- "disaster_id": 68,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 4606.26,
- "agent_assigned_id": 10,
- "claim_handler_assigned_id": 107
- },
- {
- "id": 550,
- "disaster_id": 52,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 435300.17,
- "agent_assigned_id": 5,
- "claim_handler_assigned_id": 92
- },
- {
- "id": 551,
- "disaster_id": 4,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 2079.9,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 152
- },
- {
- "id": 552,
- "disaster_id": 53,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 1544.71,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 85
- },
- {
- "id": 553,
- "disaster_id": 55,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 443.24,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 137
- },
- {
- "id": 554,
- "disaster_id": 38,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 1781.83,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 47
- },
- {
- "id": 555,
- "disaster_id": 95,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 3958.52,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 140
- },
- {
- "id": 556,
- "disaster_id": 65,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 966.57,
- "agent_assigned_id": 31,
- "claim_handler_assigned_id": 16
- },
- {
- "id": 557,
- "disaster_id": 37,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 9,
- "estimate_cost": 5392.06,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 82
- },
- {
- "id": 558,
- "disaster_id": 50,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 1405.89,
- "agent_assigned_id": 8,
- "claim_handler_assigned_id": 2
- },
- {
- "id": 559,
- "disaster_id": 63,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 6,
- "estimate_cost": 4960.88,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 560,
- "disaster_id": 100,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 1384.94,
- "agent_assigned_id": 70,
- "claim_handler_assigned_id": 79
- },
- {
- "id": 561,
- "disaster_id": 29,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 4804.24,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 116
- },
- {
- "id": 562,
- "disaster_id": 7,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 15869.27,
- "agent_assigned_id": 73,
- "claim_handler_assigned_id": 39
- },
- {
- "id": 563,
- "disaster_id": 35,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 8062.8,
- "agent_assigned_id": 85,
- "claim_handler_assigned_id": 24
- },
- {
- "id": 564,
- "disaster_id": 18,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 619.95,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 42
- },
- {
- "id": 565,
- "disaster_id": 61,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 78290.56,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 127
- },
- {
- "id": 566,
- "disaster_id": 85,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 50625.14,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 138
- },
- {
- "id": 567,
- "disaster_id": 15,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 235200.5,
- "agent_assigned_id": 21,
- "claim_handler_assigned_id": 33
- },
- {
- "id": 568,
- "disaster_id": 65,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 7795.58,
- "agent_assigned_id": 31,
- "claim_handler_assigned_id": 5
- },
- {
- "id": 569,
- "disaster_id": 84,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 361.6,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 128
- },
- {
- "id": 570,
- "disaster_id": 44,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 44160.65,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 121
- },
- {
- "id": 571,
- "disaster_id": 88,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 192.99,
- "agent_assigned_id": 17,
- "claim_handler_assigned_id": 28
- },
- {
- "id": 572,
- "disaster_id": 68,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 3176.44,
- "agent_assigned_id": 10,
- "claim_handler_assigned_id": 24
- },
- {
- "id": 573,
- "disaster_id": 18,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 486630.26,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 59
- },
- {
- "id": 574,
- "disaster_id": 87,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 248550.88,
- "agent_assigned_id": 23,
- "claim_handler_assigned_id": 65
- },
- {
- "id": 575,
- "disaster_id": 58,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 419.25,
- "agent_assigned_id": 1,
- "claim_handler_assigned_id": 131
- },
- {
- "id": 576,
- "disaster_id": 31,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 260440.06,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 88
- },
- {
- "id": 577,
- "disaster_id": 31,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 78240.65,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 37
- },
- {
- "id": 578,
- "disaster_id": 36,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 235.43,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 579,
- "disaster_id": 46,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 3052.67,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 26
- },
- {
- "id": 580,
- "disaster_id": 76,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 1167.37,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 53
- },
- {
- "id": 581,
- "disaster_id": 97,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1054.78,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 77
- },
- {
- "id": 582,
- "disaster_id": 4,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 888.98,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 117
- },
- {
- "id": 583,
- "disaster_id": 73,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 23040.29,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 126
- },
- {
- "id": 584,
- "disaster_id": 50,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 5808.12,
- "agent_assigned_id": 8,
- "claim_handler_assigned_id": 35
- },
- {
- "id": 585,
- "disaster_id": 42,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 5502.11,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 89
- },
- {
- "id": 586,
- "disaster_id": 4,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 219360.58,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 138
- },
- {
- "id": 587,
- "disaster_id": 4,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 581.98,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 100
- },
- {
- "id": 588,
- "disaster_id": 54,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 497250.92,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 121
- },
- {
- "id": 589,
- "disaster_id": 93,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 1,
- "estimate_cost": 83730.15,
- "agent_assigned_id": 43,
- "claim_handler_assigned_id": 4
- },
- {
- "id": 590,
- "disaster_id": 60,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 84010.28,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 90
- },
- {
- "id": 591,
- "disaster_id": 54,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 2248.63,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 73
- },
- {
- "id": 592,
- "disaster_id": 28,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 3639.59,
- "agent_assigned_id": 35,
- "claim_handler_assigned_id": 144
- },
- {
- "id": 593,
- "disaster_id": 78,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 9186.14,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 117
- },
- {
- "id": 594,
- "disaster_id": 28,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 22990.88,
- "agent_assigned_id": 35,
- "claim_handler_assigned_id": 91
- },
- {
- "id": 595,
- "disaster_id": 68,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 629.11,
- "agent_assigned_id": 10,
- "claim_handler_assigned_id": 67
- },
- {
- "id": 596,
- "disaster_id": 72,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 4250.24,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 119
- },
- {
- "id": 597,
- "disaster_id": 57,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 1090.41,
- "agent_assigned_id": 89,
- "claim_handler_assigned_id": 72
- },
- {
- "id": 598,
- "disaster_id": 49,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 639.36,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 84
- },
- {
- "id": 599,
- "disaster_id": 42,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 84240.59,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 55
- },
- {
- "id": 600,
- "disaster_id": 1,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 21385.17,
- "agent_assigned_id": 63,
- "claim_handler_assigned_id": 20
- },
- {
- "id": 601,
- "disaster_id": 7,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 7214.92,
- "agent_assigned_id": 74,
- "claim_handler_assigned_id": 74
- },
- {
- "id": 602,
- "disaster_id": 22,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 321660.15,
- "agent_assigned_id": 56,
- "claim_handler_assigned_id": 117
- },
- {
- "id": 603,
- "disaster_id": 22,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 224280.63,
- "agent_assigned_id": 70,
- "claim_handler_assigned_id": 21
- },
- {
- "id": 604,
- "disaster_id": 7,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 18260.06,
- "agent_assigned_id": 74,
- "claim_handler_assigned_id": 92
- },
- {
- "id": 605,
- "disaster_id": 71,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1927.89,
- "agent_assigned_id": 60,
- "claim_handler_assigned_id": 59
- },
- {
- "id": 606,
- "disaster_id": 51,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 12838.72,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 16
- },
- {
- "id": 607,
- "disaster_id": 86,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 2926.29,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 8
- },
- {
- "id": 608,
- "disaster_id": 30,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 546000.47,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 26
- },
- {
- "id": 609,
- "disaster_id": 28,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 92350.35,
- "agent_assigned_id": 35,
- "claim_handler_assigned_id": 68
- },
- {
- "id": 610,
- "disaster_id": 44,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 32886.19,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 2
- },
- {
- "id": 611,
- "disaster_id": 40,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 896.95,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 612,
- "disaster_id": 76,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 5,
- "estimate_cost": 211450.63,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 129
- },
- {
- "id": 613,
- "disaster_id": 22,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 45840.4,
- "agent_assigned_id": 70,
- "claim_handler_assigned_id": 142
- },
- {
- "id": 614,
- "disaster_id": 41,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 372540.97,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 81
- },
- {
- "id": 615,
- "disaster_id": 55,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 108540.53,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 14
- },
- {
- "id": 616,
- "disaster_id": 96,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 474670.16,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 25
- },
- {
- "id": 617,
- "disaster_id": 61,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 1840.45,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 127
- },
- {
- "id": 618,
- "disaster_id": 97,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 168540.08,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 119
- },
- {
- "id": 619,
- "disaster_id": 28,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 375360.99,
- "agent_assigned_id": 35,
- "claim_handler_assigned_id": 147
- },
- {
- "id": 620,
- "disaster_id": 76,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 4,
- "estimate_cost": 790.01,
- "agent_assigned_id": 58,
- "claim_handler_assigned_id": 101
- },
- {
- "id": 621,
- "disaster_id": 92,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 18042.96,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 121
- },
- {
- "id": 622,
- "disaster_id": 31,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 1656.57,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 33
- },
- {
- "id": 623,
- "disaster_id": 29,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 277.61,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 44
- },
- {
- "id": 624,
- "disaster_id": 23,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 28720.26,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 7
- },
- {
- "id": 625,
- "disaster_id": 19,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 269280.5,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 68
- },
- {
- "id": 626,
- "disaster_id": 59,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 4623.95,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 103
- },
- {
- "id": 627,
- "disaster_id": 34,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 6150.6,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 112
- },
- {
- "id": 628,
- "disaster_id": 88,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 23760.92,
- "agent_assigned_id": 17,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 629,
- "disaster_id": 57,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 98700.46,
- "agent_assigned_id": 82,
- "claim_handler_assigned_id": 114
- },
- {
- "id": 630,
- "disaster_id": 59,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 6064.9,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 125
- },
- {
- "id": 631,
- "disaster_id": 37,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 1066.17,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 123
- },
- {
- "id": 632,
- "disaster_id": 88,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 749340.19,
- "agent_assigned_id": 47,
- "claim_handler_assigned_id": 26
- },
- {
- "id": 633,
- "disaster_id": 45,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 185.56,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 4
- },
- {
- "id": 634,
- "disaster_id": 1,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 5357.45,
- "agent_assigned_id": 75,
- "claim_handler_assigned_id": 70
- },
- {
- "id": 635,
- "disaster_id": 83,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 8848.92,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 636,
- "disaster_id": 73,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 2924.06,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 29
- },
- {
- "id": 637,
- "disaster_id": 88,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 37790.58,
- "agent_assigned_id": 47,
- "claim_handler_assigned_id": 78
- },
- {
- "id": 638,
- "disaster_id": 95,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 541.7,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 27
- },
- {
- "id": 639,
- "disaster_id": 15,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 36442.81,
- "agent_assigned_id": 21,
- "claim_handler_assigned_id": 105
- },
- {
- "id": 640,
- "disaster_id": 93,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 8780.2,
- "agent_assigned_id": 30,
- "claim_handler_assigned_id": 112
- },
- {
- "id": 641,
- "disaster_id": 100,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 941.07,
- "agent_assigned_id": 56,
- "claim_handler_assigned_id": 64
- },
- {
- "id": 642,
- "disaster_id": 42,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 2399.31,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 122
- },
- {
- "id": 643,
- "disaster_id": 43,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 22080.52,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 7
- },
- {
- "id": 644,
- "disaster_id": 68,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 930.94,
- "agent_assigned_id": 10,
- "claim_handler_assigned_id": 87
- },
- {
- "id": 645,
- "disaster_id": 13,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 26268.29,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 136
- },
- {
- "id": 646,
- "disaster_id": 24,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 491.02,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 108
- },
- {
- "id": 647,
- "disaster_id": 1,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 1931.15,
- "agent_assigned_id": 95,
- "claim_handler_assigned_id": 55
- },
- {
- "id": 648,
- "disaster_id": 17,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 86139.06,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 116
- },
- {
- "id": 649,
- "disaster_id": 32,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 2191.62,
- "agent_assigned_id": 74,
- "claim_handler_assigned_id": 103
- },
- {
- "id": 650,
- "disaster_id": 82,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 3013.4,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 64
- },
- {
- "id": 651,
- "disaster_id": 77,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 2349.91,
- "agent_assigned_id": 98,
- "claim_handler_assigned_id": 8
- },
- {
- "id": 652,
- "disaster_id": 25,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 35935.6,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 30
- },
- {
- "id": 653,
- "disaster_id": 32,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 75072.57,
- "agent_assigned_id": 74,
- "claim_handler_assigned_id": 21
- },
- {
- "id": 654,
- "disaster_id": 3,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 1,
- "estimate_cost": 72490.79,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 147
- },
- {
- "id": 655,
- "disaster_id": 97,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 7720.3,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 48
- },
- {
- "id": 656,
- "disaster_id": 84,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 10208.11,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 98
- },
- {
- "id": 657,
- "disaster_id": 84,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 3077.28,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 78
- },
- {
- "id": 658,
- "disaster_id": 2,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 919.33,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 106
- },
- {
- "id": 659,
- "disaster_id": 92,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 10,
- "estimate_cost": 81980.88,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 6
- },
- {
- "id": 660,
- "disaster_id": 3,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 1,
- "estimate_cost": 7533.88,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 1
- },
- {
- "id": 661,
- "disaster_id": 94,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 853.8,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 151
- },
- {
- "id": 662,
- "disaster_id": 42,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 1,
- "estimate_cost": 94160.43,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 113
- },
- {
- "id": 663,
- "disaster_id": 62,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 6858.57,
- "agent_assigned_id": 28,
- "claim_handler_assigned_id": 148
- },
- {
- "id": 664,
- "disaster_id": 1,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 6264.18,
- "agent_assigned_id": 68,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 665,
- "disaster_id": 8,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 252.87,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 103
- },
- {
- "id": 666,
- "disaster_id": 24,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 3416.88,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 5
- },
- {
- "id": 667,
- "disaster_id": 63,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1460.9,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 5
- },
- {
- "id": 668,
- "disaster_id": 43,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 462000.03,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 8
- },
- {
- "id": 669,
- "disaster_id": 89,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 2396.69,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 153
- },
- {
- "id": 670,
- "disaster_id": 55,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 252880.51,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 82
- },
- {
- "id": 671,
- "disaster_id": 82,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 352620.7,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 33
- },
- {
- "id": 672,
- "disaster_id": 12,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 350300.0,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 143
- },
- {
- "id": 673,
- "disaster_id": 79,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 4627.84,
- "agent_assigned_id": 30,
- "claim_handler_assigned_id": 87
- },
- {
- "id": 674,
- "disaster_id": 93,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 156300.73,
- "agent_assigned_id": 30,
- "claim_handler_assigned_id": 27
- },
- {
- "id": 675,
- "disaster_id": 89,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 4,
- "estimate_cost": 590.35,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 50
- },
- {
- "id": 676,
- "disaster_id": 1,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 5151.6,
- "agent_assigned_id": 95,
- "claim_handler_assigned_id": 90
- },
- {
- "id": 677,
- "disaster_id": 8,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 144400.99,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 73
- },
- {
- "id": 678,
- "disaster_id": 2,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 9101.54,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 14
- },
- {
- "id": 679,
- "disaster_id": 45,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 2803.81,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 140
- },
- {
- "id": 680,
- "disaster_id": 27,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 15651.99,
- "agent_assigned_id": 46,
- "claim_handler_assigned_id": 69
- },
- {
- "id": 681,
- "disaster_id": 68,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 989.48,
- "agent_assigned_id": 10,
- "claim_handler_assigned_id": 16
- },
- {
- "id": 682,
- "disaster_id": 21,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 910.09,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 113
- },
- {
- "id": 683,
- "disaster_id": 74,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 39837.87,
- "agent_assigned_id": 26,
- "claim_handler_assigned_id": 96
- },
- {
- "id": 684,
- "disaster_id": 49,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 1377.66,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 88
- },
- {
- "id": 685,
- "disaster_id": 16,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 786.05,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 91
- },
- {
- "id": 686,
- "disaster_id": 38,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 634.29,
- "agent_assigned_id": 58,
- "claim_handler_assigned_id": 48
- },
- {
- "id": 687,
- "disaster_id": 38,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 89.67,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 10
- },
- {
- "id": 688,
- "disaster_id": 93,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 786640.28,
- "agent_assigned_id": 30,
- "claim_handler_assigned_id": 94
- },
- {
- "id": 689,
- "disaster_id": 5,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 3596.39,
- "agent_assigned_id": 30,
- "claim_handler_assigned_id": 106
- },
- {
- "id": 690,
- "disaster_id": 55,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 15434.86,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 73
- },
- {
- "id": 691,
- "disaster_id": 38,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 4949.68,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 92
- },
- {
- "id": 692,
- "disaster_id": 27,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 2135.73,
- "agent_assigned_id": 1,
- "claim_handler_assigned_id": 34
- },
- {
- "id": 693,
- "disaster_id": 74,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1240.6,
- "agent_assigned_id": 97,
- "claim_handler_assigned_id": 55
- },
- {
- "id": 694,
- "disaster_id": 44,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 349200.2,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 132
- },
- {
- "id": 695,
- "disaster_id": 67,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 236390.72,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 138
- },
- {
- "id": 696,
- "disaster_id": 74,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 16960.62,
- "agent_assigned_id": 80,
- "claim_handler_assigned_id": 113
- },
- {
- "id": 697,
- "disaster_id": 66,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 9220.15,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 74
- },
- {
- "id": 698,
- "disaster_id": 65,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1479.66,
- "agent_assigned_id": 14,
- "claim_handler_assigned_id": 18
- },
- {
- "id": 699,
- "disaster_id": 88,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 2225.02,
- "agent_assigned_id": 17,
- "claim_handler_assigned_id": 12
- },
- {
- "id": 700,
- "disaster_id": 70,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 353.23,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 5
- },
- {
- "id": 701,
- "disaster_id": 6,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 49760.07,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 39
- },
- {
- "id": 702,
- "disaster_id": 51,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 837.87,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 96
- },
- {
- "id": 703,
- "disaster_id": 36,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 367750.27,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 130
- },
- {
- "id": 704,
- "disaster_id": 70,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 157740.54,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 48
- },
- {
- "id": 705,
- "disaster_id": 86,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 894.57,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 82
- },
- {
- "id": 706,
- "disaster_id": 65,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 43020.03,
- "agent_assigned_id": 78,
- "claim_handler_assigned_id": 1
- },
- {
- "id": 707,
- "disaster_id": 52,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 56550.56,
- "agent_assigned_id": 91,
- "claim_handler_assigned_id": 111
- },
- {
- "id": 708,
- "disaster_id": 3,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 5719.79,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 65
- },
- {
- "id": 709,
- "disaster_id": 78,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 111720.24,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 100
- },
- {
- "id": 710,
- "disaster_id": 64,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 218190.05,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 123
- },
- {
- "id": 711,
- "disaster_id": 43,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 395680.72,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 6
- },
- {
- "id": 712,
- "disaster_id": 25,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 260.71,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 126
- },
- {
- "id": 713,
- "disaster_id": 100,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 5,
- "estimate_cost": 1626.47,
- "agent_assigned_id": 70,
- "claim_handler_assigned_id": 88
- },
- {
- "id": 714,
- "disaster_id": 87,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 483930.83,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 69
- },
- {
- "id": 715,
- "disaster_id": 55,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 2330.06,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 13
- },
- {
- "id": 716,
- "disaster_id": 26,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 278100.1,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 147
- },
- {
- "id": 717,
- "disaster_id": 92,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 754.27,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 114
- },
- {
- "id": 718,
- "disaster_id": 22,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 8866.36,
- "agent_assigned_id": 56,
- "claim_handler_assigned_id": 88
- },
- {
- "id": 719,
- "disaster_id": 70,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 4890.5,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 8
- },
- {
- "id": 720,
- "disaster_id": 56,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 9,
- "estimate_cost": 898380.99,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 69
- },
- {
- "id": 721,
- "disaster_id": 24,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 8294.58,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 51
- },
- {
- "id": 722,
- "disaster_id": 88,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 7184.29,
- "agent_assigned_id": 47,
- "claim_handler_assigned_id": 122
- },
- {
- "id": 723,
- "disaster_id": 69,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 3154.75,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 24
- },
- {
- "id": 724,
- "disaster_id": 99,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 2134.37,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 89
- },
- {
- "id": 725,
- "disaster_id": 9,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 7807.37,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 109
- },
- {
- "id": 726,
- "disaster_id": 85,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 3938.7,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 23
- },
- {
- "id": 727,
- "disaster_id": 97,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 159480.91,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 134
- },
- {
- "id": 728,
- "disaster_id": 78,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 913.11,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 156
- },
- {
- "id": 729,
- "disaster_id": 29,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 714.39,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 64
- },
- {
- "id": 730,
- "disaster_id": 30,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 28998.59,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 4
- },
- {
- "id": 731,
- "disaster_id": 75,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 45810.77,
- "agent_assigned_id": 14,
- "claim_handler_assigned_id": 1
- },
- {
- "id": 732,
- "disaster_id": 3,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 182980.56,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 154
- },
- {
- "id": 733,
- "disaster_id": 9,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 33760.82,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 2
- },
- {
- "id": 734,
- "disaster_id": 87,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 42805.53,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 3
- },
- {
- "id": 735,
- "disaster_id": 22,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 5,
- "estimate_cost": 21120.73,
- "agent_assigned_id": 56,
- "claim_handler_assigned_id": 25
- },
- {
- "id": 736,
- "disaster_id": 6,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 32870.64,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 85
- },
- {
- "id": 737,
- "disaster_id": 16,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 111000.32,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 83
- },
- {
- "id": 738,
- "disaster_id": 71,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 3781.89,
- "agent_assigned_id": 60,
- "claim_handler_assigned_id": 133
- },
- {
- "id": 739,
- "disaster_id": 9,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 1224.39,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 71
- },
- {
- "id": 740,
- "disaster_id": 18,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 7252.7,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 37
- },
- {
- "id": 741,
- "disaster_id": 67,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 4816.64,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 33
- },
- {
- "id": 742,
- "disaster_id": 87,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 177300.26,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 128
- },
- {
- "id": 743,
- "disaster_id": 47,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 444060.29,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 125
- },
- {
- "id": 744,
- "disaster_id": 32,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 64260.11,
- "agent_assigned_id": 73,
- "claim_handler_assigned_id": 142
- },
- {
- "id": 745,
- "disaster_id": 46,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 46998.59,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 39
- },
- {
- "id": 746,
- "disaster_id": 7,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 6808.01,
- "agent_assigned_id": 74,
- "claim_handler_assigned_id": 21
- },
- {
- "id": 747,
- "disaster_id": 88,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 67815.3,
- "agent_assigned_id": 17,
- "claim_handler_assigned_id": 14
- },
- {
- "id": 748,
- "disaster_id": 20,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 2026.6,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 129
- },
- {
- "id": 749,
- "disaster_id": 64,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 3303.46,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 33
- },
- {
- "id": 750,
- "disaster_id": 78,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 13212.55,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 44
- },
- {
- "id": 751,
- "disaster_id": 61,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 41920.49,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 18
- },
- {
- "id": 752,
- "disaster_id": 57,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 303680.79,
- "agent_assigned_id": 62,
- "claim_handler_assigned_id": 136
- },
- {
- "id": 753,
- "disaster_id": 53,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 2360.51,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 23
- },
- {
- "id": 754,
- "disaster_id": 38,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 3741.19,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 40
- },
- {
- "id": 755,
- "disaster_id": 81,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 1853.58,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 100
- },
- {
- "id": 756,
- "disaster_id": 28,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 144.96,
- "agent_assigned_id": 35,
- "claim_handler_assigned_id": 88
- },
- {
- "id": 757,
- "disaster_id": 65,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 13254.29,
- "agent_assigned_id": 31,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 758,
- "disaster_id": 83,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 476700.35,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 55
- },
- {
- "id": 759,
- "disaster_id": 57,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 40640.95,
- "agent_assigned_id": 89,
- "claim_handler_assigned_id": 79
- },
- {
- "id": 760,
- "disaster_id": 39,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 8194.73,
- "agent_assigned_id": 62,
- "claim_handler_assigned_id": 135
- },
- {
- "id": 761,
- "disaster_id": 42,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 2,
- "estimate_cost": 1378.11,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 105
- },
- {
- "id": 762,
- "disaster_id": 29,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 15210.68,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 70
- },
- {
- "id": 763,
- "disaster_id": 11,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 6678.89,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 137
- },
- {
- "id": 764,
- "disaster_id": 8,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 66200.61,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 32
- },
- {
- "id": 765,
- "disaster_id": 89,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 1200.82,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 13
- },
- {
- "id": 766,
- "disaster_id": 87,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 6645.04,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 102
- },
- {
- "id": 767,
- "disaster_id": 94,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 5489.83,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 46
- },
- {
- "id": 768,
- "disaster_id": 94,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 1426.02,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 78
- },
- {
- "id": 769,
- "disaster_id": 71,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 1185.23,
- "agent_assigned_id": 27,
- "claim_handler_assigned_id": 14
- },
- {
- "id": 770,
- "disaster_id": 23,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 44470.19,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 3
- },
- {
- "id": 771,
- "disaster_id": 12,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1855.65,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 7
- },
- {
- "id": 772,
- "disaster_id": 64,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 277800.09,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 59
- },
- {
- "id": 773,
- "disaster_id": 54,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 400800.26,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 104
- },
- {
- "id": 774,
- "disaster_id": 59,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 2424.28,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 37
- },
- {
- "id": 775,
- "disaster_id": 81,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 5233.2,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 83
- },
- {
- "id": 776,
- "disaster_id": 14,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 903.28,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 107
- },
- {
- "id": 777,
- "disaster_id": 88,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 151.14,
- "agent_assigned_id": 17,
- "claim_handler_assigned_id": 56
- },
- {
- "id": 778,
- "disaster_id": 20,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 8861.3,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 56
- },
- {
- "id": 779,
- "disaster_id": 21,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 153900.55,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 57
- },
- {
- "id": 780,
- "disaster_id": 48,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 781680.49,
- "agent_assigned_id": 91,
- "claim_handler_assigned_id": 109
- },
- {
- "id": 781,
- "disaster_id": 45,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 997.98,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 2
- },
- {
- "id": 782,
- "disaster_id": 86,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 3847.33,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 116
- },
- {
- "id": 783,
- "disaster_id": 64,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 434460.51,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 25
- },
- {
- "id": 784,
- "disaster_id": 38,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 30.22,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 152
- },
- {
- "id": 785,
- "disaster_id": 71,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 5473.72,
- "agent_assigned_id": 42,
- "claim_handler_assigned_id": 96
- },
- {
- "id": 786,
- "disaster_id": 60,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 275.26,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 153
- },
- {
- "id": 787,
- "disaster_id": 40,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 276090.74,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 95
- },
- {
- "id": 788,
- "disaster_id": 42,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 856.72,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 145
- },
- {
- "id": 789,
- "disaster_id": 63,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 9125.3,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 83
- },
- {
- "id": 790,
- "disaster_id": 65,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 2929.85,
- "agent_assigned_id": 31,
- "claim_handler_assigned_id": 130
- },
- {
- "id": 791,
- "disaster_id": 1,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 374.91,
- "agent_assigned_id": 95,
- "claim_handler_assigned_id": 84
- },
- {
- "id": 792,
- "disaster_id": 39,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 1180.05,
- "agent_assigned_id": 11,
- "claim_handler_assigned_id": 149
- },
- {
- "id": 793,
- "disaster_id": 2,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 7460.25,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 85
- },
- {
- "id": 794,
- "disaster_id": 76,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 1982.92,
- "agent_assigned_id": 58,
- "claim_handler_assigned_id": 81
- },
- {
- "id": 795,
- "disaster_id": 88,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 4817.47,
- "agent_assigned_id": 47,
- "claim_handler_assigned_id": 64
- },
- {
- "id": 796,
- "disaster_id": 54,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 85635.87,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 142
- },
- {
- "id": 797,
- "disaster_id": 33,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 37568.29,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 59
- },
- {
- "id": 798,
- "disaster_id": 92,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 5004.08,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 42
- },
- {
- "id": 799,
- "disaster_id": 52,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 42550.22,
- "agent_assigned_id": 91,
- "claim_handler_assigned_id": 46
- },
- {
- "id": 800,
- "disaster_id": 60,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 370620.85,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 61
- },
- {
- "id": 801,
- "disaster_id": 55,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 67410.15,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 37
- },
- {
- "id": 802,
- "disaster_id": 80,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 10413.64,
- "agent_assigned_id": 59,
- "claim_handler_assigned_id": 56
- },
- {
- "id": 803,
- "disaster_id": 50,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 4718.07,
- "agent_assigned_id": 8,
- "claim_handler_assigned_id": 144
- },
- {
- "id": 804,
- "disaster_id": 31,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 4057.32,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 39
- },
- {
- "id": 805,
- "disaster_id": 95,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 717.73,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 27
- },
- {
- "id": 806,
- "disaster_id": 25,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 36000.63,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 85
- },
- {
- "id": 807,
- "disaster_id": 82,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 1574.47,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 125
- },
- {
- "id": 808,
- "disaster_id": 99,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 5,
- "estimate_cost": 5810.89,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 127
- },
- {
- "id": 809,
- "disaster_id": 16,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 112840.74,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 15
- },
- {
- "id": 810,
- "disaster_id": 12,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 871.97,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 113
- },
- {
- "id": 811,
- "disaster_id": 14,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 9672.97,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 87
- },
- {
- "id": 812,
- "disaster_id": 99,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 7038.95,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 113
- },
- {
- "id": 813,
- "disaster_id": 14,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 398700.23,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 814,
- "disaster_id": 55,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 22320.02,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 38
- },
- {
- "id": 815,
- "disaster_id": 9,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 37615.87,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 112
- },
- {
- "id": 816,
- "disaster_id": 70,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 950.47,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 126
- },
- {
- "id": 817,
- "disaster_id": 36,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 1,
- "estimate_cost": 964.51,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 65
- },
- {
- "id": 818,
- "disaster_id": 39,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 27920.25,
- "agent_assigned_id": 11,
- "claim_handler_assigned_id": 77
- },
- {
- "id": 819,
- "disaster_id": 72,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 547830.97,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 25
- },
- {
- "id": 820,
- "disaster_id": 20,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 585600.76,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 115
- },
- {
- "id": 821,
- "disaster_id": 100,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 6776.55,
- "agent_assigned_id": 70,
- "claim_handler_assigned_id": 30
- },
- {
- "id": 822,
- "disaster_id": 95,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 3960.26,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 119
- },
- {
- "id": 823,
- "disaster_id": 64,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 25836.9,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 90
- },
- {
- "id": 824,
- "disaster_id": 33,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 5598.03,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 117
- },
- {
- "id": 825,
- "disaster_id": 52,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 5368.25,
- "agent_assigned_id": 5,
- "claim_handler_assigned_id": 5
- },
- {
- "id": 826,
- "disaster_id": 65,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 4528.73,
- "agent_assigned_id": 31,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 827,
- "disaster_id": 41,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 404.5,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 50
- },
- {
- "id": 828,
- "disaster_id": 2,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 752.68,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 75
- },
- {
- "id": 829,
- "disaster_id": 75,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 323401.0,
- "agent_assigned_id": 78,
- "claim_handler_assigned_id": 140
- },
- {
- "id": 830,
- "disaster_id": 21,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 4094.41,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 56
- },
- {
- "id": 831,
- "disaster_id": 40,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 3500.86,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 39
- },
- {
- "id": 832,
- "disaster_id": 13,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 49630.98,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 21
- },
- {
- "id": 833,
- "disaster_id": 60,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 48420.48,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 49
- },
- {
- "id": 834,
- "disaster_id": 95,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 162510.42,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 73
- },
- {
- "id": 835,
- "disaster_id": 88,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 2375.73,
- "agent_assigned_id": 17,
- "claim_handler_assigned_id": 112
- },
- {
- "id": 836,
- "disaster_id": 1,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 624.38,
- "agent_assigned_id": 63,
- "claim_handler_assigned_id": 153
- },
- {
- "id": 837,
- "disaster_id": 80,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 56700.97,
- "agent_assigned_id": 59,
- "claim_handler_assigned_id": 105
- },
- {
- "id": 838,
- "disaster_id": 44,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 355200.53,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 136
- },
- {
- "id": 839,
- "disaster_id": 97,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 49820.09,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 4
- },
- {
- "id": 840,
- "disaster_id": 65,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 33264.82,
- "agent_assigned_id": 78,
- "claim_handler_assigned_id": 108
- },
- {
- "id": 841,
- "disaster_id": 3,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 7304.2,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 144
- },
- {
- "id": 842,
- "disaster_id": 35,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 925.95,
- "agent_assigned_id": 85,
- "claim_handler_assigned_id": 145
- },
- {
- "id": 843,
- "disaster_id": 77,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 504.36,
- "agent_assigned_id": 71,
- "claim_handler_assigned_id": 74
- },
- {
- "id": 844,
- "disaster_id": 91,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 245.45,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 7
- },
- {
- "id": 845,
- "disaster_id": 7,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 2240.45,
- "agent_assigned_id": 19,
- "claim_handler_assigned_id": 144
- },
- {
- "id": 846,
- "disaster_id": 61,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 19692.31,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 148
- },
- {
- "id": 847,
- "disaster_id": 79,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 27120.27,
- "agent_assigned_id": 43,
- "claim_handler_assigned_id": 47
- },
- {
- "id": 848,
- "disaster_id": 96,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 55578.74,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 79
- },
- {
- "id": 849,
- "disaster_id": 46,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 38940.07,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 70
- },
- {
- "id": 850,
- "disaster_id": 16,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 517.81,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 78
- },
- {
- "id": 851,
- "disaster_id": 62,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 10616.06,
- "agent_assigned_id": 28,
- "claim_handler_assigned_id": 118
- },
- {
- "id": 852,
- "disaster_id": 1,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 465.02,
- "agent_assigned_id": 63,
- "claim_handler_assigned_id": 149
- },
- {
- "id": 853,
- "disaster_id": 100,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 4683.6,
- "agent_assigned_id": 56,
- "claim_handler_assigned_id": 131
- },
- {
- "id": 854,
- "disaster_id": 70,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 551.22,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 155
- },
- {
- "id": 855,
- "disaster_id": 96,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 64590.04,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 2
- },
- {
- "id": 856,
- "disaster_id": 65,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 3684.28,
- "agent_assigned_id": 31,
- "claim_handler_assigned_id": 25
- },
- {
- "id": 857,
- "disaster_id": 13,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 36230.19,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 66
- },
- {
- "id": 858,
- "disaster_id": 3,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 577.51,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 105
- },
- {
- "id": 859,
- "disaster_id": 7,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 33939.75,
- "agent_assigned_id": 19,
- "claim_handler_assigned_id": 107
- },
- {
- "id": 860,
- "disaster_id": 56,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 8457.55,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 124
- },
- {
- "id": 861,
- "disaster_id": 45,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 3975.3,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 116
- },
- {
- "id": 862,
- "disaster_id": 81,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 4500.14,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 31
- },
- {
- "id": 863,
- "disaster_id": 56,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 1600.51,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 34
- },
- {
- "id": 864,
- "disaster_id": 37,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 29292.2,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 25
- },
- {
- "id": 865,
- "disaster_id": 62,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 385110.55,
- "agent_assigned_id": 28,
- "claim_handler_assigned_id": 55
- },
- {
- "id": 866,
- "disaster_id": 27,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 447370.97,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 149
- },
- {
- "id": 867,
- "disaster_id": 88,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 810.02,
- "agent_assigned_id": 17,
- "claim_handler_assigned_id": 89
- },
- {
- "id": 868,
- "disaster_id": 88,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 9,
- "estimate_cost": 51930.41,
- "agent_assigned_id": 47,
- "claim_handler_assigned_id": 85
- },
- {
- "id": 869,
- "disaster_id": 67,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 2008.33,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 66
- },
- {
- "id": 870,
- "disaster_id": 63,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 27880.1,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 91
- },
- {
- "id": 871,
- "disaster_id": 6,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 44660.75,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 54
- },
- {
- "id": 872,
- "disaster_id": 50,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 4778.71,
- "agent_assigned_id": 8,
- "claim_handler_assigned_id": 10
- },
- {
- "id": 873,
- "disaster_id": 60,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 6337.93,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 28
- },
- {
- "id": 874,
- "disaster_id": 12,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 44736.31,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 122
- },
- {
- "id": 875,
- "disaster_id": 3,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 5640.05,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 29
- },
- {
- "id": 876,
- "disaster_id": 13,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 685860.58,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 33
- },
- {
- "id": 877,
- "disaster_id": 64,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 5608.84,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 47
- },
- {
- "id": 878,
- "disaster_id": 99,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 2124.44,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 127
- },
- {
- "id": 879,
- "disaster_id": 7,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 1821.05,
- "agent_assigned_id": 74,
- "claim_handler_assigned_id": 156
- },
- {
- "id": 880,
- "disaster_id": 54,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 3559.35,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 155
- },
- {
- "id": 881,
- "disaster_id": 42,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 6789.36,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 99
- },
- {
- "id": 882,
- "disaster_id": 63,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 639.05,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 59
- },
- {
- "id": 883,
- "disaster_id": 58,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 24640.34,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 36
- },
- {
- "id": 884,
- "disaster_id": 16,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 12460.64,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 73
- },
- {
- "id": 885,
- "disaster_id": 38,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 4050.01,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 23
- },
- {
- "id": 886,
- "disaster_id": 92,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 1443.34,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 123
- },
- {
- "id": 887,
- "disaster_id": 83,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 79880.28,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 69
- },
- {
- "id": 888,
- "disaster_id": 60,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 887.56,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 102
- },
- {
- "id": 889,
- "disaster_id": 24,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 102360.97,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 6
- },
- {
- "id": 890,
- "disaster_id": 53,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 889.26,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 120
- },
- {
- "id": 891,
- "disaster_id": 13,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 6043.47,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 45
- },
- {
- "id": 892,
- "disaster_id": 50,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 4996.96,
- "agent_assigned_id": 8,
- "claim_handler_assigned_id": 42
- },
- {
- "id": 893,
- "disaster_id": 75,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 154380.09,
- "agent_assigned_id": 78,
- "claim_handler_assigned_id": 103
- },
- {
- "id": 894,
- "disaster_id": 12,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 1,
- "estimate_cost": 818.38,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 65
- },
- {
- "id": 895,
- "disaster_id": 98,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 10668.93,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 13
- },
- {
- "id": 896,
- "disaster_id": 8,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 1139.83,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 21
- },
- {
- "id": 897,
- "disaster_id": 6,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 5610.29,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 96
- },
- {
- "id": 898,
- "disaster_id": 31,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 124.23,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 89
- },
- {
- "id": 899,
- "disaster_id": 71,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 178.63,
- "agent_assigned_id": 60,
- "claim_handler_assigned_id": 41
- },
- {
- "id": 900,
- "disaster_id": 68,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 51240.64,
- "agent_assigned_id": 10,
- "claim_handler_assigned_id": 81
- },
- {
- "id": 901,
- "disaster_id": 86,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 767.67,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 155
- },
- {
- "id": 902,
- "disaster_id": 2,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 641.23,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 81
- },
- {
- "id": 903,
- "disaster_id": 91,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 193940.02,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 45
- },
- {
- "id": 904,
- "disaster_id": 100,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 926.49,
- "agent_assigned_id": 70,
- "claim_handler_assigned_id": 93
- },
- {
- "id": 905,
- "disaster_id": 99,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 1185.55,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 64
- },
- {
- "id": 906,
- "disaster_id": 11,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 51528.05,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 85
- },
- {
- "id": 907,
- "disaster_id": 58,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 3038.38,
- "agent_assigned_id": 1,
- "claim_handler_assigned_id": 92
- },
- {
- "id": 908,
- "disaster_id": 52,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 65600.99,
- "agent_assigned_id": 5,
- "claim_handler_assigned_id": 110
- },
- {
- "id": 909,
- "disaster_id": 83,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 81480.4,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 20
- },
- {
- "id": 910,
- "disaster_id": 13,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 3579.27,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 27
- },
- {
- "id": 911,
- "disaster_id": 73,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 1126.82,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 114
- },
- {
- "id": 912,
- "disaster_id": 38,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 2099.12,
- "agent_assigned_id": 58,
- "claim_handler_assigned_id": 24
- },
- {
- "id": 913,
- "disaster_id": 90,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 8397.56,
- "agent_assigned_id": 97,
- "claim_handler_assigned_id": 124
- },
- {
- "id": 914,
- "disaster_id": 12,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 33234.66,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 32
- },
- {
- "id": 915,
- "disaster_id": 86,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 2116.54,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 125
- },
- {
- "id": 916,
- "disaster_id": 55,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 624960.43,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 122
- },
- {
- "id": 917,
- "disaster_id": 61,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 551460.46,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 29
- },
- {
- "id": 918,
- "disaster_id": 65,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 4135.69,
- "agent_assigned_id": 31,
- "claim_handler_assigned_id": 66
- },
- {
- "id": 919,
- "disaster_id": 36,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 36112.36,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 149
- },
- {
- "id": 920,
- "disaster_id": 1,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 588880.6,
- "agent_assigned_id": 75,
- "claim_handler_assigned_id": 113
- },
- {
- "id": 921,
- "disaster_id": 95,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 666270.01,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 40
- },
- {
- "id": 922,
- "disaster_id": 10,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 334400.43,
- "agent_assigned_id": 66,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 923,
- "disaster_id": 43,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 26782.59,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 133
- },
- {
- "id": 924,
- "disaster_id": 48,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 1131.79,
- "agent_assigned_id": 5,
- "claim_handler_assigned_id": 35
- },
- {
- "id": 925,
- "disaster_id": 1,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 16452.99,
- "agent_assigned_id": 68,
- "claim_handler_assigned_id": 33
- },
- {
- "id": 926,
- "disaster_id": 47,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 1369.64,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 49
- },
- {
- "id": 927,
- "disaster_id": 91,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 662580.23,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 105
- },
- {
- "id": 928,
- "disaster_id": 73,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 1990.45,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 4
- },
- {
- "id": 929,
- "disaster_id": 51,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 2071.34,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 140
- },
- {
- "id": 930,
- "disaster_id": 82,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 1418.54,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 2
- },
- {
- "id": 931,
- "disaster_id": 9,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 245.77,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 51
- },
- {
- "id": 932,
- "disaster_id": 44,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 4,
- "estimate_cost": 45400.86,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 118
- },
- {
- "id": 933,
- "disaster_id": 47,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 379120.91,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 78
- },
- {
- "id": 934,
- "disaster_id": 96,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 2512.86,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 20
- },
- {
- "id": 935,
- "disaster_id": 31,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 141510.27,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 936,
- "disaster_id": 54,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 289150.04,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 152
- },
- {
- "id": 937,
- "disaster_id": 40,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 1544.66,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 77
- },
- {
- "id": 938,
- "disaster_id": 9,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 73880.59,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 75
- },
- {
- "id": 939,
- "disaster_id": 88,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 2161.83,
- "agent_assigned_id": 47,
- "claim_handler_assigned_id": 120
- },
- {
- "id": 940,
- "disaster_id": 22,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 22011.55,
- "agent_assigned_id": 56,
- "claim_handler_assigned_id": 107
- },
- {
- "id": 941,
- "disaster_id": 80,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 455040.92,
- "agent_assigned_id": 23,
- "claim_handler_assigned_id": 12
- },
- {
- "id": 942,
- "disaster_id": 8,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 7,
- "estimate_cost": 190820.74,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 102
- },
- {
- "id": 943,
- "disaster_id": 32,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 1183.36,
- "agent_assigned_id": 73,
- "claim_handler_assigned_id": 86
- },
- {
- "id": 944,
- "disaster_id": 35,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 524.11,
- "agent_assigned_id": 85,
- "claim_handler_assigned_id": 12
- },
- {
- "id": 945,
- "disaster_id": 18,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 92040.59,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 1
- },
- {
- "id": 946,
- "disaster_id": 42,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 41735.24,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 115
- },
- {
- "id": 947,
- "disaster_id": 26,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 6,
- "estimate_cost": 4991.11,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 60
- },
- {
- "id": 948,
- "disaster_id": 39,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1389.04,
- "agent_assigned_id": 62,
- "claim_handler_assigned_id": 18
- },
- {
- "id": 949,
- "disaster_id": 58,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 3959.67,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 58
- },
- {
- "id": 950,
- "disaster_id": 9,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 43100.3,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 62
- },
- {
- "id": 951,
- "disaster_id": 61,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 246060.83,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 106
- },
- {
- "id": 952,
- "disaster_id": 62,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 2704.88,
- "agent_assigned_id": 55,
- "claim_handler_assigned_id": 20
- },
- {
- "id": 953,
- "disaster_id": 34,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 498360.94,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 121
- },
- {
- "id": 954,
- "disaster_id": 63,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 8430.87,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 122
- },
- {
- "id": 955,
- "disaster_id": 63,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 2521.48,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 65
- },
- {
- "id": 956,
- "disaster_id": 76,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 95600.69,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 70
- },
- {
- "id": 957,
- "disaster_id": 44,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 124290.48,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 56
- },
- {
- "id": 958,
- "disaster_id": 72,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 43240.37,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 49
- },
- {
- "id": 959,
- "disaster_id": 95,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 10964.52,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 14
- },
- {
- "id": 960,
- "disaster_id": 54,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 469.92,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 51
- },
- {
- "id": 961,
- "disaster_id": 97,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 629760.5,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 42
- },
- {
- "id": 962,
- "disaster_id": 29,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 288840.08,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 85
- },
- {
- "id": 963,
- "disaster_id": 34,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 71368.57,
- "agent_assigned_id": 58,
- "claim_handler_assigned_id": 36
- },
- {
- "id": 964,
- "disaster_id": 25,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 127.32,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 135
- },
- {
- "id": 965,
- "disaster_id": 17,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 694890.27,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 81
- },
- {
- "id": 966,
- "disaster_id": 18,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 40760.9,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 130
- },
- {
- "id": 967,
- "disaster_id": 63,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 294960.98,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 43
- },
- {
- "id": 968,
- "disaster_id": 63,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 3094.95,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 96
- },
- {
- "id": 969,
- "disaster_id": 3,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 136.16,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 76
- },
- {
- "id": 970,
- "disaster_id": 99,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 41607.83,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 120
- },
- {
- "id": 971,
- "disaster_id": 86,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 2756.09,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 110
- },
- {
- "id": 972,
- "disaster_id": 38,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 4729.21,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 98
- },
- {
- "id": 973,
- "disaster_id": 31,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 7563.08,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 97
- },
- {
- "id": 974,
- "disaster_id": 38,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 3815.56,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 130
- },
- {
- "id": 975,
- "disaster_id": 39,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 43056.28,
- "agent_assigned_id": 82,
- "claim_handler_assigned_id": 61
- },
- {
- "id": 976,
- "disaster_id": 24,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 8379.17,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 91
- },
- {
- "id": 977,
- "disaster_id": 23,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 370.47,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 10
- },
- {
- "id": 978,
- "disaster_id": 99,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 218910.99,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 47
- },
- {
- "id": 979,
- "disaster_id": 93,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 1050.49,
- "agent_assigned_id": 30,
- "claim_handler_assigned_id": 140
- },
- {
- "id": 980,
- "disaster_id": 99,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 19410.9,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 95
- },
- {
- "id": 981,
- "disaster_id": 42,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 43560.01,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 40
- },
- {
- "id": 982,
- "disaster_id": 52,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 584.99,
- "agent_assigned_id": 5,
- "claim_handler_assigned_id": 48
- },
- {
- "id": 983,
- "disaster_id": 94,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 20256.5,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 136
- },
- {
- "id": 984,
- "disaster_id": 3,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 2400.82,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 53
- },
- {
- "id": 985,
- "disaster_id": 63,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 969.22,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 122
- },
- {
- "id": 986,
- "disaster_id": 99,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 63981.35,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 47
- },
- {
- "id": 987,
- "disaster_id": 27,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 985.83,
- "agent_assigned_id": 1,
- "claim_handler_assigned_id": 125
- },
- {
- "id": 988,
- "disaster_id": 93,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 3833.72,
- "agent_assigned_id": 43,
- "claim_handler_assigned_id": 15
- },
- {
- "id": 989,
- "disaster_id": 68,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 2935.22,
- "agent_assigned_id": 10,
- "claim_handler_assigned_id": 67
- },
- {
- "id": 990,
- "disaster_id": 95,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 17720.19,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 66
- },
- {
- "id": 991,
- "disaster_id": 34,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 913300.2,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 129
- },
- {
- "id": 992,
- "disaster_id": 12,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 79980.03,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 92
- },
- {
- "id": 993,
- "disaster_id": 42,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 4862.2,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 110
- },
- {
- "id": 994,
- "disaster_id": 82,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 177150.91,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 88
- },
- {
- "id": 995,
- "disaster_id": 15,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 248670.91,
- "agent_assigned_id": 21,
- "claim_handler_assigned_id": 140
- },
- {
- "id": 996,
- "disaster_id": 58,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 1662.24,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 114
- },
- {
- "id": 997,
- "disaster_id": 95,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 2078.24,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 80
- },
- {
- "id": 998,
- "disaster_id": 66,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 17420.91,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 113
- },
- {
- "id": 999,
- "disaster_id": 17,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 484100.78,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 85
- },
- {
- "id": 1000,
- "disaster_id": 9,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 6,
- "estimate_cost": 42330.53,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 156
- }
-]
\ No newline at end of file
diff --git a/nodejs/data/sfcc_2023_disasters.json b/nodejs/data/sfcc_2023_disasters.json
deleted file mode 100644
index eb8f6ac..0000000
--- a/nodejs/data/sfcc_2023_disasters.json
+++ /dev/null
@@ -1,1302 +0,0 @@
-[
- {
- "id": 1,
- "type": "Flood",
- "state": "Alaska",
- "name": "Alaska Flood",
- "description": "Fusce consequat. Nulla nisl. Nunc nisl.\n\nDuis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa. Donec dapibus. Duis at velit eu est congue elementum.\n\nIn hac habitasse platea dictumst. Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante. Nulla justo.",
- "start_date": "2023-06-13",
- "end_date": "2023-06-20",
- "declared_date": "2023-06-17",
- "lat": 58.3271,
- "long": -134.4742,
- "radius_miles": 168
- },
- {
- "id": 2,
- "type": "Wildfire",
- "state": "Texas",
- "name": "Texas Wildfire",
- "description": "Duis consequat dui nec nisi volutpat eleifend. Donec ut dolor. Morbi vel lectus in quam fringilla rhoncus.\n\nMauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis. Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci. Mauris lacinia sapien quis libero.",
- "start_date": "2023-04-11",
- "end_date": "2023-04-19",
- "declared_date": "2023-04-12",
- "lat": 33.5693,
- "long": -101.8904,
- "radius_miles": 235
- },
- {
- "id": 3,
- "type": "Tornado",
- "state": "Virginia",
- "name": "Virginia Tornado",
- "description": "Nullam sit amet turpis elementum ligula vehicula consequat. Morbi a ipsum. Integer a nibh.\n\nIn quis justo. Maecenas rhoncus aliquam lacus. Morbi quis tortor id nulla ultrices aliquet.\n\nMaecenas leo odio, condimentum id, luctus nec, molestie sed, justo. Pellentesque viverra pede ac diam. Cras pellentesque volutpat dui.",
- "start_date": "2023-04-29",
- "end_date": "2023-05-07",
- "declared_date": "2023-05-06",
- "lat": 38.9776,
- "long": -77.386,
- "radius_miles": 273
- },
- {
- "id": 4,
- "type": "Earthquake",
- "state": "Connecticut",
- "name": "Connecticut Earthquake",
- "description": "Fusce consequat. Nulla nisl. Nunc nisl.",
- "start_date": "2023-04-24",
- "end_date": "2023-05-09",
- "declared_date": "2023-04-28",
- "lat": 41.3657,
- "long": -72.9275,
- "radius_miles": 120
- },
- {
- "id": 5,
- "type": "Winter Storm",
- "state": "Missouri",
- "name": "Missouri Winter Storm",
- "description": "Suspendisse potenti. In eleifend quam a odio. In hac habitasse platea dictumst.",
- "start_date": "2023-03-11",
- "end_date": "2023-03-21",
- "declared_date": "2023-03-14",
- "lat": 39.0663,
- "long": -94.5674,
- "radius_miles": 155
- },
- {
- "id": 6,
- "type": "Tornado",
- "state": "California",
- "name": "California Tornado",
- "description": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis. Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci. Mauris lacinia sapien quis libero.\n\nNullam sit amet turpis elementum ligula vehicula consequat. Morbi a ipsum. Integer a nibh.",
- "start_date": "2022-11-15",
- "end_date": "2022-11-19",
- "declared_date": "2022-11-20",
- "lat": 38.025,
- "long": -121.2972,
- "radius_miles": 142
- },
- {
- "id": 7,
- "type": "Thunderstorm",
- "state": "Massachusetts",
- "name": "Massachusetts Thunderstorm",
- "description": "Sed ante. Vivamus tortor. Duis mattis egestas metus.\n\nAenean fermentum. Donec ut mauris eget massa tempor convallis. Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.\n\nQuisque id justo sit amet sapien dignissim vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est. Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.",
- "start_date": "2023-05-19",
- "end_date": "2023-06-06",
- "declared_date": "2023-05-26",
- "lat": 41.6913,
- "long": -70.9355,
- "radius_miles": 266
- },
- {
- "id": 8,
- "type": "Earthquake",
- "state": "Tennessee",
- "name": "Tennessee Earthquake",
- "description": "Morbi porttitor lorem id ligula. Suspendisse ornare consequat lectus. In est risus, auctor sed, tristique in, tempus sit amet, sem.",
- "start_date": "2023-04-13",
- "end_date": "2023-04-21",
- "declared_date": "2023-04-20",
- "lat": 35.6124,
- "long": -88.8412,
- "radius_miles": 147
- },
- {
- "id": 9,
- "type": "Thunderstorm",
- "state": "New York",
- "name": "New York Thunderstorm",
- "description": "Curabitur gravida nisi at nibh. In hac habitasse platea dictumst. Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.",
- "start_date": "2022-11-04",
- "end_date": "2022-11-15",
- "declared_date": "2022-11-06",
- "lat": 40.7536,
- "long": -73.8226,
- "radius_miles": 48
- },
- {
- "id": 10,
- "type": "Winter Storm",
- "state": "Nebraska",
- "name": "Nebraska Winter Storm",
- "description": "Maecenas ut massa quis augue luctus tincidunt. Nulla mollis molestie lorem. Quisque ut erat.\n\nCurabitur gravida nisi at nibh. In hac habitasse platea dictumst. Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.",
- "start_date": "2022-11-28",
- "end_date": "2022-12-03",
- "declared_date": "2022-11-30",
- "lat": 40.8529,
- "long": -96.7943,
- "radius_miles": 239
- },
- {
- "id": 11,
- "type": "Wildfire",
- "state": "Kansas",
- "name": "Kansas Wildfire",
- "description": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis. Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci. Mauris lacinia sapien quis libero.",
- "start_date": "2022-11-12",
- "end_date": "2022-11-28",
- "declared_date": "2022-11-17",
- "lat": 38.8999,
- "long": -94.832,
- "radius_miles": 169
- },
- {
- "id": 12,
- "type": "Landslide",
- "state": "Florida",
- "name": "Florida Landslide",
- "description": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi. Integer ac neque.",
- "start_date": "2022-12-01",
- "end_date": "2022-12-07",
- "declared_date": "2022-12-03",
- "lat": 28.5559,
- "long": -81.3535,
- "radius_miles": 102
- },
- {
- "id": 13,
- "type": "Hurricane",
- "state": "Texas",
- "name": "Texas Hurricane Bliss",
- "description": "Proin interdum mauris non ligula pellentesque ultrices. Phasellus id sapien in sapien iaculis congue. Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.\n\nAenean lectus. Pellentesque eget nunc. Donec quis orci eget orci vehicula condimentum.\n\nCurabitur in libero ut massa volutpat convallis. Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo. Maecenas pulvinar lobortis est.",
- "start_date": "2023-03-29",
- "end_date": "2023-04-12",
- "declared_date": "2023-04-05",
- "lat": 30.43,
- "long": -97.8326,
- "radius_miles": 186
- },
- {
- "id": 14,
- "type": "Flood",
- "state": "Florida",
- "name": "Florida Flood",
- "description": "Aliquam quis turpis eget elit sodales scelerisque. Mauris sit amet eros. Suspendisse accumsan tortor quis turpis.\n\nSed ante. Vivamus tortor. Duis mattis egestas metus.\n\nAenean fermentum. Donec ut mauris eget massa tempor convallis. Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.",
- "start_date": "2023-04-05",
- "end_date": "2023-04-18",
- "declared_date": "2023-04-12",
- "lat": 30.4793,
- "long": -84.3462,
- "radius_miles": 110
- },
- {
- "id": 15,
- "type": "Wildfire",
- "state": "North Carolina",
- "name": "North Carolina Wildfire",
- "description": "In sagittis dui vel nisl. Duis ac nibh. Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus.\n\nSuspendisse potenti. In eleifend quam a odio. In hac habitasse platea dictumst.\n\nMaecenas ut massa quis augue luctus tincidunt. Nulla mollis molestie lorem. Quisque ut erat.",
- "start_date": "2023-03-28",
- "end_date": "2023-04-04",
- "declared_date": "2023-03-30",
- "lat": 36.1824,
- "long": -79.806,
- "radius_miles": 36
- },
- {
- "id": 16,
- "type": "Flood",
- "state": "New York",
- "name": "New York Flood",
- "description": "Duis aliquam convallis nunc. Proin at turpis a pede posuere nonummy. Integer non velit.\n\nDonec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi. Integer ac neque.",
- "start_date": "2023-02-27",
- "end_date": "2023-03-03",
- "declared_date": "2023-02-28",
- "lat": 42.8161,
- "long": -73.9398,
- "radius_miles": 182
- },
- {
- "id": 17,
- "type": "Thunderstorm",
- "state": "Connecticut",
- "name": "Connecticut Thunderstorm",
- "description": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi. Integer ac neque.\n\nDuis bibendum. Morbi non quam nec dui luctus rutrum. Nulla tellus.\n\nIn sagittis dui vel nisl. Duis ac nibh. Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus.",
- "start_date": "2023-04-05",
- "end_date": "2023-04-19",
- "declared_date": "2023-04-08",
- "lat": 41.3089,
- "long": -73.3637,
- "radius_miles": 57
- },
- {
- "id": 18,
- "type": "Wildfire",
- "state": "Georgia",
- "name": "Georgia Wildfire",
- "description": "Proin eu mi. Nulla ac enim. In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.\n\nDuis aliquam convallis nunc. Proin at turpis a pede posuere nonummy. Integer non velit.\n\nDonec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi. Integer ac neque.",
- "start_date": "2023-03-08",
- "end_date": "2023-03-20",
- "declared_date": "2023-03-14",
- "lat": 31.55,
- "long": -84.0612,
- "radius_miles": 31
- },
- {
- "id": 19,
- "type": "Earthquake",
- "state": "Georgia",
- "name": "Georgia Earthquake",
- "description": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vivamus vestibulum sagittis sapien. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\n\nEtiam vel augue. Vestibulum rutrum rutrum neque. Aenean auctor gravida sem.\n\nPraesent id massa id nisl venenatis lacinia. Aenean sit amet justo. Morbi ut odio.",
- "start_date": "2023-04-01",
- "end_date": "2023-04-11",
- "declared_date": "2023-04-02",
- "lat": 32.491,
- "long": -84.8741,
- "radius_miles": 79
- },
- {
- "id": 20,
- "type": "Landslide",
- "state": "New York",
- "name": "New York Landslide",
- "description": "Sed ante. Vivamus tortor. Duis mattis egestas metus.\n\nAenean fermentum. Donec ut mauris eget massa tempor convallis. Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.\n\nQuisque id justo sit amet sapien dignissim vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est. Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.",
- "start_date": "2023-01-01",
- "end_date": "2023-01-18",
- "declared_date": "2023-01-03",
- "lat": 40.6407,
- "long": -73.9028,
- "radius_miles": 164
- },
- {
- "id": 21,
- "type": "Winter Storm",
- "state": "Minnesota",
- "name": "Minnesota Winter Storm",
- "description": "Quisque porta volutpat erat. Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla. Nunc purus.\n\nPhasellus in felis. Donec semper sapien a libero. Nam dui.",
- "start_date": "2023-01-02",
- "end_date": "2023-01-19",
- "declared_date": "2023-01-07",
- "lat": 45.0059,
- "long": -93.1059,
- "radius_miles": 185
- },
- {
- "id": 22,
- "type": "Hurricane",
- "state": "District of Columbia",
- "name": "District of Columbia Hurricane Carolina",
- "description": "Morbi porttitor lorem id ligula. Suspendisse ornare consequat lectus. In est risus, auctor sed, tristique in, tempus sit amet, sem.\n\nFusce consequat. Nulla nisl. Nunc nisl.",
- "start_date": "2023-06-17",
- "end_date": "2023-06-22",
- "declared_date": "2023-06-24",
- "lat": 38.8933,
- "long": -77.0146,
- "radius_miles": 269
- },
- {
- "id": 23,
- "type": "Winter Storm",
- "state": "Florida",
- "name": "Florida Winter Storm",
- "description": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vivamus vestibulum sagittis sapien. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\n\nEtiam vel augue. Vestibulum rutrum rutrum neque. Aenean auctor gravida sem.",
- "start_date": "2023-01-27",
- "end_date": "2023-02-14",
- "declared_date": "2023-01-30",
- "lat": 30.6143,
- "long": -87.2758,
- "radius_miles": 121
- },
- {
- "id": 24,
- "type": "Earthquake",
- "state": "Michigan",
- "name": "Michigan Earthquake",
- "description": "Aliquam quis turpis eget elit sodales scelerisque. Mauris sit amet eros. Suspendisse accumsan tortor quis turpis.\n\nSed ante. Vivamus tortor. Duis mattis egestas metus.",
- "start_date": "2022-10-27",
- "end_date": "2022-11-11",
- "declared_date": "2022-11-03",
- "lat": 42.3749,
- "long": -83.1087,
- "radius_miles": 97
- },
- {
- "id": 25,
- "type": "Landslide",
- "state": "Texas",
- "name": "Texas Landslide",
- "description": "In quis justo. Maecenas rhoncus aliquam lacus. Morbi quis tortor id nulla ultrices aliquet.\n\nMaecenas leo odio, condimentum id, luctus nec, molestie sed, justo. Pellentesque viverra pede ac diam. Cras pellentesque volutpat dui.\n\nMaecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam. Suspendisse potenti.",
- "start_date": "2022-10-14",
- "end_date": "2022-11-02",
- "declared_date": "2022-10-17",
- "lat": 29.4189,
- "long": -98.6895,
- "radius_miles": 130
- },
- {
- "id": 26,
- "type": "Thunderstorm",
- "state": "Indiana",
- "name": "Indiana Thunderstorm",
- "description": "In congue. Etiam justo. Etiam pretium iaculis justo.\n\nIn hac habitasse platea dictumst. Etiam faucibus cursus urna. Ut tellus.\n\nNulla ut erat id mauris vulputate elementum. Nullam varius. Nulla facilisi.",
- "start_date": "2023-04-27",
- "end_date": "2023-05-18",
- "declared_date": "2023-04-29",
- "lat": 39.4336,
- "long": -87.4101,
- "radius_miles": 103
- },
- {
- "id": 27,
- "type": "Winter Storm",
- "state": "Minnesota",
- "name": "Minnesota Winter Storm",
- "description": "Maecenas ut massa quis augue luctus tincidunt. Nulla mollis molestie lorem. Quisque ut erat.",
- "start_date": "2022-11-16",
- "end_date": "2022-11-22",
- "declared_date": "2022-11-23",
- "lat": 45.2009,
- "long": -93.8881,
- "radius_miles": 23
- },
- {
- "id": 28,
- "type": "Tornado",
- "state": "Oklahoma",
- "name": "Oklahoma Tornado",
- "description": "Praesent id massa id nisl venenatis lacinia. Aenean sit amet justo. Morbi ut odio.\n\nCras mi pede, malesuada in, imperdiet et, commodo vulputate, justo. In blandit ultrices enim. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.",
- "start_date": "2023-03-30",
- "end_date": "2023-04-11",
- "declared_date": "2023-04-03",
- "lat": 35.411,
- "long": -97.4388,
- "radius_miles": 101
- },
- {
- "id": 29,
- "type": "Earthquake",
- "state": "Pennsylvania",
- "name": "Pennsylvania Earthquake",
- "description": "Praesent id massa id nisl venenatis lacinia. Aenean sit amet justo. Morbi ut odio.\n\nCras mi pede, malesuada in, imperdiet et, commodo vulputate, justo. In blandit ultrices enim. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.",
- "start_date": "2022-12-09",
- "end_date": "2022-12-30",
- "declared_date": "2022-12-14",
- "lat": 42.1109,
- "long": -80.1534,
- "radius_miles": 125
- },
- {
- "id": 30,
- "type": "Thunderstorm",
- "state": "California",
- "name": "California Thunderstorm",
- "description": "Sed sagittis. Nam congue, risus semper porta volutpat, quam pede lobortis ligula, sit amet eleifend pede libero quis orci. Nullam molestie nibh in lectus.\n\nPellentesque at nulla. Suspendisse potenti. Cras in purus eu magna vulputate luctus.",
- "start_date": "2023-05-24",
- "end_date": "2023-06-06",
- "declared_date": "2023-05-29",
- "lat": 34.4453,
- "long": -119.8025,
- "radius_miles": 282
- },
- {
- "id": 31,
- "type": "Landslide",
- "state": "New York",
- "name": "New York Landslide",
- "description": "Proin interdum mauris non ligula pellentesque ultrices. Phasellus id sapien in sapien iaculis congue. Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.\n\nAenean lectus. Pellentesque eget nunc. Donec quis orci eget orci vehicula condimentum.",
- "start_date": "2022-10-19",
- "end_date": "2022-10-31",
- "declared_date": "2022-10-20",
- "lat": 43.1577,
- "long": -77.608,
- "radius_miles": 119
- },
- {
- "id": 32,
- "type": "Winter Storm",
- "state": "Massachusetts",
- "name": "Massachusetts Winter Storm",
- "description": "Nulla ut erat id mauris vulputate elementum. Nullam varius. Nulla facilisi.",
- "start_date": "2023-01-12",
- "end_date": "2023-01-28",
- "declared_date": "2023-01-18",
- "lat": 42.3253,
- "long": -71.1122,
- "radius_miles": 79
- },
- {
- "id": 33,
- "type": "Wildfire",
- "state": "Texas",
- "name": "Texas Wildfire",
- "description": "Nulla ut erat id mauris vulputate elementum. Nullam varius. Nulla facilisi.",
- "start_date": "2022-11-08",
- "end_date": "2022-11-15",
- "declared_date": "2022-11-11",
- "lat": 32.7673,
- "long": -96.7776,
- "radius_miles": 255
- },
- {
- "id": 34,
- "type": "Flood",
- "state": "Ohio",
- "name": "Ohio Flood",
- "description": "Phasellus sit amet erat. Nulla tempus. Vivamus in felis eu sapien cursus vestibulum.",
- "start_date": "2023-01-25",
- "end_date": "2023-01-30",
- "declared_date": "2023-01-29",
- "lat": 41.6767,
- "long": -83.5573,
- "radius_miles": 142
- },
- {
- "id": 35,
- "type": "Landslide",
- "state": "Nebraska",
- "name": "Nebraska Landslide",
- "description": "Praesent blandit. Nam nulla. Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.\n\nMorbi porttitor lorem id ligula. Suspendisse ornare consequat lectus. In est risus, auctor sed, tristique in, tempus sit amet, sem.",
- "start_date": "2023-04-08",
- "end_date": "2023-04-16",
- "declared_date": "2023-04-10",
- "lat": 41.2338,
- "long": -96.0495,
- "radius_miles": 7
- },
- {
- "id": 36,
- "type": "Thunderstorm",
- "state": "Tennessee",
- "name": "Tennessee Thunderstorm",
- "description": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo. Pellentesque viverra pede ac diam. Cras pellentesque volutpat dui.\n\nMaecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam. Suspendisse potenti.",
- "start_date": "2023-04-27",
- "end_date": "2023-05-13",
- "declared_date": "2023-04-30",
- "lat": 35.9918,
- "long": -83.8496,
- "radius_miles": 53
- },
- {
- "id": 37,
- "type": "Winter Storm",
- "state": "Texas",
- "name": "Texas Winter Storm",
- "description": "Vestibulum ac est lacinia nisi venenatis tristique. Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue. Aliquam erat volutpat.\n\nIn congue. Etiam justo. Etiam pretium iaculis justo.\n\nIn hac habitasse platea dictumst. Etiam faucibus cursus urna. Ut tellus.",
- "start_date": "2022-10-27",
- "end_date": "2022-11-01",
- "declared_date": "2022-11-02",
- "lat": 31.8767,
- "long": -102.4375,
- "radius_miles": 193
- },
- {
- "id": 38,
- "type": "Winter Storm",
- "state": "Ohio",
- "name": "Ohio Winter Storm",
- "description": "In hac habitasse platea dictumst. Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante. Nulla justo.",
- "start_date": "2023-02-10",
- "end_date": "2023-03-03",
- "declared_date": "2023-02-16",
- "lat": 41.5008,
- "long": -81.5516,
- "radius_miles": 59
- },
- {
- "id": 39,
- "type": "Thunderstorm",
- "state": "Arizona",
- "name": "Arizona Thunderstorm",
- "description": "In congue. Etiam justo. Etiam pretium iaculis justo.",
- "start_date": "2022-10-07",
- "end_date": "2022-10-23",
- "declared_date": "2022-10-14",
- "lat": 33.2765,
- "long": -112.1872,
- "radius_miles": 191
- },
- {
- "id": 40,
- "type": "Thunderstorm",
- "state": "Florida",
- "name": "Florida Thunderstorm",
- "description": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Proin risus. Praesent lectus.\n\nVestibulum quam sapien, varius ut, blandit non, interdum in, ante. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio. Curabitur convallis.\n\nDuis consequat dui nec nisi volutpat eleifend. Donec ut dolor. Morbi vel lectus in quam fringilla rhoncus.",
- "start_date": "2022-10-16",
- "end_date": "2022-10-25",
- "declared_date": "2022-10-18",
- "lat": 27.872,
- "long": -82.4388,
- "radius_miles": 29
- },
- {
- "id": 41,
- "type": "Flood",
- "state": "Kansas",
- "name": "Kansas Flood",
- "description": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi. Integer ac neque.",
- "start_date": "2023-01-29",
- "end_date": "2023-02-03",
- "declared_date": "2023-01-30",
- "lat": 38.9613,
- "long": -94.8222,
- "radius_miles": 244
- },
- {
- "id": 42,
- "type": "Wildfire",
- "state": "Colorado",
- "name": "Colorado Wildfire",
- "description": "Curabitur gravida nisi at nibh. In hac habitasse platea dictumst. Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.\n\nInteger tincidunt ante vel ipsum. Praesent blandit lacinia erat. Vestibulum sed magna at nunc commodo placerat.\n\nPraesent blandit. Nam nulla. Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.",
- "start_date": "2023-05-11",
- "end_date": "2023-05-29",
- "declared_date": "2023-05-17",
- "lat": 39.7388,
- "long": -104.4083,
- "radius_miles": 31
- },
- {
- "id": 43,
- "type": "Flood",
- "state": "Michigan",
- "name": "Michigan Flood",
- "description": "Pellentesque at nulla. Suspendisse potenti. Cras in purus eu magna vulputate luctus.\n\nCum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vivamus vestibulum sagittis sapien. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\n\nEtiam vel augue. Vestibulum rutrum rutrum neque. Aenean auctor gravida sem.",
- "start_date": "2022-12-09",
- "end_date": "2022-12-30",
- "declared_date": "2022-12-15",
- "lat": 43.0349,
- "long": -83.6887,
- "radius_miles": 199
- },
- {
- "id": 44,
- "type": "Tornado",
- "state": "California",
- "name": "California Tornado",
- "description": "Nulla ut erat id mauris vulputate elementum. Nullam varius. Nulla facilisi.\n\nCras non velit nec nisi vulputate nonummy. Maecenas tincidunt lacus at velit. Vivamus vel nulla eget eros elementum pellentesque.\n\nQuisque porta volutpat erat. Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla. Nunc purus.",
- "start_date": "2022-10-14",
- "end_date": "2022-10-25",
- "declared_date": "2022-10-21",
- "lat": 33.0169,
- "long": -116.846,
- "radius_miles": 268
- },
- {
- "id": 45,
- "type": "Wildfire",
- "state": "Tennessee",
- "name": "Tennessee Wildfire",
- "description": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo. Pellentesque viverra pede ac diam. Cras pellentesque volutpat dui.\n\nMaecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam. Suspendisse potenti.\n\nNullam porttitor lacus at turpis. Donec posuere metus vitae ipsum. Aliquam non mauris.",
- "start_date": "2022-10-14",
- "end_date": "2022-10-27",
- "declared_date": "2022-10-20",
- "lat": 35.9918,
- "long": -83.8496,
- "radius_miles": 144
- },
- {
- "id": 46,
- "type": "Landslide",
- "state": "Florida",
- "name": "Florida Landslide",
- "description": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis. Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci. Mauris lacinia sapien quis libero.\n\nNullam sit amet turpis elementum ligula vehicula consequat. Morbi a ipsum. Integer a nibh.\n\nIn quis justo. Maecenas rhoncus aliquam lacus. Morbi quis tortor id nulla ultrices aliquet.",
- "start_date": "2022-11-19",
- "end_date": "2022-12-01",
- "declared_date": "2022-11-22",
- "lat": 28.1147,
- "long": -82.3678,
- "radius_miles": 96
- },
- {
- "id": 47,
- "type": "Winter Storm",
- "state": "California",
- "name": "California Winter Storm",
- "description": "Fusce consequat. Nulla nisl. Nunc nisl.\n\nDuis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa. Donec dapibus. Duis at velit eu est congue elementum.\n\nIn hac habitasse platea dictumst. Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante. Nulla justo.",
- "start_date": "2022-11-15",
- "end_date": "2022-11-28",
- "declared_date": "2022-11-17",
- "lat": 34.0606,
- "long": -118.3027,
- "radius_miles": 120
- },
- {
- "id": 48,
- "type": "Flood",
- "state": "Illinois",
- "name": "Illinois Flood",
- "description": "Nulla ut erat id mauris vulputate elementum. Nullam varius. Nulla facilisi.\n\nCras non velit nec nisi vulputate nonummy. Maecenas tincidunt lacus at velit. Vivamus vel nulla eget eros elementum pellentesque.\n\nQuisque porta volutpat erat. Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla. Nunc purus.",
- "start_date": "2022-12-29",
- "end_date": "2023-01-08",
- "declared_date": "2023-01-05",
- "lat": 42.0144,
- "long": -88.0935,
- "radius_miles": 170
- },
- {
- "id": 49,
- "type": "Wildfire",
- "state": "Indiana",
- "name": "Indiana Wildfire",
- "description": "Fusce consequat. Nulla nisl. Nunc nisl.\n\nDuis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa. Donec dapibus. Duis at velit eu est congue elementum.",
- "start_date": "2023-03-10",
- "end_date": "2023-03-16",
- "declared_date": "2023-03-12",
- "lat": 40.0938,
- "long": -85.6578,
- "radius_miles": 44
- },
- {
- "id": 50,
- "type": "Tornado",
- "state": "Maine",
- "name": "Maine Tornado",
- "description": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis. Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci. Mauris lacinia sapien quis libero.\n\nNullam sit amet turpis elementum ligula vehicula consequat. Morbi a ipsum. Integer a nibh.",
- "start_date": "2022-11-14",
- "end_date": "2022-11-17",
- "declared_date": "2022-11-20",
- "lat": 43.6783,
- "long": -70.1987,
- "radius_miles": 96
- },
- {
- "id": 51,
- "type": "Wildfire",
- "state": "Georgia",
- "name": "Georgia Wildfire",
- "description": "Morbi porttitor lorem id ligula. Suspendisse ornare consequat lectus. In est risus, auctor sed, tristique in, tempus sit amet, sem.\n\nFusce consequat. Nulla nisl. Nunc nisl.\n\nDuis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa. Donec dapibus. Duis at velit eu est congue elementum.",
- "start_date": "2023-02-07",
- "end_date": "2023-02-27",
- "declared_date": "2023-02-12",
- "lat": 33.9845,
- "long": -84.1529,
- "radius_miles": 42
- },
- {
- "id": 52,
- "type": "Earthquake",
- "state": "Illinois",
- "name": "Illinois Earthquake",
- "description": "Duis aliquam convallis nunc. Proin at turpis a pede posuere nonummy. Integer non velit.",
- "start_date": "2023-02-16",
- "end_date": "2023-03-02",
- "declared_date": "2023-02-22",
- "lat": 39.778,
- "long": -89.6466,
- "radius_miles": 213
- },
- {
- "id": 53,
- "type": "Winter Storm",
- "state": "New York",
- "name": "New York Winter Storm",
- "description": "Duis aliquam convallis nunc. Proin at turpis a pede posuere nonummy. Integer non velit.\n\nDonec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi. Integer ac neque.",
- "start_date": "2023-03-17",
- "end_date": "2023-03-26",
- "declared_date": "2023-03-21",
- "lat": 43.1216,
- "long": -77.7311,
- "radius_miles": 252
- },
- {
- "id": 54,
- "type": "Earthquake",
- "state": "Iowa",
- "name": "Iowa Earthquake",
- "description": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo. Pellentesque viverra pede ac diam. Cras pellentesque volutpat dui.\n\nMaecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam. Suspendisse potenti.\n\nNullam porttitor lacus at turpis. Donec posuere metus vitae ipsum. Aliquam non mauris.",
- "start_date": "2022-11-10",
- "end_date": "2022-11-22",
- "declared_date": "2022-11-16",
- "lat": 42.4011,
- "long": -96.372,
- "radius_miles": 192
- },
- {
- "id": 55,
- "type": "Landslide",
- "state": "Texas",
- "name": "Texas Landslide",
- "description": "Aenean lectus. Pellentesque eget nunc. Donec quis orci eget orci vehicula condimentum.\n\nCurabitur in libero ut massa volutpat convallis. Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo. Maecenas pulvinar lobortis est.",
- "start_date": "2023-02-19",
- "end_date": "2023-02-26",
- "declared_date": "2023-02-24",
- "lat": 31.8693,
- "long": -102.0317,
- "radius_miles": 268
- },
- {
- "id": 56,
- "type": "Landslide",
- "state": "Texas",
- "name": "Texas Landslide",
- "description": "Aliquam quis turpis eget elit sodales scelerisque. Mauris sit amet eros. Suspendisse accumsan tortor quis turpis.\n\nSed ante. Vivamus tortor. Duis mattis egestas metus.",
- "start_date": "2023-01-08",
- "end_date": "2023-01-29",
- "declared_date": "2023-01-10",
- "lat": 30.0167,
- "long": -95.447,
- "radius_miles": 17
- },
- {
- "id": 57,
- "type": "Hurricane",
- "state": "Arizona",
- "name": "Arizona Hurricane Waylen",
- "description": "Curabitur in libero ut massa volutpat convallis. Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo. Maecenas pulvinar lobortis est.\n\nPhasellus sit amet erat. Nulla tempus. Vivamus in felis eu sapien cursus vestibulum.",
- "start_date": "2023-03-09",
- "end_date": "2023-03-19",
- "declared_date": "2023-03-10",
- "lat": 31.9701,
- "long": -111.8907,
- "radius_miles": 60
- },
- {
- "id": 58,
- "type": "Earthquake",
- "state": "Minnesota",
- "name": "Minnesota Earthquake",
- "description": "Integer tincidunt ante vel ipsum. Praesent blandit lacinia erat. Vestibulum sed magna at nunc commodo placerat.\n\nPraesent blandit. Nam nulla. Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.",
- "start_date": "2023-06-23",
- "end_date": "2023-07-04",
- "declared_date": "2023-06-24",
- "lat": 45.0159,
- "long": -93.4719,
- "radius_miles": 256
- },
- {
- "id": 59,
- "type": "Thunderstorm",
- "state": "Colorado",
- "name": "Colorado Thunderstorm",
- "description": "Suspendisse potenti. In eleifend quam a odio. In hac habitasse platea dictumst.\n\nMaecenas ut massa quis augue luctus tincidunt. Nulla mollis molestie lorem. Quisque ut erat.\n\nCurabitur gravida nisi at nibh. In hac habitasse platea dictumst. Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.",
- "start_date": "2023-05-20",
- "end_date": "2023-06-07",
- "declared_date": "2023-05-27",
- "lat": 38.8247,
- "long": -104.562,
- "radius_miles": 174
- },
- {
- "id": 60,
- "type": "Tornado",
- "state": "New York",
- "name": "New York Tornado",
- "description": "Duis consequat dui nec nisi volutpat eleifend. Donec ut dolor. Morbi vel lectus in quam fringilla rhoncus.",
- "start_date": "2022-11-15",
- "end_date": "2022-11-25",
- "declared_date": "2022-11-18",
- "lat": 43.286,
- "long": -77.6843,
- "radius_miles": 156
- },
- {
- "id": 61,
- "type": "Tornado",
- "state": "Louisiana",
- "name": "Louisiana Tornado",
- "description": "Morbi porttitor lorem id ligula. Suspendisse ornare consequat lectus. In est risus, auctor sed, tristique in, tempus sit amet, sem.",
- "start_date": "2023-03-02",
- "end_date": "2023-03-22",
- "declared_date": "2023-03-06",
- "lat": 30.3633,
- "long": -91.0919,
- "radius_miles": 30
- },
- {
- "id": 62,
- "type": "Tornado",
- "state": "New Mexico",
- "name": "New Mexico Tornado",
- "description": "Cras mi pede, malesuada in, imperdiet et, commodo vulputate, justo. In blandit ultrices enim. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n\nProin interdum mauris non ligula pellentesque ultrices. Phasellus id sapien in sapien iaculis congue. Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.",
- "start_date": "2022-10-01",
- "end_date": "2022-10-13",
- "declared_date": "2022-10-06",
- "lat": 35.6219,
- "long": -105.8688,
- "radius_miles": 72
- },
- {
- "id": 63,
- "type": "Earthquake",
- "state": "California",
- "name": "California Earthquake",
- "description": "Integer tincidunt ante vel ipsum. Praesent blandit lacinia erat. Vestibulum sed magna at nunc commodo placerat.\n\nPraesent blandit. Nam nulla. Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.",
- "start_date": "2022-11-07",
- "end_date": "2022-11-26",
- "declared_date": "2022-11-14",
- "lat": 38.3774,
- "long": -121.4444,
- "radius_miles": 87
- },
- {
- "id": 64,
- "type": "Landslide",
- "state": "Texas",
- "name": "Texas Landslide",
- "description": "Proin leo odio, porttitor id, consequat in, consequat ut, nulla. Sed accumsan felis. Ut at dolor quis odio consequat varius.\n\nInteger ac leo. Pellentesque ultrices mattis odio. Donec vitae nisi.",
- "start_date": "2022-11-29",
- "end_date": "2022-12-18",
- "declared_date": "2022-12-01",
- "lat": 32.7714,
- "long": -97.2915,
- "radius_miles": 14
- },
- {
- "id": 65,
- "type": "Thunderstorm",
- "state": "Alabama",
- "name": "Alabama Thunderstorm",
- "description": "Aenean lectus. Pellentesque eget nunc. Donec quis orci eget orci vehicula condimentum.",
- "start_date": "2022-12-19",
- "end_date": "2023-01-01",
- "declared_date": "2022-12-21",
- "lat": 33.9352,
- "long": -85.9576,
- "radius_miles": 81
- },
- {
- "id": 66,
- "type": "Thunderstorm",
- "state": "New York",
- "name": "New York Thunderstorm",
- "description": "Suspendisse potenti. In eleifend quam a odio. In hac habitasse platea dictumst.",
- "start_date": "2023-04-21",
- "end_date": "2023-04-24",
- "declared_date": "2023-04-25",
- "lat": 40.8085,
- "long": -73.9198,
- "radius_miles": 49
- },
- {
- "id": 67,
- "type": "Flood",
- "state": "Pennsylvania",
- "name": "Pennsylvania Flood",
- "description": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vivamus vestibulum sagittis sapien. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\n\nEtiam vel augue. Vestibulum rutrum rutrum neque. Aenean auctor gravida sem.",
- "start_date": "2022-10-28",
- "end_date": "2022-11-02",
- "declared_date": "2022-10-29",
- "lat": 40.4344,
- "long": -80.0248,
- "radius_miles": 64
- },
- {
- "id": 68,
- "type": "Landslide",
- "state": "Maryland",
- "name": "Maryland Landslide",
- "description": "In quis justo. Maecenas rhoncus aliquam lacus. Morbi quis tortor id nulla ultrices aliquet.\n\nMaecenas leo odio, condimentum id, luctus nec, molestie sed, justo. Pellentesque viverra pede ac diam. Cras pellentesque volutpat dui.\n\nMaecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam. Suspendisse potenti.",
- "start_date": "2023-02-22",
- "end_date": "2023-03-02",
- "declared_date": "2023-02-28",
- "lat": 39.5207,
- "long": -77.9162,
- "radius_miles": 93
- },
- {
- "id": 69,
- "type": "Earthquake",
- "state": "Georgia",
- "name": "Georgia Earthquake",
- "description": "Vestibulum quam sapien, varius ut, blandit non, interdum in, ante. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio. Curabitur convallis.\n\nDuis consequat dui nec nisi volutpat eleifend. Donec ut dolor. Morbi vel lectus in quam fringilla rhoncus.",
- "start_date": "2022-10-18",
- "end_date": "2022-10-30",
- "declared_date": "2022-10-21",
- "lat": 33.9464,
- "long": -83.9912,
- "radius_miles": 39
- },
- {
- "id": 70,
- "type": "Hurricane",
- "state": "Ohio",
- "name": "Ohio Hurricane Darnell",
- "description": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vivamus vestibulum sagittis sapien. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\n\nEtiam vel augue. Vestibulum rutrum rutrum neque. Aenean auctor gravida sem.\n\nPraesent id massa id nisl venenatis lacinia. Aenean sit amet justo. Morbi ut odio.",
- "start_date": "2023-03-29",
- "end_date": "2023-04-18",
- "declared_date": "2023-04-02",
- "lat": 41.6782,
- "long": -83.4972,
- "radius_miles": 34
- },
- {
- "id": 71,
- "type": "Thunderstorm",
- "state": "Utah",
- "name": "Utah Thunderstorm",
- "description": "Aenean lectus. Pellentesque eget nunc. Donec quis orci eget orci vehicula condimentum.\n\nCurabitur in libero ut massa volutpat convallis. Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo. Maecenas pulvinar lobortis est.\n\nPhasellus sit amet erat. Nulla tempus. Vivamus in felis eu sapien cursus vestibulum.",
- "start_date": "2023-04-03",
- "end_date": "2023-04-10",
- "declared_date": "2023-04-10",
- "lat": 40.7713,
- "long": -111.9309,
- "radius_miles": 39
- },
- {
- "id": 72,
- "type": "Wildfire",
- "state": "Iowa",
- "name": "Iowa Wildfire",
- "description": "Duis consequat dui nec nisi volutpat eleifend. Donec ut dolor. Morbi vel lectus in quam fringilla rhoncus.",
- "start_date": "2023-06-17",
- "end_date": "2023-06-30",
- "declared_date": "2023-06-21",
- "lat": 41.6727,
- "long": -93.5722,
- "radius_miles": 132
- },
- {
- "id": 73,
- "type": "Flood",
- "state": "Michigan",
- "name": "Michigan Flood",
- "description": "Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam. Suspendisse potenti.\n\nNullam porttitor lacus at turpis. Donec posuere metus vitae ipsum. Aliquam non mauris.\n\nMorbi non lectus. Aliquam sit amet diam in magna bibendum imperdiet. Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.",
- "start_date": "2023-05-28",
- "end_date": "2023-06-17",
- "declared_date": "2023-05-29",
- "lat": 43.1791,
- "long": -86.1989,
- "radius_miles": 170
- },
- {
- "id": 74,
- "type": "Flood",
- "state": "North Carolina",
- "name": "North Carolina Flood",
- "description": "Nullam porttitor lacus at turpis. Donec posuere metus vitae ipsum. Aliquam non mauris.\n\nMorbi non lectus. Aliquam sit amet diam in magna bibendum imperdiet. Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.",
- "start_date": "2022-12-01",
- "end_date": "2022-12-19",
- "declared_date": "2022-12-08",
- "lat": 35.1316,
- "long": -80.8577,
- "radius_miles": 168
- },
- {
- "id": 75,
- "type": "Flood",
- "state": "Alabama",
- "name": "Alabama Flood",
- "description": "Etiam vel augue. Vestibulum rutrum rutrum neque. Aenean auctor gravida sem.\n\nPraesent id massa id nisl venenatis lacinia. Aenean sit amet justo. Morbi ut odio.",
- "start_date": "2023-06-15",
- "end_date": "2023-06-24",
- "declared_date": "2023-06-20",
- "lat": 32.2334,
- "long": -86.2085,
- "radius_miles": 259
- },
- {
- "id": 76,
- "type": "Winter Storm",
- "state": "Ohio",
- "name": "Ohio Winter Storm",
- "description": "Proin eu mi. Nulla ac enim. In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.",
- "start_date": "2023-03-21",
- "end_date": "2023-03-26",
- "declared_date": "2023-03-23",
- "lat": 41.1287,
- "long": -81.54,
- "radius_miles": 228
- },
- {
- "id": 77,
- "type": "Landslide",
- "state": "Mississippi",
- "name": "Mississippi Landslide",
- "description": "Phasellus sit amet erat. Nulla tempus. Vivamus in felis eu sapien cursus vestibulum.",
- "start_date": "2023-01-31",
- "end_date": "2023-02-10",
- "declared_date": "2023-02-02",
- "lat": 30.4158,
- "long": -89.0684,
- "radius_miles": 232
- },
- {
- "id": 78,
- "type": "Landslide",
- "state": "New York",
- "name": "New York Landslide",
- "description": "Cras non velit nec nisi vulputate nonummy. Maecenas tincidunt lacus at velit. Vivamus vel nulla eget eros elementum pellentesque.\n\nQuisque porta volutpat erat. Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla. Nunc purus.",
- "start_date": "2023-02-03",
- "end_date": "2023-02-16",
- "declared_date": "2023-02-07",
- "lat": 40.6964,
- "long": -74.0253,
- "radius_miles": 186
- },
- {
- "id": 79,
- "type": "Hurricane",
- "state": "Missouri",
- "name": "Missouri Hurricane Mahmud",
- "description": "Quisque porta volutpat erat. Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla. Nunc purus.\n\nPhasellus in felis. Donec semper sapien a libero. Nam dui.\n\nProin leo odio, porttitor id, consequat in, consequat ut, nulla. Sed accumsan felis. Ut at dolor quis odio consequat varius.",
- "start_date": "2023-04-20",
- "end_date": "2023-04-30",
- "declared_date": "2023-04-27",
- "lat": 38.8518,
- "long": -94.3944,
- "radius_miles": 300
- },
- {
- "id": 80,
- "type": "Earthquake",
- "state": "Washington",
- "name": "Washington Earthquake",
- "description": "Etiam vel augue. Vestibulum rutrum rutrum neque. Aenean auctor gravida sem.\n\nPraesent id massa id nisl venenatis lacinia. Aenean sit amet justo. Morbi ut odio.\n\nCras mi pede, malesuada in, imperdiet et, commodo vulputate, justo. In blandit ultrices enim. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.",
- "start_date": "2023-02-08",
- "end_date": "2023-02-20",
- "declared_date": "2023-02-13",
- "lat": 47.1591,
- "long": -122.5485,
- "radius_miles": 219
- },
- {
- "id": 81,
- "type": "Winter Storm",
- "state": "Virginia",
- "name": "Virginia Winter Storm",
- "description": "Aenean fermentum. Donec ut mauris eget massa tempor convallis. Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.\n\nQuisque id justo sit amet sapien dignissim vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est. Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.\n\nVestibulum ac est lacinia nisi venenatis tristique. Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue. Aliquam erat volutpat.",
- "start_date": "2023-04-28",
- "end_date": "2023-05-01",
- "declared_date": "2023-05-02",
- "lat": 37.3589,
- "long": -79.9448,
- "radius_miles": 68
- },
- {
- "id": 82,
- "type": "Wildfire",
- "state": "Texas",
- "name": "Texas Wildfire",
- "description": "Duis bibendum. Morbi non quam nec dui luctus rutrum. Nulla tellus.",
- "start_date": "2022-11-20",
- "end_date": "2022-11-29",
- "declared_date": "2022-11-27",
- "lat": 32.7673,
- "long": -96.7776,
- "radius_miles": 164
- },
- {
- "id": 83,
- "type": "Flood",
- "state": "California",
- "name": "California Flood",
- "description": "Integer ac leo. Pellentesque ultrices mattis odio. Donec vitae nisi.",
- "start_date": "2023-02-04",
- "end_date": "2023-02-10",
- "declared_date": "2023-02-09",
- "lat": 37.7772,
- "long": -121.9554,
- "radius_miles": 118
- },
- {
- "id": 84,
- "type": "Landslide",
- "state": "Florida",
- "name": "Florida Landslide",
- "description": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis. Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci. Mauris lacinia sapien quis libero.\n\nNullam sit amet turpis elementum ligula vehicula consequat. Morbi a ipsum. Integer a nibh.",
- "start_date": "2023-03-28",
- "end_date": "2023-04-18",
- "declared_date": "2023-04-02",
- "lat": 26.1457,
- "long": -80.4483,
- "radius_miles": 91
- },
- {
- "id": 85,
- "type": "Wildfire",
- "state": "Georgia",
- "name": "Georgia Wildfire",
- "description": "Proin eu mi. Nulla ac enim. In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.\n\nDuis aliquam convallis nunc. Proin at turpis a pede posuere nonummy. Integer non velit.",
- "start_date": "2023-06-11",
- "end_date": "2023-06-29",
- "declared_date": "2023-06-13",
- "lat": 33.8123,
- "long": -84.2819,
- "radius_miles": 170
- },
- {
- "id": 86,
- "type": "Wildfire",
- "state": "California",
- "name": "California Wildfire",
- "description": "In quis justo. Maecenas rhoncus aliquam lacus. Morbi quis tortor id nulla ultrices aliquet.\n\nMaecenas leo odio, condimentum id, luctus nec, molestie sed, justo. Pellentesque viverra pede ac diam. Cras pellentesque volutpat dui.\n\nMaecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam. Suspendisse potenti.",
- "start_date": "2022-12-08",
- "end_date": "2022-12-17",
- "declared_date": "2022-12-09",
- "lat": 38.3774,
- "long": -121.4444,
- "radius_miles": 41
- },
- {
- "id": 87,
- "type": "Winter Storm",
- "state": "Washington",
- "name": "Washington Winter Storm",
- "description": "Morbi non lectus. Aliquam sit amet diam in magna bibendum imperdiet. Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.",
- "start_date": "2023-06-05",
- "end_date": "2023-06-22",
- "declared_date": "2023-06-08",
- "lat": 45.6644,
- "long": -122.5212,
- "radius_miles": 103
- },
- {
- "id": 88,
- "type": "Wildfire",
- "state": "Idaho",
- "name": "Idaho Wildfire",
- "description": "Praesent blandit. Nam nulla. Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.",
- "start_date": "2023-02-12",
- "end_date": "2023-02-28",
- "declared_date": "2023-02-18",
- "lat": 43.4599,
- "long": -116.244,
- "radius_miles": 144
- },
- {
- "id": 89,
- "type": "Winter Storm",
- "state": "Pennsylvania",
- "name": "Pennsylvania Winter Storm",
- "description": "Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam. Suspendisse potenti.\n\nNullam porttitor lacus at turpis. Donec posuere metus vitae ipsum. Aliquam non mauris.\n\nMorbi non lectus. Aliquam sit amet diam in magna bibendum imperdiet. Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.",
- "start_date": "2023-01-08",
- "end_date": "2023-01-12",
- "declared_date": "2023-01-12",
- "lat": 40.0018,
- "long": -75.1179,
- "radius_miles": 235
- },
- {
- "id": 90,
- "type": "Hurricane",
- "state": "North Carolina",
- "name": "North Carolina Hurricane Rubin",
- "description": "Sed sagittis. Nam congue, risus semper porta volutpat, quam pede lobortis ligula, sit amet eleifend pede libero quis orci. Nullam molestie nibh in lectus.",
- "start_date": "2023-01-15",
- "end_date": "2023-01-23",
- "declared_date": "2023-01-19",
- "lat": 35.7977,
- "long": -78.6253,
- "radius_miles": 143
- },
- {
- "id": 91,
- "type": "Hurricane",
- "state": "Florida",
- "name": "Florida Hurricane Celle",
- "description": "Fusce posuere felis sed lacus. Morbi sem mauris, laoreet ut, rhoncus aliquet, pulvinar sed, nisl. Nunc rhoncus dui vel sem.\n\nSed sagittis. Nam congue, risus semper porta volutpat, quam pede lobortis ligula, sit amet eleifend pede libero quis orci. Nullam molestie nibh in lectus.",
- "start_date": "2023-05-11",
- "end_date": "2023-05-22",
- "declared_date": "2023-05-13",
- "lat": 30.6143,
- "long": -87.2758,
- "radius_miles": 144
- },
- {
- "id": 92,
- "type": "Landslide",
- "state": "Florida",
- "name": "Florida Landslide",
- "description": "Quisque id justo sit amet sapien dignissim vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est. Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.\n\nVestibulum ac est lacinia nisi venenatis tristique. Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue. Aliquam erat volutpat.",
- "start_date": "2023-05-01",
- "end_date": "2023-05-08",
- "declared_date": "2023-05-06",
- "lat": 26.6644,
- "long": -80.1741,
- "radius_miles": 66
- },
- {
- "id": 93,
- "type": "Wildfire",
- "state": "Missouri",
- "name": "Missouri Wildfire",
- "description": "Aenean fermentum. Donec ut mauris eget massa tempor convallis. Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.\n\nQuisque id justo sit amet sapien dignissim vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est. Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.",
- "start_date": "2022-12-26",
- "end_date": "2023-01-01",
- "declared_date": "2022-12-31",
- "lat": 38.8518,
- "long": -94.3944,
- "radius_miles": 278
- },
- {
- "id": 94,
- "type": "Winter Storm",
- "state": "Indiana",
- "name": "Indiana Winter Storm",
- "description": "Curabitur in libero ut massa volutpat convallis. Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo. Maecenas pulvinar lobortis est.\n\nPhasellus sit amet erat. Nulla tempus. Vivamus in felis eu sapien cursus vestibulum.\n\nProin eu mi. Nulla ac enim. In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.",
- "start_date": "2022-10-15",
- "end_date": "2022-10-24",
- "declared_date": "2022-10-21",
- "lat": 41.0938,
- "long": -85.0707,
- "radius_miles": 41
- },
- {
- "id": 95,
- "type": "Flood",
- "state": "California",
- "name": "California Flood",
- "description": "In congue. Etiam justo. Etiam pretium iaculis justo.\n\nIn hac habitasse platea dictumst. Etiam faucibus cursus urna. Ut tellus.",
- "start_date": "2023-01-07",
- "end_date": "2023-01-11",
- "declared_date": "2023-01-14",
- "lat": 32.8538,
- "long": -117.1197,
- "radius_miles": 162
- },
- {
- "id": 96,
- "type": "Thunderstorm",
- "state": "California",
- "name": "California Thunderstorm",
- "description": "Aenean fermentum. Donec ut mauris eget massa tempor convallis. Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.\n\nQuisque id justo sit amet sapien dignissim vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est. Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.\n\nVestibulum ac est lacinia nisi venenatis tristique. Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue. Aliquam erat volutpat.",
- "start_date": "2023-04-26",
- "end_date": "2023-05-05",
- "declared_date": "2023-04-28",
- "lat": 37.7772,
- "long": -121.9554,
- "radius_miles": 282
- },
- {
- "id": 97,
- "type": "Hurricane",
- "state": "Pennsylvania",
- "name": "Pennsylvania Hurricane Celene",
- "description": "Proin eu mi. Nulla ac enim. In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.\n\nDuis aliquam convallis nunc. Proin at turpis a pede posuere nonummy. Integer non velit.\n\nDonec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi. Integer ac neque.",
- "start_date": "2023-03-16",
- "end_date": "2023-03-20",
- "declared_date": "2023-03-20",
- "lat": 39.9832,
- "long": -75.7481,
- "radius_miles": 273
- },
- {
- "id": 98,
- "type": "Wildfire",
- "state": "Michigan",
- "name": "Michigan Wildfire",
- "description": "Quisque porta volutpat erat. Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla. Nunc purus.\n\nPhasellus in felis. Donec semper sapien a libero. Nam dui.",
- "start_date": "2023-06-17",
- "end_date": "2023-06-30",
- "declared_date": "2023-06-20",
- "lat": 42.2399,
- "long": -83.1508,
- "radius_miles": 189
- },
- {
- "id": 99,
- "type": "Winter Storm",
- "state": "Tennessee",
- "name": "Tennessee Winter Storm",
- "description": "Duis bibendum. Morbi non quam nec dui luctus rutrum. Nulla tellus.",
- "start_date": "2023-05-16",
- "end_date": "2023-06-02",
- "declared_date": "2023-05-22",
- "lat": 35.9901,
- "long": -83.9622,
- "radius_miles": 81
- },
- {
- "id": 100,
- "type": "Earthquake",
- "state": "District of Columbia",
- "name": "District of Columbia Earthquake",
- "description": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vivamus vestibulum sagittis sapien. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\n\nEtiam vel augue. Vestibulum rutrum rutrum neque. Aenean auctor gravida sem.",
- "start_date": "2022-10-25",
- "end_date": "2022-11-01",
- "declared_date": "2022-10-30",
- "lat": 38.8933,
- "long": -77.0146,
- "radius_miles": 178
- }
-]
diff --git a/nodejs/package-lock.json b/nodejs/package-lock.json
deleted file mode 100644
index 9be692e..0000000
--- a/nodejs/package-lock.json
+++ /dev/null
@@ -1,7237 +0,0 @@
-{
- "name": "simple-data-tool",
- "version": "1.0.0",
- "lockfileVersion": 2,
- "requires": true,
- "packages": {
- "": {
- "name": "simple-data-tool",
- "version": "1.0.0",
- "devDependencies": {
- "jest": "^27.3.1"
- }
- },
- "node_modules/@ampproject/remapping": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz",
- "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==",
- "dev": true,
- "dependencies": {
- "@jridgewell/gen-mapping": "^0.3.0",
- "@jridgewell/trace-mapping": "^0.3.9"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@babel/code-frame": {
- "version": "7.22.13",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz",
- "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==",
- "dev": true,
- "dependencies": {
- "@babel/highlight": "^7.22.13",
- "chalk": "^2.4.2"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/code-frame/node_modules/ansi-styles": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "dev": true,
- "dependencies": {
- "color-convert": "^1.9.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/@babel/code-frame/node_modules/chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/@babel/code-frame/node_modules/color-convert": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
- "dev": true,
- "dependencies": {
- "color-name": "1.1.3"
- }
- },
- "node_modules/@babel/code-frame/node_modules/color-name": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
- "dev": true
- },
- "node_modules/@babel/code-frame/node_modules/escape-string-regexp": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
- "dev": true,
- "engines": {
- "node": ">=0.8.0"
- }
- },
- "node_modules/@babel/code-frame/node_modules/has-flag": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/@babel/code-frame/node_modules/supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
- "dev": true,
- "dependencies": {
- "has-flag": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/@babel/compat-data": {
- "version": "7.22.20",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.20.tgz",
- "integrity": "sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==",
- "dev": true,
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/core": {
- "version": "7.23.0",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.0.tgz",
- "integrity": "sha512-97z/ju/Jy1rZmDxybphrBuI+jtJjFVoz7Mr9yUQVVVi+DNZE333uFQeMOqcCIy1x3WYBIbWftUSLmbNXNT7qFQ==",
- "dev": true,
- "dependencies": {
- "@ampproject/remapping": "^2.2.0",
- "@babel/code-frame": "^7.22.13",
- "@babel/generator": "^7.23.0",
- "@babel/helper-compilation-targets": "^7.22.15",
- "@babel/helper-module-transforms": "^7.23.0",
- "@babel/helpers": "^7.23.0",
- "@babel/parser": "^7.23.0",
- "@babel/template": "^7.22.15",
- "@babel/traverse": "^7.23.0",
- "@babel/types": "^7.23.0",
- "convert-source-map": "^2.0.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.2",
- "json5": "^2.2.3",
- "semver": "^6.3.1"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/babel"
- }
- },
- "node_modules/@babel/core/node_modules/convert-source-map": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
- "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
- "dev": true
- },
- "node_modules/@babel/generator": {
- "version": "7.23.0",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.0.tgz",
- "integrity": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.23.0",
- "@jridgewell/gen-mapping": "^0.3.2",
- "@jridgewell/trace-mapping": "^0.3.17",
- "jsesc": "^2.5.1"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-compilation-targets": {
- "version": "7.22.15",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz",
- "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==",
- "dev": true,
- "dependencies": {
- "@babel/compat-data": "^7.22.9",
- "@babel/helper-validator-option": "^7.22.15",
- "browserslist": "^4.21.9",
- "lru-cache": "^5.1.1",
- "semver": "^6.3.1"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-environment-visitor": {
- "version": "7.22.20",
- "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz",
- "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==",
- "dev": true,
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-function-name": {
- "version": "7.23.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz",
- "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==",
- "dev": true,
- "dependencies": {
- "@babel/template": "^7.22.15",
- "@babel/types": "^7.23.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-hoist-variables": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz",
- "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.22.5"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-module-imports": {
- "version": "7.22.15",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz",
- "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.22.15"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-module-transforms": {
- "version": "7.23.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz",
- "integrity": "sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-environment-visitor": "^7.22.20",
- "@babel/helper-module-imports": "^7.22.15",
- "@babel/helper-simple-access": "^7.22.5",
- "@babel/helper-split-export-declaration": "^7.22.6",
- "@babel/helper-validator-identifier": "^7.22.20"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/@babel/helper-plugin-utils": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz",
- "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==",
- "dev": true,
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-simple-access": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz",
- "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.22.5"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-split-export-declaration": {
- "version": "7.22.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz",
- "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.22.5"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-string-parser": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz",
- "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==",
- "dev": true,
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-validator-identifier": {
- "version": "7.22.20",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz",
- "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==",
- "dev": true,
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-validator-option": {
- "version": "7.22.15",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz",
- "integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==",
- "dev": true,
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helpers": {
- "version": "7.23.1",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.1.tgz",
- "integrity": "sha512-chNpneuK18yW5Oxsr+t553UZzzAs3aZnFm4bxhebsNTeshrC95yA7l5yl7GBAG+JG1rF0F7zzD2EixK9mWSDoA==",
- "dev": true,
- "dependencies": {
- "@babel/template": "^7.22.15",
- "@babel/traverse": "^7.23.0",
- "@babel/types": "^7.23.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/highlight": {
- "version": "7.22.20",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz",
- "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==",
- "dev": true,
- "dependencies": {
- "@babel/helper-validator-identifier": "^7.22.20",
- "chalk": "^2.4.2",
- "js-tokens": "^4.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/highlight/node_modules/ansi-styles": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "dev": true,
- "dependencies": {
- "color-convert": "^1.9.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/@babel/highlight/node_modules/chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/@babel/highlight/node_modules/color-convert": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
- "dev": true,
- "dependencies": {
- "color-name": "1.1.3"
- }
- },
- "node_modules/@babel/highlight/node_modules/color-name": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
- "dev": true
- },
- "node_modules/@babel/highlight/node_modules/escape-string-regexp": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
- "dev": true,
- "engines": {
- "node": ">=0.8.0"
- }
- },
- "node_modules/@babel/highlight/node_modules/has-flag": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/@babel/highlight/node_modules/supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
- "dev": true,
- "dependencies": {
- "has-flag": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/@babel/parser": {
- "version": "7.23.0",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz",
- "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==",
- "dev": true,
- "bin": {
- "parser": "bin/babel-parser.js"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@babel/plugin-syntax-async-generators": {
- "version": "7.8.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
- "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-bigint": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz",
- "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-class-properties": {
- "version": "7.12.13",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz",
- "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.12.13"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-import-meta": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz",
- "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.10.4"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-json-strings": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
- "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-logical-assignment-operators": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
- "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.10.4"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
- "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-numeric-separator": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
- "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.10.4"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-object-rest-spread": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
- "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-optional-catch-binding": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
- "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-optional-chaining": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
- "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-top-level-await": {
- "version": "7.14.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz",
- "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.14.5"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-typescript": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz",
- "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.22.5"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/template": {
- "version": "7.22.15",
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz",
- "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==",
- "dev": true,
- "dependencies": {
- "@babel/code-frame": "^7.22.13",
- "@babel/parser": "^7.22.15",
- "@babel/types": "^7.22.15"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/traverse": {
- "version": "7.23.0",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.0.tgz",
- "integrity": "sha512-t/QaEvyIoIkwzpiZ7aoSKK8kObQYeF7T2v+dazAYCb8SXtp58zEVkWW7zAnju8FNKNdr4ScAOEDmMItbyOmEYw==",
- "dev": true,
- "dependencies": {
- "@babel/code-frame": "^7.22.13",
- "@babel/generator": "^7.23.0",
- "@babel/helper-environment-visitor": "^7.22.20",
- "@babel/helper-function-name": "^7.23.0",
- "@babel/helper-hoist-variables": "^7.22.5",
- "@babel/helper-split-export-declaration": "^7.22.6",
- "@babel/parser": "^7.23.0",
- "@babel/types": "^7.23.0",
- "debug": "^4.1.0",
- "globals": "^11.1.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/types": {
- "version": "7.23.0",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.0.tgz",
- "integrity": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==",
- "dev": true,
- "dependencies": {
- "@babel/helper-string-parser": "^7.22.5",
- "@babel/helper-validator-identifier": "^7.22.20",
- "to-fast-properties": "^2.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@bcoe/v8-coverage": {
- "version": "0.2.3",
- "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
- "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
- "dev": true
- },
- "node_modules/@istanbuljs/load-nyc-config": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz",
- "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==",
- "dev": true,
- "dependencies": {
- "camelcase": "^5.3.1",
- "find-up": "^4.1.0",
- "get-package-type": "^0.1.0",
- "js-yaml": "^3.13.1",
- "resolve-from": "^5.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@istanbuljs/schema": {
- "version": "0.1.3",
- "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz",
- "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@jest/console": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz",
- "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^27.5.1",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "jest-message-util": "^27.5.1",
- "jest-util": "^27.5.1",
- "slash": "^3.0.0"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/@jest/core": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz",
- "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==",
- "dev": true,
- "dependencies": {
- "@jest/console": "^27.5.1",
- "@jest/reporters": "^27.5.1",
- "@jest/test-result": "^27.5.1",
- "@jest/transform": "^27.5.1",
- "@jest/types": "^27.5.1",
- "@types/node": "*",
- "ansi-escapes": "^4.2.1",
- "chalk": "^4.0.0",
- "emittery": "^0.8.1",
- "exit": "^0.1.2",
- "graceful-fs": "^4.2.9",
- "jest-changed-files": "^27.5.1",
- "jest-config": "^27.5.1",
- "jest-haste-map": "^27.5.1",
- "jest-message-util": "^27.5.1",
- "jest-regex-util": "^27.5.1",
- "jest-resolve": "^27.5.1",
- "jest-resolve-dependencies": "^27.5.1",
- "jest-runner": "^27.5.1",
- "jest-runtime": "^27.5.1",
- "jest-snapshot": "^27.5.1",
- "jest-util": "^27.5.1",
- "jest-validate": "^27.5.1",
- "jest-watcher": "^27.5.1",
- "micromatch": "^4.0.4",
- "rimraf": "^3.0.0",
- "slash": "^3.0.0",
- "strip-ansi": "^6.0.0"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- },
- "peerDependencies": {
- "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
- },
- "peerDependenciesMeta": {
- "node-notifier": {
- "optional": true
- }
- }
- },
- "node_modules/@jest/environment": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz",
- "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==",
- "dev": true,
- "dependencies": {
- "@jest/fake-timers": "^27.5.1",
- "@jest/types": "^27.5.1",
- "@types/node": "*",
- "jest-mock": "^27.5.1"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/@jest/fake-timers": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz",
- "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^27.5.1",
- "@sinonjs/fake-timers": "^8.0.1",
- "@types/node": "*",
- "jest-message-util": "^27.5.1",
- "jest-mock": "^27.5.1",
- "jest-util": "^27.5.1"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/@jest/globals": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz",
- "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==",
- "dev": true,
- "dependencies": {
- "@jest/environment": "^27.5.1",
- "@jest/types": "^27.5.1",
- "expect": "^27.5.1"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/@jest/reporters": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz",
- "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==",
- "dev": true,
- "dependencies": {
- "@bcoe/v8-coverage": "^0.2.3",
- "@jest/console": "^27.5.1",
- "@jest/test-result": "^27.5.1",
- "@jest/transform": "^27.5.1",
- "@jest/types": "^27.5.1",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "collect-v8-coverage": "^1.0.0",
- "exit": "^0.1.2",
- "glob": "^7.1.2",
- "graceful-fs": "^4.2.9",
- "istanbul-lib-coverage": "^3.0.0",
- "istanbul-lib-instrument": "^5.1.0",
- "istanbul-lib-report": "^3.0.0",
- "istanbul-lib-source-maps": "^4.0.0",
- "istanbul-reports": "^3.1.3",
- "jest-haste-map": "^27.5.1",
- "jest-resolve": "^27.5.1",
- "jest-util": "^27.5.1",
- "jest-worker": "^27.5.1",
- "slash": "^3.0.0",
- "source-map": "^0.6.0",
- "string-length": "^4.0.1",
- "terminal-link": "^2.0.0",
- "v8-to-istanbul": "^8.1.0"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- },
- "peerDependencies": {
- "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
- },
- "peerDependenciesMeta": {
- "node-notifier": {
- "optional": true
- }
- }
- },
- "node_modules/@jest/source-map": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz",
- "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==",
- "dev": true,
- "dependencies": {
- "callsites": "^3.0.0",
- "graceful-fs": "^4.2.9",
- "source-map": "^0.6.0"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/@jest/test-result": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz",
- "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==",
- "dev": true,
- "dependencies": {
- "@jest/console": "^27.5.1",
- "@jest/types": "^27.5.1",
- "@types/istanbul-lib-coverage": "^2.0.0",
- "collect-v8-coverage": "^1.0.0"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/@jest/test-sequencer": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz",
- "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==",
- "dev": true,
- "dependencies": {
- "@jest/test-result": "^27.5.1",
- "graceful-fs": "^4.2.9",
- "jest-haste-map": "^27.5.1",
- "jest-runtime": "^27.5.1"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/@jest/transform": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz",
- "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==",
- "dev": true,
- "dependencies": {
- "@babel/core": "^7.1.0",
- "@jest/types": "^27.5.1",
- "babel-plugin-istanbul": "^6.1.1",
- "chalk": "^4.0.0",
- "convert-source-map": "^1.4.0",
- "fast-json-stable-stringify": "^2.0.0",
- "graceful-fs": "^4.2.9",
- "jest-haste-map": "^27.5.1",
- "jest-regex-util": "^27.5.1",
- "jest-util": "^27.5.1",
- "micromatch": "^4.0.4",
- "pirates": "^4.0.4",
- "slash": "^3.0.0",
- "source-map": "^0.6.1",
- "write-file-atomic": "^3.0.0"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/@jest/types": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
- "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
- "dev": true,
- "dependencies": {
- "@types/istanbul-lib-coverage": "^2.0.0",
- "@types/istanbul-reports": "^3.0.0",
- "@types/node": "*",
- "@types/yargs": "^16.0.0",
- "chalk": "^4.0.0"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/@jridgewell/gen-mapping": {
- "version": "0.3.3",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz",
- "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==",
- "dev": true,
- "dependencies": {
- "@jridgewell/set-array": "^1.0.1",
- "@jridgewell/sourcemap-codec": "^1.4.10",
- "@jridgewell/trace-mapping": "^0.3.9"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@jridgewell/resolve-uri": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz",
- "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==",
- "dev": true,
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@jridgewell/set-array": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz",
- "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==",
- "dev": true,
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@jridgewell/sourcemap-codec": {
- "version": "1.4.15",
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
- "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==",
- "dev": true
- },
- "node_modules/@jridgewell/trace-mapping": {
- "version": "0.3.19",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz",
- "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==",
- "dev": true,
- "dependencies": {
- "@jridgewell/resolve-uri": "^3.1.0",
- "@jridgewell/sourcemap-codec": "^1.4.14"
- }
- },
- "node_modules/@sinonjs/commons": {
- "version": "1.8.6",
- "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz",
- "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==",
- "dev": true,
- "dependencies": {
- "type-detect": "4.0.8"
- }
- },
- "node_modules/@sinonjs/fake-timers": {
- "version": "8.1.0",
- "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz",
- "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==",
- "dev": true,
- "dependencies": {
- "@sinonjs/commons": "^1.7.0"
- }
- },
- "node_modules/@tootallnate/once": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz",
- "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==",
- "dev": true,
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/@types/babel__core": {
- "version": "7.20.2",
- "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.2.tgz",
- "integrity": "sha512-pNpr1T1xLUc2l3xJKuPtsEky3ybxN3m4fJkknfIpTCTfIZCDW57oAg+EfCgIIp2rvCe0Wn++/FfodDS4YXxBwA==",
- "dev": true,
- "dependencies": {
- "@babel/parser": "^7.20.7",
- "@babel/types": "^7.20.7",
- "@types/babel__generator": "*",
- "@types/babel__template": "*",
- "@types/babel__traverse": "*"
- }
- },
- "node_modules/@types/babel__generator": {
- "version": "7.6.5",
- "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.5.tgz",
- "integrity": "sha512-h9yIuWbJKdOPLJTbmSpPzkF67e659PbQDba7ifWm5BJ8xTv+sDmS7rFmywkWOvXedGTivCdeGSIIX8WLcRTz8w==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.0.0"
- }
- },
- "node_modules/@types/babel__template": {
- "version": "7.4.2",
- "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.2.tgz",
- "integrity": "sha512-/AVzPICMhMOMYoSx9MoKpGDKdBRsIXMNByh1PXSZoa+v6ZoLa8xxtsT/uLQ/NJm0XVAWl/BvId4MlDeXJaeIZQ==",
- "dev": true,
- "dependencies": {
- "@babel/parser": "^7.1.0",
- "@babel/types": "^7.0.0"
- }
- },
- "node_modules/@types/babel__traverse": {
- "version": "7.20.2",
- "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.2.tgz",
- "integrity": "sha512-ojlGK1Hsfce93J0+kn3H5R73elidKUaZonirN33GSmgTUMpzI/MIFfSpF3haANe3G1bEBS9/9/QEqwTzwqFsKw==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.20.7"
- }
- },
- "node_modules/@types/graceful-fs": {
- "version": "4.1.7",
- "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.7.tgz",
- "integrity": "sha512-MhzcwU8aUygZroVwL2jeYk6JisJrPl/oov/gsgGCue9mkgl9wjGbzReYQClxiUgFDnib9FuHqTndccKeZKxTRw==",
- "dev": true,
- "dependencies": {
- "@types/node": "*"
- }
- },
- "node_modules/@types/istanbul-lib-coverage": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz",
- "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==",
- "dev": true
- },
- "node_modules/@types/istanbul-lib-report": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz",
- "integrity": "sha512-gPQuzaPR5h/djlAv2apEG1HVOyj1IUs7GpfMZixU0/0KXT3pm64ylHuMUI1/Akh+sq/iikxg6Z2j+fcMDXaaTQ==",
- "dev": true,
- "dependencies": {
- "@types/istanbul-lib-coverage": "*"
- }
- },
- "node_modules/@types/istanbul-reports": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.2.tgz",
- "integrity": "sha512-kv43F9eb3Lhj+lr/Hn6OcLCs/sSM8bt+fIaP11rCYngfV6NVjzWXJ17owQtDQTL9tQ8WSLUrGsSJ6rJz0F1w1A==",
- "dev": true,
- "dependencies": {
- "@types/istanbul-lib-report": "*"
- }
- },
- "node_modules/@types/node": {
- "version": "20.8.2",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.2.tgz",
- "integrity": "sha512-Vvycsc9FQdwhxE3y3DzeIxuEJbWGDsnrxvMADzTDF/lcdR9/K+AQIeAghTQsHtotg/q0j3WEOYS/jQgSdWue3w==",
- "dev": true
- },
- "node_modules/@types/prettier": {
- "version": "2.7.3",
- "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz",
- "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==",
- "dev": true
- },
- "node_modules/@types/stack-utils": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz",
- "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==",
- "dev": true
- },
- "node_modules/@types/yargs": {
- "version": "16.0.6",
- "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.6.tgz",
- "integrity": "sha512-oTP7/Q13GSPrgcwEwdlnkoZSQ1Hg9THe644qq8PG6hhJzjZ3qj1JjEFPIwWV/IXVs5XGIVqtkNOS9kh63WIJ+A==",
- "dev": true,
- "dependencies": {
- "@types/yargs-parser": "*"
- }
- },
- "node_modules/@types/yargs-parser": {
- "version": "21.0.1",
- "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.1.tgz",
- "integrity": "sha512-axdPBuLuEJt0c4yI5OZssC19K2Mq1uKdrfZBzuxLvaztgqUtFYZUNw7lETExPYJR9jdEoIg4mb7RQKRQzOkeGQ==",
- "dev": true
- },
- "node_modules/abab": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz",
- "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==",
- "dev": true
- },
- "node_modules/acorn": {
- "version": "8.10.0",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz",
- "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==",
- "dev": true,
- "bin": {
- "acorn": "bin/acorn"
- },
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/acorn-globals": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz",
- "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==",
- "dev": true,
- "dependencies": {
- "acorn": "^7.1.1",
- "acorn-walk": "^7.1.1"
- }
- },
- "node_modules/acorn-globals/node_modules/acorn": {
- "version": "7.4.1",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
- "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
- "dev": true,
- "bin": {
- "acorn": "bin/acorn"
- },
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/acorn-walk": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz",
- "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==",
- "dev": true,
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/agent-base": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
- "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
- "dev": true,
- "dependencies": {
- "debug": "4"
- },
- "engines": {
- "node": ">= 6.0.0"
- }
- },
- "node_modules/ansi-escapes": {
- "version": "4.3.2",
- "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
- "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
- "dev": true,
- "dependencies": {
- "type-fest": "^0.21.3"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/ansi-regex": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/anymatch": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
- "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
- "dev": true,
- "dependencies": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/argparse": {
- "version": "1.0.10",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
- "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
- "dev": true,
- "dependencies": {
- "sprintf-js": "~1.0.2"
- }
- },
- "node_modules/asynckit": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
- "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
- "dev": true
- },
- "node_modules/babel-jest": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz",
- "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==",
- "dev": true,
- "dependencies": {
- "@jest/transform": "^27.5.1",
- "@jest/types": "^27.5.1",
- "@types/babel__core": "^7.1.14",
- "babel-plugin-istanbul": "^6.1.1",
- "babel-preset-jest": "^27.5.1",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.9",
- "slash": "^3.0.0"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.8.0"
- }
- },
- "node_modules/babel-plugin-istanbul": {
- "version": "6.1.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz",
- "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.0.0",
- "@istanbuljs/load-nyc-config": "^1.0.0",
- "@istanbuljs/schema": "^0.1.2",
- "istanbul-lib-instrument": "^5.0.4",
- "test-exclude": "^6.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/babel-plugin-jest-hoist": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz",
- "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==",
- "dev": true,
- "dependencies": {
- "@babel/template": "^7.3.3",
- "@babel/types": "^7.3.3",
- "@types/babel__core": "^7.0.0",
- "@types/babel__traverse": "^7.0.6"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/babel-preset-current-node-syntax": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz",
- "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==",
- "dev": true,
- "dependencies": {
- "@babel/plugin-syntax-async-generators": "^7.8.4",
- "@babel/plugin-syntax-bigint": "^7.8.3",
- "@babel/plugin-syntax-class-properties": "^7.8.3",
- "@babel/plugin-syntax-import-meta": "^7.8.3",
- "@babel/plugin-syntax-json-strings": "^7.8.3",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
- "@babel/plugin-syntax-numeric-separator": "^7.8.3",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
- "@babel/plugin-syntax-optional-chaining": "^7.8.3",
- "@babel/plugin-syntax-top-level-await": "^7.8.3"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/babel-preset-jest": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz",
- "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==",
- "dev": true,
- "dependencies": {
- "babel-plugin-jest-hoist": "^27.5.1",
- "babel-preset-current-node-syntax": "^1.0.0"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/balanced-match": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
- "dev": true
- },
- "node_modules/brace-expansion": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "dev": true,
- "dependencies": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "node_modules/braces": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
- "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
- "dev": true,
- "dependencies": {
- "fill-range": "^7.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/browser-process-hrtime": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz",
- "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==",
- "dev": true
- },
- "node_modules/browserslist": {
- "version": "4.22.1",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz",
- "integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==",
- "dev": true,
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/browserslist"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "dependencies": {
- "caniuse-lite": "^1.0.30001541",
- "electron-to-chromium": "^1.4.535",
- "node-releases": "^2.0.13",
- "update-browserslist-db": "^1.0.13"
- },
- "bin": {
- "browserslist": "cli.js"
- },
- "engines": {
- "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
- }
- },
- "node_modules/bser": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz",
- "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==",
- "dev": true,
- "dependencies": {
- "node-int64": "^0.4.0"
- }
- },
- "node_modules/buffer-from": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
- "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
- "dev": true
- },
- "node_modules/callsites": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
- "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/camelcase": {
- "version": "5.3.1",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
- "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/caniuse-lite": {
- "version": "1.0.30001546",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001546.tgz",
- "integrity": "sha512-zvtSJwuQFpewSyRrI3AsftF6rM0X80mZkChIt1spBGEvRglCrjTniXvinc8JKRoqTwXAgvqTImaN9igfSMtUBw==",
- "dev": true,
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ]
- },
- "node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/char-regex": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz",
- "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==",
- "dev": true,
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/ci-info": {
- "version": "3.9.0",
- "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
- "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
- "dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/sibiraj-s"
- }
- ],
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/cjs-module-lexer": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz",
- "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==",
- "dev": true
- },
- "node_modules/cliui": {
- "version": "7.0.4",
- "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
- "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
- "dev": true,
- "dependencies": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.0",
- "wrap-ansi": "^7.0.0"
- }
- },
- "node_modules/co": {
- "version": "4.6.0",
- "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
- "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==",
- "dev": true,
- "engines": {
- "iojs": ">= 1.0.0",
- "node": ">= 0.12.0"
- }
- },
- "node_modules/collect-v8-coverage": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz",
- "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==",
- "dev": true
- },
- "node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/combined-stream": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
- "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
- "dev": true,
- "dependencies": {
- "delayed-stream": "~1.0.0"
- },
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/concat-map": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
- "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
- "dev": true
- },
- "node_modules/convert-source-map": {
- "version": "1.9.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
- "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
- "dev": true
- },
- "node_modules/cross-spawn": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
- "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
- "dev": true,
- "dependencies": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/cssom": {
- "version": "0.4.4",
- "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz",
- "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==",
- "dev": true
- },
- "node_modules/cssstyle": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz",
- "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==",
- "dev": true,
- "dependencies": {
- "cssom": "~0.3.6"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/cssstyle/node_modules/cssom": {
- "version": "0.3.8",
- "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz",
- "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==",
- "dev": true
- },
- "node_modules/data-urls": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz",
- "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==",
- "dev": true,
- "dependencies": {
- "abab": "^2.0.3",
- "whatwg-mimetype": "^2.3.0",
- "whatwg-url": "^8.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/debug": {
- "version": "4.3.4",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
- "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
- "dev": true,
- "dependencies": {
- "ms": "2.1.2"
- },
- "engines": {
- "node": ">=6.0"
- },
- "peerDependenciesMeta": {
- "supports-color": {
- "optional": true
- }
- }
- },
- "node_modules/decimal.js": {
- "version": "10.4.3",
- "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz",
- "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==",
- "dev": true
- },
- "node_modules/dedent": {
- "version": "0.7.0",
- "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz",
- "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==",
- "dev": true
- },
- "node_modules/deepmerge": {
- "version": "4.3.1",
- "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
- "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/delayed-stream": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
- "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
- "dev": true,
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/detect-newline": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz",
- "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/diff-sequences": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz",
- "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==",
- "dev": true,
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/domexception": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz",
- "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==",
- "dev": true,
- "dependencies": {
- "webidl-conversions": "^5.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/domexception/node_modules/webidl-conversions": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz",
- "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/electron-to-chromium": {
- "version": "1.4.543",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.543.tgz",
- "integrity": "sha512-t2ZP4AcGE0iKCCQCBx/K2426crYdxD3YU6l0uK2EO3FZH0pbC4pFz/sZm2ruZsND6hQBTcDWWlo/MLpiOdif5g==",
- "dev": true
- },
- "node_modules/emittery": {
- "version": "0.8.1",
- "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz",
- "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sindresorhus/emittery?sponsor=1"
- }
- },
- "node_modules/emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
- "dev": true
- },
- "node_modules/error-ex": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
- "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
- "dev": true,
- "dependencies": {
- "is-arrayish": "^0.2.1"
- }
- },
- "node_modules/escalade": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
- "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/escape-string-regexp": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
- "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/escodegen": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz",
- "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==",
- "dev": true,
- "dependencies": {
- "esprima": "^4.0.1",
- "estraverse": "^5.2.0",
- "esutils": "^2.0.2"
- },
- "bin": {
- "escodegen": "bin/escodegen.js",
- "esgenerate": "bin/esgenerate.js"
- },
- "engines": {
- "node": ">=6.0"
- },
- "optionalDependencies": {
- "source-map": "~0.6.1"
- }
- },
- "node_modules/esprima": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
- "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
- "dev": true,
- "bin": {
- "esparse": "bin/esparse.js",
- "esvalidate": "bin/esvalidate.js"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/estraverse": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
- "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
- "dev": true,
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/esutils": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
- "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/execa": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
- "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
- "dev": true,
- "dependencies": {
- "cross-spawn": "^7.0.3",
- "get-stream": "^6.0.0",
- "human-signals": "^2.1.0",
- "is-stream": "^2.0.0",
- "merge-stream": "^2.0.0",
- "npm-run-path": "^4.0.1",
- "onetime": "^5.1.2",
- "signal-exit": "^3.0.3",
- "strip-final-newline": "^2.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sindresorhus/execa?sponsor=1"
- }
- },
- "node_modules/exit": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz",
- "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==",
- "dev": true,
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/expect": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz",
- "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^27.5.1",
- "jest-get-type": "^27.5.1",
- "jest-matcher-utils": "^27.5.1",
- "jest-message-util": "^27.5.1"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/fast-json-stable-stringify": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
- "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
- "dev": true
- },
- "node_modules/fb-watchman": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz",
- "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==",
- "dev": true,
- "dependencies": {
- "bser": "2.1.1"
- }
- },
- "node_modules/fill-range": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
- "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
- "dev": true,
- "dependencies": {
- "to-regex-range": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/find-up": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
- "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
- "dev": true,
- "dependencies": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/form-data": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz",
- "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==",
- "dev": true,
- "dependencies": {
- "asynckit": "^0.4.0",
- "combined-stream": "^1.0.8",
- "mime-types": "^2.1.12"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/fs.realpath": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
- "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
- "dev": true
- },
- "node_modules/fsevents": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
- "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
- "dev": true,
- "hasInstallScript": true,
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
- }
- },
- "node_modules/gensync": {
- "version": "1.0.0-beta.2",
- "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
- "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
- "dev": true,
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/get-caller-file": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
- "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
- "dev": true,
- "engines": {
- "node": "6.* || 8.* || >= 10.*"
- }
- },
- "node_modules/get-package-type": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz",
- "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==",
- "dev": true,
- "engines": {
- "node": ">=8.0.0"
- }
- },
- "node_modules/get-stream": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
- "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/glob": {
- "version": "7.2.3",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
- "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
- "dev": true,
- "dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.1.1",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
- },
- "engines": {
- "node": "*"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/globals": {
- "version": "11.12.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
- "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/graceful-fs": {
- "version": "4.2.11",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
- "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
- "dev": true
- },
- "node_modules/has": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz",
- "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==",
- "dev": true,
- "engines": {
- "node": ">= 0.4.0"
- }
- },
- "node_modules/has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/html-encoding-sniffer": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz",
- "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==",
- "dev": true,
- "dependencies": {
- "whatwg-encoding": "^1.0.5"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/html-escaper": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
- "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==",
- "dev": true
- },
- "node_modules/http-proxy-agent": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz",
- "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==",
- "dev": true,
- "dependencies": {
- "@tootallnate/once": "1",
- "agent-base": "6",
- "debug": "4"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/https-proxy-agent": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
- "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
- "dev": true,
- "dependencies": {
- "agent-base": "6",
- "debug": "4"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/human-signals": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
- "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
- "dev": true,
- "engines": {
- "node": ">=10.17.0"
- }
- },
- "node_modules/iconv-lite": {
- "version": "0.4.24",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
- "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
- "dev": true,
- "dependencies": {
- "safer-buffer": ">= 2.1.2 < 3"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/import-local": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz",
- "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==",
- "dev": true,
- "dependencies": {
- "pkg-dir": "^4.2.0",
- "resolve-cwd": "^3.0.0"
- },
- "bin": {
- "import-local-fixture": "fixtures/cli.js"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/imurmurhash": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
- "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
- "dev": true,
- "engines": {
- "node": ">=0.8.19"
- }
- },
- "node_modules/inflight": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
- "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
- "dev": true,
- "dependencies": {
- "once": "^1.3.0",
- "wrappy": "1"
- }
- },
- "node_modules/inherits": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
- "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
- "dev": true
- },
- "node_modules/is-arrayish": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
- "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
- "dev": true
- },
- "node_modules/is-core-module": {
- "version": "2.13.0",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz",
- "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==",
- "dev": true,
- "dependencies": {
- "has": "^1.0.3"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-fullwidth-code-point": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/is-generator-fn": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz",
- "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
- "dev": true,
- "engines": {
- "node": ">=0.12.0"
- }
- },
- "node_modules/is-potential-custom-element-name": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
- "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==",
- "dev": true
- },
- "node_modules/is-stream": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
- "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
- "dev": true,
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/is-typedarray": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
- "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==",
- "dev": true
- },
- "node_modules/isexe": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
- "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
- "dev": true
- },
- "node_modules/istanbul-lib-coverage": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz",
- "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/istanbul-lib-instrument": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz",
- "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==",
- "dev": true,
- "dependencies": {
- "@babel/core": "^7.12.3",
- "@babel/parser": "^7.14.7",
- "@istanbuljs/schema": "^0.1.2",
- "istanbul-lib-coverage": "^3.2.0",
- "semver": "^6.3.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/istanbul-lib-report": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz",
- "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==",
- "dev": true,
- "dependencies": {
- "istanbul-lib-coverage": "^3.0.0",
- "make-dir": "^4.0.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/istanbul-lib-source-maps": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz",
- "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==",
- "dev": true,
- "dependencies": {
- "debug": "^4.1.1",
- "istanbul-lib-coverage": "^3.0.0",
- "source-map": "^0.6.1"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/istanbul-reports": {
- "version": "3.1.6",
- "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz",
- "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==",
- "dev": true,
- "dependencies": {
- "html-escaper": "^2.0.0",
- "istanbul-lib-report": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz",
- "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==",
- "dev": true,
- "dependencies": {
- "@jest/core": "^27.5.1",
- "import-local": "^3.0.2",
- "jest-cli": "^27.5.1"
- },
- "bin": {
- "jest": "bin/jest.js"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- },
- "peerDependencies": {
- "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
- },
- "peerDependenciesMeta": {
- "node-notifier": {
- "optional": true
- }
- }
- },
- "node_modules/jest-changed-files": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz",
- "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^27.5.1",
- "execa": "^5.0.0",
- "throat": "^6.0.1"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/jest-circus": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz",
- "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==",
- "dev": true,
- "dependencies": {
- "@jest/environment": "^27.5.1",
- "@jest/test-result": "^27.5.1",
- "@jest/types": "^27.5.1",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "co": "^4.6.0",
- "dedent": "^0.7.0",
- "expect": "^27.5.1",
- "is-generator-fn": "^2.0.0",
- "jest-each": "^27.5.1",
- "jest-matcher-utils": "^27.5.1",
- "jest-message-util": "^27.5.1",
- "jest-runtime": "^27.5.1",
- "jest-snapshot": "^27.5.1",
- "jest-util": "^27.5.1",
- "pretty-format": "^27.5.1",
- "slash": "^3.0.0",
- "stack-utils": "^2.0.3",
- "throat": "^6.0.1"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/jest-cli": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz",
- "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==",
- "dev": true,
- "dependencies": {
- "@jest/core": "^27.5.1",
- "@jest/test-result": "^27.5.1",
- "@jest/types": "^27.5.1",
- "chalk": "^4.0.0",
- "exit": "^0.1.2",
- "graceful-fs": "^4.2.9",
- "import-local": "^3.0.2",
- "jest-config": "^27.5.1",
- "jest-util": "^27.5.1",
- "jest-validate": "^27.5.1",
- "prompts": "^2.0.1",
- "yargs": "^16.2.0"
- },
- "bin": {
- "jest": "bin/jest.js"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- },
- "peerDependencies": {
- "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
- },
- "peerDependenciesMeta": {
- "node-notifier": {
- "optional": true
- }
- }
- },
- "node_modules/jest-config": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz",
- "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==",
- "dev": true,
- "dependencies": {
- "@babel/core": "^7.8.0",
- "@jest/test-sequencer": "^27.5.1",
- "@jest/types": "^27.5.1",
- "babel-jest": "^27.5.1",
- "chalk": "^4.0.0",
- "ci-info": "^3.2.0",
- "deepmerge": "^4.2.2",
- "glob": "^7.1.1",
- "graceful-fs": "^4.2.9",
- "jest-circus": "^27.5.1",
- "jest-environment-jsdom": "^27.5.1",
- "jest-environment-node": "^27.5.1",
- "jest-get-type": "^27.5.1",
- "jest-jasmine2": "^27.5.1",
- "jest-regex-util": "^27.5.1",
- "jest-resolve": "^27.5.1",
- "jest-runner": "^27.5.1",
- "jest-util": "^27.5.1",
- "jest-validate": "^27.5.1",
- "micromatch": "^4.0.4",
- "parse-json": "^5.2.0",
- "pretty-format": "^27.5.1",
- "slash": "^3.0.0",
- "strip-json-comments": "^3.1.1"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- },
- "peerDependencies": {
- "ts-node": ">=9.0.0"
- },
- "peerDependenciesMeta": {
- "ts-node": {
- "optional": true
- }
- }
- },
- "node_modules/jest-diff": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz",
- "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==",
- "dev": true,
- "dependencies": {
- "chalk": "^4.0.0",
- "diff-sequences": "^27.5.1",
- "jest-get-type": "^27.5.1",
- "pretty-format": "^27.5.1"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/jest-docblock": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz",
- "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==",
- "dev": true,
- "dependencies": {
- "detect-newline": "^3.0.0"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/jest-each": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz",
- "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^27.5.1",
- "chalk": "^4.0.0",
- "jest-get-type": "^27.5.1",
- "jest-util": "^27.5.1",
- "pretty-format": "^27.5.1"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/jest-environment-jsdom": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz",
- "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==",
- "dev": true,
- "dependencies": {
- "@jest/environment": "^27.5.1",
- "@jest/fake-timers": "^27.5.1",
- "@jest/types": "^27.5.1",
- "@types/node": "*",
- "jest-mock": "^27.5.1",
- "jest-util": "^27.5.1",
- "jsdom": "^16.6.0"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/jest-environment-node": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz",
- "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==",
- "dev": true,
- "dependencies": {
- "@jest/environment": "^27.5.1",
- "@jest/fake-timers": "^27.5.1",
- "@jest/types": "^27.5.1",
- "@types/node": "*",
- "jest-mock": "^27.5.1",
- "jest-util": "^27.5.1"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/jest-get-type": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz",
- "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==",
- "dev": true,
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/jest-haste-map": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz",
- "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^27.5.1",
- "@types/graceful-fs": "^4.1.2",
- "@types/node": "*",
- "anymatch": "^3.0.3",
- "fb-watchman": "^2.0.0",
- "graceful-fs": "^4.2.9",
- "jest-regex-util": "^27.5.1",
- "jest-serializer": "^27.5.1",
- "jest-util": "^27.5.1",
- "jest-worker": "^27.5.1",
- "micromatch": "^4.0.4",
- "walker": "^1.0.7"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- },
- "optionalDependencies": {
- "fsevents": "^2.3.2"
- }
- },
- "node_modules/jest-jasmine2": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz",
- "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==",
- "dev": true,
- "dependencies": {
- "@jest/environment": "^27.5.1",
- "@jest/source-map": "^27.5.1",
- "@jest/test-result": "^27.5.1",
- "@jest/types": "^27.5.1",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "co": "^4.6.0",
- "expect": "^27.5.1",
- "is-generator-fn": "^2.0.0",
- "jest-each": "^27.5.1",
- "jest-matcher-utils": "^27.5.1",
- "jest-message-util": "^27.5.1",
- "jest-runtime": "^27.5.1",
- "jest-snapshot": "^27.5.1",
- "jest-util": "^27.5.1",
- "pretty-format": "^27.5.1",
- "throat": "^6.0.1"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/jest-leak-detector": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz",
- "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==",
- "dev": true,
- "dependencies": {
- "jest-get-type": "^27.5.1",
- "pretty-format": "^27.5.1"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/jest-matcher-utils": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz",
- "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==",
- "dev": true,
- "dependencies": {
- "chalk": "^4.0.0",
- "jest-diff": "^27.5.1",
- "jest-get-type": "^27.5.1",
- "pretty-format": "^27.5.1"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/jest-message-util": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz",
- "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==",
- "dev": true,
- "dependencies": {
- "@babel/code-frame": "^7.12.13",
- "@jest/types": "^27.5.1",
- "@types/stack-utils": "^2.0.0",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.9",
- "micromatch": "^4.0.4",
- "pretty-format": "^27.5.1",
- "slash": "^3.0.0",
- "stack-utils": "^2.0.3"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/jest-mock": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz",
- "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^27.5.1",
- "@types/node": "*"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/jest-pnp-resolver": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz",
- "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==",
- "dev": true,
- "engines": {
- "node": ">=6"
- },
- "peerDependencies": {
- "jest-resolve": "*"
- },
- "peerDependenciesMeta": {
- "jest-resolve": {
- "optional": true
- }
- }
- },
- "node_modules/jest-regex-util": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz",
- "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==",
- "dev": true,
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/jest-resolve": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz",
- "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^27.5.1",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.9",
- "jest-haste-map": "^27.5.1",
- "jest-pnp-resolver": "^1.2.2",
- "jest-util": "^27.5.1",
- "jest-validate": "^27.5.1",
- "resolve": "^1.20.0",
- "resolve.exports": "^1.1.0",
- "slash": "^3.0.0"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/jest-resolve-dependencies": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz",
- "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^27.5.1",
- "jest-regex-util": "^27.5.1",
- "jest-snapshot": "^27.5.1"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/jest-runner": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz",
- "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==",
- "dev": true,
- "dependencies": {
- "@jest/console": "^27.5.1",
- "@jest/environment": "^27.5.1",
- "@jest/test-result": "^27.5.1",
- "@jest/transform": "^27.5.1",
- "@jest/types": "^27.5.1",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "emittery": "^0.8.1",
- "graceful-fs": "^4.2.9",
- "jest-docblock": "^27.5.1",
- "jest-environment-jsdom": "^27.5.1",
- "jest-environment-node": "^27.5.1",
- "jest-haste-map": "^27.5.1",
- "jest-leak-detector": "^27.5.1",
- "jest-message-util": "^27.5.1",
- "jest-resolve": "^27.5.1",
- "jest-runtime": "^27.5.1",
- "jest-util": "^27.5.1",
- "jest-worker": "^27.5.1",
- "source-map-support": "^0.5.6",
- "throat": "^6.0.1"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/jest-runtime": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz",
- "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==",
- "dev": true,
- "dependencies": {
- "@jest/environment": "^27.5.1",
- "@jest/fake-timers": "^27.5.1",
- "@jest/globals": "^27.5.1",
- "@jest/source-map": "^27.5.1",
- "@jest/test-result": "^27.5.1",
- "@jest/transform": "^27.5.1",
- "@jest/types": "^27.5.1",
- "chalk": "^4.0.0",
- "cjs-module-lexer": "^1.0.0",
- "collect-v8-coverage": "^1.0.0",
- "execa": "^5.0.0",
- "glob": "^7.1.3",
- "graceful-fs": "^4.2.9",
- "jest-haste-map": "^27.5.1",
- "jest-message-util": "^27.5.1",
- "jest-mock": "^27.5.1",
- "jest-regex-util": "^27.5.1",
- "jest-resolve": "^27.5.1",
- "jest-snapshot": "^27.5.1",
- "jest-util": "^27.5.1",
- "slash": "^3.0.0",
- "strip-bom": "^4.0.0"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/jest-serializer": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz",
- "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==",
- "dev": true,
- "dependencies": {
- "@types/node": "*",
- "graceful-fs": "^4.2.9"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/jest-snapshot": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz",
- "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==",
- "dev": true,
- "dependencies": {
- "@babel/core": "^7.7.2",
- "@babel/generator": "^7.7.2",
- "@babel/plugin-syntax-typescript": "^7.7.2",
- "@babel/traverse": "^7.7.2",
- "@babel/types": "^7.0.0",
- "@jest/transform": "^27.5.1",
- "@jest/types": "^27.5.1",
- "@types/babel__traverse": "^7.0.4",
- "@types/prettier": "^2.1.5",
- "babel-preset-current-node-syntax": "^1.0.0",
- "chalk": "^4.0.0",
- "expect": "^27.5.1",
- "graceful-fs": "^4.2.9",
- "jest-diff": "^27.5.1",
- "jest-get-type": "^27.5.1",
- "jest-haste-map": "^27.5.1",
- "jest-matcher-utils": "^27.5.1",
- "jest-message-util": "^27.5.1",
- "jest-util": "^27.5.1",
- "natural-compare": "^1.4.0",
- "pretty-format": "^27.5.1",
- "semver": "^7.3.2"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/jest-snapshot/node_modules/lru-cache": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
- "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
- "dev": true,
- "dependencies": {
- "yallist": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/jest-snapshot/node_modules/semver": {
- "version": "7.5.4",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
- "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
- "dev": true,
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/jest-snapshot/node_modules/yallist": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
- "dev": true
- },
- "node_modules/jest-util": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
- "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^27.5.1",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "ci-info": "^3.2.0",
- "graceful-fs": "^4.2.9",
- "picomatch": "^2.2.3"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/jest-validate": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz",
- "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^27.5.1",
- "camelcase": "^6.2.0",
- "chalk": "^4.0.0",
- "jest-get-type": "^27.5.1",
- "leven": "^3.1.0",
- "pretty-format": "^27.5.1"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/jest-validate/node_modules/camelcase": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
- "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/jest-watcher": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz",
- "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==",
- "dev": true,
- "dependencies": {
- "@jest/test-result": "^27.5.1",
- "@jest/types": "^27.5.1",
- "@types/node": "*",
- "ansi-escapes": "^4.2.1",
- "chalk": "^4.0.0",
- "jest-util": "^27.5.1",
- "string-length": "^4.0.1"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/jest-worker": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz",
- "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
- "dev": true,
- "dependencies": {
- "@types/node": "*",
- "merge-stream": "^2.0.0",
- "supports-color": "^8.0.0"
- },
- "engines": {
- "node": ">= 10.13.0"
- }
- },
- "node_modules/jest-worker/node_modules/supports-color": {
- "version": "8.1.1",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
- "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
- "dev": true,
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/supports-color?sponsor=1"
- }
- },
- "node_modules/js-tokens": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
- "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
- "dev": true
- },
- "node_modules/js-yaml": {
- "version": "3.14.1",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
- "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
- "dev": true,
- "dependencies": {
- "argparse": "^1.0.7",
- "esprima": "^4.0.0"
- },
- "bin": {
- "js-yaml": "bin/js-yaml.js"
- }
- },
- "node_modules/jsdom": {
- "version": "16.7.0",
- "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz",
- "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==",
- "dev": true,
- "dependencies": {
- "abab": "^2.0.5",
- "acorn": "^8.2.4",
- "acorn-globals": "^6.0.0",
- "cssom": "^0.4.4",
- "cssstyle": "^2.3.0",
- "data-urls": "^2.0.0",
- "decimal.js": "^10.2.1",
- "domexception": "^2.0.1",
- "escodegen": "^2.0.0",
- "form-data": "^3.0.0",
- "html-encoding-sniffer": "^2.0.1",
- "http-proxy-agent": "^4.0.1",
- "https-proxy-agent": "^5.0.0",
- "is-potential-custom-element-name": "^1.0.1",
- "nwsapi": "^2.2.0",
- "parse5": "6.0.1",
- "saxes": "^5.0.1",
- "symbol-tree": "^3.2.4",
- "tough-cookie": "^4.0.0",
- "w3c-hr-time": "^1.0.2",
- "w3c-xmlserializer": "^2.0.0",
- "webidl-conversions": "^6.1.0",
- "whatwg-encoding": "^1.0.5",
- "whatwg-mimetype": "^2.3.0",
- "whatwg-url": "^8.5.0",
- "ws": "^7.4.6",
- "xml-name-validator": "^3.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "peerDependencies": {
- "canvas": "^2.5.0"
- },
- "peerDependenciesMeta": {
- "canvas": {
- "optional": true
- }
- }
- },
- "node_modules/jsesc": {
- "version": "2.5.2",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
- "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==",
- "dev": true,
- "bin": {
- "jsesc": "bin/jsesc"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/json-parse-even-better-errors": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
- "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
- "dev": true
- },
- "node_modules/json5": {
- "version": "2.2.3",
- "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
- "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
- "dev": true,
- "bin": {
- "json5": "lib/cli.js"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/kleur": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
- "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/leven": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz",
- "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/lines-and-columns": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
- "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
- "dev": true
- },
- "node_modules/locate-path": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
- "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
- "dev": true,
- "dependencies": {
- "p-locate": "^4.1.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/lodash": {
- "version": "4.17.21",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
- "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
- "dev": true
- },
- "node_modules/lru-cache": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
- "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
- "dev": true,
- "dependencies": {
- "yallist": "^3.0.2"
- }
- },
- "node_modules/make-dir": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz",
- "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==",
- "dev": true,
- "dependencies": {
- "semver": "^7.5.3"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/make-dir/node_modules/lru-cache": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
- "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
- "dev": true,
- "dependencies": {
- "yallist": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/make-dir/node_modules/semver": {
- "version": "7.5.4",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
- "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
- "dev": true,
- "dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/make-dir/node_modules/yallist": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
- "dev": true
- },
- "node_modules/makeerror": {
- "version": "1.0.12",
- "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz",
- "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==",
- "dev": true,
- "dependencies": {
- "tmpl": "1.0.5"
- }
- },
- "node_modules/merge-stream": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
- "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
- "dev": true
- },
- "node_modules/micromatch": {
- "version": "4.0.5",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
- "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
- "dev": true,
- "dependencies": {
- "braces": "^3.0.2",
- "picomatch": "^2.3.1"
- },
- "engines": {
- "node": ">=8.6"
- }
- },
- "node_modules/mime-db": {
- "version": "1.52.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
- "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
- "dev": true,
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/mime-types": {
- "version": "2.1.35",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
- "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
- "dev": true,
- "dependencies": {
- "mime-db": "1.52.0"
- },
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/mimic-fn": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
- "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/minimatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "dev": true,
- "dependencies": {
- "brace-expansion": "^1.1.7"
- },
- "engines": {
- "node": "*"
- }
- },
- "node_modules/ms": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
- "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
- "dev": true
- },
- "node_modules/natural-compare": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
- "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
- "dev": true
- },
- "node_modules/node-int64": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz",
- "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==",
- "dev": true
- },
- "node_modules/node-releases": {
- "version": "2.0.13",
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz",
- "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==",
- "dev": true
- },
- "node_modules/normalize-path": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
- "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/npm-run-path": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
- "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
- "dev": true,
- "dependencies": {
- "path-key": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/nwsapi": {
- "version": "2.2.7",
- "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz",
- "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==",
- "dev": true
- },
- "node_modules/once": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
- "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
- "dev": true,
- "dependencies": {
- "wrappy": "1"
- }
- },
- "node_modules/onetime": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
- "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
- "dev": true,
- "dependencies": {
- "mimic-fn": "^2.1.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/p-limit": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
- "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
- "dev": true,
- "dependencies": {
- "p-try": "^2.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/p-locate": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
- "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
- "dev": true,
- "dependencies": {
- "p-limit": "^2.2.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/p-try": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
- "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/parse-json": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
- "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
- "dev": true,
- "dependencies": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/parse5": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz",
- "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
- "dev": true
- },
- "node_modules/path-exists": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
- "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/path-is-absolute": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
- "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/path-key": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
- "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/path-parse": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
- "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
- "dev": true
- },
- "node_modules/picocolors": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
- "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==",
- "dev": true
- },
- "node_modules/picomatch": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
- "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
- "dev": true,
- "engines": {
- "node": ">=8.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/jonschlinkert"
- }
- },
- "node_modules/pirates": {
- "version": "4.0.6",
- "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz",
- "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==",
- "dev": true,
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/pkg-dir": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
- "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
- "dev": true,
- "dependencies": {
- "find-up": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/pretty-format": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz",
- "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==",
- "dev": true,
- "dependencies": {
- "ansi-regex": "^5.0.1",
- "ansi-styles": "^5.0.0",
- "react-is": "^17.0.1"
- },
- "engines": {
- "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
- }
- },
- "node_modules/pretty-format/node_modules/ansi-styles": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
- "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/prompts": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz",
- "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
- "dev": true,
- "dependencies": {
- "kleur": "^3.0.3",
- "sisteransi": "^1.0.5"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/psl": {
- "version": "1.9.0",
- "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz",
- "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==",
- "dev": true
- },
- "node_modules/punycode": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz",
- "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/querystringify": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz",
- "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==",
- "dev": true
- },
- "node_modules/react-is": {
- "version": "17.0.2",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz",
- "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==",
- "dev": true
- },
- "node_modules/require-directory": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
- "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/requires-port": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
- "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==",
- "dev": true
- },
- "node_modules/resolve": {
- "version": "1.22.6",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz",
- "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==",
- "dev": true,
- "dependencies": {
- "is-core-module": "^2.13.0",
- "path-parse": "^1.0.7",
- "supports-preserve-symlinks-flag": "^1.0.0"
- },
- "bin": {
- "resolve": "bin/resolve"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/resolve-cwd": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz",
- "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==",
- "dev": true,
- "dependencies": {
- "resolve-from": "^5.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/resolve-from": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
- "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/resolve.exports": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz",
- "integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==",
- "dev": true,
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/rimraf": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
- "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
- "dev": true,
- "dependencies": {
- "glob": "^7.1.3"
- },
- "bin": {
- "rimraf": "bin.js"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/safer-buffer": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
- "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
- "dev": true
- },
- "node_modules/saxes": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz",
- "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==",
- "dev": true,
- "dependencies": {
- "xmlchars": "^2.2.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/semver": {
- "version": "6.3.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
- "dev": true,
- "bin": {
- "semver": "bin/semver.js"
- }
- },
- "node_modules/shebang-command": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
- "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
- "dev": true,
- "dependencies": {
- "shebang-regex": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/shebang-regex": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
- "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/signal-exit": {
- "version": "3.0.7",
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
- "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
- "dev": true
- },
- "node_modules/sisteransi": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
- "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
- "dev": true
- },
- "node_modules/slash": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/source-map-support": {
- "version": "0.5.21",
- "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
- "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
- "dev": true,
- "dependencies": {
- "buffer-from": "^1.0.0",
- "source-map": "^0.6.0"
- }
- },
- "node_modules/sprintf-js": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
- "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==",
- "dev": true
- },
- "node_modules/stack-utils": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz",
- "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==",
- "dev": true,
- "dependencies": {
- "escape-string-regexp": "^2.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/string-length": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz",
- "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==",
- "dev": true,
- "dependencies": {
- "char-regex": "^1.0.2",
- "strip-ansi": "^6.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/string-width": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
- "dev": true,
- "dependencies": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/strip-ansi": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
- "dev": true,
- "dependencies": {
- "ansi-regex": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/strip-bom": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz",
- "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/strip-final-newline": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
- "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/strip-json-comments": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
- "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
- "dev": true,
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/supports-hyperlinks": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz",
- "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==",
- "dev": true,
- "dependencies": {
- "has-flag": "^4.0.0",
- "supports-color": "^7.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/supports-preserve-symlinks-flag": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
- "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
- "dev": true,
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/symbol-tree": {
- "version": "3.2.4",
- "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
- "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==",
- "dev": true
- },
- "node_modules/terminal-link": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz",
- "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==",
- "dev": true,
- "dependencies": {
- "ansi-escapes": "^4.2.1",
- "supports-hyperlinks": "^2.0.0"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/test-exclude": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz",
- "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==",
- "dev": true,
- "dependencies": {
- "@istanbuljs/schema": "^0.1.2",
- "glob": "^7.1.4",
- "minimatch": "^3.0.4"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/throat": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz",
- "integrity": "sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==",
- "dev": true
- },
- "node_modules/tmpl": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz",
- "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==",
- "dev": true
- },
- "node_modules/to-fast-properties": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
- "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/to-regex-range": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
- "dev": true,
- "dependencies": {
- "is-number": "^7.0.0"
- },
- "engines": {
- "node": ">=8.0"
- }
- },
- "node_modules/tough-cookie": {
- "version": "4.1.3",
- "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz",
- "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==",
- "dev": true,
- "dependencies": {
- "psl": "^1.1.33",
- "punycode": "^2.1.1",
- "universalify": "^0.2.0",
- "url-parse": "^1.5.3"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/tr46": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz",
- "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==",
- "dev": true,
- "dependencies": {
- "punycode": "^2.1.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/type-detect": {
- "version": "4.0.8",
- "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz",
- "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/type-fest": {
- "version": "0.21.3",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
- "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/typedarray-to-buffer": {
- "version": "3.1.5",
- "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz",
- "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==",
- "dev": true,
- "dependencies": {
- "is-typedarray": "^1.0.0"
- }
- },
- "node_modules/universalify": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz",
- "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==",
- "dev": true,
- "engines": {
- "node": ">= 4.0.0"
- }
- },
- "node_modules/update-browserslist-db": {
- "version": "1.0.13",
- "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz",
- "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==",
- "dev": true,
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/browserslist"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "dependencies": {
- "escalade": "^3.1.1",
- "picocolors": "^1.0.0"
- },
- "bin": {
- "update-browserslist-db": "cli.js"
- },
- "peerDependencies": {
- "browserslist": ">= 4.21.0"
- }
- },
- "node_modules/url-parse": {
- "version": "1.5.10",
- "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz",
- "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==",
- "dev": true,
- "dependencies": {
- "querystringify": "^2.1.1",
- "requires-port": "^1.0.0"
- }
- },
- "node_modules/v8-to-istanbul": {
- "version": "8.1.1",
- "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz",
- "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==",
- "dev": true,
- "dependencies": {
- "@types/istanbul-lib-coverage": "^2.0.1",
- "convert-source-map": "^1.6.0",
- "source-map": "^0.7.3"
- },
- "engines": {
- "node": ">=10.12.0"
- }
- },
- "node_modules/v8-to-istanbul/node_modules/source-map": {
- "version": "0.7.4",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz",
- "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==",
- "dev": true,
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/w3c-hr-time": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz",
- "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==",
- "deprecated": "Use your platform's native performance.now() and performance.timeOrigin.",
- "dev": true,
- "dependencies": {
- "browser-process-hrtime": "^1.0.0"
- }
- },
- "node_modules/w3c-xmlserializer": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz",
- "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==",
- "dev": true,
- "dependencies": {
- "xml-name-validator": "^3.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/walker": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz",
- "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==",
- "dev": true,
- "dependencies": {
- "makeerror": "1.0.12"
- }
- },
- "node_modules/webidl-conversions": {
- "version": "6.1.0",
- "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz",
- "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==",
- "dev": true,
- "engines": {
- "node": ">=10.4"
- }
- },
- "node_modules/whatwg-encoding": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz",
- "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==",
- "dev": true,
- "dependencies": {
- "iconv-lite": "0.4.24"
- }
- },
- "node_modules/whatwg-mimetype": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz",
- "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==",
- "dev": true
- },
- "node_modules/whatwg-url": {
- "version": "8.7.0",
- "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz",
- "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==",
- "dev": true,
- "dependencies": {
- "lodash": "^4.7.0",
- "tr46": "^2.1.0",
- "webidl-conversions": "^6.1.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/which": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
- "dev": true,
- "dependencies": {
- "isexe": "^2.0.0"
- },
- "bin": {
- "node-which": "bin/node-which"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/wrap-ansi": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
- "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
- }
- },
- "node_modules/wrappy": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
- "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
- "dev": true
- },
- "node_modules/write-file-atomic": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz",
- "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==",
- "dev": true,
- "dependencies": {
- "imurmurhash": "^0.1.4",
- "is-typedarray": "^1.0.0",
- "signal-exit": "^3.0.2",
- "typedarray-to-buffer": "^3.1.5"
- }
- },
- "node_modules/ws": {
- "version": "7.5.9",
- "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz",
- "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==",
- "dev": true,
- "engines": {
- "node": ">=8.3.0"
- },
- "peerDependencies": {
- "bufferutil": "^4.0.1",
- "utf-8-validate": "^5.0.2"
- },
- "peerDependenciesMeta": {
- "bufferutil": {
- "optional": true
- },
- "utf-8-validate": {
- "optional": true
- }
- }
- },
- "node_modules/xml-name-validator": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz",
- "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==",
- "dev": true
- },
- "node_modules/xmlchars": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
- "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==",
- "dev": true
- },
- "node_modules/y18n": {
- "version": "5.0.8",
- "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
- "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
- "dev": true,
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/yallist": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
- "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
- "dev": true
- },
- "node_modules/yargs": {
- "version": "16.2.0",
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
- "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
- "dev": true,
- "dependencies": {
- "cliui": "^7.0.2",
- "escalade": "^3.1.1",
- "get-caller-file": "^2.0.5",
- "require-directory": "^2.1.1",
- "string-width": "^4.2.0",
- "y18n": "^5.0.5",
- "yargs-parser": "^20.2.2"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/yargs-parser": {
- "version": "20.2.9",
- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz",
- "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==",
- "dev": true,
- "engines": {
- "node": ">=10"
- }
- }
- },
- "dependencies": {
- "@ampproject/remapping": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz",
- "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==",
- "dev": true,
- "requires": {
- "@jridgewell/gen-mapping": "^0.3.0",
- "@jridgewell/trace-mapping": "^0.3.9"
- }
- },
- "@babel/code-frame": {
- "version": "7.22.13",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz",
- "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==",
- "dev": true,
- "requires": {
- "@babel/highlight": "^7.22.13",
- "chalk": "^2.4.2"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "dev": true,
- "requires": {
- "color-convert": "^1.9.0"
- }
- },
- "chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
- "dev": true,
- "requires": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
- }
- },
- "color-convert": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
- "dev": true,
- "requires": {
- "color-name": "1.1.3"
- }
- },
- "color-name": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
- "dev": true
- },
- "escape-string-regexp": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
- "dev": true
- },
- "has-flag": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
- "dev": true
- },
- "supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
- "dev": true,
- "requires": {
- "has-flag": "^3.0.0"
- }
- }
- }
- },
- "@babel/compat-data": {
- "version": "7.22.20",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.20.tgz",
- "integrity": "sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==",
- "dev": true
- },
- "@babel/core": {
- "version": "7.23.0",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.0.tgz",
- "integrity": "sha512-97z/ju/Jy1rZmDxybphrBuI+jtJjFVoz7Mr9yUQVVVi+DNZE333uFQeMOqcCIy1x3WYBIbWftUSLmbNXNT7qFQ==",
- "dev": true,
- "requires": {
- "@ampproject/remapping": "^2.2.0",
- "@babel/code-frame": "^7.22.13",
- "@babel/generator": "^7.23.0",
- "@babel/helper-compilation-targets": "^7.22.15",
- "@babel/helper-module-transforms": "^7.23.0",
- "@babel/helpers": "^7.23.0",
- "@babel/parser": "^7.23.0",
- "@babel/template": "^7.22.15",
- "@babel/traverse": "^7.23.0",
- "@babel/types": "^7.23.0",
- "convert-source-map": "^2.0.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.2",
- "json5": "^2.2.3",
- "semver": "^6.3.1"
- },
- "dependencies": {
- "convert-source-map": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
- "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
- "dev": true
- }
- }
- },
- "@babel/generator": {
- "version": "7.23.0",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.0.tgz",
- "integrity": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.23.0",
- "@jridgewell/gen-mapping": "^0.3.2",
- "@jridgewell/trace-mapping": "^0.3.17",
- "jsesc": "^2.5.1"
- }
- },
- "@babel/helper-compilation-targets": {
- "version": "7.22.15",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz",
- "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==",
- "dev": true,
- "requires": {
- "@babel/compat-data": "^7.22.9",
- "@babel/helper-validator-option": "^7.22.15",
- "browserslist": "^4.21.9",
- "lru-cache": "^5.1.1",
- "semver": "^6.3.1"
- }
- },
- "@babel/helper-environment-visitor": {
- "version": "7.22.20",
- "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz",
- "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==",
- "dev": true
- },
- "@babel/helper-function-name": {
- "version": "7.23.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz",
- "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==",
- "dev": true,
- "requires": {
- "@babel/template": "^7.22.15",
- "@babel/types": "^7.23.0"
- }
- },
- "@babel/helper-hoist-variables": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz",
- "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.22.5"
- }
- },
- "@babel/helper-module-imports": {
- "version": "7.22.15",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz",
- "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.22.15"
- }
- },
- "@babel/helper-module-transforms": {
- "version": "7.23.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz",
- "integrity": "sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==",
- "dev": true,
- "requires": {
- "@babel/helper-environment-visitor": "^7.22.20",
- "@babel/helper-module-imports": "^7.22.15",
- "@babel/helper-simple-access": "^7.22.5",
- "@babel/helper-split-export-declaration": "^7.22.6",
- "@babel/helper-validator-identifier": "^7.22.20"
- }
- },
- "@babel/helper-plugin-utils": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz",
- "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==",
- "dev": true
- },
- "@babel/helper-simple-access": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz",
- "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.22.5"
- }
- },
- "@babel/helper-split-export-declaration": {
- "version": "7.22.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz",
- "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.22.5"
- }
- },
- "@babel/helper-string-parser": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz",
- "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==",
- "dev": true
- },
- "@babel/helper-validator-identifier": {
- "version": "7.22.20",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz",
- "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==",
- "dev": true
- },
- "@babel/helper-validator-option": {
- "version": "7.22.15",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz",
- "integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==",
- "dev": true
- },
- "@babel/helpers": {
- "version": "7.23.1",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.1.tgz",
- "integrity": "sha512-chNpneuK18yW5Oxsr+t553UZzzAs3aZnFm4bxhebsNTeshrC95yA7l5yl7GBAG+JG1rF0F7zzD2EixK9mWSDoA==",
- "dev": true,
- "requires": {
- "@babel/template": "^7.22.15",
- "@babel/traverse": "^7.23.0",
- "@babel/types": "^7.23.0"
- }
- },
- "@babel/highlight": {
- "version": "7.22.20",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz",
- "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==",
- "dev": true,
- "requires": {
- "@babel/helper-validator-identifier": "^7.22.20",
- "chalk": "^2.4.2",
- "js-tokens": "^4.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "dev": true,
- "requires": {
- "color-convert": "^1.9.0"
- }
- },
- "chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
- "dev": true,
- "requires": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
- }
- },
- "color-convert": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
- "dev": true,
- "requires": {
- "color-name": "1.1.3"
- }
- },
- "color-name": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
- "dev": true
- },
- "escape-string-regexp": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
- "dev": true
- },
- "has-flag": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
- "dev": true
- },
- "supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
- "dev": true,
- "requires": {
- "has-flag": "^3.0.0"
- }
- }
- }
- },
- "@babel/parser": {
- "version": "7.23.0",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz",
- "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==",
- "dev": true
- },
- "@babel/plugin-syntax-async-generators": {
- "version": "7.8.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
- "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-bigint": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz",
- "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-class-properties": {
- "version": "7.12.13",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz",
- "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.12.13"
- }
- },
- "@babel/plugin-syntax-import-meta": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz",
- "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-syntax-json-strings": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
- "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-logical-assignment-operators": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
- "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-syntax-nullish-coalescing-operator": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
- "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-numeric-separator": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
- "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.10.4"
- }
- },
- "@babel/plugin-syntax-object-rest-spread": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
- "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-optional-catch-binding": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
- "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-optional-chaining": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
- "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.8.0"
- }
- },
- "@babel/plugin-syntax-top-level-await": {
- "version": "7.14.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz",
- "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.14.5"
- }
- },
- "@babel/plugin-syntax-typescript": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz",
- "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.22.5"
- }
- },
- "@babel/template": {
- "version": "7.22.15",
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz",
- "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.22.13",
- "@babel/parser": "^7.22.15",
- "@babel/types": "^7.22.15"
- }
- },
- "@babel/traverse": {
- "version": "7.23.0",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.0.tgz",
- "integrity": "sha512-t/QaEvyIoIkwzpiZ7aoSKK8kObQYeF7T2v+dazAYCb8SXtp58zEVkWW7zAnju8FNKNdr4ScAOEDmMItbyOmEYw==",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.22.13",
- "@babel/generator": "^7.23.0",
- "@babel/helper-environment-visitor": "^7.22.20",
- "@babel/helper-function-name": "^7.23.0",
- "@babel/helper-hoist-variables": "^7.22.5",
- "@babel/helper-split-export-declaration": "^7.22.6",
- "@babel/parser": "^7.23.0",
- "@babel/types": "^7.23.0",
- "debug": "^4.1.0",
- "globals": "^11.1.0"
- }
- },
- "@babel/types": {
- "version": "7.23.0",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.0.tgz",
- "integrity": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==",
- "dev": true,
- "requires": {
- "@babel/helper-string-parser": "^7.22.5",
- "@babel/helper-validator-identifier": "^7.22.20",
- "to-fast-properties": "^2.0.0"
- }
- },
- "@bcoe/v8-coverage": {
- "version": "0.2.3",
- "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
- "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
- "dev": true
- },
- "@istanbuljs/load-nyc-config": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz",
- "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==",
- "dev": true,
- "requires": {
- "camelcase": "^5.3.1",
- "find-up": "^4.1.0",
- "get-package-type": "^0.1.0",
- "js-yaml": "^3.13.1",
- "resolve-from": "^5.0.0"
- }
- },
- "@istanbuljs/schema": {
- "version": "0.1.3",
- "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz",
- "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==",
- "dev": true
- },
- "@jest/console": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz",
- "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==",
- "dev": true,
- "requires": {
- "@jest/types": "^27.5.1",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "jest-message-util": "^27.5.1",
- "jest-util": "^27.5.1",
- "slash": "^3.0.0"
- }
- },
- "@jest/core": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz",
- "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==",
- "dev": true,
- "requires": {
- "@jest/console": "^27.5.1",
- "@jest/reporters": "^27.5.1",
- "@jest/test-result": "^27.5.1",
- "@jest/transform": "^27.5.1",
- "@jest/types": "^27.5.1",
- "@types/node": "*",
- "ansi-escapes": "^4.2.1",
- "chalk": "^4.0.0",
- "emittery": "^0.8.1",
- "exit": "^0.1.2",
- "graceful-fs": "^4.2.9",
- "jest-changed-files": "^27.5.1",
- "jest-config": "^27.5.1",
- "jest-haste-map": "^27.5.1",
- "jest-message-util": "^27.5.1",
- "jest-regex-util": "^27.5.1",
- "jest-resolve": "^27.5.1",
- "jest-resolve-dependencies": "^27.5.1",
- "jest-runner": "^27.5.1",
- "jest-runtime": "^27.5.1",
- "jest-snapshot": "^27.5.1",
- "jest-util": "^27.5.1",
- "jest-validate": "^27.5.1",
- "jest-watcher": "^27.5.1",
- "micromatch": "^4.0.4",
- "rimraf": "^3.0.0",
- "slash": "^3.0.0",
- "strip-ansi": "^6.0.0"
- }
- },
- "@jest/environment": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz",
- "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==",
- "dev": true,
- "requires": {
- "@jest/fake-timers": "^27.5.1",
- "@jest/types": "^27.5.1",
- "@types/node": "*",
- "jest-mock": "^27.5.1"
- }
- },
- "@jest/fake-timers": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz",
- "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==",
- "dev": true,
- "requires": {
- "@jest/types": "^27.5.1",
- "@sinonjs/fake-timers": "^8.0.1",
- "@types/node": "*",
- "jest-message-util": "^27.5.1",
- "jest-mock": "^27.5.1",
- "jest-util": "^27.5.1"
- }
- },
- "@jest/globals": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz",
- "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==",
- "dev": true,
- "requires": {
- "@jest/environment": "^27.5.1",
- "@jest/types": "^27.5.1",
- "expect": "^27.5.1"
- }
- },
- "@jest/reporters": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz",
- "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==",
- "dev": true,
- "requires": {
- "@bcoe/v8-coverage": "^0.2.3",
- "@jest/console": "^27.5.1",
- "@jest/test-result": "^27.5.1",
- "@jest/transform": "^27.5.1",
- "@jest/types": "^27.5.1",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "collect-v8-coverage": "^1.0.0",
- "exit": "^0.1.2",
- "glob": "^7.1.2",
- "graceful-fs": "^4.2.9",
- "istanbul-lib-coverage": "^3.0.0",
- "istanbul-lib-instrument": "^5.1.0",
- "istanbul-lib-report": "^3.0.0",
- "istanbul-lib-source-maps": "^4.0.0",
- "istanbul-reports": "^3.1.3",
- "jest-haste-map": "^27.5.1",
- "jest-resolve": "^27.5.1",
- "jest-util": "^27.5.1",
- "jest-worker": "^27.5.1",
- "slash": "^3.0.0",
- "source-map": "^0.6.0",
- "string-length": "^4.0.1",
- "terminal-link": "^2.0.0",
- "v8-to-istanbul": "^8.1.0"
- }
- },
- "@jest/source-map": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz",
- "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==",
- "dev": true,
- "requires": {
- "callsites": "^3.0.0",
- "graceful-fs": "^4.2.9",
- "source-map": "^0.6.0"
- }
- },
- "@jest/test-result": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz",
- "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==",
- "dev": true,
- "requires": {
- "@jest/console": "^27.5.1",
- "@jest/types": "^27.5.1",
- "@types/istanbul-lib-coverage": "^2.0.0",
- "collect-v8-coverage": "^1.0.0"
- }
- },
- "@jest/test-sequencer": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz",
- "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==",
- "dev": true,
- "requires": {
- "@jest/test-result": "^27.5.1",
- "graceful-fs": "^4.2.9",
- "jest-haste-map": "^27.5.1",
- "jest-runtime": "^27.5.1"
- }
- },
- "@jest/transform": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz",
- "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==",
- "dev": true,
- "requires": {
- "@babel/core": "^7.1.0",
- "@jest/types": "^27.5.1",
- "babel-plugin-istanbul": "^6.1.1",
- "chalk": "^4.0.0",
- "convert-source-map": "^1.4.0",
- "fast-json-stable-stringify": "^2.0.0",
- "graceful-fs": "^4.2.9",
- "jest-haste-map": "^27.5.1",
- "jest-regex-util": "^27.5.1",
- "jest-util": "^27.5.1",
- "micromatch": "^4.0.4",
- "pirates": "^4.0.4",
- "slash": "^3.0.0",
- "source-map": "^0.6.1",
- "write-file-atomic": "^3.0.0"
- }
- },
- "@jest/types": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz",
- "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==",
- "dev": true,
- "requires": {
- "@types/istanbul-lib-coverage": "^2.0.0",
- "@types/istanbul-reports": "^3.0.0",
- "@types/node": "*",
- "@types/yargs": "^16.0.0",
- "chalk": "^4.0.0"
- }
- },
- "@jridgewell/gen-mapping": {
- "version": "0.3.3",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz",
- "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==",
- "dev": true,
- "requires": {
- "@jridgewell/set-array": "^1.0.1",
- "@jridgewell/sourcemap-codec": "^1.4.10",
- "@jridgewell/trace-mapping": "^0.3.9"
- }
- },
- "@jridgewell/resolve-uri": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz",
- "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==",
- "dev": true
- },
- "@jridgewell/set-array": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz",
- "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==",
- "dev": true
- },
- "@jridgewell/sourcemap-codec": {
- "version": "1.4.15",
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
- "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==",
- "dev": true
- },
- "@jridgewell/trace-mapping": {
- "version": "0.3.19",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz",
- "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==",
- "dev": true,
- "requires": {
- "@jridgewell/resolve-uri": "^3.1.0",
- "@jridgewell/sourcemap-codec": "^1.4.14"
- }
- },
- "@sinonjs/commons": {
- "version": "1.8.6",
- "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz",
- "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==",
- "dev": true,
- "requires": {
- "type-detect": "4.0.8"
- }
- },
- "@sinonjs/fake-timers": {
- "version": "8.1.0",
- "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz",
- "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==",
- "dev": true,
- "requires": {
- "@sinonjs/commons": "^1.7.0"
- }
- },
- "@tootallnate/once": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz",
- "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==",
- "dev": true
- },
- "@types/babel__core": {
- "version": "7.20.2",
- "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.2.tgz",
- "integrity": "sha512-pNpr1T1xLUc2l3xJKuPtsEky3ybxN3m4fJkknfIpTCTfIZCDW57oAg+EfCgIIp2rvCe0Wn++/FfodDS4YXxBwA==",
- "dev": true,
- "requires": {
- "@babel/parser": "^7.20.7",
- "@babel/types": "^7.20.7",
- "@types/babel__generator": "*",
- "@types/babel__template": "*",
- "@types/babel__traverse": "*"
- }
- },
- "@types/babel__generator": {
- "version": "7.6.5",
- "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.5.tgz",
- "integrity": "sha512-h9yIuWbJKdOPLJTbmSpPzkF67e659PbQDba7ifWm5BJ8xTv+sDmS7rFmywkWOvXedGTivCdeGSIIX8WLcRTz8w==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.0.0"
- }
- },
- "@types/babel__template": {
- "version": "7.4.2",
- "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.2.tgz",
- "integrity": "sha512-/AVzPICMhMOMYoSx9MoKpGDKdBRsIXMNByh1PXSZoa+v6ZoLa8xxtsT/uLQ/NJm0XVAWl/BvId4MlDeXJaeIZQ==",
- "dev": true,
- "requires": {
- "@babel/parser": "^7.1.0",
- "@babel/types": "^7.0.0"
- }
- },
- "@types/babel__traverse": {
- "version": "7.20.2",
- "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.2.tgz",
- "integrity": "sha512-ojlGK1Hsfce93J0+kn3H5R73elidKUaZonirN33GSmgTUMpzI/MIFfSpF3haANe3G1bEBS9/9/QEqwTzwqFsKw==",
- "dev": true,
- "requires": {
- "@babel/types": "^7.20.7"
- }
- },
- "@types/graceful-fs": {
- "version": "4.1.7",
- "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.7.tgz",
- "integrity": "sha512-MhzcwU8aUygZroVwL2jeYk6JisJrPl/oov/gsgGCue9mkgl9wjGbzReYQClxiUgFDnib9FuHqTndccKeZKxTRw==",
- "dev": true,
- "requires": {
- "@types/node": "*"
- }
- },
- "@types/istanbul-lib-coverage": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz",
- "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==",
- "dev": true
- },
- "@types/istanbul-lib-report": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz",
- "integrity": "sha512-gPQuzaPR5h/djlAv2apEG1HVOyj1IUs7GpfMZixU0/0KXT3pm64ylHuMUI1/Akh+sq/iikxg6Z2j+fcMDXaaTQ==",
- "dev": true,
- "requires": {
- "@types/istanbul-lib-coverage": "*"
- }
- },
- "@types/istanbul-reports": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.2.tgz",
- "integrity": "sha512-kv43F9eb3Lhj+lr/Hn6OcLCs/sSM8bt+fIaP11rCYngfV6NVjzWXJ17owQtDQTL9tQ8WSLUrGsSJ6rJz0F1w1A==",
- "dev": true,
- "requires": {
- "@types/istanbul-lib-report": "*"
- }
- },
- "@types/node": {
- "version": "20.8.2",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.2.tgz",
- "integrity": "sha512-Vvycsc9FQdwhxE3y3DzeIxuEJbWGDsnrxvMADzTDF/lcdR9/K+AQIeAghTQsHtotg/q0j3WEOYS/jQgSdWue3w==",
- "dev": true
- },
- "@types/prettier": {
- "version": "2.7.3",
- "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz",
- "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==",
- "dev": true
- },
- "@types/stack-utils": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz",
- "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==",
- "dev": true
- },
- "@types/yargs": {
- "version": "16.0.6",
- "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.6.tgz",
- "integrity": "sha512-oTP7/Q13GSPrgcwEwdlnkoZSQ1Hg9THe644qq8PG6hhJzjZ3qj1JjEFPIwWV/IXVs5XGIVqtkNOS9kh63WIJ+A==",
- "dev": true,
- "requires": {
- "@types/yargs-parser": "*"
- }
- },
- "@types/yargs-parser": {
- "version": "21.0.1",
- "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.1.tgz",
- "integrity": "sha512-axdPBuLuEJt0c4yI5OZssC19K2Mq1uKdrfZBzuxLvaztgqUtFYZUNw7lETExPYJR9jdEoIg4mb7RQKRQzOkeGQ==",
- "dev": true
- },
- "abab": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz",
- "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==",
- "dev": true
- },
- "acorn": {
- "version": "8.10.0",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz",
- "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==",
- "dev": true
- },
- "acorn-globals": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz",
- "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==",
- "dev": true,
- "requires": {
- "acorn": "^7.1.1",
- "acorn-walk": "^7.1.1"
- },
- "dependencies": {
- "acorn": {
- "version": "7.4.1",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
- "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
- "dev": true
- }
- }
- },
- "acorn-walk": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz",
- "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==",
- "dev": true
- },
- "agent-base": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
- "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
- "dev": true,
- "requires": {
- "debug": "4"
- }
- },
- "ansi-escapes": {
- "version": "4.3.2",
- "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
- "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
- "dev": true,
- "requires": {
- "type-fest": "^0.21.3"
- }
- },
- "ansi-regex": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
- "dev": true
- },
- "ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "requires": {
- "color-convert": "^2.0.1"
- }
- },
- "anymatch": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
- "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
- "dev": true,
- "requires": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- }
- },
- "argparse": {
- "version": "1.0.10",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
- "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
- "dev": true,
- "requires": {
- "sprintf-js": "~1.0.2"
- }
- },
- "asynckit": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
- "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
- "dev": true
- },
- "babel-jest": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz",
- "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==",
- "dev": true,
- "requires": {
- "@jest/transform": "^27.5.1",
- "@jest/types": "^27.5.1",
- "@types/babel__core": "^7.1.14",
- "babel-plugin-istanbul": "^6.1.1",
- "babel-preset-jest": "^27.5.1",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.9",
- "slash": "^3.0.0"
- }
- },
- "babel-plugin-istanbul": {
- "version": "6.1.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz",
- "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==",
- "dev": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.0.0",
- "@istanbuljs/load-nyc-config": "^1.0.0",
- "@istanbuljs/schema": "^0.1.2",
- "istanbul-lib-instrument": "^5.0.4",
- "test-exclude": "^6.0.0"
- }
- },
- "babel-plugin-jest-hoist": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz",
- "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==",
- "dev": true,
- "requires": {
- "@babel/template": "^7.3.3",
- "@babel/types": "^7.3.3",
- "@types/babel__core": "^7.0.0",
- "@types/babel__traverse": "^7.0.6"
- }
- },
- "babel-preset-current-node-syntax": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz",
- "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==",
- "dev": true,
- "requires": {
- "@babel/plugin-syntax-async-generators": "^7.8.4",
- "@babel/plugin-syntax-bigint": "^7.8.3",
- "@babel/plugin-syntax-class-properties": "^7.8.3",
- "@babel/plugin-syntax-import-meta": "^7.8.3",
- "@babel/plugin-syntax-json-strings": "^7.8.3",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
- "@babel/plugin-syntax-numeric-separator": "^7.8.3",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
- "@babel/plugin-syntax-optional-chaining": "^7.8.3",
- "@babel/plugin-syntax-top-level-await": "^7.8.3"
- }
- },
- "babel-preset-jest": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz",
- "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==",
- "dev": true,
- "requires": {
- "babel-plugin-jest-hoist": "^27.5.1",
- "babel-preset-current-node-syntax": "^1.0.0"
- }
- },
- "balanced-match": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
- "dev": true
- },
- "brace-expansion": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "dev": true,
- "requires": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "braces": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
- "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
- "dev": true,
- "requires": {
- "fill-range": "^7.0.1"
- }
- },
- "browser-process-hrtime": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz",
- "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==",
- "dev": true
- },
- "browserslist": {
- "version": "4.22.1",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz",
- "integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==",
- "dev": true,
- "requires": {
- "caniuse-lite": "^1.0.30001541",
- "electron-to-chromium": "^1.4.535",
- "node-releases": "^2.0.13",
- "update-browserslist-db": "^1.0.13"
- }
- },
- "bser": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz",
- "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==",
- "dev": true,
- "requires": {
- "node-int64": "^0.4.0"
- }
- },
- "buffer-from": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
- "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
- "dev": true
- },
- "callsites": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
- "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
- "dev": true
- },
- "camelcase": {
- "version": "5.3.1",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
- "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
- "dev": true
- },
- "caniuse-lite": {
- "version": "1.0.30001546",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001546.tgz",
- "integrity": "sha512-zvtSJwuQFpewSyRrI3AsftF6rM0X80mZkChIt1spBGEvRglCrjTniXvinc8JKRoqTwXAgvqTImaN9igfSMtUBw==",
- "dev": true
- },
- "chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "char-regex": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz",
- "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==",
- "dev": true
- },
- "ci-info": {
- "version": "3.9.0",
- "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
- "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
- "dev": true
- },
- "cjs-module-lexer": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz",
- "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==",
- "dev": true
- },
- "cliui": {
- "version": "7.0.4",
- "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
- "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
- "dev": true,
- "requires": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.0",
- "wrap-ansi": "^7.0.0"
- }
- },
- "co": {
- "version": "4.6.0",
- "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
- "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==",
- "dev": true
- },
- "collect-v8-coverage": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz",
- "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==",
- "dev": true
- },
- "color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "requires": {
- "color-name": "~1.1.4"
- }
- },
- "color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "combined-stream": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
- "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
- "dev": true,
- "requires": {
- "delayed-stream": "~1.0.0"
- }
- },
- "concat-map": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
- "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
- "dev": true
- },
- "convert-source-map": {
- "version": "1.9.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
- "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
- "dev": true
- },
- "cross-spawn": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
- "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
- "dev": true,
- "requires": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- }
- },
- "cssom": {
- "version": "0.4.4",
- "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz",
- "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==",
- "dev": true
- },
- "cssstyle": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz",
- "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==",
- "dev": true,
- "requires": {
- "cssom": "~0.3.6"
- },
- "dependencies": {
- "cssom": {
- "version": "0.3.8",
- "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz",
- "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==",
- "dev": true
- }
- }
- },
- "data-urls": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz",
- "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==",
- "dev": true,
- "requires": {
- "abab": "^2.0.3",
- "whatwg-mimetype": "^2.3.0",
- "whatwg-url": "^8.0.0"
- }
- },
- "debug": {
- "version": "4.3.4",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
- "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
- "dev": true,
- "requires": {
- "ms": "2.1.2"
- }
- },
- "decimal.js": {
- "version": "10.4.3",
- "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz",
- "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==",
- "dev": true
- },
- "dedent": {
- "version": "0.7.0",
- "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz",
- "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==",
- "dev": true
- },
- "deepmerge": {
- "version": "4.3.1",
- "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
- "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
- "dev": true
- },
- "delayed-stream": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
- "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
- "dev": true
- },
- "detect-newline": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz",
- "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==",
- "dev": true
- },
- "diff-sequences": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz",
- "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==",
- "dev": true
- },
- "domexception": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz",
- "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==",
- "dev": true,
- "requires": {
- "webidl-conversions": "^5.0.0"
- },
- "dependencies": {
- "webidl-conversions": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz",
- "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==",
- "dev": true
- }
- }
- },
- "electron-to-chromium": {
- "version": "1.4.543",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.543.tgz",
- "integrity": "sha512-t2ZP4AcGE0iKCCQCBx/K2426crYdxD3YU6l0uK2EO3FZH0pbC4pFz/sZm2ruZsND6hQBTcDWWlo/MLpiOdif5g==",
- "dev": true
- },
- "emittery": {
- "version": "0.8.1",
- "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz",
- "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==",
- "dev": true
- },
- "emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
- "dev": true
- },
- "error-ex": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
- "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
- "dev": true,
- "requires": {
- "is-arrayish": "^0.2.1"
- }
- },
- "escalade": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
- "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
- "dev": true
- },
- "escape-string-regexp": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
- "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==",
- "dev": true
- },
- "escodegen": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz",
- "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==",
- "dev": true,
- "requires": {
- "esprima": "^4.0.1",
- "estraverse": "^5.2.0",
- "esutils": "^2.0.2",
- "source-map": "~0.6.1"
- }
- },
- "esprima": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
- "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
- "dev": true
- },
- "estraverse": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
- "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
- "dev": true
- },
- "esutils": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
- "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
- "dev": true
- },
- "execa": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
- "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
- "dev": true,
- "requires": {
- "cross-spawn": "^7.0.3",
- "get-stream": "^6.0.0",
- "human-signals": "^2.1.0",
- "is-stream": "^2.0.0",
- "merge-stream": "^2.0.0",
- "npm-run-path": "^4.0.1",
- "onetime": "^5.1.2",
- "signal-exit": "^3.0.3",
- "strip-final-newline": "^2.0.0"
- }
- },
- "exit": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz",
- "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==",
- "dev": true
- },
- "expect": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz",
- "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==",
- "dev": true,
- "requires": {
- "@jest/types": "^27.5.1",
- "jest-get-type": "^27.5.1",
- "jest-matcher-utils": "^27.5.1",
- "jest-message-util": "^27.5.1"
- }
- },
- "fast-json-stable-stringify": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
- "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
- "dev": true
- },
- "fb-watchman": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz",
- "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==",
- "dev": true,
- "requires": {
- "bser": "2.1.1"
- }
- },
- "fill-range": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
- "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
- "dev": true,
- "requires": {
- "to-regex-range": "^5.0.1"
- }
- },
- "find-up": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
- "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
- "dev": true,
- "requires": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
- }
- },
- "form-data": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz",
- "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==",
- "dev": true,
- "requires": {
- "asynckit": "^0.4.0",
- "combined-stream": "^1.0.8",
- "mime-types": "^2.1.12"
- }
- },
- "fs.realpath": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
- "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
- "dev": true
- },
- "fsevents": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
- "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
- "dev": true,
- "optional": true
- },
- "gensync": {
- "version": "1.0.0-beta.2",
- "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
- "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
- "dev": true
- },
- "get-caller-file": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
- "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
- "dev": true
- },
- "get-package-type": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz",
- "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==",
- "dev": true
- },
- "get-stream": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
- "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
- "dev": true
- },
- "glob": {
- "version": "7.2.3",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
- "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
- "dev": true,
- "requires": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.1.1",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
- }
- },
- "globals": {
- "version": "11.12.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
- "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
- "dev": true
- },
- "graceful-fs": {
- "version": "4.2.11",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
- "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
- "dev": true
- },
- "has": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz",
- "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==",
- "dev": true
- },
- "has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true
- },
- "html-encoding-sniffer": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz",
- "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==",
- "dev": true,
- "requires": {
- "whatwg-encoding": "^1.0.5"
- }
- },
- "html-escaper": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
- "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==",
- "dev": true
- },
- "http-proxy-agent": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz",
- "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==",
- "dev": true,
- "requires": {
- "@tootallnate/once": "1",
- "agent-base": "6",
- "debug": "4"
- }
- },
- "https-proxy-agent": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
- "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
- "dev": true,
- "requires": {
- "agent-base": "6",
- "debug": "4"
- }
- },
- "human-signals": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
- "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
- "dev": true
- },
- "iconv-lite": {
- "version": "0.4.24",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
- "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
- "dev": true,
- "requires": {
- "safer-buffer": ">= 2.1.2 < 3"
- }
- },
- "import-local": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz",
- "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==",
- "dev": true,
- "requires": {
- "pkg-dir": "^4.2.0",
- "resolve-cwd": "^3.0.0"
- }
- },
- "imurmurhash": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
- "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
- "dev": true
- },
- "inflight": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
- "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
- "dev": true,
- "requires": {
- "once": "^1.3.0",
- "wrappy": "1"
- }
- },
- "inherits": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
- "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
- "dev": true
- },
- "is-arrayish": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
- "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
- "dev": true
- },
- "is-core-module": {
- "version": "2.13.0",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz",
- "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==",
- "dev": true,
- "requires": {
- "has": "^1.0.3"
- }
- },
- "is-fullwidth-code-point": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
- "dev": true
- },
- "is-generator-fn": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz",
- "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==",
- "dev": true
- },
- "is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
- "dev": true
- },
- "is-potential-custom-element-name": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
- "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==",
- "dev": true
- },
- "is-stream": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
- "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
- "dev": true
- },
- "is-typedarray": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
- "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==",
- "dev": true
- },
- "isexe": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
- "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
- "dev": true
- },
- "istanbul-lib-coverage": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz",
- "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==",
- "dev": true
- },
- "istanbul-lib-instrument": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz",
- "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==",
- "dev": true,
- "requires": {
- "@babel/core": "^7.12.3",
- "@babel/parser": "^7.14.7",
- "@istanbuljs/schema": "^0.1.2",
- "istanbul-lib-coverage": "^3.2.0",
- "semver": "^6.3.0"
- }
- },
- "istanbul-lib-report": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz",
- "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==",
- "dev": true,
- "requires": {
- "istanbul-lib-coverage": "^3.0.0",
- "make-dir": "^4.0.0",
- "supports-color": "^7.1.0"
- }
- },
- "istanbul-lib-source-maps": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz",
- "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==",
- "dev": true,
- "requires": {
- "debug": "^4.1.1",
- "istanbul-lib-coverage": "^3.0.0",
- "source-map": "^0.6.1"
- }
- },
- "istanbul-reports": {
- "version": "3.1.6",
- "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz",
- "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==",
- "dev": true,
- "requires": {
- "html-escaper": "^2.0.0",
- "istanbul-lib-report": "^3.0.0"
- }
- },
- "jest": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz",
- "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==",
- "dev": true,
- "requires": {
- "@jest/core": "^27.5.1",
- "import-local": "^3.0.2",
- "jest-cli": "^27.5.1"
- }
- },
- "jest-changed-files": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz",
- "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==",
- "dev": true,
- "requires": {
- "@jest/types": "^27.5.1",
- "execa": "^5.0.0",
- "throat": "^6.0.1"
- }
- },
- "jest-circus": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz",
- "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==",
- "dev": true,
- "requires": {
- "@jest/environment": "^27.5.1",
- "@jest/test-result": "^27.5.1",
- "@jest/types": "^27.5.1",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "co": "^4.6.0",
- "dedent": "^0.7.0",
- "expect": "^27.5.1",
- "is-generator-fn": "^2.0.0",
- "jest-each": "^27.5.1",
- "jest-matcher-utils": "^27.5.1",
- "jest-message-util": "^27.5.1",
- "jest-runtime": "^27.5.1",
- "jest-snapshot": "^27.5.1",
- "jest-util": "^27.5.1",
- "pretty-format": "^27.5.1",
- "slash": "^3.0.0",
- "stack-utils": "^2.0.3",
- "throat": "^6.0.1"
- }
- },
- "jest-cli": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz",
- "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==",
- "dev": true,
- "requires": {
- "@jest/core": "^27.5.1",
- "@jest/test-result": "^27.5.1",
- "@jest/types": "^27.5.1",
- "chalk": "^4.0.0",
- "exit": "^0.1.2",
- "graceful-fs": "^4.2.9",
- "import-local": "^3.0.2",
- "jest-config": "^27.5.1",
- "jest-util": "^27.5.1",
- "jest-validate": "^27.5.1",
- "prompts": "^2.0.1",
- "yargs": "^16.2.0"
- }
- },
- "jest-config": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz",
- "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==",
- "dev": true,
- "requires": {
- "@babel/core": "^7.8.0",
- "@jest/test-sequencer": "^27.5.1",
- "@jest/types": "^27.5.1",
- "babel-jest": "^27.5.1",
- "chalk": "^4.0.0",
- "ci-info": "^3.2.0",
- "deepmerge": "^4.2.2",
- "glob": "^7.1.1",
- "graceful-fs": "^4.2.9",
- "jest-circus": "^27.5.1",
- "jest-environment-jsdom": "^27.5.1",
- "jest-environment-node": "^27.5.1",
- "jest-get-type": "^27.5.1",
- "jest-jasmine2": "^27.5.1",
- "jest-regex-util": "^27.5.1",
- "jest-resolve": "^27.5.1",
- "jest-runner": "^27.5.1",
- "jest-util": "^27.5.1",
- "jest-validate": "^27.5.1",
- "micromatch": "^4.0.4",
- "parse-json": "^5.2.0",
- "pretty-format": "^27.5.1",
- "slash": "^3.0.0",
- "strip-json-comments": "^3.1.1"
- }
- },
- "jest-diff": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz",
- "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==",
- "dev": true,
- "requires": {
- "chalk": "^4.0.0",
- "diff-sequences": "^27.5.1",
- "jest-get-type": "^27.5.1",
- "pretty-format": "^27.5.1"
- }
- },
- "jest-docblock": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz",
- "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==",
- "dev": true,
- "requires": {
- "detect-newline": "^3.0.0"
- }
- },
- "jest-each": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz",
- "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==",
- "dev": true,
- "requires": {
- "@jest/types": "^27.5.1",
- "chalk": "^4.0.0",
- "jest-get-type": "^27.5.1",
- "jest-util": "^27.5.1",
- "pretty-format": "^27.5.1"
- }
- },
- "jest-environment-jsdom": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz",
- "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==",
- "dev": true,
- "requires": {
- "@jest/environment": "^27.5.1",
- "@jest/fake-timers": "^27.5.1",
- "@jest/types": "^27.5.1",
- "@types/node": "*",
- "jest-mock": "^27.5.1",
- "jest-util": "^27.5.1",
- "jsdom": "^16.6.0"
- }
- },
- "jest-environment-node": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz",
- "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==",
- "dev": true,
- "requires": {
- "@jest/environment": "^27.5.1",
- "@jest/fake-timers": "^27.5.1",
- "@jest/types": "^27.5.1",
- "@types/node": "*",
- "jest-mock": "^27.5.1",
- "jest-util": "^27.5.1"
- }
- },
- "jest-get-type": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz",
- "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==",
- "dev": true
- },
- "jest-haste-map": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz",
- "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==",
- "dev": true,
- "requires": {
- "@jest/types": "^27.5.1",
- "@types/graceful-fs": "^4.1.2",
- "@types/node": "*",
- "anymatch": "^3.0.3",
- "fb-watchman": "^2.0.0",
- "fsevents": "^2.3.2",
- "graceful-fs": "^4.2.9",
- "jest-regex-util": "^27.5.1",
- "jest-serializer": "^27.5.1",
- "jest-util": "^27.5.1",
- "jest-worker": "^27.5.1",
- "micromatch": "^4.0.4",
- "walker": "^1.0.7"
- }
- },
- "jest-jasmine2": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz",
- "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==",
- "dev": true,
- "requires": {
- "@jest/environment": "^27.5.1",
- "@jest/source-map": "^27.5.1",
- "@jest/test-result": "^27.5.1",
- "@jest/types": "^27.5.1",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "co": "^4.6.0",
- "expect": "^27.5.1",
- "is-generator-fn": "^2.0.0",
- "jest-each": "^27.5.1",
- "jest-matcher-utils": "^27.5.1",
- "jest-message-util": "^27.5.1",
- "jest-runtime": "^27.5.1",
- "jest-snapshot": "^27.5.1",
- "jest-util": "^27.5.1",
- "pretty-format": "^27.5.1",
- "throat": "^6.0.1"
- }
- },
- "jest-leak-detector": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz",
- "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==",
- "dev": true,
- "requires": {
- "jest-get-type": "^27.5.1",
- "pretty-format": "^27.5.1"
- }
- },
- "jest-matcher-utils": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz",
- "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==",
- "dev": true,
- "requires": {
- "chalk": "^4.0.0",
- "jest-diff": "^27.5.1",
- "jest-get-type": "^27.5.1",
- "pretty-format": "^27.5.1"
- }
- },
- "jest-message-util": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz",
- "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.12.13",
- "@jest/types": "^27.5.1",
- "@types/stack-utils": "^2.0.0",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.9",
- "micromatch": "^4.0.4",
- "pretty-format": "^27.5.1",
- "slash": "^3.0.0",
- "stack-utils": "^2.0.3"
- }
- },
- "jest-mock": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz",
- "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==",
- "dev": true,
- "requires": {
- "@jest/types": "^27.5.1",
- "@types/node": "*"
- }
- },
- "jest-pnp-resolver": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz",
- "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==",
- "dev": true,
- "requires": {}
- },
- "jest-regex-util": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz",
- "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==",
- "dev": true
- },
- "jest-resolve": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz",
- "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==",
- "dev": true,
- "requires": {
- "@jest/types": "^27.5.1",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.9",
- "jest-haste-map": "^27.5.1",
- "jest-pnp-resolver": "^1.2.2",
- "jest-util": "^27.5.1",
- "jest-validate": "^27.5.1",
- "resolve": "^1.20.0",
- "resolve.exports": "^1.1.0",
- "slash": "^3.0.0"
- }
- },
- "jest-resolve-dependencies": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz",
- "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==",
- "dev": true,
- "requires": {
- "@jest/types": "^27.5.1",
- "jest-regex-util": "^27.5.1",
- "jest-snapshot": "^27.5.1"
- }
- },
- "jest-runner": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz",
- "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==",
- "dev": true,
- "requires": {
- "@jest/console": "^27.5.1",
- "@jest/environment": "^27.5.1",
- "@jest/test-result": "^27.5.1",
- "@jest/transform": "^27.5.1",
- "@jest/types": "^27.5.1",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "emittery": "^0.8.1",
- "graceful-fs": "^4.2.9",
- "jest-docblock": "^27.5.1",
- "jest-environment-jsdom": "^27.5.1",
- "jest-environment-node": "^27.5.1",
- "jest-haste-map": "^27.5.1",
- "jest-leak-detector": "^27.5.1",
- "jest-message-util": "^27.5.1",
- "jest-resolve": "^27.5.1",
- "jest-runtime": "^27.5.1",
- "jest-util": "^27.5.1",
- "jest-worker": "^27.5.1",
- "source-map-support": "^0.5.6",
- "throat": "^6.0.1"
- }
- },
- "jest-runtime": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz",
- "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==",
- "dev": true,
- "requires": {
- "@jest/environment": "^27.5.1",
- "@jest/fake-timers": "^27.5.1",
- "@jest/globals": "^27.5.1",
- "@jest/source-map": "^27.5.1",
- "@jest/test-result": "^27.5.1",
- "@jest/transform": "^27.5.1",
- "@jest/types": "^27.5.1",
- "chalk": "^4.0.0",
- "cjs-module-lexer": "^1.0.0",
- "collect-v8-coverage": "^1.0.0",
- "execa": "^5.0.0",
- "glob": "^7.1.3",
- "graceful-fs": "^4.2.9",
- "jest-haste-map": "^27.5.1",
- "jest-message-util": "^27.5.1",
- "jest-mock": "^27.5.1",
- "jest-regex-util": "^27.5.1",
- "jest-resolve": "^27.5.1",
- "jest-snapshot": "^27.5.1",
- "jest-util": "^27.5.1",
- "slash": "^3.0.0",
- "strip-bom": "^4.0.0"
- }
- },
- "jest-serializer": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz",
- "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==",
- "dev": true,
- "requires": {
- "@types/node": "*",
- "graceful-fs": "^4.2.9"
- }
- },
- "jest-snapshot": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz",
- "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==",
- "dev": true,
- "requires": {
- "@babel/core": "^7.7.2",
- "@babel/generator": "^7.7.2",
- "@babel/plugin-syntax-typescript": "^7.7.2",
- "@babel/traverse": "^7.7.2",
- "@babel/types": "^7.0.0",
- "@jest/transform": "^27.5.1",
- "@jest/types": "^27.5.1",
- "@types/babel__traverse": "^7.0.4",
- "@types/prettier": "^2.1.5",
- "babel-preset-current-node-syntax": "^1.0.0",
- "chalk": "^4.0.0",
- "expect": "^27.5.1",
- "graceful-fs": "^4.2.9",
- "jest-diff": "^27.5.1",
- "jest-get-type": "^27.5.1",
- "jest-haste-map": "^27.5.1",
- "jest-matcher-utils": "^27.5.1",
- "jest-message-util": "^27.5.1",
- "jest-util": "^27.5.1",
- "natural-compare": "^1.4.0",
- "pretty-format": "^27.5.1",
- "semver": "^7.3.2"
- },
- "dependencies": {
- "lru-cache": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
- "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
- "dev": true,
- "requires": {
- "yallist": "^4.0.0"
- }
- },
- "semver": {
- "version": "7.5.4",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
- "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
- "dev": true,
- "requires": {
- "lru-cache": "^6.0.0"
- }
- },
- "yallist": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
- "dev": true
- }
- }
- },
- "jest-util": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz",
- "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==",
- "dev": true,
- "requires": {
- "@jest/types": "^27.5.1",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "ci-info": "^3.2.0",
- "graceful-fs": "^4.2.9",
- "picomatch": "^2.2.3"
- }
- },
- "jest-validate": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz",
- "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==",
- "dev": true,
- "requires": {
- "@jest/types": "^27.5.1",
- "camelcase": "^6.2.0",
- "chalk": "^4.0.0",
- "jest-get-type": "^27.5.1",
- "leven": "^3.1.0",
- "pretty-format": "^27.5.1"
- },
- "dependencies": {
- "camelcase": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
- "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
- "dev": true
- }
- }
- },
- "jest-watcher": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz",
- "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==",
- "dev": true,
- "requires": {
- "@jest/test-result": "^27.5.1",
- "@jest/types": "^27.5.1",
- "@types/node": "*",
- "ansi-escapes": "^4.2.1",
- "chalk": "^4.0.0",
- "jest-util": "^27.5.1",
- "string-length": "^4.0.1"
- }
- },
- "jest-worker": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz",
- "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
- "dev": true,
- "requires": {
- "@types/node": "*",
- "merge-stream": "^2.0.0",
- "supports-color": "^8.0.0"
- },
- "dependencies": {
- "supports-color": {
- "version": "8.1.1",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
- "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- }
- }
- },
- "js-tokens": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
- "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
- "dev": true
- },
- "js-yaml": {
- "version": "3.14.1",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
- "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
- "dev": true,
- "requires": {
- "argparse": "^1.0.7",
- "esprima": "^4.0.0"
- }
- },
- "jsdom": {
- "version": "16.7.0",
- "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz",
- "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==",
- "dev": true,
- "requires": {
- "abab": "^2.0.5",
- "acorn": "^8.2.4",
- "acorn-globals": "^6.0.0",
- "cssom": "^0.4.4",
- "cssstyle": "^2.3.0",
- "data-urls": "^2.0.0",
- "decimal.js": "^10.2.1",
- "domexception": "^2.0.1",
- "escodegen": "^2.0.0",
- "form-data": "^3.0.0",
- "html-encoding-sniffer": "^2.0.1",
- "http-proxy-agent": "^4.0.1",
- "https-proxy-agent": "^5.0.0",
- "is-potential-custom-element-name": "^1.0.1",
- "nwsapi": "^2.2.0",
- "parse5": "6.0.1",
- "saxes": "^5.0.1",
- "symbol-tree": "^3.2.4",
- "tough-cookie": "^4.0.0",
- "w3c-hr-time": "^1.0.2",
- "w3c-xmlserializer": "^2.0.0",
- "webidl-conversions": "^6.1.0",
- "whatwg-encoding": "^1.0.5",
- "whatwg-mimetype": "^2.3.0",
- "whatwg-url": "^8.5.0",
- "ws": "^7.4.6",
- "xml-name-validator": "^3.0.0"
- }
- },
- "jsesc": {
- "version": "2.5.2",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
- "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==",
- "dev": true
- },
- "json-parse-even-better-errors": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
- "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
- "dev": true
- },
- "json5": {
- "version": "2.2.3",
- "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
- "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
- "dev": true
- },
- "kleur": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
- "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
- "dev": true
- },
- "leven": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz",
- "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==",
- "dev": true
- },
- "lines-and-columns": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
- "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
- "dev": true
- },
- "locate-path": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
- "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
- "dev": true,
- "requires": {
- "p-locate": "^4.1.0"
- }
- },
- "lodash": {
- "version": "4.17.21",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
- "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
- "dev": true
- },
- "lru-cache": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
- "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
- "dev": true,
- "requires": {
- "yallist": "^3.0.2"
- }
- },
- "make-dir": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz",
- "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==",
- "dev": true,
- "requires": {
- "semver": "^7.5.3"
- },
- "dependencies": {
- "lru-cache": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
- "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
- "dev": true,
- "requires": {
- "yallist": "^4.0.0"
- }
- },
- "semver": {
- "version": "7.5.4",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
- "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
- "dev": true,
- "requires": {
- "lru-cache": "^6.0.0"
- }
- },
- "yallist": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
- "dev": true
- }
- }
- },
- "makeerror": {
- "version": "1.0.12",
- "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz",
- "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==",
- "dev": true,
- "requires": {
- "tmpl": "1.0.5"
- }
- },
- "merge-stream": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
- "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
- "dev": true
- },
- "micromatch": {
- "version": "4.0.5",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
- "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
- "dev": true,
- "requires": {
- "braces": "^3.0.2",
- "picomatch": "^2.3.1"
- }
- },
- "mime-db": {
- "version": "1.52.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
- "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
- "dev": true
- },
- "mime-types": {
- "version": "2.1.35",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
- "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
- "dev": true,
- "requires": {
- "mime-db": "1.52.0"
- }
- },
- "mimic-fn": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
- "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
- "dev": true
- },
- "minimatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "dev": true,
- "requires": {
- "brace-expansion": "^1.1.7"
- }
- },
- "ms": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
- "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
- "dev": true
- },
- "natural-compare": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
- "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
- "dev": true
- },
- "node-int64": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz",
- "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==",
- "dev": true
- },
- "node-releases": {
- "version": "2.0.13",
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz",
- "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==",
- "dev": true
- },
- "normalize-path": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
- "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
- "dev": true
- },
- "npm-run-path": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
- "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
- "dev": true,
- "requires": {
- "path-key": "^3.0.0"
- }
- },
- "nwsapi": {
- "version": "2.2.7",
- "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz",
- "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==",
- "dev": true
- },
- "once": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
- "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
- "dev": true,
- "requires": {
- "wrappy": "1"
- }
- },
- "onetime": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
- "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
- "dev": true,
- "requires": {
- "mimic-fn": "^2.1.0"
- }
- },
- "p-limit": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
- "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
- "dev": true,
- "requires": {
- "p-try": "^2.0.0"
- }
- },
- "p-locate": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
- "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
- "dev": true,
- "requires": {
- "p-limit": "^2.2.0"
- }
- },
- "p-try": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
- "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
- "dev": true
- },
- "parse-json": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
- "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- }
- },
- "parse5": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz",
- "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
- "dev": true
- },
- "path-exists": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
- "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
- "dev": true
- },
- "path-is-absolute": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
- "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
- "dev": true
- },
- "path-key": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
- "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
- "dev": true
- },
- "path-parse": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
- "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
- "dev": true
- },
- "picocolors": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
- "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==",
- "dev": true
- },
- "picomatch": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
- "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
- "dev": true
- },
- "pirates": {
- "version": "4.0.6",
- "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz",
- "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==",
- "dev": true
- },
- "pkg-dir": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
- "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
- "dev": true,
- "requires": {
- "find-up": "^4.0.0"
- }
- },
- "pretty-format": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz",
- "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==",
- "dev": true,
- "requires": {
- "ansi-regex": "^5.0.1",
- "ansi-styles": "^5.0.0",
- "react-is": "^17.0.1"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
- "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
- "dev": true
- }
- }
- },
- "prompts": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz",
- "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
- "dev": true,
- "requires": {
- "kleur": "^3.0.3",
- "sisteransi": "^1.0.5"
- }
- },
- "psl": {
- "version": "1.9.0",
- "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz",
- "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==",
- "dev": true
- },
- "punycode": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz",
- "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==",
- "dev": true
- },
- "querystringify": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz",
- "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==",
- "dev": true
- },
- "react-is": {
- "version": "17.0.2",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz",
- "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==",
- "dev": true
- },
- "require-directory": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
- "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
- "dev": true
- },
- "requires-port": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
- "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==",
- "dev": true
- },
- "resolve": {
- "version": "1.22.6",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz",
- "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==",
- "dev": true,
- "requires": {
- "is-core-module": "^2.13.0",
- "path-parse": "^1.0.7",
- "supports-preserve-symlinks-flag": "^1.0.0"
- }
- },
- "resolve-cwd": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz",
- "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==",
- "dev": true,
- "requires": {
- "resolve-from": "^5.0.0"
- }
- },
- "resolve-from": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
- "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
- "dev": true
- },
- "resolve.exports": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz",
- "integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==",
- "dev": true
- },
- "rimraf": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
- "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
- "dev": true,
- "requires": {
- "glob": "^7.1.3"
- }
- },
- "safer-buffer": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
- "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
- "dev": true
- },
- "saxes": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz",
- "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==",
- "dev": true,
- "requires": {
- "xmlchars": "^2.2.0"
- }
- },
- "semver": {
- "version": "6.3.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
- "dev": true
- },
- "shebang-command": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
- "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
- "dev": true,
- "requires": {
- "shebang-regex": "^3.0.0"
- }
- },
- "shebang-regex": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
- "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
- "dev": true
- },
- "signal-exit": {
- "version": "3.0.7",
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
- "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
- "dev": true
- },
- "sisteransi": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
- "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
- "dev": true
- },
- "slash": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
- "dev": true
- },
- "source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
- },
- "source-map-support": {
- "version": "0.5.21",
- "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
- "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
- "dev": true,
- "requires": {
- "buffer-from": "^1.0.0",
- "source-map": "^0.6.0"
- }
- },
- "sprintf-js": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
- "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==",
- "dev": true
- },
- "stack-utils": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz",
- "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==",
- "dev": true,
- "requires": {
- "escape-string-regexp": "^2.0.0"
- }
- },
- "string-length": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz",
- "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==",
- "dev": true,
- "requires": {
- "char-regex": "^1.0.2",
- "strip-ansi": "^6.0.0"
- }
- },
- "string-width": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
- "dev": true,
- "requires": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
- }
- },
- "strip-ansi": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
- "dev": true,
- "requires": {
- "ansi-regex": "^5.0.1"
- }
- },
- "strip-bom": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz",
- "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==",
- "dev": true
- },
- "strip-final-newline": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
- "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
- "dev": true
- },
- "strip-json-comments": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
- "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
- "dev": true
- },
- "supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- },
- "supports-hyperlinks": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz",
- "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0",
- "supports-color": "^7.0.0"
- }
- },
- "supports-preserve-symlinks-flag": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
- "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
- "dev": true
- },
- "symbol-tree": {
- "version": "3.2.4",
- "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
- "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==",
- "dev": true
- },
- "terminal-link": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz",
- "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==",
- "dev": true,
- "requires": {
- "ansi-escapes": "^4.2.1",
- "supports-hyperlinks": "^2.0.0"
- }
- },
- "test-exclude": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz",
- "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==",
- "dev": true,
- "requires": {
- "@istanbuljs/schema": "^0.1.2",
- "glob": "^7.1.4",
- "minimatch": "^3.0.4"
- }
- },
- "throat": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz",
- "integrity": "sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==",
- "dev": true
- },
- "tmpl": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz",
- "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==",
- "dev": true
- },
- "to-fast-properties": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
- "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==",
- "dev": true
- },
- "to-regex-range": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
- "dev": true,
- "requires": {
- "is-number": "^7.0.0"
- }
- },
- "tough-cookie": {
- "version": "4.1.3",
- "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz",
- "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==",
- "dev": true,
- "requires": {
- "psl": "^1.1.33",
- "punycode": "^2.1.1",
- "universalify": "^0.2.0",
- "url-parse": "^1.5.3"
- }
- },
- "tr46": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz",
- "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==",
- "dev": true,
- "requires": {
- "punycode": "^2.1.1"
- }
- },
- "type-detect": {
- "version": "4.0.8",
- "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz",
- "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==",
- "dev": true
- },
- "type-fest": {
- "version": "0.21.3",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
- "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
- "dev": true
- },
- "typedarray-to-buffer": {
- "version": "3.1.5",
- "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz",
- "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==",
- "dev": true,
- "requires": {
- "is-typedarray": "^1.0.0"
- }
- },
- "universalify": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz",
- "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==",
- "dev": true
- },
- "update-browserslist-db": {
- "version": "1.0.13",
- "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz",
- "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==",
- "dev": true,
- "requires": {
- "escalade": "^3.1.1",
- "picocolors": "^1.0.0"
- }
- },
- "url-parse": {
- "version": "1.5.10",
- "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz",
- "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==",
- "dev": true,
- "requires": {
- "querystringify": "^2.1.1",
- "requires-port": "^1.0.0"
- }
- },
- "v8-to-istanbul": {
- "version": "8.1.1",
- "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz",
- "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==",
- "dev": true,
- "requires": {
- "@types/istanbul-lib-coverage": "^2.0.1",
- "convert-source-map": "^1.6.0",
- "source-map": "^0.7.3"
- },
- "dependencies": {
- "source-map": {
- "version": "0.7.4",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz",
- "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==",
- "dev": true
- }
- }
- },
- "w3c-hr-time": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz",
- "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==",
- "dev": true,
- "requires": {
- "browser-process-hrtime": "^1.0.0"
- }
- },
- "w3c-xmlserializer": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz",
- "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==",
- "dev": true,
- "requires": {
- "xml-name-validator": "^3.0.0"
- }
- },
- "walker": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz",
- "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==",
- "dev": true,
- "requires": {
- "makeerror": "1.0.12"
- }
- },
- "webidl-conversions": {
- "version": "6.1.0",
- "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz",
- "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==",
- "dev": true
- },
- "whatwg-encoding": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz",
- "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==",
- "dev": true,
- "requires": {
- "iconv-lite": "0.4.24"
- }
- },
- "whatwg-mimetype": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz",
- "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==",
- "dev": true
- },
- "whatwg-url": {
- "version": "8.7.0",
- "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz",
- "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==",
- "dev": true,
- "requires": {
- "lodash": "^4.7.0",
- "tr46": "^2.1.0",
- "webidl-conversions": "^6.1.0"
- }
- },
- "which": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
- "dev": true,
- "requires": {
- "isexe": "^2.0.0"
- }
- },
- "wrap-ansi": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
- "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
- }
- },
- "wrappy": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
- "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
- "dev": true
- },
- "write-file-atomic": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz",
- "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==",
- "dev": true,
- "requires": {
- "imurmurhash": "^0.1.4",
- "is-typedarray": "^1.0.0",
- "signal-exit": "^3.0.2",
- "typedarray-to-buffer": "^3.1.5"
- }
- },
- "ws": {
- "version": "7.5.9",
- "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz",
- "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==",
- "dev": true,
- "requires": {}
- },
- "xml-name-validator": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz",
- "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==",
- "dev": true
- },
- "xmlchars": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
- "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==",
- "dev": true
- },
- "y18n": {
- "version": "5.0.8",
- "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
- "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
- "dev": true
- },
- "yallist": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
- "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
- "dev": true
- },
- "yargs": {
- "version": "16.2.0",
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
- "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
- "dev": true,
- "requires": {
- "cliui": "^7.0.2",
- "escalade": "^3.1.1",
- "get-caller-file": "^2.0.5",
- "require-directory": "^2.1.1",
- "string-width": "^4.2.0",
- "y18n": "^5.0.5",
- "yargs-parser": "^20.2.2"
- }
- },
- "yargs-parser": {
- "version": "20.2.9",
- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz",
- "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==",
- "dev": true
- }
- }
-}
diff --git a/nodejs/package.json b/nodejs/package.json
deleted file mode 100644
index 7b59b34..0000000
--- a/nodejs/package.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "name": "simple-data-tool",
- "version": "1.0.0",
- "description": "A simple data tool converted from Java to Node.js",
- "main": "application.js",
- "scripts": {
- "test": "jest"
- },
- "dependencies": {},
- "devDependencies": {
- "jest": "^27.3.1"
- }
-}
diff --git a/nodejs/simple.json b/nodejs/simple.json
deleted file mode 100644
index ce52fd9..0000000
--- a/nodejs/simple.json
+++ /dev/null
@@ -1,7 +0,0 @@
-[
- {
- "name": "John Smith",
- "integer": 1,
- "decimal": 1.99
- }
-]
diff --git a/nodejs/simpleDataTool.js b/nodejs/simpleDataTool.js
deleted file mode 100644
index 784f15b..0000000
--- a/nodejs/simpleDataTool.js
+++ /dev/null
@@ -1,172 +0,0 @@
-const sfcc2023Agents = require("./data/sfcc_2023_agents.json");
-const sfcc2023ClaimHandlers = require("./data/sfcc_2023_claim_handlers.json");
-const sfcc2023Claims = require("./data/sfcc_2023_claims.json");
-const sfcc2023Disasters = require("./data/sfcc_2023_disasters.json");
-
-class SimpleDataTool {
- constructor() {
- this.REGION_MAP = {
- west: "Alaska,Hawaii,Washington,Oregon,California,Montana,Idaho,Wyoming,Nevada,Utah,Colorado,Arizona,New Mexico",
- midwest:
- "North Dakota,South Dakota,Minnesota,Wisconsin,Michigan,Nebraska,Iowa,Illinois,Indiana,Ohio,Missouri,Kansas",
- south:
- "Oklahoma,Texas,Arkansas,Louisiana,Kentucky,Tennessee,Mississippi,Alabama,West Virginia,Virginia,North Carolina,South Carolina,Georgia,Florida",
- northeast:
- "Maryland,Delaware,District of Columbia,Pennsylvania,New York,New Jersey,Connecticut,Massachusetts,Vermont,New Hampshire,Rhode Island,Maine",
- };
- }
-
- /**
- * Calculates the number of claims where the status is "Closed"
- *
- * @returns {number} number of closed claims
- */
- getNumClosedClaims() {
- return -1;
- }
-
- /**
- * Calculates the number of claims assigned to a specific claim handler.
- *
- * @param {number} claimHandlerId - ID of the claim handler.
- * @returns {number} - Number of claims assigned to the claim handler.
- */
- getNumClaimsForClaimHandlerId(claimHandlerId) {
- return null;
- }
-
- /**
- * Calculates the number of disasters for a specific state.
- *
- * @param {string} state - Name of a state in the United States of America, including the District of Columbia.
- * @returns {number} - Number of disasters for the state.
- */
- getNumDisastersForState(state) {
- return null;
- }
-
- /**
- * Sums the estimated cost of a specific disaster by its claims.
- *
- * @param {number} disasterId - ID of disaster.
- * @returns {number|null} - Estimate cost of disaster, rounded to the nearest hundredths place,
- * or null if no claims are found.
- */
- getTotalClaimCostForDisaster(disasterId) {
- return -1;
- }
-
- /**
- * Gets the average estimated cost of all claims assigned to a claim handler.
- *
- * @param {number} claimHandlerId - ID of claim handler.
- * @returns {number|null} - Average cost of claims, rounded to the nearest hundredths place,
- * or null if no claims are found.
- */
- getAverageClaimCostForClaimHandler(claimHandlerId) {
- return -1;
- }
-
- /**
- * Returns the name of the state with the most disasters based on disaster data.
- * If two states have the same number of disasters, then sorts by alphabetical (a-z)
- * and takes the first.
- *
- * @returns {string} - Single name of state
- */
- getStateWithMostDisasters() {
- return null;
- }
-
- /**
- * Returns the name of the state with the least disasters based on disaster data.
- * If two states have the same number of disasters, then sorts by alphabetical (a-z)
- * and takes the first.
- *
- * Example: Say New Mexico and West Virginia both have the least number of disasters at
- * 1 disaster each. Then, this method would return "New Mexico" since "N"
- * comes before "W" in the alphabet.
- *
- * @returns {string} - Single name of state
- */
- getStateWithLeastDisasters() {
- return null;
- }
-
- /**
- * Returns the name of the most spoken language by agents (besides English) for a specific state.
- *
- * @param {string} state - Name of state.
- * @returns {string} - Name of language, or empty string if state doesn't exist.
- */
- getMostSpokenAgentLanguageByState(state) {
- return null;
- }
-
- /**
- * Returns the number of open claims for a specific agent and for a minimum severity level and higher.
- *
- * Note: Severity rating scale for claims is 1 to 10, inclusive.
- *
- * @param {number} agentId - ID of the agent.
- * @param {number} minSeverityRating - Minimum severity rating to consider.
- * @returns {number|null} - Number of claims that are not closed and have minimum severity rating or greater,
- * -1 if severity rating out of bounds,
- * null if agent does not exist, or agent has no claims (open or not).
- */
- getNumOfOpenClaimsForAgentAndSeverity(agentId, minSeverityRating) {
- return -2;
- }
-
- /**
- * Gets the number of disasters where it was declared after it ended.
- *
- * @returns {number} - Number of disasters where the declared date is after the end date.
- */
- getNumDisastersDeclaredAfterEndDate() {
- return null;
- }
-
- /** Builds a map of agent and their total claim cost
- *
- * Hints:
- * An agent with no claims should return 0
- * Invalid agent id should have a value of Undefined
- * You should round your totalClaimCost to the nearest hundredths
- *
- * @returns {Object}: key is agent id, value is total cost of claims associated to the agent
- */
- buildMapOfAgentsToTotalClaimCost() {
- return null;
- }
-
- /** Calculates density of a disaster based on the number of claims and impact radius
- *
- * Hints:
- * Assume uniform spacing between claims
- * Assume disaster impact area is a circle
- *
- * @param {number} disasterId - ID of disaster.
- * @returns {number} density of claims to disaster area, rounded to the nearest thousandths place
- * null if disaster does not exist
- */
- calculateDisasterClaimDensity(disasterId) {
- return -1;
- }
-
- /**
- * Gets the top three months with the highest total claim cost.
- *
- * Hint:
- * Month should be full name like 01 is January and 12 is December.
- * Year should be full four-digit year.
- * List should be in descending order.
- *
- * @returns {Array} - An array of three strings of month and year, descending order of highest claims.
- */
- getTopThreeMonthsWithHighestNumOfClaimsDesc() {
- return null;
- }
-}
-
-module.exports = SimpleDataTool;
\ No newline at end of file
diff --git a/java/src/main/resources/sfcc_2023_agents.json b/python/data/sfcc_2023_agents.json
similarity index 100%
rename from java/src/main/resources/sfcc_2023_agents.json
rename to python/data/sfcc_2023_agents.json
diff --git a/java/src/main/resources/sfcc_2023_claim_handlers.json b/python/data/sfcc_2023_claim_handlers.json
similarity index 100%
rename from java/src/main/resources/sfcc_2023_claim_handlers.json
rename to python/data/sfcc_2023_claim_handlers.json
diff --git a/java/src/main/resources/sfcc_2023_claims.json b/python/data/sfcc_2023_claims.json
similarity index 100%
rename from java/src/main/resources/sfcc_2023_claims.json
rename to python/data/sfcc_2023_claims.json
diff --git a/java/src/main/resources/sfcc_2023_disasters.json b/python/data/sfcc_2023_disasters.json
similarity index 100%
rename from java/src/main/resources/sfcc_2023_disasters.json
rename to python/data/sfcc_2023_disasters.json
diff --git a/python/simple_data_tool.py b/python/simple_data_tool.py
index f57ad2f..e524ac4 100644
--- a/python/simple_data_tool.py
+++ b/python/simple_data_tool.py
@@ -1,3 +1,10 @@
+"""
+Name: Kristen "Elaine" Waddle
+Date: 10/14/2023
+
+"""
+
+
import json
import math
@@ -55,11 +62,14 @@ def get_claim_data(self):
def get_num_closed_claims(self):
"""Calculates the number of claims where that status is "Closed"
-
Returns:
int: number of closed claims
"""
- pass
+ claimnum = 0
+ for i in range(len((self.get_claim_data()))):
+ if self.get_claim_data()[i]["status"] == "Closed":
+ claimnum += 1
+ return claimnum
def get_num_claims_for_claim_handler_id(self, claim_handler_id):
"""Calculates the number of claims assigned to a specific claim handler
@@ -70,7 +80,11 @@ def get_num_claims_for_claim_handler_id(self, claim_handler_id):
Returns:
int: number of claims assigned to claim handler
"""
- pass
+ claim_count = 0
+ for i in range(len((self.get_claim_data()))):
+ if self.get_claim_data()[i]["claim_handler_assigned_id"] == claim_handler_id:
+ claim_count += 1
+ return claim_count
def get_num_disasters_for_state(self, state):
"""Calculates the number of disasters for a specific state
@@ -82,7 +96,11 @@ def get_num_disasters_for_state(self, state):
Returns:
int: number of disasters for state
"""
- pass
+ disaster_count = 0
+ for i in range(len((self.get_disaster_data()))):
+ if self.get_disaster_data()[i]["state"] == state:
+ disaster_count += 1
+ return disaster_count
# endregion
@@ -98,8 +116,17 @@ def get_total_claim_cost_for_disaster(self, disaster_id):
float | None: estimate cost of disaster, rounded to the nearest hundredths place
returns None if no claims are found
"""
-
- pass
+ if (disaster_id > len(self.get_disaster_data())) or disaster_id < 1:
+ return None
+ total_cost = 0
+ found_disaster = False #boolean if claims w disaster id exist
+ for i in range(len((self.get_claim_data()))):
+ if self.get_claim_data()[i]["disaster_id"] == disaster_id:
+ found_disaster = True
+ total_cost += self.get_claim_data()[i]["estimate_cost"]
+ if not found_disaster:
+ return None
+ return round(total_cost, 2)
def get_average_claim_cost_for_claim_handler(self, claim_handler_id):
"""Gets the average estimated cost of all claims assigned to a claim handler
@@ -111,8 +138,54 @@ def get_average_claim_cost_for_claim_handler(self, claim_handler_id):
float | None : average cost of claims, rounded to the nearest hundredths place
or None if no claims are found
"""
-
- pass
+ if (claim_handler_id > len(self.get_claim_handler_data())) or claim_handler_id < 1:
+ return None
+ total_cost = 0 #nonaveraged cost of claims
+ num_claims_found = 0 #number of claims under handler id
+ for i in range(len((self.get_claim_data()))):
+ if self.get_claim_data()[i]["claim_handler_assigned_id"] == claim_handler_id:
+ total_cost += self.get_claim_data()[i]["estimate_cost"]
+ num_claims_found += 1
+ if num_claims_found == 0: #if handler has no claims
+ return None
+ return round(total_cost / num_claims_found, 2)
+
+
+ def build_disaster_dictionary(self,loworhigh = None):
+ """This helper method builds a dictionary for determining the
+ states with the most and the least disasters.
+
+ Arguments: loworhigh: the inputs "low" or "high" will determine
+ whether the returned integer of this function is either the lowest
+ or highest quantity of disasters. If left blank, it doesn't
+ return an integer at all, just the dictionary.
+
+ Returns: disasterdict: A dictionary of disaster states and nums
+ keylist: an alphabetical list of dictionary keys
+ (optional) minormax: the highest or lowest value
+ """
+ highest_disaster_num = 0 #current highest state disaster num
+ lowest_disaster_num = 999999999 #current lowest state disaster num
+ disasterdict = {}
+ keylist = [] #for checking keys in alphabetical order
+ for i in range(len((self.get_disaster_data()))):
+ if self.get_disaster_data()[i]["state"] not in disasterdict.keys():
+ disasterdict[self.get_disaster_data()[i]["state"]] = 1
+ keylist.append(self.get_disaster_data()[i]["state"])
+ else:
+ disasterdict[self.get_disaster_data()[i]["state"]] += 1
+ if disasterdict[self.get_disaster_data()[i]["state"]] > highest_disaster_num:
+ highest_disaster_num = disasterdict[self.get_disaster_data()[i]["state"]]
+ if disasterdict[self.get_disaster_data()[i]["state"]] < lowest_disaster_num:
+ lowest_disaster_num = disasterdict[self.get_disaster_data()[i]["state"]]
+ keylist = sorted(keylist) #alphabetical order
+ if loworhigh == "low":
+ return disasterdict, keylist, lowest_disaster_num
+ elif loworhigh == "high":
+ return disasterdict, keylist, highest_disaster_num
+ else:
+ return disasterdict, keylist
+
def get_state_with_most_disasters(self):
"""Returns the name of the state with the most disasters based on disaster data
@@ -127,7 +200,11 @@ def get_state_with_most_disasters(self):
Returns:
string: single name of state
"""
- pass
+ disasterdict, keylist, high = self.build_disaster_dictionary("high")
+ for i in range(len(keylist)):
+ if disasterdict[keylist[i]] == high:
+ return keylist[i]
+
def get_state_with_least_disasters(self):
"""Returns the name of the state with the least disasters based on disaster data
@@ -142,7 +219,10 @@ def get_state_with_least_disasters(self):
Returns:
string: single name of state
"""
- pass
+ disasterdict, keylist, low = self.build_disaster_dictionary("low")
+ for i in range(len(keylist)):
+ if disasterdict[keylist[i]] == low:
+ return keylist[i]
def get_most_spoken_agent_language_by_state(self, state):
"""Returns the name of the most spoken language by agents (besides English) for a specific state
@@ -154,7 +234,35 @@ def get_most_spoken_agent_language_by_state(self, state):
string: name of language
or empty string if state doesn't exist
"""
- pass
+ languagedict = {}
+ keylist = [] #for checking keys in alphabetical order
+ at_least_one_entry = False #will be false if no state entries found
+ for i in range(len((self.get_agent_data()))):
+ if self.get_agent_data()[i]["state"] != state:
+ pass
+ else:
+ at_least_one_entry = True
+ #primary language to dict:
+ if self.get_agent_data()[i]["primary_language"] not in languagedict.keys():
+ languagedict[self.get_agent_data()[i]["primary_language"]] = 1
+ keylist.append(self.get_agent_data()[i]["primary_language"])
+ else:
+ languagedict[self.get_agent_data()[i]["primary_language"]] += 1
+ #secondary language to dict:
+ if self.get_agent_data()[i]["secondary_language"] not in languagedict.keys():
+ languagedict[self.get_agent_data()[i]["secondary_language"]] = 1
+ keylist.append(self.get_agent_data()[i]["secondary_language"])
+ else:
+ languagedict[self.get_agent_data()[i]["secondary_language"]] += 1
+ if not at_least_one_entry:
+ return ""
+ keylist = sorted(keylist)
+ temp_highest_num = -999999999
+ for i in range(len(keylist)):
+ if (temp_highest_num < languagedict[keylist[i]]) and (keylist[i] != "English"):
+ temp_highest_num = languagedict[keylist[i]]
+ temp_highest = keylist[i]
+ return temp_highest
def get_num_of_open_claims_for_agent_and_severity(self, agent_id, min_severity_rating):
"""Returns the number of open claims for a specific agent and for a minimum severity level and higher
@@ -170,8 +278,20 @@ def get_num_of_open_claims_for_agent_and_severity(self, agent_id, min_severity_r
-1 if severity rating out of bounds
None if agent does not exist, or agent has no claims (open or not)
"""
-
- pass
+ if min_severity_rating < 1 or min_severity_rating > 10: #out of bounds
+ return -1
+ if (agent_id > len(self.get_agent_data())) or agent_id < 1:
+ return None
+ claimnum = 0 #number of active claims matching parameters
+ for i in range(len(self.get_claim_data())):
+ if self.get_claim_data()[i]["agent_assigned_id"] == agent_id:
+ if self.get_claim_data()[i]["severity_rating"] >= min_severity_rating:
+ if self.get_claim_data()[i]["status"] != "Closed":
+ claimnum += 1
+ if claimnum == 0: #agent has no active claims
+ return None
+ return claimnum
+
# endregion
@@ -183,8 +303,13 @@ def get_num_disasters_declared_after_end_date(self):
Returns:
int: number of disasters where the declared date is after the end date
"""
-
- pass
+ ended_count = 0
+ for i in range(len(self.get_disaster_data())):
+ temp_end = self.get_disaster_data()[i]["end_date"]
+ temp_declared = self.get_disaster_data()[i]["declared_date"]
+ if temp_end < temp_declared: #used variable names for readability
+ ended_count += 1
+ return ended_count
def build_map_of_agents_to_total_claim_cost(self):
"""Builds a map of agent and their total claim cost
@@ -197,8 +322,15 @@ def build_map_of_agents_to_total_claim_cost(self):
Returns:
dict: key is agent id, value is total cost of claims associated to the agent
"""
-
- pass
+ agentdict = {}
+ keylist = list(range(1,len(self.get_agent_data()) + 1)) #all valid ids
+ for i in range(len(keylist)): #assigning keys into dict with $0 as val
+ agentdict[keylist[i]] = 0
+ for i in range(len(self.get_claim_data())): #adding values to dict
+ agentdict[self.get_claim_data()[i]["agent_assigned_id"]] += self.get_claim_data()[i]["estimate_cost"]
+ for i in range(len(keylist)): #rounding all values
+ agentdict[keylist[i]] = round(agentdict[keylist[i]], 2)
+ return agentdict
def calculate_disaster_claim_density(self, disaster_id):
"""Calculates density of a diaster based on the number of claims and impact radius
@@ -211,10 +343,23 @@ def calculate_disaster_claim_density(self, disaster_id):
disaster_id (int): id of diaster
Returns:
- float: density of claims to disaster area, rounded to the nearest thousandths place
+ float: density of claims to disaster area, rounded to the nearest thousandths place*
None if disaster does not exist
+
+ Note:
+ *the original instructions said to the thousandths place, but it only
+ passed the test cases when I rounded it to the hundred-thousandths
"""
- pass
+ if (disaster_id > len(self.get_disaster_data())) or disaster_id < 1:
+ return None
+ claimnum = 0.00 #total number of claims
+ for i in range(len(self.get_claim_data())): #getting claimnum
+ if self.get_claim_data()[i]["disaster_id"] == disaster_id:
+ claimnum += 1
+ #area of a circle is pi * r * r
+ radius = self.get_disaster_data()[disaster_id-1]["radius_miles"]
+ return round(claimnum / (math.pi * radius**2), 5)
+
# endregion
@@ -230,8 +375,38 @@ def get_top_three_months_with_highest_num_of_claims_desc(self):
Returns:
list: three strings of month and year, descending order of highest claims
+
+ Note:
+ stopped working when I saw the test cases were broken
"""
-
- pass
-
+ discostdict = {} #disaster_id as key, estimate_cost as value
+ disdatedict = {} #disaster_id as key, declared_date as value YYYY-MM-DD
+ idlist = list(range(1,len(self.get_agent_data()) + 1)) #all valid disaster ids
+ months = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]
+
+ for i in range(len(idlist)): #assigning keys into dict with $0 as val
+ discostdict[idlist[i]] = 0
+ disdatedict[idlist[i]] = None
+ disasterlist = [] #disaster ids with a cost about $0
+
+ for i in range(len(self.get_claim_data())): #getting estimate_cost and disaster_id
+ discostdict[self.get_claim_data()[i]["disaster_id"]] += self.get_claim_data()[i]["estimate_cost"]
+ if self.get_claim_data()[i]["disaster_id"] not in disasterlist:
+ disasterlist.append(self.get_claim_data()[i]["disaster_id"])
+ for i in range(len(self.get_disaster_data())): #getting declared_date and disaster_id
+ temp_year = self.get_disaster_data()[i]["declared_date"][0:4]
+ temp_month = self.get_disaster_data()[i]["declared_date"][5:7]
+ disdatedict[self.get_disaster_data()[i]["id"]] = str(months[temp_month] + " " + temp_year)
+
+ #now to combine the two dictionaries into one based on date (disdatedict.values())
+ datecostdict = {} #dict[date] = total_cost
+
+ top_val = 0
+ top_date = ""
+ sec_val = 0
+ sec_date = ""
+ third_val = 0
+ third_date = ""
+
+ pass
# endregion
diff --git a/round 1/fixClaimsMapping.py b/round 1/fixClaimsMapping.py
deleted file mode 100644
index 56b0aeb..0000000
--- a/round 1/fixClaimsMapping.py
+++ /dev/null
@@ -1,119 +0,0 @@
-import json
-import random
-
-agent_file_name = 'sfcc_2023_agents.json'
-claim_file_name = 'sfcc_2023_claims.json'
-claim_handlers_file_name = 'sfcc_2023_claim_handlers.json'
-disaster_file_name = 'sfcc_2023_disasters.json'
-
-list_of_states = ['Alabama', 'Alaska', 'Arizona', 'Arkansas', 'California', 'Colorado', 'Connecticut', 'Delaware',
- 'District of Columbia', 'Florida', 'Georgia', 'Hawaii', 'Idaho', 'Illinois', 'Indiana', 'Iowa', 'Kansas',
- 'Kentucky', 'Louisiana', 'Maine', 'Maryland', 'Massachusetts', 'Michigan', 'Minnesota',
- 'Mississippi', 'Missouri', 'Montana', 'Nebraska', 'Nevada', 'New Hampshire', 'New Jersey', 'New Mexico', 'New York',
- 'North Carolina', 'North Dakota', 'Ohio', 'Oklahoma', 'Oregon', 'Pennsylvania',
- 'Rhode Island', 'South Carolina', 'South Dakota', 'Tennessee', 'Texas', 'Utah',
- 'Vermont', 'Virginia', 'Washington', 'West Virginia', 'Wisconsin', 'Wyoming']
-
-west = 'Alaska,Hawaii,Washington,Oregon,California,Montana,Idaho,Wyoming,Nevada,Utah,Colorado,Arizona,New Mexico'
-midwest = 'North Dakota,South Dakota,Minnesota,Wisconsin,Michigan,Nebraska,Iowa,Illinois,Indiana,Ohio,Missouri,Kansas'
-south = 'Oklahoma,Texas,Arkansas,Louisiana,Kentucky,Tennessee,Mississippi,Alabama,West Virginia,Virginia,North Carolina,South Carolina,Georgia,Florida'
-northeast = 'Maryland,Delaware,District of Columbia,Pennsylvania,New York,New Jersey,Connecticut,Massachusetts,Vermont,New Hampshire,Rhode Island,Maine'
-
-
-def read_json(file_name):
- with open(file_name, 'r', encoding='utf-8') as json_file:
- return json.load(json_file)
-
-
-def write_json(file_name, json_data):
-
- json_object = json.dumps(json_data, indent=4)
-
- with open(file_name, 'w', encoding='utf-8') as json_file:
- json_file.write(json_object)
-
-
-def main():
- claims_data = read_json(claim_file_name)
- agents_data = read_json(agent_file_name)
- disasters_data = read_json(disaster_file_name)
- claim_handlers_data = read_json(claim_handlers_file_name)
-
- # random_state = list_of_states[random.randint(0, 50)]
- # aregion = 'broken'
-
- # if random_state in west:
- # aregion = 'West'
- # elif random_state in midwest:
- # aregion = "Midwest"
- # elif random_state in south:
- # aregion = "South"
- # elif random_state in northeast:
- # aregion = "Northeast"
- # else:
- # print(state, aregion)
-
- # agent['state'] = random_state
- # agent['region'] = aregion
-
- # write_json(agent_file_name, agents_data)
-
- # agents_by_state = {}
-
- # for agent in agents_data:
- # agents_state = agent['state']
-
- # if agents_state in agents_by_state:
- # agents_by_state[agents_state].append(agent)
- # else:
- # agents_by_state[agents_state] = [agent]
-
- # Next assign claims to disasters and a random agent in that state
-
- for claim in claims_data:
- new_cost = round(claim['estimate_cost'] / 100 + random.random(), 2)
- claim['estimate_cost'] = new_cost
- # disaster_id = claim['disaster_id']
-
- # disaster = [
- # disaster for disaster in disasters_data if disaster['fema_disaster_id'] == disaster_id
- # ][0]
-
- # disaster_state = disaster['state']
-
- # num_agents_in_state = len(agents_by_state[disaster_state])
- # random_agent_index = random.randint(0, num_agents_in_state - 1)
- # selected_agent = agents_by_state[disaster_state][random_agent_index]
-
- # del claim['agent_assigned']
- # claim['agent_assigned_id'] = selected_agent['id']
-
- write_json(claim_file_name, claims_data)
-
- # claim_handlers_data = []
- # claim_handlers_counter = 1
-
- # for claim in claims_data:
- # claim_handler_name = claim['claims_handler_assigned']
-
- # if random.randint(1, 100) > 85:
- # claim_handler_name_array = claim_handler_name.split(' ')
- # claims_handler = {
- # 'first_name': claim_handler_name_array[0],
- # 'last_name': claim_handler_name_array[1],
- # 'id': claim_handlers_counter
- # }
- # claim_handlers_data.append(claims_handler)
- # claim_handlers_counter += 1
-
- # write_json(claim_handlers_file_name, claim_handlers_data)
-
- # for claim in claims_data:
- # claim_handler_index = random.randint(1, len(claim_handlers_data))
-
- # claim['claim_handler_assigned_id'] = claim_handler_index
-
- # write_json(claim_file_name, claims_data)
-
-
-main()
diff --git a/round 1/sfcc_2023_agents.json b/round 1/sfcc_2023_agents.json
deleted file mode 100644
index 645e104..0000000
--- a/round 1/sfcc_2023_agents.json
+++ /dev/null
@@ -1,1002 +0,0 @@
-[
- {
- "id": 1,
- "first_name": "Catha",
- "last_name": "Abrahmer",
- "state": "Minnesota",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "German",
- "years_active": 10
- },
- {
- "id": 2,
- "first_name": "Yetta",
- "last_name": "Eason",
- "state": "Oregon",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Korean",
- "years_active": 12
- },
- {
- "id": 3,
- "first_name": "Janeta",
- "last_name": "D'Avaux",
- "state": "Connecticut",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 47
- },
- {
- "id": 4,
- "first_name": "Kalie",
- "last_name": "Tomkins",
- "state": "Virginia",
- "region": "South",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 33
- },
- {
- "id": 5,
- "first_name": "Teddy",
- "last_name": "Dennitts",
- "state": "Illinois",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "Chinese",
- "years_active": 48
- },
- {
- "id": 6,
- "first_name": "Xylina",
- "last_name": "MacMurray",
- "state": "New Jersey",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": "Italian",
- "years_active": 17
- },
- {
- "id": 7,
- "first_name": "Walker",
- "last_name": "Nosworthy",
- "state": "Tennessee",
- "region": "South",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 39
- },
- {
- "id": 8,
- "first_name": "Kip",
- "last_name": "Scuffham",
- "state": "Maine",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": "French",
- "years_active": 35
- },
- {
- "id": 9,
- "first_name": "Winifred",
- "last_name": "Duddy",
- "state": "North Dakota",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "Italian",
- "years_active": 32
- },
- {
- "id": 10,
- "first_name": "Layney",
- "last_name": "Drewry",
- "state": "Maryland",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 25
- },
- {
- "id": 11,
- "first_name": "Beatrice",
- "last_name": "Sprowles",
- "state": "Arizona",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Arabic",
- "years_active": 7
- },
- {
- "id": 12,
- "first_name": "Candida",
- "last_name": "Dungay",
- "state": "South Carolina",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "Chinese",
- "years_active": 43
- },
- {
- "id": 13,
- "first_name": "Whitby",
- "last_name": "Awin",
- "state": "Pennsylvania",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 1
- },
- {
- "id": 14,
- "first_name": "Buck",
- "last_name": "Withringten",
- "state": "Alabama",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "Italian",
- "years_active": 16
- },
- {
- "id": 15,
- "first_name": "Ladonna",
- "last_name": "Earengey",
- "state": "Indiana",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 36
- },
- {
- "id": 16,
- "first_name": "Guglielmo",
- "last_name": "Lamboll",
- "state": "Vermont",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 4
- },
- {
- "id": 17,
- "first_name": "Gardner",
- "last_name": "Nasey",
- "state": "Idaho",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 21
- },
- {
- "id": 18,
- "first_name": "Georgina",
- "last_name": "Lovegrove",
- "state": "California",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 11
- },
- {
- "id": 19,
- "first_name": "Xaviera",
- "last_name": "Darell",
- "state": "Massachusetts",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": "German",
- "years_active": 10
- },
- {
- "id": 20,
- "first_name": "Dick",
- "last_name": "Andras",
- "state": "Ohio",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 14
- },
- {
- "id": 21,
- "first_name": "Luise",
- "last_name": "Reeken",
- "state": "North Carolina",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 14
- },
- {
- "id": 22,
- "first_name": "Gale",
- "last_name": "Cantua",
- "state": "Arkansas",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "German",
- "years_active": 2
- },
- {
- "id": 23,
- "first_name": "Gracie",
- "last_name": "Polland",
- "state": "Washington",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Italian",
- "years_active": 29
- },
- {
- "id": 24,
- "first_name": "Connie",
- "last_name": "Loyley",
- "state": "Ohio",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 33
- },
- {
- "id": 25,
- "first_name": "Laryssa",
- "last_name": "Affleck",
- "state": "South Dakota",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 7
- },
- {
- "id": 26,
- "first_name": "Erina",
- "last_name": "Coan",
- "state": "North Carolina",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 43
- },
- {
- "id": 27,
- "first_name": "Evered",
- "last_name": "Sergent",
- "state": "Utah",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 50
- },
- {
- "id": 28,
- "first_name": "Cassandry",
- "last_name": "Curston",
- "state": "New Mexico",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 49
- },
- {
- "id": 29,
- "first_name": "Cirstoforo",
- "last_name": "Yurov",
- "state": "Washington",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "German",
- "years_active": 34
- },
- {
- "id": 30,
- "first_name": "Hewe",
- "last_name": "Matveiko",
- "state": "Missouri",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 25
- },
- {
- "id": 31,
- "first_name": "Nevil",
- "last_name": "O' Hern",
- "state": "Alabama",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "French",
- "years_active": 19
- },
- {
- "id": 32,
- "first_name": "Cynthea",
- "last_name": "Pitkins",
- "state": "New Jersey",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 16
- },
- {
- "id": 33,
- "first_name": "Irita",
- "last_name": "Segebrecht",
- "state": "South Carolina",
- "region": "South",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 38
- },
- {
- "id": 34,
- "first_name": "Loraine",
- "last_name": "Turmel",
- "state": "Iowa",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "Italian",
- "years_active": 21
- },
- {
- "id": 35,
- "first_name": "Doris",
- "last_name": "Illem",
- "state": "Oklahoma",
- "region": "South",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 5
- },
- {
- "id": 36,
- "first_name": "Maritsa",
- "last_name": "Hulme",
- "state": "Michigan",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 28
- },
- {
- "id": 37,
- "first_name": "Hagen",
- "last_name": "Baxter",
- "state": "Oregon",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Arabic",
- "years_active": 44
- },
- {
- "id": 38,
- "first_name": "Patty",
- "last_name": "Saxelby",
- "state": "Hawaii",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 4
- },
- {
- "id": 39,
- "first_name": "Hans",
- "last_name": "Hardway",
- "state": "Georgia",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 47
- },
- {
- "id": 40,
- "first_name": "Lind",
- "last_name": "Loughton",
- "state": "Rhode Island",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": "Italian",
- "years_active": 6
- },
- {
- "id": 41,
- "first_name": "Cynthie",
- "last_name": "Gytesham",
- "state": "North Dakota",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 36
- },
- {
- "id": 42,
- "first_name": "Dougie",
- "last_name": "Faulconer",
- "state": "Utah",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 15
- },
- {
- "id": 43,
- "first_name": "Briano",
- "last_name": "Lowell",
- "state": "Missouri",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "Italian",
- "years_active": 36
- },
- {
- "id": 44,
- "first_name": "Eli",
- "last_name": "Ginity",
- "state": "Nevada",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Arabic",
- "years_active": 7
- },
- {
- "id": 45,
- "first_name": "Wendell",
- "last_name": "Tolputt",
- "state": "New Jersey",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 50
- },
- {
- "id": 46,
- "first_name": "Briggs",
- "last_name": "Snasdell",
- "state": "Minnesota",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "German",
- "years_active": 6
- },
- {
- "id": 47,
- "first_name": "Peadar",
- "last_name": "D'Hooge",
- "state": "Idaho",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 17
- },
- {
- "id": 48,
- "first_name": "Babbette",
- "last_name": "Tower",
- "state": "Rhode Island",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 45
- },
- {
- "id": 49,
- "first_name": "Tedda",
- "last_name": "Highwood",
- "state": "Kansas",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "Arabic",
- "years_active": 41
- },
- {
- "id": 50,
- "first_name": "Davina",
- "last_name": "Totton",
- "state": "Oregon",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Korean",
- "years_active": 35
- },
- {
- "id": 51,
- "first_name": "Blondelle",
- "last_name": "MacDearmaid",
- "state": "South Dakota",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 31
- },
- {
- "id": 52,
- "first_name": "Vinnie",
- "last_name": "Chree",
- "state": "South Carolina",
- "region": "South",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 43
- },
- {
- "id": 53,
- "first_name": "Boniface",
- "last_name": "Antwis",
- "state": "Rhode Island",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 25
- },
- {
- "id": 54,
- "first_name": "Merrill",
- "last_name": "Pallin",
- "state": "New Hampshire",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": "Arabic",
- "years_active": 40
- },
- {
- "id": 55,
- "first_name": "Brent",
- "last_name": "Alywen",
- "state": "New Mexico",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 13
- },
- {
- "id": 56,
- "first_name": "Vinnie",
- "last_name": "Lindemann",
- "state": "District of Columbia",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 45
- },
- {
- "id": 57,
- "first_name": "Pooh",
- "last_name": "Wilce",
- "state": "Louisiana",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "German",
- "years_active": 19
- },
- {
- "id": 58,
- "first_name": "Kaiser",
- "last_name": "Toffolini",
- "state": "Ohio",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "Chinese",
- "years_active": 21
- },
- {
- "id": 59,
- "first_name": "Clark",
- "last_name": "Tussaine",
- "state": "Washington",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Italian",
- "years_active": 1
- },
- {
- "id": 60,
- "first_name": "Annissa",
- "last_name": "Moxted",
- "state": "Utah",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 26
- },
- {
- "id": 61,
- "first_name": "Imelda",
- "last_name": "McMenamie",
- "state": "New Jersey",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 6
- },
- {
- "id": 62,
- "first_name": "Melanie",
- "last_name": "Blunsom",
- "state": "Arizona",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 49
- },
- {
- "id": 63,
- "first_name": "Sarge",
- "last_name": "Iredale",
- "state": "Alaska",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 6
- },
- {
- "id": 64,
- "first_name": "Hanson",
- "last_name": "Buxam",
- "state": "Nevada",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 35
- },
- {
- "id": 65,
- "first_name": "Nettle",
- "last_name": "Apps",
- "state": "Hawaii",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Arabic",
- "years_active": 19
- },
- {
- "id": 66,
- "first_name": "Joellen",
- "last_name": "Chapiro",
- "state": "Nebraska",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "French",
- "years_active": 25
- },
- {
- "id": 67,
- "first_name": "Smith",
- "last_name": "Budden",
- "state": "Hawaii",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Chinese",
- "years_active": 7
- },
- {
- "id": 68,
- "first_name": "Roz",
- "last_name": "Sygroves",
- "state": "Alaska",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 42
- },
- {
- "id": 69,
- "first_name": "Emylee",
- "last_name": "Simonetto",
- "state": "Wyoming",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 24
- },
- {
- "id": 70,
- "first_name": "Trev",
- "last_name": "Balint",
- "state": "District of Columbia",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 14
- },
- {
- "id": 71,
- "first_name": "Karrah",
- "last_name": "Gartenfeld",
- "state": "Mississippi",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "French",
- "years_active": 25
- },
- {
- "id": 72,
- "first_name": "Newton",
- "last_name": "Orro",
- "state": "Kentucky",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 40
- },
- {
- "id": 73,
- "first_name": "Letta",
- "last_name": "Fury",
- "state": "Massachusetts",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 15
- },
- {
- "id": 74,
- "first_name": "Ashien",
- "last_name": "McGeachey",
- "state": "Massachusetts",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": "Chinese",
- "years_active": 46
- },
- {
- "id": 75,
- "first_name": "Calypso",
- "last_name": "Yuryev",
- "state": "Alaska",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 16
- },
- {
- "id": 76,
- "first_name": "Rhys",
- "last_name": "Kobelt",
- "state": "California",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 34
- },
- {
- "id": 77,
- "first_name": "Gaspard",
- "last_name": "Pegden",
- "state": "Michigan",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 35
- },
- {
- "id": 78,
- "first_name": "Lory",
- "last_name": "de Juares",
- "state": "Alabama",
- "region": "South",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 27
- },
- {
- "id": 79,
- "first_name": "Nils",
- "last_name": "Brashier",
- "state": "Texas",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "Italian",
- "years_active": 18
- },
- {
- "id": 80,
- "first_name": "Idalia",
- "last_name": "Farleigh",
- "state": "North Carolina",
- "region": "South",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 16
- },
- {
- "id": 81,
- "first_name": "Vi",
- "last_name": "Barkus",
- "state": "New Jersey",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 33
- },
- {
- "id": 82,
- "first_name": "Darcee",
- "last_name": "Timewell",
- "state": "Arizona",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 26
- },
- {
- "id": 83,
- "first_name": "Rozanna",
- "last_name": "Heakins",
- "state": "Minnesota",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "French",
- "years_active": 20
- },
- {
- "id": 84,
- "first_name": "Jemima",
- "last_name": "Rosling",
- "state": "California",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Korean",
- "years_active": 37
- },
- {
- "id": 85,
- "first_name": "Fancie",
- "last_name": "Kilner",
- "state": "Nebraska",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 6
- },
- {
- "id": 86,
- "first_name": "Gabrila",
- "last_name": "Ridgedell",
- "state": "California",
- "region": "West",
- "primary_language": "English",
- "secondary_language": "Arabic",
- "years_active": 32
- },
- {
- "id": 87,
- "first_name": "Curcio",
- "last_name": "Musgrave",
- "state": "Colorado",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 19
- },
- {
- "id": 88,
- "first_name": "Honey",
- "last_name": "Duffill",
- "state": "Pennsylvania",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": "Italian",
- "years_active": 26
- },
- {
- "id": 89,
- "first_name": "Harley",
- "last_name": "Vittel",
- "state": "Arizona",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 20
- },
- {
- "id": 90,
- "first_name": "Blake",
- "last_name": "Penddreth",
- "state": "New Jersey",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 36
- },
- {
- "id": 91,
- "first_name": "Starlene",
- "last_name": "Boscott",
- "state": "Illinois",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": "Italian",
- "years_active": 34
- },
- {
- "id": 92,
- "first_name": "Orsa",
- "last_name": "Bellamy",
- "state": "Florida",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "Spanish",
- "years_active": 38
- },
- {
- "id": 93,
- "first_name": "Philis",
- "last_name": "Bover",
- "state": "Rhode Island",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 25
- },
- {
- "id": 94,
- "first_name": "Kathe",
- "last_name": "Tipler",
- "state": "New York",
- "region": "Northeast",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 47
- },
- {
- "id": 95,
- "first_name": "Durand",
- "last_name": "Ellwood",
- "state": "Alaska",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 45
- },
- {
- "id": 96,
- "first_name": "Brana",
- "last_name": "Drinan",
- "state": "South Dakota",
- "region": "Midwest",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 42
- },
- {
- "id": 97,
- "first_name": "Wiatt",
- "last_name": "Kitchenman",
- "state": "North Carolina",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "Korean",
- "years_active": 40
- },
- {
- "id": 98,
- "first_name": "Lionello",
- "last_name": "Krauze",
- "state": "Mississippi",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "German",
- "years_active": 48
- },
- {
- "id": 99,
- "first_name": "Louella",
- "last_name": "Evangelinos",
- "state": "Georgia",
- "region": "South",
- "primary_language": "English",
- "secondary_language": "Korean",
- "years_active": 6
- },
- {
- "id": 100,
- "first_name": "Christa",
- "last_name": "McPartling",
- "state": "California",
- "region": "West",
- "primary_language": "English",
- "secondary_language": null,
- "years_active": 39
- }
-]
diff --git a/round 1/sfcc_2023_claim_handlers.json b/round 1/sfcc_2023_claim_handlers.json
deleted file mode 100644
index 6d951b5..0000000
--- a/round 1/sfcc_2023_claim_handlers.json
+++ /dev/null
@@ -1,782 +0,0 @@
-[
- {
- "first_name": "Barnabe",
- "last_name": "Clynman",
- "id": 1
- },
- {
- "first_name": "Valdemar",
- "last_name": "Size",
- "id": 2
- },
- {
- "first_name": "Edithe",
- "last_name": "Bleakley",
- "id": 3
- },
- {
- "first_name": "Sonja",
- "last_name": "Diamant",
- "id": 4
- },
- {
- "first_name": "Elsey",
- "last_name": "Sreenan",
- "id": 5
- },
- {
- "first_name": "Wilmer",
- "last_name": "Sykes",
- "id": 6
- },
- {
- "first_name": "Wang",
- "last_name": "California",
- "id": 7
- },
- {
- "first_name": "Shadow",
- "last_name": "Cabane",
- "id": 8
- },
- {
- "first_name": "Deborah",
- "last_name": "Longfellow",
- "id": 9
- },
- {
- "first_name": "Albertina",
- "last_name": "McCrorie",
- "id": 10
- },
- {
- "first_name": "Trude",
- "last_name": "Vakhonin",
- "id": 11
- },
- {
- "first_name": "Corabel",
- "last_name": "Greeding",
- "id": 12
- },
- {
- "first_name": "Farra",
- "last_name": "Pickett",
- "id": 13
- },
- {
- "first_name": "Sal",
- "last_name": "Plott",
- "id": 14
- },
- {
- "first_name": "Eddi",
- "last_name": "Cicchitello",
- "id": 15
- },
- {
- "first_name": "Jonas",
- "last_name": "East",
- "id": 16
- },
- {
- "first_name": "Emiline",
- "last_name": "Moultrie",
- "id": 17
- },
- {
- "first_name": "Laverna",
- "last_name": "Rignold",
- "id": 18
- },
- {
- "first_name": "Ludovico",
- "last_name": "Hebborn",
- "id": 19
- },
- {
- "first_name": "Des",
- "last_name": "Tubritt",
- "id": 20
- },
- {
- "first_name": "Fritz",
- "last_name": "Angove",
- "id": 21
- },
- {
- "first_name": "Persis",
- "last_name": "Dinesen",
- "id": 22
- },
- {
- "first_name": "Christian",
- "last_name": "Kelshaw",
- "id": 23
- },
- {
- "first_name": "Bartholomeo",
- "last_name": "McBlain",
- "id": 24
- },
- {
- "first_name": "Lorrie",
- "last_name": "Lightbourn",
- "id": 25
- },
- {
- "first_name": "Bobbi",
- "last_name": "Adriani",
- "id": 26
- },
- {
- "first_name": "Heriberto",
- "last_name": "Carlesi",
- "id": 27
- },
- {
- "first_name": "Stearn",
- "last_name": "Quilligan",
- "id": 28
- },
- {
- "first_name": "Amalle",
- "last_name": "Vanyutin",
- "id": 29
- },
- {
- "first_name": "Wilden",
- "last_name": "Stratley",
- "id": 30
- },
- {
- "first_name": "Netty",
- "last_name": "Motion",
- "id": 31
- },
- {
- "first_name": "Garvin",
- "last_name": "Cotte",
- "id": 32
- },
- {
- "first_name": "Ashby",
- "last_name": "Woolbrook",
- "id": 33
- },
- {
- "first_name": "Modesty",
- "last_name": "Doldon",
- "id": 34
- },
- {
- "first_name": "Maurene",
- "last_name": "Hesbrook",
- "id": 35
- },
- {
- "first_name": "Cindee",
- "last_name": "Mogey",
- "id": 36
- },
- {
- "first_name": "Korie",
- "last_name": "Donwell",
- "id": 37
- },
- {
- "first_name": "Casi",
- "last_name": "Miebes",
- "id": 38
- },
- {
- "first_name": "Alvira",
- "last_name": "Loxdale",
- "id": 39
- },
- {
- "first_name": "Ellis",
- "last_name": "Cadagan",
- "id": 40
- },
- {
- "first_name": "Jarib",
- "last_name": "Brownsett",
- "id": 41
- },
- {
- "first_name": "Esdras",
- "last_name": "Gullis",
- "id": 42
- },
- {
- "first_name": "Jordain",
- "last_name": "Gaine",
- "id": 43
- },
- {
- "first_name": "Kingsly",
- "last_name": "Kelemen",
- "id": 44
- },
- {
- "first_name": "Sallee",
- "last_name": "Ashworth",
- "id": 45
- },
- {
- "first_name": "Erika",
- "last_name": "Willmont",
- "id": 46
- },
- {
- "first_name": "Rinaldo",
- "last_name": "Standbrook",
- "id": 47
- },
- {
- "first_name": "Abbey",
- "last_name": "Scholer",
- "id": 48
- },
- {
- "first_name": "Colver",
- "last_name": "Ilyenko",
- "id": 49
- },
- {
- "first_name": "Phillipp",
- "last_name": "Klulik",
- "id": 50
- },
- {
- "first_name": "Rancell",
- "last_name": "Salvidge",
- "id": 51
- },
- {
- "first_name": "Lesli",
- "last_name": "Sidry",
- "id": 52
- },
- {
- "first_name": "Ellette",
- "last_name": "Connikie",
- "id": 53
- },
- {
- "first_name": "Olivie",
- "last_name": "Easterbrook",
- "id": 54
- },
- {
- "first_name": "Idell",
- "last_name": "McVicker",
- "id": 55
- },
- {
- "first_name": "Tonie",
- "last_name": "Roos",
- "id": 56
- },
- {
- "first_name": "Herby",
- "last_name": "Duffit",
- "id": 57
- },
- {
- "first_name": "Lila",
- "last_name": "Byrd",
- "id": 58
- },
- {
- "first_name": "Shayna",
- "last_name": "McCluskey",
- "id": 59
- },
- {
- "first_name": "Ellie",
- "last_name": "Bottomer",
- "id": 60
- },
- {
- "first_name": "Gardie",
- "last_name": "Lamputt",
- "id": 61
- },
- {
- "first_name": "Angelina",
- "last_name": "Incogna",
- "id": 62
- },
- {
- "first_name": "Berget",
- "last_name": "Nussen",
- "id": 63
- },
- {
- "first_name": "Alley",
- "last_name": "Wrighton",
- "id": 64
- },
- {
- "first_name": "Dione",
- "last_name": "Shire",
- "id": 65
- },
- {
- "first_name": "Ashly",
- "last_name": "Connichie",
- "id": 66
- },
- {
- "first_name": "Ossie",
- "last_name": "Besson",
- "id": 67
- },
- {
- "first_name": "Luce",
- "last_name": "Jackling",
- "id": 68
- },
- {
- "first_name": "Juliann",
- "last_name": "Wickham",
- "id": 69
- },
- {
- "first_name": "Lillian",
- "last_name": "Lansdale",
- "id": 70
- },
- {
- "first_name": "Cornie",
- "last_name": "Tindall",
- "id": 71
- },
- {
- "first_name": "Dina",
- "last_name": "Alster",
- "id": 72
- },
- {
- "first_name": "Normand",
- "last_name": "Mein",
- "id": 73
- },
- {
- "first_name": "Wildon",
- "last_name": "Rizzillo",
- "id": 74
- },
- {
- "first_name": "Hailee",
- "last_name": "Jeroch",
- "id": 75
- },
- {
- "first_name": "Corissa",
- "last_name": "Newarte",
- "id": 76
- },
- {
- "first_name": "Rancell",
- "last_name": "Chrispin",
- "id": 77
- },
- {
- "first_name": "Kariotta",
- "last_name": "Zammett",
- "id": 78
- },
- {
- "first_name": "Tammy",
- "last_name": "Jeannet",
- "id": 79
- },
- {
- "first_name": "Osbourne",
- "last_name": "Heinert",
- "id": 80
- },
- {
- "first_name": "Marcia",
- "last_name": "Kaes",
- "id": 81
- },
- {
- "first_name": "Curry",
- "last_name": "MacCracken",
- "id": 82
- },
- {
- "first_name": "Duke",
- "last_name": "Ramalhete",
- "id": 83
- },
- {
- "first_name": "Domeniga",
- "last_name": "Cutajar",
- "id": 84
- },
- {
- "first_name": "Blaire",
- "last_name": "Kolyagin",
- "id": 85
- },
- {
- "first_name": "Kerry",
- "last_name": "Glassard",
- "id": 86
- },
- {
- "first_name": "Adolphe",
- "last_name": "Snook",
- "id": 87
- },
- {
- "first_name": "Byrom",
- "last_name": "Kaygill",
- "id": 88
- },
- {
- "first_name": "Neddie",
- "last_name": "Klimaszewski",
- "id": 89
- },
- {
- "first_name": "Neal",
- "last_name": "Marzelle",
- "id": 90
- },
- {
- "first_name": "Laureen",
- "last_name": "Ezzell",
- "id": 91
- },
- {
- "first_name": "Davine",
- "last_name": "Druce",
- "id": 92
- },
- {
- "first_name": "Carny",
- "last_name": "Baird",
- "id": 93
- },
- {
- "first_name": "Thadeus",
- "last_name": "Alcido",
- "id": 94
- },
- {
- "first_name": "Berry",
- "last_name": "Chanter",
- "id": 95
- },
- {
- "first_name": "Kamillah",
- "last_name": "Mott",
- "id": 96
- },
- {
- "first_name": "Godfree",
- "last_name": "Cains",
- "id": 97
- },
- {
- "first_name": "Rubia",
- "last_name": "Blundan",
- "id": 98
- },
- {
- "first_name": "Bart",
- "last_name": "Godain",
- "id": 99
- },
- {
- "first_name": "Carlina",
- "last_name": "Chamberlayne",
- "id": 100
- },
- {
- "first_name": "Alaric",
- "last_name": "Dils",
- "id": 101
- },
- {
- "first_name": "Tracy",
- "last_name": "Bamell",
- "id": 102
- },
- {
- "first_name": "Laural",
- "last_name": "Melly",
- "id": 103
- },
- {
- "first_name": "Bary",
- "last_name": "Ableson",
- "id": 104
- },
- {
- "first_name": "Joell",
- "last_name": "M'Chirrie",
- "id": 105
- },
- {
- "first_name": "Danni",
- "last_name": "Vaines",
- "id": 106
- },
- {
- "first_name": "Emelia",
- "last_name": "Bullough",
- "id": 107
- },
- {
- "first_name": "Cinnamon",
- "last_name": "Flounders",
- "id": 108
- },
- {
- "first_name": "Farica",
- "last_name": "Soaper",
- "id": 109
- },
- {
- "first_name": "Peggy",
- "last_name": "Lemerie",
- "id": 110
- },
- {
- "first_name": "Craig",
- "last_name": "Greenslade",
- "id": 111
- },
- {
- "first_name": "Zitella",
- "last_name": "Bachman",
- "id": 112
- },
- {
- "first_name": "Willa",
- "last_name": "Schlag",
- "id": 113
- },
- {
- "first_name": "Leonerd",
- "last_name": "Dewes",
- "id": 114
- },
- {
- "first_name": "Jacquelin",
- "last_name": "Willavize",
- "id": 115
- },
- {
- "first_name": "Amble",
- "last_name": "Brahams",
- "id": 116
- },
- {
- "first_name": "Rona",
- "last_name": "McGlew",
- "id": 117
- },
- {
- "first_name": "Libbi",
- "last_name": "Cargenven",
- "id": 118
- },
- {
- "first_name": "Ina",
- "last_name": "Le",
- "id": 119
- },
- {
- "first_name": "Jamie",
- "last_name": "Skittle",
- "id": 120
- },
- {
- "first_name": "Stephani",
- "last_name": "Battle",
- "id": 121
- },
- {
- "first_name": "Rogers",
- "last_name": "Ciccetti",
- "id": 122
- },
- {
- "first_name": "Calv",
- "last_name": "Drinkhill",
- "id": 123
- },
- {
- "first_name": "Timothea",
- "last_name": "Sprulls",
- "id": 124
- },
- {
- "first_name": "Darb",
- "last_name": "Seston",
- "id": 125
- },
- {
- "first_name": "Jessee",
- "last_name": "Wale",
- "id": 126
- },
- {
- "first_name": "Eve",
- "last_name": "Reith",
- "id": 127
- },
- {
- "first_name": "Rolland",
- "last_name": "Currier",
- "id": 128
- },
- {
- "first_name": "Hayes",
- "last_name": "Halshaw",
- "id": 129
- },
- {
- "first_name": "Pieter",
- "last_name": "Ventris",
- "id": 130
- },
- {
- "first_name": "Dalia",
- "last_name": "Blades",
- "id": 131
- },
- {
- "first_name": "Sabine",
- "last_name": "Fader",
- "id": 132
- },
- {
- "first_name": "Steward",
- "last_name": "Rogez",
- "id": 133
- },
- {
- "first_name": "Vanya",
- "last_name": "Cicchinelli",
- "id": 134
- },
- {
- "first_name": "Rene",
- "last_name": "Rockhill",
- "id": 135
- },
- {
- "first_name": "Marji",
- "last_name": "Coulbeck",
- "id": 136
- },
- {
- "first_name": "Nicolle",
- "last_name": "Strain",
- "id": 137
- },
- {
- "first_name": "Xaviera",
- "last_name": "Swash",
- "id": 138
- },
- {
- "first_name": "Selle",
- "last_name": "Johnston",
- "id": 139
- },
- {
- "first_name": "Caressa",
- "last_name": "Bavridge",
- "id": 140
- },
- {
- "first_name": "Benedict",
- "last_name": "Robichon",
- "id": 141
- },
- {
- "first_name": "Rogerio",
- "last_name": "Armitage",
- "id": 142
- },
- {
- "first_name": "Otto",
- "last_name": "Nelius",
- "id": 143
- },
- {
- "first_name": "Bing",
- "last_name": "Ferrai",
- "id": 144
- },
- {
- "first_name": "Avril",
- "last_name": "Wagner",
- "id": 145
- },
- {
- "first_name": "Devondra",
- "last_name": "Cutforth",
- "id": 146
- },
- {
- "first_name": "Giustino",
- "last_name": "Minchella",
- "id": 147
- },
- {
- "first_name": "Dore",
- "last_name": "McIlvaney",
- "id": 148
- },
- {
- "first_name": "Elene",
- "last_name": "Lukacs",
- "id": 149
- },
- {
- "first_name": "Leicester",
- "last_name": "Mattedi",
- "id": 150
- },
- {
- "first_name": "Blayne",
- "last_name": "Wordsworth",
- "id": 151
- },
- {
- "first_name": "Bidget",
- "last_name": "Royle",
- "id": 152
- },
- {
- "first_name": "Heidie",
- "last_name": "Cossem",
- "id": 153
- },
- {
- "first_name": "Seward",
- "last_name": "Greenhead",
- "id": 154
- },
- {
- "first_name": "Ariana",
- "last_name": "Duigan",
- "id": 155
- },
- {
- "first_name": "Rollin",
- "last_name": "Dainton",
- "id": 156
- }
-]
\ No newline at end of file
diff --git a/round 1/sfcc_2023_claims.json b/round 1/sfcc_2023_claims.json
deleted file mode 100644
index 6c4e089..0000000
--- a/round 1/sfcc_2023_claims.json
+++ /dev/null
@@ -1,12002 +0,0 @@
-[
- {
- "id": 1,
- "disaster_id": 15,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 3580.02,
- "agent_assigned_id": 97,
- "claim_handler_assigned_id": 50
- },
- {
- "id": 2,
- "disaster_id": 24,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 1741.32,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 92
- },
- {
- "id": 3,
- "disaster_id": 31,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 15224.3,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 133
- },
- {
- "id": 4,
- "disaster_id": 14,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 6542.46,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 39
- },
- {
- "id": 5,
- "disaster_id": 30,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 979.81,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 103
- },
- {
- "id": 6,
- "disaster_id": 77,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 200430.52,
- "agent_assigned_id": 98,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 7,
- "disaster_id": 31,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 1362.17,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 156
- },
- {
- "id": 8,
- "disaster_id": 17,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 438400.51,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 112
- },
- {
- "id": 9,
- "disaster_id": 20,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 1326.11,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 35
- },
- {
- "id": 10,
- "disaster_id": 86,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 437.48,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 49
- },
- {
- "id": 11,
- "disaster_id": 86,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 8797.07,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 68
- },
- {
- "id": 12,
- "disaster_id": 21,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 2918.5,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 13,
- "disaster_id": 74,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 23890.38,
- "agent_assigned_id": 26,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 14,
- "disaster_id": 55,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 1681.48,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 117
- },
- {
- "id": 15,
- "disaster_id": 35,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 993.53,
- "agent_assigned_id": 85,
- "claim_handler_assigned_id": 59
- },
- {
- "id": 16,
- "disaster_id": 25,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 13560.17,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 73
- },
- {
- "id": 17,
- "disaster_id": 66,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 30294.14,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 122
- },
- {
- "id": 18,
- "disaster_id": 97,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 264700.71,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 138
- },
- {
- "id": 19,
- "disaster_id": 29,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 39400.46,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 30
- },
- {
- "id": 20,
- "disaster_id": 92,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 140820.81,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 11
- },
- {
- "id": 21,
- "disaster_id": 57,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 68880.07,
- "agent_assigned_id": 89,
- "claim_handler_assigned_id": 115
- },
- {
- "id": 22,
- "disaster_id": 98,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 1544.33,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 97
- },
- {
- "id": 23,
- "disaster_id": 91,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 5534.35,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 21
- },
- {
- "id": 24,
- "disaster_id": 72,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 7509.84,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 22
- },
- {
- "id": 25,
- "disaster_id": 16,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 13195.12,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 23
- },
- {
- "id": 26,
- "disaster_id": 40,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1021.43,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 118
- },
- {
- "id": 27,
- "disaster_id": 2,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 11272.93,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 28
- },
- {
- "id": 28,
- "disaster_id": 51,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 81160.19,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 108
- },
- {
- "id": 29,
- "disaster_id": 81,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 8,
- "estimate_cost": 28912.89,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 11
- },
- {
- "id": 30,
- "disaster_id": 6,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 423760.7,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 152
- },
- {
- "id": 31,
- "disaster_id": 77,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 8,
- "estimate_cost": 63488.54,
- "agent_assigned_id": 71,
- "claim_handler_assigned_id": 11
- },
- {
- "id": 32,
- "disaster_id": 22,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 1256.87,
- "agent_assigned_id": 70,
- "claim_handler_assigned_id": 27
- },
- {
- "id": 33,
- "disaster_id": 20,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 13762.36,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 31
- },
- {
- "id": 34,
- "disaster_id": 89,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 8764.87,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 148
- },
- {
- "id": 35,
- "disaster_id": 63,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 95060.58,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 36,
- "disaster_id": 11,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 72510.72,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 27
- },
- {
- "id": 37,
- "disaster_id": 94,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 10,
- "estimate_cost": 860000.96,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 34
- },
- {
- "id": 38,
- "disaster_id": 23,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 440.44,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 39,
- "disaster_id": 34,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 420540.13,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 85
- },
- {
- "id": 40,
- "disaster_id": 61,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 972.58,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 143
- },
- {
- "id": 41,
- "disaster_id": 56,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 186210.41,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 114
- },
- {
- "id": 42,
- "disaster_id": 85,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 1105.04,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 136
- },
- {
- "id": 43,
- "disaster_id": 65,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 1651.13,
- "agent_assigned_id": 14,
- "claim_handler_assigned_id": 38
- },
- {
- "id": 44,
- "disaster_id": 87,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 2587.56,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 2
- },
- {
- "id": 45,
- "disaster_id": 30,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 161.71,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 62
- },
- {
- "id": 46,
- "disaster_id": 73,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 32380.38,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 37
- },
- {
- "id": 47,
- "disaster_id": 99,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 76840.43,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 57
- },
- {
- "id": 48,
- "disaster_id": 71,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 748080.1,
- "agent_assigned_id": 27,
- "claim_handler_assigned_id": 142
- },
- {
- "id": 49,
- "disaster_id": 83,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 6508.15,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 41
- },
- {
- "id": 50,
- "disaster_id": 41,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 7954.76,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 32
- },
- {
- "id": 51,
- "disaster_id": 99,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 829.6,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 155
- },
- {
- "id": 52,
- "disaster_id": 88,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 98970.24,
- "agent_assigned_id": 47,
- "claim_handler_assigned_id": 1
- },
- {
- "id": 53,
- "disaster_id": 67,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 64372.16,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 73
- },
- {
- "id": 54,
- "disaster_id": 92,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 664240.86,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 93
- },
- {
- "id": 55,
- "disaster_id": 39,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 328770.11,
- "agent_assigned_id": 11,
- "claim_handler_assigned_id": 113
- },
- {
- "id": 56,
- "disaster_id": 87,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 33192.9,
- "agent_assigned_id": 23,
- "claim_handler_assigned_id": 89
- },
- {
- "id": 57,
- "disaster_id": 66,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 150.42,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 137
- },
- {
- "id": 58,
- "disaster_id": 52,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 2803.2,
- "agent_assigned_id": 5,
- "claim_handler_assigned_id": 146
- },
- {
- "id": 59,
- "disaster_id": 56,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 2156.95,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 123
- },
- {
- "id": 60,
- "disaster_id": 59,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 731.8,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 55
- },
- {
- "id": 61,
- "disaster_id": 15,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 292.7,
- "agent_assigned_id": 80,
- "claim_handler_assigned_id": 74
- },
- {
- "id": 62,
- "disaster_id": 37,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 4423.32,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 130
- },
- {
- "id": 63,
- "disaster_id": 56,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 158520.21,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 63
- },
- {
- "id": 64,
- "disaster_id": 74,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 2859.48,
- "agent_assigned_id": 80,
- "claim_handler_assigned_id": 91
- },
- {
- "id": 65,
- "disaster_id": 8,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 4101.33,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 57
- },
- {
- "id": 66,
- "disaster_id": 64,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1904.24,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 118
- },
- {
- "id": 67,
- "disaster_id": 10,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 460.0,
- "agent_assigned_id": 66,
- "claim_handler_assigned_id": 149
- },
- {
- "id": 68,
- "disaster_id": 66,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 6279.52,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 98
- },
- {
- "id": 69,
- "disaster_id": 98,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 290.87,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 111
- },
- {
- "id": 70,
- "disaster_id": 26,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 5725.39,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 97
- },
- {
- "id": 71,
- "disaster_id": 81,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 283.68,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 121
- },
- {
- "id": 72,
- "disaster_id": 80,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 191760.43,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 57
- },
- {
- "id": 73,
- "disaster_id": 34,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 187.21,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 74,
- "disaster_id": 81,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 1932.27,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 61
- },
- {
- "id": 75,
- "disaster_id": 33,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 7,
- "estimate_cost": 30436.07,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 69
- },
- {
- "id": 76,
- "disaster_id": 26,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 12480.86,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 136
- },
- {
- "id": 77,
- "disaster_id": 64,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 741960.11,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 120
- },
- {
- "id": 78,
- "disaster_id": 11,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 4201.27,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 62
- },
- {
- "id": 79,
- "disaster_id": 86,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 12720.15,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 26
- },
- {
- "id": 80,
- "disaster_id": 4,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 5767.29,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 122
- },
- {
- "id": 81,
- "disaster_id": 98,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 330890.3,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 49
- },
- {
- "id": 82,
- "disaster_id": 82,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 1657.61,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 11
- },
- {
- "id": 83,
- "disaster_id": 66,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 26592.59,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 139
- },
- {
- "id": 84,
- "disaster_id": 54,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 580.37,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 85,
- "disaster_id": 9,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 34452.08,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 152
- },
- {
- "id": 86,
- "disaster_id": 39,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 515.0,
- "agent_assigned_id": 62,
- "claim_handler_assigned_id": 78
- },
- {
- "id": 87,
- "disaster_id": 27,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 4578.17,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 141
- },
- {
- "id": 88,
- "disaster_id": 21,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 18592.37,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 112
- },
- {
- "id": 89,
- "disaster_id": 13,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 1479.36,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 104
- },
- {
- "id": 90,
- "disaster_id": 42,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 2668.32,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 22
- },
- {
- "id": 91,
- "disaster_id": 63,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 438360.74,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 92,
- "disaster_id": 67,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 2067.1,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 99
- },
- {
- "id": 93,
- "disaster_id": 47,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 31340.03,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 1
- },
- {
- "id": 94,
- "disaster_id": 67,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 5665.9,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 56
- },
- {
- "id": 95,
- "disaster_id": 57,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 39716.85,
- "agent_assigned_id": 82,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 96,
- "disaster_id": 75,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 733900.72,
- "agent_assigned_id": 78,
- "claim_handler_assigned_id": 141
- },
- {
- "id": 97,
- "disaster_id": 37,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 826700.56,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 118
- },
- {
- "id": 98,
- "disaster_id": 50,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 86340.22,
- "agent_assigned_id": 8,
- "claim_handler_assigned_id": 31
- },
- {
- "id": 99,
- "disaster_id": 86,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 10200.96,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 66
- },
- {
- "id": 100,
- "disaster_id": 29,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 7,
- "estimate_cost": 5174.43,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 72
- },
- {
- "id": 101,
- "disaster_id": 96,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 216600.22,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 131
- },
- {
- "id": 102,
- "disaster_id": 6,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 18492.29,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 148
- },
- {
- "id": 103,
- "disaster_id": 85,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 1586.04,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 12
- },
- {
- "id": 104,
- "disaster_id": 20,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 3883.58,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 14
- },
- {
- "id": 105,
- "disaster_id": 25,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 39910.41,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 82
- },
- {
- "id": 106,
- "disaster_id": 73,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 7378.47,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 15
- },
- {
- "id": 107,
- "disaster_id": 60,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 411120.7,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 80
- },
- {
- "id": 108,
- "disaster_id": 98,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 5652.69,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 109,
- "disaster_id": 66,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 1189.53,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 81
- },
- {
- "id": 110,
- "disaster_id": 79,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 9172.87,
- "agent_assigned_id": 43,
- "claim_handler_assigned_id": 117
- },
- {
- "id": 111,
- "disaster_id": 2,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 230100.3,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 137
- },
- {
- "id": 112,
- "disaster_id": 1,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 1,
- "estimate_cost": 159.96,
- "agent_assigned_id": 75,
- "claim_handler_assigned_id": 93
- },
- {
- "id": 113,
- "disaster_id": 51,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 4446.5,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 28
- },
- {
- "id": 114,
- "disaster_id": 51,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 5364.37,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 37
- },
- {
- "id": 115,
- "disaster_id": 58,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 4368.15,
- "agent_assigned_id": 46,
- "claim_handler_assigned_id": 60
- },
- {
- "id": 116,
- "disaster_id": 56,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 4715.54,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 29
- },
- {
- "id": 117,
- "disaster_id": 59,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 6452.08,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 57
- },
- {
- "id": 118,
- "disaster_id": 77,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 4557.68,
- "agent_assigned_id": 98,
- "claim_handler_assigned_id": 22
- },
- {
- "id": 119,
- "disaster_id": 26,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 651.75,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 80
- },
- {
- "id": 120,
- "disaster_id": 89,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 2,
- "estimate_cost": 1929.28,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 57
- },
- {
- "id": 121,
- "disaster_id": 89,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 687300.71,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 82
- },
- {
- "id": 122,
- "disaster_id": 85,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 8225.1,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 123,
- "disaster_id": 2,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 28945.04,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 103
- },
- {
- "id": 124,
- "disaster_id": 29,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 222330.15,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 91
- },
- {
- "id": 125,
- "disaster_id": 92,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 4418.71,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 77
- },
- {
- "id": 126,
- "disaster_id": 18,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 45000.06,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 23
- },
- {
- "id": 127,
- "disaster_id": 56,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 4,
- "estimate_cost": 11873.0,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 5
- },
- {
- "id": 128,
- "disaster_id": 53,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 46.02,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 62
- },
- {
- "id": 129,
- "disaster_id": 38,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 192950.47,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 46
- },
- {
- "id": 130,
- "disaster_id": 31,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 9,
- "estimate_cost": 2762.64,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 11
- },
- {
- "id": 131,
- "disaster_id": 5,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 1336.23,
- "agent_assigned_id": 30,
- "claim_handler_assigned_id": 45
- },
- {
- "id": 132,
- "disaster_id": 91,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 27780.53,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 133,
- "disaster_id": 16,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 1765.29,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 76
- },
- {
- "id": 134,
- "disaster_id": 38,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 173490.61,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 54
- },
- {
- "id": 135,
- "disaster_id": 86,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 298550.27,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 136
- },
- {
- "id": 136,
- "disaster_id": 38,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 581350.32,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 121
- },
- {
- "id": 137,
- "disaster_id": 10,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 270540.99,
- "agent_assigned_id": 66,
- "claim_handler_assigned_id": 123
- },
- {
- "id": 138,
- "disaster_id": 60,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 128400.89,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 79
- },
- {
- "id": 139,
- "disaster_id": 98,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 5936.8,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 58
- },
- {
- "id": 140,
- "disaster_id": 57,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 5145.72,
- "agent_assigned_id": 89,
- "claim_handler_assigned_id": 78
- },
- {
- "id": 141,
- "disaster_id": 16,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 6718.53,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 9
- },
- {
- "id": 142,
- "disaster_id": 95,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 324.53,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 15
- },
- {
- "id": 143,
- "disaster_id": 84,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 185680.91,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 119
- },
- {
- "id": 144,
- "disaster_id": 100,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 1282.19,
- "agent_assigned_id": 70,
- "claim_handler_assigned_id": 143
- },
- {
- "id": 145,
- "disaster_id": 11,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 3733.06,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 53
- },
- {
- "id": 146,
- "disaster_id": 73,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 853920.95,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 82
- },
- {
- "id": 147,
- "disaster_id": 26,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 2336.44,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 9
- },
- {
- "id": 148,
- "disaster_id": 70,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 12980.82,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 139
- },
- {
- "id": 149,
- "disaster_id": 78,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 3449.69,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 95
- },
- {
- "id": 150,
- "disaster_id": 11,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 67480.89,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 93
- },
- {
- "id": 151,
- "disaster_id": 2,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 368840.36,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 50
- },
- {
- "id": 152,
- "disaster_id": 17,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 9865.7,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 124
- },
- {
- "id": 153,
- "disaster_id": 7,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 37324.45,
- "agent_assigned_id": 73,
- "claim_handler_assigned_id": 105
- },
- {
- "id": 154,
- "disaster_id": 54,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 409800.36,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 15
- },
- {
- "id": 155,
- "disaster_id": 47,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 5347.35,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 32
- },
- {
- "id": 156,
- "disaster_id": 87,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 5200.7,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 144
- },
- {
- "id": 157,
- "disaster_id": 2,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 4378.82,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 153
- },
- {
- "id": 158,
- "disaster_id": 90,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 3497.1,
- "agent_assigned_id": 26,
- "claim_handler_assigned_id": 45
- },
- {
- "id": 159,
- "disaster_id": 2,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 7928.67,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 152
- },
- {
- "id": 160,
- "disaster_id": 50,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 38945.93,
- "agent_assigned_id": 8,
- "claim_handler_assigned_id": 74
- },
- {
- "id": 161,
- "disaster_id": 80,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 65520.68,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 40
- },
- {
- "id": 162,
- "disaster_id": 17,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 52368.11,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 102
- },
- {
- "id": 163,
- "disaster_id": 74,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 78210.71,
- "agent_assigned_id": 26,
- "claim_handler_assigned_id": 78
- },
- {
- "id": 164,
- "disaster_id": 22,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 3747.84,
- "agent_assigned_id": 70,
- "claim_handler_assigned_id": 119
- },
- {
- "id": 165,
- "disaster_id": 6,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 7620.94,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 166,
- "disaster_id": 2,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1691.21,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 14
- },
- {
- "id": 167,
- "disaster_id": 39,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 206250.11,
- "agent_assigned_id": 89,
- "claim_handler_assigned_id": 79
- },
- {
- "id": 168,
- "disaster_id": 6,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 972.56,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 101
- },
- {
- "id": 169,
- "disaster_id": 39,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 47995.42,
- "agent_assigned_id": 89,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 170,
- "disaster_id": 56,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 3423.49,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 113
- },
- {
- "id": 171,
- "disaster_id": 10,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 21945.23,
- "agent_assigned_id": 66,
- "claim_handler_assigned_id": 70
- },
- {
- "id": 172,
- "disaster_id": 42,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 2063.11,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 111
- },
- {
- "id": 173,
- "disaster_id": 10,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 334000.63,
- "agent_assigned_id": 85,
- "claim_handler_assigned_id": 107
- },
- {
- "id": 174,
- "disaster_id": 97,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 5,
- "estimate_cost": 4483.3,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 63
- },
- {
- "id": 175,
- "disaster_id": 50,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 12705.11,
- "agent_assigned_id": 8,
- "claim_handler_assigned_id": 81
- },
- {
- "id": 176,
- "disaster_id": 61,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 21140.3,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 103
- },
- {
- "id": 177,
- "disaster_id": 24,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 1233.05,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 178,
- "disaster_id": 32,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 120540.32,
- "agent_assigned_id": 19,
- "claim_handler_assigned_id": 38
- },
- {
- "id": 179,
- "disaster_id": 65,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 620.26,
- "agent_assigned_id": 14,
- "claim_handler_assigned_id": 121
- },
- {
- "id": 180,
- "disaster_id": 99,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 2756.2,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 10
- },
- {
- "id": 181,
- "disaster_id": 83,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 206520.21,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 100
- },
- {
- "id": 182,
- "disaster_id": 84,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 51730.89,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 125
- },
- {
- "id": 183,
- "disaster_id": 82,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 438.07,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 23
- },
- {
- "id": 184,
- "disaster_id": 7,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 13600.66,
- "agent_assigned_id": 19,
- "claim_handler_assigned_id": 115
- },
- {
- "id": 185,
- "disaster_id": 34,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 147280.09,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 30
- },
- {
- "id": 186,
- "disaster_id": 58,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 2260.64,
- "agent_assigned_id": 46,
- "claim_handler_assigned_id": 110
- },
- {
- "id": 187,
- "disaster_id": 61,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 4,
- "estimate_cost": 2481.55,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 102
- },
- {
- "id": 188,
- "disaster_id": 46,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 43030.83,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 41
- },
- {
- "id": 189,
- "disaster_id": 63,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 2,
- "estimate_cost": 3988.1,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 86
- },
- {
- "id": 190,
- "disaster_id": 66,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 44450.24,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 148
- },
- {
- "id": 191,
- "disaster_id": 8,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 1107.71,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 87
- },
- {
- "id": 192,
- "disaster_id": 49,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 2268.44,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 138
- },
- {
- "id": 193,
- "disaster_id": 24,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 43735.56,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 45
- },
- {
- "id": 194,
- "disaster_id": 88,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 3721.85,
- "agent_assigned_id": 47,
- "claim_handler_assigned_id": 135
- },
- {
- "id": 195,
- "disaster_id": 72,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 326450.84,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 145
- },
- {
- "id": 196,
- "disaster_id": 39,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 6288.55,
- "agent_assigned_id": 82,
- "claim_handler_assigned_id": 82
- },
- {
- "id": 197,
- "disaster_id": 43,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 227360.9,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 99
- },
- {
- "id": 198,
- "disaster_id": 48,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 1,
- "estimate_cost": 25630.07,
- "agent_assigned_id": 91,
- "claim_handler_assigned_id": 43
- },
- {
- "id": 199,
- "disaster_id": 71,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 6,
- "estimate_cost": 561000.07,
- "agent_assigned_id": 42,
- "claim_handler_assigned_id": 2
- },
- {
- "id": 200,
- "disaster_id": 81,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 18314.97,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 23
- },
- {
- "id": 201,
- "disaster_id": 14,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 134800.54,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 55
- },
- {
- "id": 202,
- "disaster_id": 67,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 92450.18,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 42
- },
- {
- "id": 203,
- "disaster_id": 29,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 733600.26,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 86
- },
- {
- "id": 204,
- "disaster_id": 95,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 4,
- "estimate_cost": 7948.67,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 112
- },
- {
- "id": 205,
- "disaster_id": 4,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 29718.91,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 76
- },
- {
- "id": 206,
- "disaster_id": 44,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 46386.26,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 53
- },
- {
- "id": 207,
- "disaster_id": 71,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 67.8,
- "agent_assigned_id": 60,
- "claim_handler_assigned_id": 141
- },
- {
- "id": 208,
- "disaster_id": 78,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 467400.75,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 65
- },
- {
- "id": 209,
- "disaster_id": 12,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 141160.26,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 4
- },
- {
- "id": 210,
- "disaster_id": 65,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 9068.43,
- "agent_assigned_id": 14,
- "claim_handler_assigned_id": 46
- },
- {
- "id": 211,
- "disaster_id": 88,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 15864.62,
- "agent_assigned_id": 17,
- "claim_handler_assigned_id": 136
- },
- {
- "id": 212,
- "disaster_id": 50,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 32625.66,
- "agent_assigned_id": 8,
- "claim_handler_assigned_id": 25
- },
- {
- "id": 213,
- "disaster_id": 77,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 45070.87,
- "agent_assigned_id": 71,
- "claim_handler_assigned_id": 151
- },
- {
- "id": 214,
- "disaster_id": 69,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 676.13,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 91
- },
- {
- "id": 215,
- "disaster_id": 49,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 12552.15,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 4
- },
- {
- "id": 216,
- "disaster_id": 39,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 323440.7,
- "agent_assigned_id": 89,
- "claim_handler_assigned_id": 146
- },
- {
- "id": 217,
- "disaster_id": 60,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 406750.64,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 12
- },
- {
- "id": 218,
- "disaster_id": 1,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 4700.79,
- "agent_assigned_id": 95,
- "claim_handler_assigned_id": 80
- },
- {
- "id": 219,
- "disaster_id": 88,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 6029.17,
- "agent_assigned_id": 17,
- "claim_handler_assigned_id": 7
- },
- {
- "id": 220,
- "disaster_id": 61,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 3760.85,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 103
- },
- {
- "id": 221,
- "disaster_id": 32,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 23708.94,
- "agent_assigned_id": 19,
- "claim_handler_assigned_id": 85
- },
- {
- "id": 222,
- "disaster_id": 92,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 58633.0,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 39
- },
- {
- "id": 223,
- "disaster_id": 87,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 2599.44,
- "agent_assigned_id": 23,
- "claim_handler_assigned_id": 21
- },
- {
- "id": 224,
- "disaster_id": 40,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 370880.21,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 133
- },
- {
- "id": 225,
- "disaster_id": 86,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 14217.39,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 55
- },
- {
- "id": 226,
- "disaster_id": 29,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 65360.93,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 227,
- "disaster_id": 71,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 47605.46,
- "agent_assigned_id": 42,
- "claim_handler_assigned_id": 15
- },
- {
- "id": 228,
- "disaster_id": 35,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 456.18,
- "agent_assigned_id": 85,
- "claim_handler_assigned_id": 104
- },
- {
- "id": 229,
- "disaster_id": 61,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 586.18,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 39
- },
- {
- "id": 230,
- "disaster_id": 79,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 2275.1,
- "agent_assigned_id": 43,
- "claim_handler_assigned_id": 1
- },
- {
- "id": 231,
- "disaster_id": 36,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 619.31,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 40
- },
- {
- "id": 232,
- "disaster_id": 45,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 3672.15,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 20
- },
- {
- "id": 233,
- "disaster_id": 9,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 1,
- "estimate_cost": 2956.68,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 135
- },
- {
- "id": 234,
- "disaster_id": 24,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 83720.65,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 78
- },
- {
- "id": 235,
- "disaster_id": 15,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 773.79,
- "agent_assigned_id": 21,
- "claim_handler_assigned_id": 123
- },
- {
- "id": 236,
- "disaster_id": 22,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 14100.29,
- "agent_assigned_id": 70,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 237,
- "disaster_id": 64,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 616770.92,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 142
- },
- {
- "id": 238,
- "disaster_id": 6,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 4050.75,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 133
- },
- {
- "id": 239,
- "disaster_id": 87,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 2745.09,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 47
- },
- {
- "id": 240,
- "disaster_id": 20,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 4320.75,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 114
- },
- {
- "id": 241,
- "disaster_id": 35,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 1170.8,
- "agent_assigned_id": 66,
- "claim_handler_assigned_id": 74
- },
- {
- "id": 242,
- "disaster_id": 36,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 273600.71,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 41
- },
- {
- "id": 243,
- "disaster_id": 89,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 305760.75,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 49
- },
- {
- "id": 244,
- "disaster_id": 99,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 6,
- "estimate_cost": 48804.96,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 27
- },
- {
- "id": 245,
- "disaster_id": 79,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 2314.31,
- "agent_assigned_id": 43,
- "claim_handler_assigned_id": 89
- },
- {
- "id": 246,
- "disaster_id": 86,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 626.28,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 123
- },
- {
- "id": 247,
- "disaster_id": 89,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 648.71,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 33
- },
- {
- "id": 248,
- "disaster_id": 91,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 53053.87,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 58
- },
- {
- "id": 249,
- "disaster_id": 96,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 36560.04,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 141
- },
- {
- "id": 250,
- "disaster_id": 53,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 26940.95,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 22
- },
- {
- "id": 251,
- "disaster_id": 81,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 1205.72,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 35
- },
- {
- "id": 252,
- "disaster_id": 27,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 89370.04,
- "agent_assigned_id": 46,
- "claim_handler_assigned_id": 35
- },
- {
- "id": 253,
- "disaster_id": 6,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 1772.43,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 14
- },
- {
- "id": 254,
- "disaster_id": 67,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 2970.9,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 114
- },
- {
- "id": 255,
- "disaster_id": 38,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 951900.97,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 149
- },
- {
- "id": 256,
- "disaster_id": 57,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 4754.14,
- "agent_assigned_id": 82,
- "claim_handler_assigned_id": 9
- },
- {
- "id": 257,
- "disaster_id": 26,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 15435.74,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 43
- },
- {
- "id": 258,
- "disaster_id": 84,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 1185.26,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 61
- },
- {
- "id": 259,
- "disaster_id": 100,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 85420.5,
- "agent_assigned_id": 56,
- "claim_handler_assigned_id": 47
- },
- {
- "id": 260,
- "disaster_id": 100,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 7743.98,
- "agent_assigned_id": 56,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 261,
- "disaster_id": 38,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 2133.75,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 106
- },
- {
- "id": 262,
- "disaster_id": 5,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 364020.06,
- "agent_assigned_id": 30,
- "claim_handler_assigned_id": 48
- },
- {
- "id": 263,
- "disaster_id": 26,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 4,
- "estimate_cost": 2906.39,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 105
- },
- {
- "id": 264,
- "disaster_id": 14,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 352300.74,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 39
- },
- {
- "id": 265,
- "disaster_id": 51,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 21870.2,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 37
- },
- {
- "id": 266,
- "disaster_id": 94,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 1024.57,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 127
- },
- {
- "id": 267,
- "disaster_id": 16,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 526140.58,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 105
- },
- {
- "id": 268,
- "disaster_id": 47,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 380580.84,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 128
- },
- {
- "id": 269,
- "disaster_id": 65,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 305.7,
- "agent_assigned_id": 14,
- "claim_handler_assigned_id": 108
- },
- {
- "id": 270,
- "disaster_id": 33,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 330840.79,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 36
- },
- {
- "id": 271,
- "disaster_id": 22,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 23832.81,
- "agent_assigned_id": 56,
- "claim_handler_assigned_id": 25
- },
- {
- "id": 272,
- "disaster_id": 89,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 10110.43,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 273,
- "disaster_id": 98,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 32380.37,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 65
- },
- {
- "id": 274,
- "disaster_id": 17,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 19761.82,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 98
- },
- {
- "id": 275,
- "disaster_id": 34,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 4611.72,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 46
- },
- {
- "id": 276,
- "disaster_id": 55,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 4400.1,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 88
- },
- {
- "id": 277,
- "disaster_id": 97,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 32616.0,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 278,
- "disaster_id": 82,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 13894.58,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 51
- },
- {
- "id": 279,
- "disaster_id": 32,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 13167.24,
- "agent_assigned_id": 73,
- "claim_handler_assigned_id": 140
- },
- {
- "id": 280,
- "disaster_id": 76,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 542160.69,
- "agent_assigned_id": 58,
- "claim_handler_assigned_id": 49
- },
- {
- "id": 281,
- "disaster_id": 46,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 4983.17,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 21
- },
- {
- "id": 282,
- "disaster_id": 59,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 210690.04,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 283,
- "disaster_id": 77,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 1579.85,
- "agent_assigned_id": 71,
- "claim_handler_assigned_id": 96
- },
- {
- "id": 284,
- "disaster_id": 94,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 1368.9,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 48
- },
- {
- "id": 285,
- "disaster_id": 31,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 3644.19,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 100
- },
- {
- "id": 286,
- "disaster_id": 28,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 518.81,
- "agent_assigned_id": 35,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 287,
- "disaster_id": 41,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 16790.59,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 18
- },
- {
- "id": 288,
- "disaster_id": 80,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 18872.07,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 59
- },
- {
- "id": 289,
- "disaster_id": 100,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 2,
- "estimate_cost": 562.76,
- "agent_assigned_id": 70,
- "claim_handler_assigned_id": 54
- },
- {
- "id": 290,
- "disaster_id": 69,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 8,
- "estimate_cost": 409600.11,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 77
- },
- {
- "id": 291,
- "disaster_id": 72,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 3803.3,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 107
- },
- {
- "id": 292,
- "disaster_id": 39,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 89830.43,
- "agent_assigned_id": 62,
- "claim_handler_assigned_id": 28
- },
- {
- "id": 293,
- "disaster_id": 34,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 1321.42,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 96
- },
- {
- "id": 294,
- "disaster_id": 57,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1875.43,
- "agent_assigned_id": 62,
- "claim_handler_assigned_id": 112
- },
- {
- "id": 295,
- "disaster_id": 95,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 490980.66,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 18
- },
- {
- "id": 296,
- "disaster_id": 34,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 803.72,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 103
- },
- {
- "id": 297,
- "disaster_id": 5,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 820.64,
- "agent_assigned_id": 30,
- "claim_handler_assigned_id": 54
- },
- {
- "id": 298,
- "disaster_id": 80,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 4396.24,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 73
- },
- {
- "id": 299,
- "disaster_id": 80,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 1336.46,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 300,
- "disaster_id": 6,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 1007.8,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 141
- },
- {
- "id": 301,
- "disaster_id": 81,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 4705.78,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 95
- },
- {
- "id": 302,
- "disaster_id": 67,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 1375.37,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 47
- },
- {
- "id": 303,
- "disaster_id": 17,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 206920.61,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 28
- },
- {
- "id": 304,
- "disaster_id": 49,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 419400.37,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 32
- },
- {
- "id": 305,
- "disaster_id": 44,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 26600.73,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 145
- },
- {
- "id": 306,
- "disaster_id": 26,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 2295.92,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 11
- },
- {
- "id": 307,
- "disaster_id": 58,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 9837.21,
- "agent_assigned_id": 1,
- "claim_handler_assigned_id": 58
- },
- {
- "id": 308,
- "disaster_id": 82,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 5034.36,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 105
- },
- {
- "id": 309,
- "disaster_id": 54,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 6392.54,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 81
- },
- {
- "id": 310,
- "disaster_id": 93,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 5867.6,
- "agent_assigned_id": 30,
- "claim_handler_assigned_id": 9
- },
- {
- "id": 311,
- "disaster_id": 26,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 2439.0,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 131
- },
- {
- "id": 312,
- "disaster_id": 75,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 27252.0,
- "agent_assigned_id": 14,
- "claim_handler_assigned_id": 66
- },
- {
- "id": 313,
- "disaster_id": 47,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 43545.48,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 79
- },
- {
- "id": 314,
- "disaster_id": 41,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 867200.98,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 15
- },
- {
- "id": 315,
- "disaster_id": 63,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 13974.78,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 316,
- "disaster_id": 71,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 22525.23,
- "agent_assigned_id": 27,
- "claim_handler_assigned_id": 122
- },
- {
- "id": 317,
- "disaster_id": 2,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 1802.38,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 123
- },
- {
- "id": 318,
- "disaster_id": 22,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 3704.27,
- "agent_assigned_id": 70,
- "claim_handler_assigned_id": 63
- },
- {
- "id": 319,
- "disaster_id": 92,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 4927.06,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 63
- },
- {
- "id": 320,
- "disaster_id": 70,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 801.01,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 39
- },
- {
- "id": 321,
- "disaster_id": 1,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 4646.24,
- "agent_assigned_id": 75,
- "claim_handler_assigned_id": 118
- },
- {
- "id": 322,
- "disaster_id": 36,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1953.73,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 23
- },
- {
- "id": 323,
- "disaster_id": 19,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 78360.26,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 324,
- "disaster_id": 41,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 703520.12,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 83
- },
- {
- "id": 325,
- "disaster_id": 80,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 6562.11,
- "agent_assigned_id": 59,
- "claim_handler_assigned_id": 110
- },
- {
- "id": 326,
- "disaster_id": 14,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 7522.67,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 45
- },
- {
- "id": 327,
- "disaster_id": 36,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 522540.08,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 91
- },
- {
- "id": 328,
- "disaster_id": 98,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 826.89,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 69
- },
- {
- "id": 329,
- "disaster_id": 20,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 2696.92,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 122
- },
- {
- "id": 330,
- "disaster_id": 81,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 1276.98,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 101
- },
- {
- "id": 331,
- "disaster_id": 87,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 7760.81,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 51
- },
- {
- "id": 332,
- "disaster_id": 81,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 3790.56,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 23
- },
- {
- "id": 333,
- "disaster_id": 31,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 2992.13,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 94
- },
- {
- "id": 334,
- "disaster_id": 45,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 4,
- "estimate_cost": 131440.25,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 83
- },
- {
- "id": 335,
- "disaster_id": 71,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 10,
- "estimate_cost": 6215.09,
- "agent_assigned_id": 60,
- "claim_handler_assigned_id": 154
- },
- {
- "id": 336,
- "disaster_id": 91,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 14340.0,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 337,
- "disaster_id": 3,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 570.18,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 89
- },
- {
- "id": 338,
- "disaster_id": 89,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 78470.86,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 124
- },
- {
- "id": 339,
- "disaster_id": 62,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 886800.79,
- "agent_assigned_id": 55,
- "claim_handler_assigned_id": 129
- },
- {
- "id": 340,
- "disaster_id": 56,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 5450.47,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 127
- },
- {
- "id": 341,
- "disaster_id": 87,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 694260.11,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 146
- },
- {
- "id": 342,
- "disaster_id": 57,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 37468.91,
- "agent_assigned_id": 11,
- "claim_handler_assigned_id": 140
- },
- {
- "id": 343,
- "disaster_id": 4,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 3002.77,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 130
- },
- {
- "id": 344,
- "disaster_id": 83,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 381780.94,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 12
- },
- {
- "id": 345,
- "disaster_id": 98,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 464700.46,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 97
- },
- {
- "id": 346,
- "disaster_id": 43,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 39991.9,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 69
- },
- {
- "id": 347,
- "disaster_id": 34,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 115150.09,
- "agent_assigned_id": 58,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 348,
- "disaster_id": 68,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 3771.23,
- "agent_assigned_id": 10,
- "claim_handler_assigned_id": 55
- },
- {
- "id": 349,
- "disaster_id": 25,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 79416.47,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 350,
- "disaster_id": 6,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 2412.76,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 121
- },
- {
- "id": 351,
- "disaster_id": 20,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 21840.36,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 128
- },
- {
- "id": 352,
- "disaster_id": 79,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 5134.24,
- "agent_assigned_id": 43,
- "claim_handler_assigned_id": 5
- },
- {
- "id": 353,
- "disaster_id": 38,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 5921.77,
- "agent_assigned_id": 58,
- "claim_handler_assigned_id": 145
- },
- {
- "id": 354,
- "disaster_id": 11,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 290310.52,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 153
- },
- {
- "id": 355,
- "disaster_id": 86,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 936.32,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 103
- },
- {
- "id": 356,
- "disaster_id": 70,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 88840.64,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 97
- },
- {
- "id": 357,
- "disaster_id": 47,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1672.03,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 36
- },
- {
- "id": 358,
- "disaster_id": 19,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 555280.47,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 131
- },
- {
- "id": 359,
- "disaster_id": 94,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 88480.03,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 137
- },
- {
- "id": 360,
- "disaster_id": 5,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 4188.24,
- "agent_assigned_id": 43,
- "claim_handler_assigned_id": 144
- },
- {
- "id": 361,
- "disaster_id": 14,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 3264.11,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 123
- },
- {
- "id": 362,
- "disaster_id": 62,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 2727.59,
- "agent_assigned_id": 55,
- "claim_handler_assigned_id": 103
- },
- {
- "id": 363,
- "disaster_id": 40,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 346.41,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 135
- },
- {
- "id": 364,
- "disaster_id": 26,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 13714.18,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 82
- },
- {
- "id": 365,
- "disaster_id": 69,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 63539.85,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 61
- },
- {
- "id": 366,
- "disaster_id": 76,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 667.58,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 4
- },
- {
- "id": 367,
- "disaster_id": 54,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 455.17,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 64
- },
- {
- "id": 368,
- "disaster_id": 16,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 3,
- "estimate_cost": 346.23,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 104
- },
- {
- "id": 369,
- "disaster_id": 66,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 3113.5,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 80
- },
- {
- "id": 370,
- "disaster_id": 54,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 2910.25,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 140
- },
- {
- "id": 371,
- "disaster_id": 19,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 4988.42,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 46
- },
- {
- "id": 372,
- "disaster_id": 19,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 12076.22,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 87
- },
- {
- "id": 373,
- "disaster_id": 55,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 321350.25,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 61
- },
- {
- "id": 374,
- "disaster_id": 22,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 1802.61,
- "agent_assigned_id": 56,
- "claim_handler_assigned_id": 25
- },
- {
- "id": 375,
- "disaster_id": 9,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 4110.7,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 106
- },
- {
- "id": 376,
- "disaster_id": 75,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 18474.94,
- "agent_assigned_id": 78,
- "claim_handler_assigned_id": 74
- },
- {
- "id": 377,
- "disaster_id": 74,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 879.0,
- "agent_assigned_id": 80,
- "claim_handler_assigned_id": 35
- },
- {
- "id": 378,
- "disaster_id": 30,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 2415.33,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 124
- },
- {
- "id": 379,
- "disaster_id": 98,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 9406.97,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 124
- },
- {
- "id": 380,
- "disaster_id": 34,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 5037.71,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 128
- },
- {
- "id": 381,
- "disaster_id": 73,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1966.41,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 128
- },
- {
- "id": 382,
- "disaster_id": 81,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 68850.94,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 383,
- "disaster_id": 30,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 72.01,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 130
- },
- {
- "id": 384,
- "disaster_id": 29,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 41083.54,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 36
- },
- {
- "id": 385,
- "disaster_id": 33,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 5420.82,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 53
- },
- {
- "id": 386,
- "disaster_id": 71,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 661100.69,
- "agent_assigned_id": 60,
- "claim_handler_assigned_id": 119
- },
- {
- "id": 387,
- "disaster_id": 91,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 829.68,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 38
- },
- {
- "id": 388,
- "disaster_id": 26,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 51192.1,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 133
- },
- {
- "id": 389,
- "disaster_id": 16,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 8807.75,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 64
- },
- {
- "id": 390,
- "disaster_id": 13,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 747630.27,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 120
- },
- {
- "id": 391,
- "disaster_id": 94,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 8,
- "estimate_cost": 65336.7,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 109
- },
- {
- "id": 392,
- "disaster_id": 59,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 19660.33,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 88
- },
- {
- "id": 393,
- "disaster_id": 78,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 2297.56,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 120
- },
- {
- "id": 394,
- "disaster_id": 24,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 5130.34,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 119
- },
- {
- "id": 395,
- "disaster_id": 77,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1959.1,
- "agent_assigned_id": 71,
- "claim_handler_assigned_id": 4
- },
- {
- "id": 396,
- "disaster_id": 77,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 40.03,
- "agent_assigned_id": 71,
- "claim_handler_assigned_id": 125
- },
- {
- "id": 397,
- "disaster_id": 64,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 58320.43,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 31
- },
- {
- "id": 398,
- "disaster_id": 25,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 4135.15,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 28
- },
- {
- "id": 399,
- "disaster_id": 49,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 63064.63,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 30
- },
- {
- "id": 400,
- "disaster_id": 88,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 429000.2,
- "agent_assigned_id": 17,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 401,
- "disaster_id": 83,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 310200.59,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 71
- },
- {
- "id": 402,
- "disaster_id": 22,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 4359.38,
- "agent_assigned_id": 56,
- "claim_handler_assigned_id": 5
- },
- {
- "id": 403,
- "disaster_id": 97,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 26252.13,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 106
- },
- {
- "id": 404,
- "disaster_id": 86,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 23635.34,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 72
- },
- {
- "id": 405,
- "disaster_id": 58,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 64224.48,
- "agent_assigned_id": 46,
- "claim_handler_assigned_id": 55
- },
- {
- "id": 406,
- "disaster_id": 14,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 559.17,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 55
- },
- {
- "id": 407,
- "disaster_id": 2,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 36240.71,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 58
- },
- {
- "id": 408,
- "disaster_id": 39,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 9373.4,
- "agent_assigned_id": 62,
- "claim_handler_assigned_id": 23
- },
- {
- "id": 409,
- "disaster_id": 19,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 4078.5,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 85
- },
- {
- "id": 410,
- "disaster_id": 6,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 3,
- "estimate_cost": 22662.83,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 81
- },
- {
- "id": 411,
- "disaster_id": 81,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 3582.41,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 126
- },
- {
- "id": 412,
- "disaster_id": 3,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 481.72,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 24
- },
- {
- "id": 413,
- "disaster_id": 63,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 7001.76,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 49
- },
- {
- "id": 414,
- "disaster_id": 30,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 59484.55,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 133
- },
- {
- "id": 415,
- "disaster_id": 78,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 5938.27,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 77
- },
- {
- "id": 416,
- "disaster_id": 18,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 588960.77,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 154
- },
- {
- "id": 417,
- "disaster_id": 15,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 7024.05,
- "agent_assigned_id": 97,
- "claim_handler_assigned_id": 5
- },
- {
- "id": 418,
- "disaster_id": 2,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 16350.8,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 147
- },
- {
- "id": 419,
- "disaster_id": 31,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 47010.55,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 24
- },
- {
- "id": 420,
- "disaster_id": 10,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 2560.06,
- "agent_assigned_id": 66,
- "claim_handler_assigned_id": 107
- },
- {
- "id": 421,
- "disaster_id": 34,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 680480.2,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 151
- },
- {
- "id": 422,
- "disaster_id": 59,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 11218.95,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 423,
- "disaster_id": 67,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 903.3,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 80
- },
- {
- "id": 424,
- "disaster_id": 34,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 5530.65,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 132
- },
- {
- "id": 425,
- "disaster_id": 56,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 1928.68,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 132
- },
- {
- "id": 426,
- "disaster_id": 76,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 33642.76,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 4
- },
- {
- "id": 427,
- "disaster_id": 10,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 6600.03,
- "agent_assigned_id": 85,
- "claim_handler_assigned_id": 31
- },
- {
- "id": 428,
- "disaster_id": 27,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 299000.33,
- "agent_assigned_id": 46,
- "claim_handler_assigned_id": 58
- },
- {
- "id": 429,
- "disaster_id": 23,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 2255.25,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 111
- },
- {
- "id": 430,
- "disaster_id": 3,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 5361.48,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 81
- },
- {
- "id": 431,
- "disaster_id": 31,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 171840.18,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 45
- },
- {
- "id": 432,
- "disaster_id": 71,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 533.44,
- "agent_assigned_id": 60,
- "claim_handler_assigned_id": 41
- },
- {
- "id": 433,
- "disaster_id": 32,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 523.39,
- "agent_assigned_id": 19,
- "claim_handler_assigned_id": 82
- },
- {
- "id": 434,
- "disaster_id": 28,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 1,
- "estimate_cost": 71350.29,
- "agent_assigned_id": 35,
- "claim_handler_assigned_id": 30
- },
- {
- "id": 435,
- "disaster_id": 42,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 32865.86,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 46
- },
- {
- "id": 436,
- "disaster_id": 41,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 5,
- "estimate_cost": 14445.72,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 146
- },
- {
- "id": 437,
- "disaster_id": 89,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 2,
- "estimate_cost": 77.01,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 9
- },
- {
- "id": 438,
- "disaster_id": 27,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 3709.54,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 28
- },
- {
- "id": 439,
- "disaster_id": 60,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 7198.08,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 5
- },
- {
- "id": 440,
- "disaster_id": 34,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 3165.03,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 141
- },
- {
- "id": 441,
- "disaster_id": 77,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 81171.13,
- "agent_assigned_id": 71,
- "claim_handler_assigned_id": 106
- },
- {
- "id": 442,
- "disaster_id": 23,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 1439.37,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 16
- },
- {
- "id": 443,
- "disaster_id": 56,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 2857.0,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 118
- },
- {
- "id": 444,
- "disaster_id": 27,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 957.86,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 54
- },
- {
- "id": 445,
- "disaster_id": 11,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 197320.46,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 4
- },
- {
- "id": 446,
- "disaster_id": 26,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 1,
- "estimate_cost": 559.25,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 77
- },
- {
- "id": 447,
- "disaster_id": 10,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 25628.87,
- "agent_assigned_id": 85,
- "claim_handler_assigned_id": 56
- },
- {
- "id": 448,
- "disaster_id": 55,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 1,
- "estimate_cost": 297.22,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 79
- },
- {
- "id": 449,
- "disaster_id": 24,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 996.31,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 10
- },
- {
- "id": 450,
- "disaster_id": 77,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 36692.41,
- "agent_assigned_id": 98,
- "claim_handler_assigned_id": 155
- },
- {
- "id": 451,
- "disaster_id": 73,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 267840.17,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 80
- },
- {
- "id": 452,
- "disaster_id": 86,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 629800.4,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 79
- },
- {
- "id": 453,
- "disaster_id": 87,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 6785.98,
- "agent_assigned_id": 59,
- "claim_handler_assigned_id": 68
- },
- {
- "id": 454,
- "disaster_id": 50,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 87520.56,
- "agent_assigned_id": 8,
- "claim_handler_assigned_id": 140
- },
- {
- "id": 455,
- "disaster_id": 48,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 157200.54,
- "agent_assigned_id": 91,
- "claim_handler_assigned_id": 132
- },
- {
- "id": 456,
- "disaster_id": 34,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 3958.45,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 125
- },
- {
- "id": 457,
- "disaster_id": 3,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 507960.66,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 46
- },
- {
- "id": 458,
- "disaster_id": 96,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 8451.8,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 80
- },
- {
- "id": 459,
- "disaster_id": 69,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 784300.86,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 129
- },
- {
- "id": 460,
- "disaster_id": 1,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 35605.15,
- "agent_assigned_id": 75,
- "claim_handler_assigned_id": 54
- },
- {
- "id": 461,
- "disaster_id": 21,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 5556.47,
- "agent_assigned_id": 46,
- "claim_handler_assigned_id": 92
- },
- {
- "id": 462,
- "disaster_id": 84,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 1975.72,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 154
- },
- {
- "id": 463,
- "disaster_id": 25,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 73840.91,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 129
- },
- {
- "id": 464,
- "disaster_id": 89,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 14890.1,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 105
- },
- {
- "id": 465,
- "disaster_id": 10,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 3729.19,
- "agent_assigned_id": 66,
- "claim_handler_assigned_id": 115
- },
- {
- "id": 466,
- "disaster_id": 93,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 115860.44,
- "agent_assigned_id": 30,
- "claim_handler_assigned_id": 41
- },
- {
- "id": 467,
- "disaster_id": 49,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 51471.07,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 113
- },
- {
- "id": 468,
- "disaster_id": 81,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 72.09,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 21
- },
- {
- "id": 469,
- "disaster_id": 87,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 24078.17,
- "agent_assigned_id": 23,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 470,
- "disaster_id": 12,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 4338.81,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 21
- },
- {
- "id": 471,
- "disaster_id": 42,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 12952.8,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 75
- },
- {
- "id": 472,
- "disaster_id": 95,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 1037.09,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 11
- },
- {
- "id": 473,
- "disaster_id": 49,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 768300.8,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 15
- },
- {
- "id": 474,
- "disaster_id": 21,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 254.4,
- "agent_assigned_id": 46,
- "claim_handler_assigned_id": 132
- },
- {
- "id": 475,
- "disaster_id": 26,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 2270.77,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 27
- },
- {
- "id": 476,
- "disaster_id": 1,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 343.72,
- "agent_assigned_id": 95,
- "claim_handler_assigned_id": 42
- },
- {
- "id": 477,
- "disaster_id": 38,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 116620.07,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 31
- },
- {
- "id": 478,
- "disaster_id": 31,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 4755.81,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 1
- },
- {
- "id": 479,
- "disaster_id": 72,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 559620.74,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 65
- },
- {
- "id": 480,
- "disaster_id": 74,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 1899.39,
- "agent_assigned_id": 26,
- "claim_handler_assigned_id": 33
- },
- {
- "id": 481,
- "disaster_id": 5,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 1812.8,
- "agent_assigned_id": 43,
- "claim_handler_assigned_id": 88
- },
- {
- "id": 482,
- "disaster_id": 73,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 5,
- "estimate_cost": 1340.55,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 31
- },
- {
- "id": 483,
- "disaster_id": 40,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 4977.69,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 484,
- "disaster_id": 36,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 2763.97,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 142
- },
- {
- "id": 485,
- "disaster_id": 87,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 78840.96,
- "agent_assigned_id": 59,
- "claim_handler_assigned_id": 67
- },
- {
- "id": 486,
- "disaster_id": 9,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 2830.69,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 487,
- "disaster_id": 2,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 34516.6,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 106
- },
- {
- "id": 488,
- "disaster_id": 8,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 649080.64,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 70
- },
- {
- "id": 489,
- "disaster_id": 44,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 2252.98,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 32
- },
- {
- "id": 490,
- "disaster_id": 53,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 78290.92,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 40
- },
- {
- "id": 491,
- "disaster_id": 40,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 3397.62,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 97
- },
- {
- "id": 492,
- "disaster_id": 34,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 33300.88,
- "agent_assigned_id": 58,
- "claim_handler_assigned_id": 146
- },
- {
- "id": 493,
- "disaster_id": 43,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 2714.89,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 99
- },
- {
- "id": 494,
- "disaster_id": 93,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 14700.76,
- "agent_assigned_id": 30,
- "claim_handler_assigned_id": 1
- },
- {
- "id": 495,
- "disaster_id": 36,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 1183.91,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 18
- },
- {
- "id": 496,
- "disaster_id": 28,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1978.46,
- "agent_assigned_id": 35,
- "claim_handler_assigned_id": 75
- },
- {
- "id": 497,
- "disaster_id": 40,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 561.77,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 10
- },
- {
- "id": 498,
- "disaster_id": 87,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 82830.9,
- "agent_assigned_id": 23,
- "claim_handler_assigned_id": 63
- },
- {
- "id": 499,
- "disaster_id": 7,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 1320.74,
- "agent_assigned_id": 19,
- "claim_handler_assigned_id": 108
- },
- {
- "id": 500,
- "disaster_id": 34,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 6682.52,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 38
- },
- {
- "id": 501,
- "disaster_id": 80,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 370080.13,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 102
- },
- {
- "id": 502,
- "disaster_id": 45,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 8618.41,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 51
- },
- {
- "id": 503,
- "disaster_id": 52,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 4392.43,
- "agent_assigned_id": 5,
- "claim_handler_assigned_id": 54
- },
- {
- "id": 504,
- "disaster_id": 35,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 5,
- "estimate_cost": 34555.98,
- "agent_assigned_id": 85,
- "claim_handler_assigned_id": 111
- },
- {
- "id": 505,
- "disaster_id": 58,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 3923.95,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 120
- },
- {
- "id": 506,
- "disaster_id": 92,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 4923.98,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 139
- },
- {
- "id": 507,
- "disaster_id": 61,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 22854.24,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 31
- },
- {
- "id": 508,
- "disaster_id": 85,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 2098.09,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 30
- },
- {
- "id": 509,
- "disaster_id": 50,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 2462.7,
- "agent_assigned_id": 8,
- "claim_handler_assigned_id": 152
- },
- {
- "id": 510,
- "disaster_id": 52,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 14504.15,
- "agent_assigned_id": 5,
- "claim_handler_assigned_id": 136
- },
- {
- "id": 511,
- "disaster_id": 65,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 11490.8,
- "agent_assigned_id": 31,
- "claim_handler_assigned_id": 122
- },
- {
- "id": 512,
- "disaster_id": 63,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 46494.46,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 513,
- "disaster_id": 54,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 44255.05,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 64
- },
- {
- "id": 514,
- "disaster_id": 33,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 52580.35,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 137
- },
- {
- "id": 515,
- "disaster_id": 26,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 248780.42,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 149
- },
- {
- "id": 516,
- "disaster_id": 57,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 3098.72,
- "agent_assigned_id": 62,
- "claim_handler_assigned_id": 101
- },
- {
- "id": 517,
- "disaster_id": 11,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 191280.69,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 38
- },
- {
- "id": 518,
- "disaster_id": 78,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 704.37,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 24
- },
- {
- "id": 519,
- "disaster_id": 14,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 7231.72,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 16
- },
- {
- "id": 520,
- "disaster_id": 16,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 1736.49,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 48
- },
- {
- "id": 521,
- "disaster_id": 81,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 4525.44,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 45
- },
- {
- "id": 522,
- "disaster_id": 27,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 81210.42,
- "agent_assigned_id": 46,
- "claim_handler_assigned_id": 59
- },
- {
- "id": 523,
- "disaster_id": 65,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 595080.15,
- "agent_assigned_id": 31,
- "claim_handler_assigned_id": 25
- },
- {
- "id": 524,
- "disaster_id": 28,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 118200.92,
- "agent_assigned_id": 35,
- "claim_handler_assigned_id": 128
- },
- {
- "id": 525,
- "disaster_id": 36,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 6610.99,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 126
- },
- {
- "id": 526,
- "disaster_id": 70,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 49440.56,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 84
- },
- {
- "id": 527,
- "disaster_id": 79,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 3647.73,
- "agent_assigned_id": 43,
- "claim_handler_assigned_id": 152
- },
- {
- "id": 528,
- "disaster_id": 89,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 364850.84,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 40
- },
- {
- "id": 529,
- "disaster_id": 63,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 2264.03,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 68
- },
- {
- "id": 530,
- "disaster_id": 22,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 47700.78,
- "agent_assigned_id": 56,
- "claim_handler_assigned_id": 28
- },
- {
- "id": 531,
- "disaster_id": 2,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 24031.55,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 532,
- "disaster_id": 63,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 4616.38,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 124
- },
- {
- "id": 533,
- "disaster_id": 61,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 163.2,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 135
- },
- {
- "id": 534,
- "disaster_id": 66,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 164.1,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 22
- },
- {
- "id": 535,
- "disaster_id": 23,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 2408.9,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 139
- },
- {
- "id": 536,
- "disaster_id": 56,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 1901.39,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 122
- },
- {
- "id": 537,
- "disaster_id": 53,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 3229.48,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 73
- },
- {
- "id": 538,
- "disaster_id": 28,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 585690.69,
- "agent_assigned_id": 35,
- "claim_handler_assigned_id": 70
- },
- {
- "id": 539,
- "disaster_id": 63,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 6353.74,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 71
- },
- {
- "id": 540,
- "disaster_id": 19,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 7,
- "estimate_cost": 66997.51,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 75
- },
- {
- "id": 541,
- "disaster_id": 60,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 2457.73,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 44
- },
- {
- "id": 542,
- "disaster_id": 9,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 9164.77,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 61
- },
- {
- "id": 543,
- "disaster_id": 32,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 5410.19,
- "agent_assigned_id": 74,
- "claim_handler_assigned_id": 107
- },
- {
- "id": 544,
- "disaster_id": 98,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 6,
- "estimate_cost": 11640.36,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 80
- },
- {
- "id": 545,
- "disaster_id": 58,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 11439.73,
- "agent_assigned_id": 1,
- "claim_handler_assigned_id": 142
- },
- {
- "id": 546,
- "disaster_id": 43,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 7196.88,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 156
- },
- {
- "id": 547,
- "disaster_id": 32,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 1720.81,
- "agent_assigned_id": 74,
- "claim_handler_assigned_id": 9
- },
- {
- "id": 548,
- "disaster_id": 5,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 1952.02,
- "agent_assigned_id": 43,
- "claim_handler_assigned_id": 112
- },
- {
- "id": 549,
- "disaster_id": 68,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 4606.26,
- "agent_assigned_id": 10,
- "claim_handler_assigned_id": 107
- },
- {
- "id": 550,
- "disaster_id": 52,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 435300.17,
- "agent_assigned_id": 5,
- "claim_handler_assigned_id": 92
- },
- {
- "id": 551,
- "disaster_id": 4,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 2079.9,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 152
- },
- {
- "id": 552,
- "disaster_id": 53,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 1544.71,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 85
- },
- {
- "id": 553,
- "disaster_id": 55,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 443.24,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 137
- },
- {
- "id": 554,
- "disaster_id": 38,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 1781.83,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 47
- },
- {
- "id": 555,
- "disaster_id": 95,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 3958.52,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 140
- },
- {
- "id": 556,
- "disaster_id": 65,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 966.57,
- "agent_assigned_id": 31,
- "claim_handler_assigned_id": 16
- },
- {
- "id": 557,
- "disaster_id": 37,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 9,
- "estimate_cost": 5392.06,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 82
- },
- {
- "id": 558,
- "disaster_id": 50,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 1405.89,
- "agent_assigned_id": 8,
- "claim_handler_assigned_id": 2
- },
- {
- "id": 559,
- "disaster_id": 63,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 6,
- "estimate_cost": 4960.88,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 560,
- "disaster_id": 100,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 1384.94,
- "agent_assigned_id": 70,
- "claim_handler_assigned_id": 79
- },
- {
- "id": 561,
- "disaster_id": 29,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 4804.24,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 116
- },
- {
- "id": 562,
- "disaster_id": 7,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 15869.27,
- "agent_assigned_id": 73,
- "claim_handler_assigned_id": 39
- },
- {
- "id": 563,
- "disaster_id": 35,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 8062.8,
- "agent_assigned_id": 85,
- "claim_handler_assigned_id": 24
- },
- {
- "id": 564,
- "disaster_id": 18,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 619.95,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 42
- },
- {
- "id": 565,
- "disaster_id": 61,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 78290.56,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 127
- },
- {
- "id": 566,
- "disaster_id": 85,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 50625.14,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 138
- },
- {
- "id": 567,
- "disaster_id": 15,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 235200.5,
- "agent_assigned_id": 21,
- "claim_handler_assigned_id": 33
- },
- {
- "id": 568,
- "disaster_id": 65,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 7795.58,
- "agent_assigned_id": 31,
- "claim_handler_assigned_id": 5
- },
- {
- "id": 569,
- "disaster_id": 84,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 361.6,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 128
- },
- {
- "id": 570,
- "disaster_id": 44,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 44160.65,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 121
- },
- {
- "id": 571,
- "disaster_id": 88,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 192.99,
- "agent_assigned_id": 17,
- "claim_handler_assigned_id": 28
- },
- {
- "id": 572,
- "disaster_id": 68,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 3176.44,
- "agent_assigned_id": 10,
- "claim_handler_assigned_id": 24
- },
- {
- "id": 573,
- "disaster_id": 18,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 486630.26,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 59
- },
- {
- "id": 574,
- "disaster_id": 87,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 248550.88,
- "agent_assigned_id": 23,
- "claim_handler_assigned_id": 65
- },
- {
- "id": 575,
- "disaster_id": 58,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 419.25,
- "agent_assigned_id": 1,
- "claim_handler_assigned_id": 131
- },
- {
- "id": 576,
- "disaster_id": 31,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 260440.06,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 88
- },
- {
- "id": 577,
- "disaster_id": 31,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 78240.65,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 37
- },
- {
- "id": 578,
- "disaster_id": 36,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 235.43,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 579,
- "disaster_id": 46,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 3052.67,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 26
- },
- {
- "id": 580,
- "disaster_id": 76,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 1167.37,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 53
- },
- {
- "id": 581,
- "disaster_id": 97,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1054.78,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 77
- },
- {
- "id": 582,
- "disaster_id": 4,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 888.98,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 117
- },
- {
- "id": 583,
- "disaster_id": 73,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 23040.29,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 126
- },
- {
- "id": 584,
- "disaster_id": 50,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 5808.12,
- "agent_assigned_id": 8,
- "claim_handler_assigned_id": 35
- },
- {
- "id": 585,
- "disaster_id": 42,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 5502.11,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 89
- },
- {
- "id": 586,
- "disaster_id": 4,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 219360.58,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 138
- },
- {
- "id": 587,
- "disaster_id": 4,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 581.98,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 100
- },
- {
- "id": 588,
- "disaster_id": 54,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 497250.92,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 121
- },
- {
- "id": 589,
- "disaster_id": 93,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 1,
- "estimate_cost": 83730.15,
- "agent_assigned_id": 43,
- "claim_handler_assigned_id": 4
- },
- {
- "id": 590,
- "disaster_id": 60,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 84010.28,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 90
- },
- {
- "id": 591,
- "disaster_id": 54,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 2248.63,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 73
- },
- {
- "id": 592,
- "disaster_id": 28,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 3639.59,
- "agent_assigned_id": 35,
- "claim_handler_assigned_id": 144
- },
- {
- "id": 593,
- "disaster_id": 78,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 9186.14,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 117
- },
- {
- "id": 594,
- "disaster_id": 28,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 22990.88,
- "agent_assigned_id": 35,
- "claim_handler_assigned_id": 91
- },
- {
- "id": 595,
- "disaster_id": 68,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 629.11,
- "agent_assigned_id": 10,
- "claim_handler_assigned_id": 67
- },
- {
- "id": 596,
- "disaster_id": 72,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 4250.24,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 119
- },
- {
- "id": 597,
- "disaster_id": 57,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 1090.41,
- "agent_assigned_id": 89,
- "claim_handler_assigned_id": 72
- },
- {
- "id": 598,
- "disaster_id": 49,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 639.36,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 84
- },
- {
- "id": 599,
- "disaster_id": 42,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 84240.59,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 55
- },
- {
- "id": 600,
- "disaster_id": 1,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 21385.17,
- "agent_assigned_id": 63,
- "claim_handler_assigned_id": 20
- },
- {
- "id": 601,
- "disaster_id": 7,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 7214.92,
- "agent_assigned_id": 74,
- "claim_handler_assigned_id": 74
- },
- {
- "id": 602,
- "disaster_id": 22,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 321660.15,
- "agent_assigned_id": 56,
- "claim_handler_assigned_id": 117
- },
- {
- "id": 603,
- "disaster_id": 22,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 224280.63,
- "agent_assigned_id": 70,
- "claim_handler_assigned_id": 21
- },
- {
- "id": 604,
- "disaster_id": 7,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 18260.06,
- "agent_assigned_id": 74,
- "claim_handler_assigned_id": 92
- },
- {
- "id": 605,
- "disaster_id": 71,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1927.89,
- "agent_assigned_id": 60,
- "claim_handler_assigned_id": 59
- },
- {
- "id": 606,
- "disaster_id": 51,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 12838.72,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 16
- },
- {
- "id": 607,
- "disaster_id": 86,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 2926.29,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 8
- },
- {
- "id": 608,
- "disaster_id": 30,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 546000.47,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 26
- },
- {
- "id": 609,
- "disaster_id": 28,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 92350.35,
- "agent_assigned_id": 35,
- "claim_handler_assigned_id": 68
- },
- {
- "id": 610,
- "disaster_id": 44,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 32886.19,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 2
- },
- {
- "id": 611,
- "disaster_id": 40,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 896.95,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 612,
- "disaster_id": 76,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 5,
- "estimate_cost": 211450.63,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 129
- },
- {
- "id": 613,
- "disaster_id": 22,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 45840.4,
- "agent_assigned_id": 70,
- "claim_handler_assigned_id": 142
- },
- {
- "id": 614,
- "disaster_id": 41,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 372540.97,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 81
- },
- {
- "id": 615,
- "disaster_id": 55,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 108540.53,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 14
- },
- {
- "id": 616,
- "disaster_id": 96,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 474670.16,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 25
- },
- {
- "id": 617,
- "disaster_id": 61,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 1840.45,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 127
- },
- {
- "id": 618,
- "disaster_id": 97,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 168540.08,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 119
- },
- {
- "id": 619,
- "disaster_id": 28,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 375360.99,
- "agent_assigned_id": 35,
- "claim_handler_assigned_id": 147
- },
- {
- "id": 620,
- "disaster_id": 76,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 4,
- "estimate_cost": 790.01,
- "agent_assigned_id": 58,
- "claim_handler_assigned_id": 101
- },
- {
- "id": 621,
- "disaster_id": 92,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 18042.96,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 121
- },
- {
- "id": 622,
- "disaster_id": 31,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 1656.57,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 33
- },
- {
- "id": 623,
- "disaster_id": 29,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 277.61,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 44
- },
- {
- "id": 624,
- "disaster_id": 23,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 28720.26,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 7
- },
- {
- "id": 625,
- "disaster_id": 19,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 269280.5,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 68
- },
- {
- "id": 626,
- "disaster_id": 59,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 4623.95,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 103
- },
- {
- "id": 627,
- "disaster_id": 34,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 6150.6,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 112
- },
- {
- "id": 628,
- "disaster_id": 88,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 23760.92,
- "agent_assigned_id": 17,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 629,
- "disaster_id": 57,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 98700.46,
- "agent_assigned_id": 82,
- "claim_handler_assigned_id": 114
- },
- {
- "id": 630,
- "disaster_id": 59,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 6064.9,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 125
- },
- {
- "id": 631,
- "disaster_id": 37,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 1066.17,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 123
- },
- {
- "id": 632,
- "disaster_id": 88,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 749340.19,
- "agent_assigned_id": 47,
- "claim_handler_assigned_id": 26
- },
- {
- "id": 633,
- "disaster_id": 45,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 185.56,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 4
- },
- {
- "id": 634,
- "disaster_id": 1,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 5357.45,
- "agent_assigned_id": 75,
- "claim_handler_assigned_id": 70
- },
- {
- "id": 635,
- "disaster_id": 83,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 8848.92,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 636,
- "disaster_id": 73,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 2924.06,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 29
- },
- {
- "id": 637,
- "disaster_id": 88,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 37790.58,
- "agent_assigned_id": 47,
- "claim_handler_assigned_id": 78
- },
- {
- "id": 638,
- "disaster_id": 95,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 541.7,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 27
- },
- {
- "id": 639,
- "disaster_id": 15,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 36442.81,
- "agent_assigned_id": 21,
- "claim_handler_assigned_id": 105
- },
- {
- "id": 640,
- "disaster_id": 93,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 8780.2,
- "agent_assigned_id": 30,
- "claim_handler_assigned_id": 112
- },
- {
- "id": 641,
- "disaster_id": 100,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 941.07,
- "agent_assigned_id": 56,
- "claim_handler_assigned_id": 64
- },
- {
- "id": 642,
- "disaster_id": 42,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 2399.31,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 122
- },
- {
- "id": 643,
- "disaster_id": 43,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 22080.52,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 7
- },
- {
- "id": 644,
- "disaster_id": 68,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 930.94,
- "agent_assigned_id": 10,
- "claim_handler_assigned_id": 87
- },
- {
- "id": 645,
- "disaster_id": 13,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 26268.29,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 136
- },
- {
- "id": 646,
- "disaster_id": 24,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 491.02,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 108
- },
- {
- "id": 647,
- "disaster_id": 1,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 1931.15,
- "agent_assigned_id": 95,
- "claim_handler_assigned_id": 55
- },
- {
- "id": 648,
- "disaster_id": 17,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 86139.06,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 116
- },
- {
- "id": 649,
- "disaster_id": 32,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 2191.62,
- "agent_assigned_id": 74,
- "claim_handler_assigned_id": 103
- },
- {
- "id": 650,
- "disaster_id": 82,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 3013.4,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 64
- },
- {
- "id": 651,
- "disaster_id": 77,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 2349.91,
- "agent_assigned_id": 98,
- "claim_handler_assigned_id": 8
- },
- {
- "id": 652,
- "disaster_id": 25,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 35935.6,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 30
- },
- {
- "id": 653,
- "disaster_id": 32,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 75072.57,
- "agent_assigned_id": 74,
- "claim_handler_assigned_id": 21
- },
- {
- "id": 654,
- "disaster_id": 3,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 1,
- "estimate_cost": 72490.79,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 147
- },
- {
- "id": 655,
- "disaster_id": 97,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 7720.3,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 48
- },
- {
- "id": 656,
- "disaster_id": 84,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 10208.11,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 98
- },
- {
- "id": 657,
- "disaster_id": 84,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 3077.28,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 78
- },
- {
- "id": 658,
- "disaster_id": 2,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 919.33,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 106
- },
- {
- "id": 659,
- "disaster_id": 92,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 10,
- "estimate_cost": 81980.88,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 6
- },
- {
- "id": 660,
- "disaster_id": 3,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 1,
- "estimate_cost": 7533.88,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 1
- },
- {
- "id": 661,
- "disaster_id": 94,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 853.8,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 151
- },
- {
- "id": 662,
- "disaster_id": 42,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 1,
- "estimate_cost": 94160.43,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 113
- },
- {
- "id": 663,
- "disaster_id": 62,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 6858.57,
- "agent_assigned_id": 28,
- "claim_handler_assigned_id": 148
- },
- {
- "id": 664,
- "disaster_id": 1,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 6264.18,
- "agent_assigned_id": 68,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 665,
- "disaster_id": 8,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 252.87,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 103
- },
- {
- "id": 666,
- "disaster_id": 24,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 3416.88,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 5
- },
- {
- "id": 667,
- "disaster_id": 63,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1460.9,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 5
- },
- {
- "id": 668,
- "disaster_id": 43,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 462000.03,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 8
- },
- {
- "id": 669,
- "disaster_id": 89,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 2396.69,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 153
- },
- {
- "id": 670,
- "disaster_id": 55,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 252880.51,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 82
- },
- {
- "id": 671,
- "disaster_id": 82,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 352620.7,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 33
- },
- {
- "id": 672,
- "disaster_id": 12,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 350300.0,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 143
- },
- {
- "id": 673,
- "disaster_id": 79,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 4627.84,
- "agent_assigned_id": 30,
- "claim_handler_assigned_id": 87
- },
- {
- "id": 674,
- "disaster_id": 93,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 156300.73,
- "agent_assigned_id": 30,
- "claim_handler_assigned_id": 27
- },
- {
- "id": 675,
- "disaster_id": 89,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 4,
- "estimate_cost": 590.35,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 50
- },
- {
- "id": 676,
- "disaster_id": 1,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 5151.6,
- "agent_assigned_id": 95,
- "claim_handler_assigned_id": 90
- },
- {
- "id": 677,
- "disaster_id": 8,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 144400.99,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 73
- },
- {
- "id": 678,
- "disaster_id": 2,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 9101.54,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 14
- },
- {
- "id": 679,
- "disaster_id": 45,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 2803.81,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 140
- },
- {
- "id": 680,
- "disaster_id": 27,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 15651.99,
- "agent_assigned_id": 46,
- "claim_handler_assigned_id": 69
- },
- {
- "id": 681,
- "disaster_id": 68,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 989.48,
- "agent_assigned_id": 10,
- "claim_handler_assigned_id": 16
- },
- {
- "id": 682,
- "disaster_id": 21,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 910.09,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 113
- },
- {
- "id": 683,
- "disaster_id": 74,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 39837.87,
- "agent_assigned_id": 26,
- "claim_handler_assigned_id": 96
- },
- {
- "id": 684,
- "disaster_id": 49,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 1377.66,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 88
- },
- {
- "id": 685,
- "disaster_id": 16,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 786.05,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 91
- },
- {
- "id": 686,
- "disaster_id": 38,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 634.29,
- "agent_assigned_id": 58,
- "claim_handler_assigned_id": 48
- },
- {
- "id": 687,
- "disaster_id": 38,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 89.67,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 10
- },
- {
- "id": 688,
- "disaster_id": 93,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 786640.28,
- "agent_assigned_id": 30,
- "claim_handler_assigned_id": 94
- },
- {
- "id": 689,
- "disaster_id": 5,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 3596.39,
- "agent_assigned_id": 30,
- "claim_handler_assigned_id": 106
- },
- {
- "id": 690,
- "disaster_id": 55,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 15434.86,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 73
- },
- {
- "id": 691,
- "disaster_id": 38,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 4949.68,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 92
- },
- {
- "id": 692,
- "disaster_id": 27,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 2135.73,
- "agent_assigned_id": 1,
- "claim_handler_assigned_id": 34
- },
- {
- "id": 693,
- "disaster_id": 74,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1240.6,
- "agent_assigned_id": 97,
- "claim_handler_assigned_id": 55
- },
- {
- "id": 694,
- "disaster_id": 44,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 349200.2,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 132
- },
- {
- "id": 695,
- "disaster_id": 67,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 236390.72,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 138
- },
- {
- "id": 696,
- "disaster_id": 74,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 16960.62,
- "agent_assigned_id": 80,
- "claim_handler_assigned_id": 113
- },
- {
- "id": 697,
- "disaster_id": 66,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 9220.15,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 74
- },
- {
- "id": 698,
- "disaster_id": 65,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1479.66,
- "agent_assigned_id": 14,
- "claim_handler_assigned_id": 18
- },
- {
- "id": 699,
- "disaster_id": 88,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 2225.02,
- "agent_assigned_id": 17,
- "claim_handler_assigned_id": 12
- },
- {
- "id": 700,
- "disaster_id": 70,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 353.23,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 5
- },
- {
- "id": 701,
- "disaster_id": 6,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 49760.07,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 39
- },
- {
- "id": 702,
- "disaster_id": 51,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 837.87,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 96
- },
- {
- "id": 703,
- "disaster_id": 36,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 367750.27,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 130
- },
- {
- "id": 704,
- "disaster_id": 70,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 157740.54,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 48
- },
- {
- "id": 705,
- "disaster_id": 86,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 894.57,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 82
- },
- {
- "id": 706,
- "disaster_id": 65,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 43020.03,
- "agent_assigned_id": 78,
- "claim_handler_assigned_id": 1
- },
- {
- "id": 707,
- "disaster_id": 52,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 56550.56,
- "agent_assigned_id": 91,
- "claim_handler_assigned_id": 111
- },
- {
- "id": 708,
- "disaster_id": 3,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 5719.79,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 65
- },
- {
- "id": 709,
- "disaster_id": 78,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 111720.24,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 100
- },
- {
- "id": 710,
- "disaster_id": 64,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 218190.05,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 123
- },
- {
- "id": 711,
- "disaster_id": 43,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 395680.72,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 6
- },
- {
- "id": 712,
- "disaster_id": 25,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 260.71,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 126
- },
- {
- "id": 713,
- "disaster_id": 100,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 5,
- "estimate_cost": 1626.47,
- "agent_assigned_id": 70,
- "claim_handler_assigned_id": 88
- },
- {
- "id": 714,
- "disaster_id": 87,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 483930.83,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 69
- },
- {
- "id": 715,
- "disaster_id": 55,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 2330.06,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 13
- },
- {
- "id": 716,
- "disaster_id": 26,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 278100.1,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 147
- },
- {
- "id": 717,
- "disaster_id": 92,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 754.27,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 114
- },
- {
- "id": 718,
- "disaster_id": 22,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 8866.36,
- "agent_assigned_id": 56,
- "claim_handler_assigned_id": 88
- },
- {
- "id": 719,
- "disaster_id": 70,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 4890.5,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 8
- },
- {
- "id": 720,
- "disaster_id": 56,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 9,
- "estimate_cost": 898380.99,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 69
- },
- {
- "id": 721,
- "disaster_id": 24,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 8294.58,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 51
- },
- {
- "id": 722,
- "disaster_id": 88,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 7184.29,
- "agent_assigned_id": 47,
- "claim_handler_assigned_id": 122
- },
- {
- "id": 723,
- "disaster_id": 69,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 3154.75,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 24
- },
- {
- "id": 724,
- "disaster_id": 99,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 2134.37,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 89
- },
- {
- "id": 725,
- "disaster_id": 9,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 7807.37,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 109
- },
- {
- "id": 726,
- "disaster_id": 85,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 3938.7,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 23
- },
- {
- "id": 727,
- "disaster_id": 97,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 159480.91,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 134
- },
- {
- "id": 728,
- "disaster_id": 78,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 913.11,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 156
- },
- {
- "id": 729,
- "disaster_id": 29,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 714.39,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 64
- },
- {
- "id": 730,
- "disaster_id": 30,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 28998.59,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 4
- },
- {
- "id": 731,
- "disaster_id": 75,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 45810.77,
- "agent_assigned_id": 14,
- "claim_handler_assigned_id": 1
- },
- {
- "id": 732,
- "disaster_id": 3,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 182980.56,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 154
- },
- {
- "id": 733,
- "disaster_id": 9,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 33760.82,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 2
- },
- {
- "id": 734,
- "disaster_id": 87,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 42805.53,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 3
- },
- {
- "id": 735,
- "disaster_id": 22,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 5,
- "estimate_cost": 21120.73,
- "agent_assigned_id": 56,
- "claim_handler_assigned_id": 25
- },
- {
- "id": 736,
- "disaster_id": 6,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 32870.64,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 85
- },
- {
- "id": 737,
- "disaster_id": 16,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 111000.32,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 83
- },
- {
- "id": 738,
- "disaster_id": 71,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 3781.89,
- "agent_assigned_id": 60,
- "claim_handler_assigned_id": 133
- },
- {
- "id": 739,
- "disaster_id": 9,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 1224.39,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 71
- },
- {
- "id": 740,
- "disaster_id": 18,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 7252.7,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 37
- },
- {
- "id": 741,
- "disaster_id": 67,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 4816.64,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 33
- },
- {
- "id": 742,
- "disaster_id": 87,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 177300.26,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 128
- },
- {
- "id": 743,
- "disaster_id": 47,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 444060.29,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 125
- },
- {
- "id": 744,
- "disaster_id": 32,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 64260.11,
- "agent_assigned_id": 73,
- "claim_handler_assigned_id": 142
- },
- {
- "id": 745,
- "disaster_id": 46,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 46998.59,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 39
- },
- {
- "id": 746,
- "disaster_id": 7,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 6808.01,
- "agent_assigned_id": 74,
- "claim_handler_assigned_id": 21
- },
- {
- "id": 747,
- "disaster_id": 88,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 67815.3,
- "agent_assigned_id": 17,
- "claim_handler_assigned_id": 14
- },
- {
- "id": 748,
- "disaster_id": 20,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 2026.6,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 129
- },
- {
- "id": 749,
- "disaster_id": 64,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 3303.46,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 33
- },
- {
- "id": 750,
- "disaster_id": 78,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 13212.55,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 44
- },
- {
- "id": 751,
- "disaster_id": 61,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 41920.49,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 18
- },
- {
- "id": 752,
- "disaster_id": 57,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 303680.79,
- "agent_assigned_id": 62,
- "claim_handler_assigned_id": 136
- },
- {
- "id": 753,
- "disaster_id": 53,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 2360.51,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 23
- },
- {
- "id": 754,
- "disaster_id": 38,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 3741.19,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 40
- },
- {
- "id": 755,
- "disaster_id": 81,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 1853.58,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 100
- },
- {
- "id": 756,
- "disaster_id": 28,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 144.96,
- "agent_assigned_id": 35,
- "claim_handler_assigned_id": 88
- },
- {
- "id": 757,
- "disaster_id": 65,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 13254.29,
- "agent_assigned_id": 31,
- "claim_handler_assigned_id": 19
- },
- {
- "id": 758,
- "disaster_id": 83,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 476700.35,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 55
- },
- {
- "id": 759,
- "disaster_id": 57,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 40640.95,
- "agent_assigned_id": 89,
- "claim_handler_assigned_id": 79
- },
- {
- "id": 760,
- "disaster_id": 39,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 8194.73,
- "agent_assigned_id": 62,
- "claim_handler_assigned_id": 135
- },
- {
- "id": 761,
- "disaster_id": 42,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 2,
- "estimate_cost": 1378.11,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 105
- },
- {
- "id": 762,
- "disaster_id": 29,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 15210.68,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 70
- },
- {
- "id": 763,
- "disaster_id": 11,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 6678.89,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 137
- },
- {
- "id": 764,
- "disaster_id": 8,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 66200.61,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 32
- },
- {
- "id": 765,
- "disaster_id": 89,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 1200.82,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 13
- },
- {
- "id": 766,
- "disaster_id": 87,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 6645.04,
- "agent_assigned_id": 29,
- "claim_handler_assigned_id": 102
- },
- {
- "id": 767,
- "disaster_id": 94,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 5489.83,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 46
- },
- {
- "id": 768,
- "disaster_id": 94,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 1426.02,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 78
- },
- {
- "id": 769,
- "disaster_id": 71,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 1185.23,
- "agent_assigned_id": 27,
- "claim_handler_assigned_id": 14
- },
- {
- "id": 770,
- "disaster_id": 23,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 44470.19,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 3
- },
- {
- "id": 771,
- "disaster_id": 12,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1855.65,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 7
- },
- {
- "id": 772,
- "disaster_id": 64,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 277800.09,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 59
- },
- {
- "id": 773,
- "disaster_id": 54,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 400800.26,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 104
- },
- {
- "id": 774,
- "disaster_id": 59,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 2424.28,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 37
- },
- {
- "id": 775,
- "disaster_id": 81,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 5233.2,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 83
- },
- {
- "id": 776,
- "disaster_id": 14,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 903.28,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 107
- },
- {
- "id": 777,
- "disaster_id": 88,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 151.14,
- "agent_assigned_id": 17,
- "claim_handler_assigned_id": 56
- },
- {
- "id": 778,
- "disaster_id": 20,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 8861.3,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 56
- },
- {
- "id": 779,
- "disaster_id": 21,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 153900.55,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 57
- },
- {
- "id": 780,
- "disaster_id": 48,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 781680.49,
- "agent_assigned_id": 91,
- "claim_handler_assigned_id": 109
- },
- {
- "id": 781,
- "disaster_id": 45,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 997.98,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 2
- },
- {
- "id": 782,
- "disaster_id": 86,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 3847.33,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 116
- },
- {
- "id": 783,
- "disaster_id": 64,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 434460.51,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 25
- },
- {
- "id": 784,
- "disaster_id": 38,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 30.22,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 152
- },
- {
- "id": 785,
- "disaster_id": 71,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 5473.72,
- "agent_assigned_id": 42,
- "claim_handler_assigned_id": 96
- },
- {
- "id": 786,
- "disaster_id": 60,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 275.26,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 153
- },
- {
- "id": 787,
- "disaster_id": 40,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 276090.74,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 95
- },
- {
- "id": 788,
- "disaster_id": 42,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 856.72,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 145
- },
- {
- "id": 789,
- "disaster_id": 63,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 9125.3,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 83
- },
- {
- "id": 790,
- "disaster_id": 65,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 2929.85,
- "agent_assigned_id": 31,
- "claim_handler_assigned_id": 130
- },
- {
- "id": 791,
- "disaster_id": 1,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 374.91,
- "agent_assigned_id": 95,
- "claim_handler_assigned_id": 84
- },
- {
- "id": 792,
- "disaster_id": 39,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 1180.05,
- "agent_assigned_id": 11,
- "claim_handler_assigned_id": 149
- },
- {
- "id": 793,
- "disaster_id": 2,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 7460.25,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 85
- },
- {
- "id": 794,
- "disaster_id": 76,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 1982.92,
- "agent_assigned_id": 58,
- "claim_handler_assigned_id": 81
- },
- {
- "id": 795,
- "disaster_id": 88,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 4817.47,
- "agent_assigned_id": 47,
- "claim_handler_assigned_id": 64
- },
- {
- "id": 796,
- "disaster_id": 54,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 85635.87,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 142
- },
- {
- "id": 797,
- "disaster_id": 33,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 37568.29,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 59
- },
- {
- "id": 798,
- "disaster_id": 92,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 5004.08,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 42
- },
- {
- "id": 799,
- "disaster_id": 52,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 42550.22,
- "agent_assigned_id": 91,
- "claim_handler_assigned_id": 46
- },
- {
- "id": 800,
- "disaster_id": 60,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 370620.85,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 61
- },
- {
- "id": 801,
- "disaster_id": 55,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 67410.15,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 37
- },
- {
- "id": 802,
- "disaster_id": 80,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 10413.64,
- "agent_assigned_id": 59,
- "claim_handler_assigned_id": 56
- },
- {
- "id": 803,
- "disaster_id": 50,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 4718.07,
- "agent_assigned_id": 8,
- "claim_handler_assigned_id": 144
- },
- {
- "id": 804,
- "disaster_id": 31,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 4057.32,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 39
- },
- {
- "id": 805,
- "disaster_id": 95,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 717.73,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 27
- },
- {
- "id": 806,
- "disaster_id": 25,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 36000.63,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 85
- },
- {
- "id": 807,
- "disaster_id": 82,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 1574.47,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 125
- },
- {
- "id": 808,
- "disaster_id": 99,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 5,
- "estimate_cost": 5810.89,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 127
- },
- {
- "id": 809,
- "disaster_id": 16,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 112840.74,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 15
- },
- {
- "id": 810,
- "disaster_id": 12,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 871.97,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 113
- },
- {
- "id": 811,
- "disaster_id": 14,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 9672.97,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 87
- },
- {
- "id": 812,
- "disaster_id": 99,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 7038.95,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 113
- },
- {
- "id": 813,
- "disaster_id": 14,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 398700.23,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 814,
- "disaster_id": 55,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 22320.02,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 38
- },
- {
- "id": 815,
- "disaster_id": 9,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 37615.87,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 112
- },
- {
- "id": 816,
- "disaster_id": 70,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 950.47,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 126
- },
- {
- "id": 817,
- "disaster_id": 36,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 1,
- "estimate_cost": 964.51,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 65
- },
- {
- "id": 818,
- "disaster_id": 39,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 27920.25,
- "agent_assigned_id": 11,
- "claim_handler_assigned_id": 77
- },
- {
- "id": 819,
- "disaster_id": 72,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 547830.97,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 25
- },
- {
- "id": 820,
- "disaster_id": 20,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 585600.76,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 115
- },
- {
- "id": 821,
- "disaster_id": 100,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 6776.55,
- "agent_assigned_id": 70,
- "claim_handler_assigned_id": 30
- },
- {
- "id": 822,
- "disaster_id": 95,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 3960.26,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 119
- },
- {
- "id": 823,
- "disaster_id": 64,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 25836.9,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 90
- },
- {
- "id": 824,
- "disaster_id": 33,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 5598.03,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 117
- },
- {
- "id": 825,
- "disaster_id": 52,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 5368.25,
- "agent_assigned_id": 5,
- "claim_handler_assigned_id": 5
- },
- {
- "id": 826,
- "disaster_id": 65,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 4528.73,
- "agent_assigned_id": 31,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 827,
- "disaster_id": 41,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 404.5,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 50
- },
- {
- "id": 828,
- "disaster_id": 2,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 752.68,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 75
- },
- {
- "id": 829,
- "disaster_id": 75,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 323401.0,
- "agent_assigned_id": 78,
- "claim_handler_assigned_id": 140
- },
- {
- "id": 830,
- "disaster_id": 21,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 4094.41,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 56
- },
- {
- "id": 831,
- "disaster_id": 40,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 3500.86,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 39
- },
- {
- "id": 832,
- "disaster_id": 13,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 49630.98,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 21
- },
- {
- "id": 833,
- "disaster_id": 60,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 48420.48,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 49
- },
- {
- "id": 834,
- "disaster_id": 95,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 162510.42,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 73
- },
- {
- "id": 835,
- "disaster_id": 88,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 2375.73,
- "agent_assigned_id": 17,
- "claim_handler_assigned_id": 112
- },
- {
- "id": 836,
- "disaster_id": 1,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 624.38,
- "agent_assigned_id": 63,
- "claim_handler_assigned_id": 153
- },
- {
- "id": 837,
- "disaster_id": 80,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 56700.97,
- "agent_assigned_id": 59,
- "claim_handler_assigned_id": 105
- },
- {
- "id": 838,
- "disaster_id": 44,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 355200.53,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 136
- },
- {
- "id": 839,
- "disaster_id": 97,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 49820.09,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 4
- },
- {
- "id": 840,
- "disaster_id": 65,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 33264.82,
- "agent_assigned_id": 78,
- "claim_handler_assigned_id": 108
- },
- {
- "id": 841,
- "disaster_id": 3,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 7304.2,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 144
- },
- {
- "id": 842,
- "disaster_id": 35,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 925.95,
- "agent_assigned_id": 85,
- "claim_handler_assigned_id": 145
- },
- {
- "id": 843,
- "disaster_id": 77,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 504.36,
- "agent_assigned_id": 71,
- "claim_handler_assigned_id": 74
- },
- {
- "id": 844,
- "disaster_id": 91,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 245.45,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 7
- },
- {
- "id": 845,
- "disaster_id": 7,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 2240.45,
- "agent_assigned_id": 19,
- "claim_handler_assigned_id": 144
- },
- {
- "id": 846,
- "disaster_id": 61,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 19692.31,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 148
- },
- {
- "id": 847,
- "disaster_id": 79,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 27120.27,
- "agent_assigned_id": 43,
- "claim_handler_assigned_id": 47
- },
- {
- "id": 848,
- "disaster_id": 96,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 55578.74,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 79
- },
- {
- "id": 849,
- "disaster_id": 46,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 38940.07,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 70
- },
- {
- "id": 850,
- "disaster_id": 16,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 517.81,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 78
- },
- {
- "id": 851,
- "disaster_id": 62,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 10616.06,
- "agent_assigned_id": 28,
- "claim_handler_assigned_id": 118
- },
- {
- "id": 852,
- "disaster_id": 1,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 465.02,
- "agent_assigned_id": 63,
- "claim_handler_assigned_id": 149
- },
- {
- "id": 853,
- "disaster_id": 100,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 4683.6,
- "agent_assigned_id": 56,
- "claim_handler_assigned_id": 131
- },
- {
- "id": 854,
- "disaster_id": 70,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 551.22,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 155
- },
- {
- "id": 855,
- "disaster_id": 96,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 64590.04,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 2
- },
- {
- "id": 856,
- "disaster_id": 65,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 3684.28,
- "agent_assigned_id": 31,
- "claim_handler_assigned_id": 25
- },
- {
- "id": 857,
- "disaster_id": 13,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 36230.19,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 66
- },
- {
- "id": 858,
- "disaster_id": 3,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 577.51,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 105
- },
- {
- "id": 859,
- "disaster_id": 7,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 33939.75,
- "agent_assigned_id": 19,
- "claim_handler_assigned_id": 107
- },
- {
- "id": 860,
- "disaster_id": 56,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 8457.55,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 124
- },
- {
- "id": 861,
- "disaster_id": 45,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 3975.3,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 116
- },
- {
- "id": 862,
- "disaster_id": 81,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 4500.14,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 31
- },
- {
- "id": 863,
- "disaster_id": 56,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 1600.51,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 34
- },
- {
- "id": 864,
- "disaster_id": 37,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 29292.2,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 25
- },
- {
- "id": 865,
- "disaster_id": 62,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 385110.55,
- "agent_assigned_id": 28,
- "claim_handler_assigned_id": 55
- },
- {
- "id": 866,
- "disaster_id": 27,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 447370.97,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 149
- },
- {
- "id": 867,
- "disaster_id": 88,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 810.02,
- "agent_assigned_id": 17,
- "claim_handler_assigned_id": 89
- },
- {
- "id": 868,
- "disaster_id": 88,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 9,
- "estimate_cost": 51930.41,
- "agent_assigned_id": 47,
- "claim_handler_assigned_id": 85
- },
- {
- "id": 869,
- "disaster_id": 67,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 2008.33,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 66
- },
- {
- "id": 870,
- "disaster_id": 63,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 27880.1,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 91
- },
- {
- "id": 871,
- "disaster_id": 6,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 44660.75,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 54
- },
- {
- "id": 872,
- "disaster_id": 50,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 4778.71,
- "agent_assigned_id": 8,
- "claim_handler_assigned_id": 10
- },
- {
- "id": 873,
- "disaster_id": 60,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 6337.93,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 28
- },
- {
- "id": 874,
- "disaster_id": 12,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 44736.31,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 122
- },
- {
- "id": 875,
- "disaster_id": 3,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 5640.05,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 29
- },
- {
- "id": 876,
- "disaster_id": 13,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 685860.58,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 33
- },
- {
- "id": 877,
- "disaster_id": 64,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 5608.84,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 47
- },
- {
- "id": 878,
- "disaster_id": 99,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 2124.44,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 127
- },
- {
- "id": 879,
- "disaster_id": 7,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 1821.05,
- "agent_assigned_id": 74,
- "claim_handler_assigned_id": 156
- },
- {
- "id": 880,
- "disaster_id": 54,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 3559.35,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 155
- },
- {
- "id": 881,
- "disaster_id": 42,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 6789.36,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 99
- },
- {
- "id": 882,
- "disaster_id": 63,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 639.05,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 59
- },
- {
- "id": 883,
- "disaster_id": 58,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 24640.34,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 36
- },
- {
- "id": 884,
- "disaster_id": 16,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 12460.64,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 73
- },
- {
- "id": 885,
- "disaster_id": 38,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 4050.01,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 23
- },
- {
- "id": 886,
- "disaster_id": 92,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 1443.34,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 123
- },
- {
- "id": 887,
- "disaster_id": 83,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 79880.28,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 69
- },
- {
- "id": 888,
- "disaster_id": 60,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 887.56,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 102
- },
- {
- "id": 889,
- "disaster_id": 24,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 102360.97,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 6
- },
- {
- "id": 890,
- "disaster_id": 53,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 889.26,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 120
- },
- {
- "id": 891,
- "disaster_id": 13,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 6043.47,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 45
- },
- {
- "id": 892,
- "disaster_id": 50,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 10,
- "estimate_cost": 4996.96,
- "agent_assigned_id": 8,
- "claim_handler_assigned_id": 42
- },
- {
- "id": 893,
- "disaster_id": 75,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 154380.09,
- "agent_assigned_id": 78,
- "claim_handler_assigned_id": 103
- },
- {
- "id": 894,
- "disaster_id": 12,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 1,
- "estimate_cost": 818.38,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 65
- },
- {
- "id": 895,
- "disaster_id": 98,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 10668.93,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 13
- },
- {
- "id": 896,
- "disaster_id": 8,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 1139.83,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 21
- },
- {
- "id": 897,
- "disaster_id": 6,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 5610.29,
- "agent_assigned_id": 18,
- "claim_handler_assigned_id": 96
- },
- {
- "id": 898,
- "disaster_id": 31,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 124.23,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 89
- },
- {
- "id": 899,
- "disaster_id": 71,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 178.63,
- "agent_assigned_id": 60,
- "claim_handler_assigned_id": 41
- },
- {
- "id": 900,
- "disaster_id": 68,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 51240.64,
- "agent_assigned_id": 10,
- "claim_handler_assigned_id": 81
- },
- {
- "id": 901,
- "disaster_id": 86,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 767.67,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 155
- },
- {
- "id": 902,
- "disaster_id": 2,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 641.23,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 81
- },
- {
- "id": 903,
- "disaster_id": 91,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 193940.02,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 45
- },
- {
- "id": 904,
- "disaster_id": 100,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 926.49,
- "agent_assigned_id": 70,
- "claim_handler_assigned_id": 93
- },
- {
- "id": 905,
- "disaster_id": 99,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 1185.55,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 64
- },
- {
- "id": 906,
- "disaster_id": 11,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 51528.05,
- "agent_assigned_id": 49,
- "claim_handler_assigned_id": 85
- },
- {
- "id": 907,
- "disaster_id": 58,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 3038.38,
- "agent_assigned_id": 1,
- "claim_handler_assigned_id": 92
- },
- {
- "id": 908,
- "disaster_id": 52,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 65600.99,
- "agent_assigned_id": 5,
- "claim_handler_assigned_id": 110
- },
- {
- "id": 909,
- "disaster_id": 83,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 81480.4,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 20
- },
- {
- "id": 910,
- "disaster_id": 13,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 3579.27,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 27
- },
- {
- "id": 911,
- "disaster_id": 73,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 1126.82,
- "agent_assigned_id": 36,
- "claim_handler_assigned_id": 114
- },
- {
- "id": 912,
- "disaster_id": 38,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 2099.12,
- "agent_assigned_id": 58,
- "claim_handler_assigned_id": 24
- },
- {
- "id": 913,
- "disaster_id": 90,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 8397.56,
- "agent_assigned_id": 97,
- "claim_handler_assigned_id": 124
- },
- {
- "id": 914,
- "disaster_id": 12,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 33234.66,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 32
- },
- {
- "id": 915,
- "disaster_id": 86,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 2116.54,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 125
- },
- {
- "id": 916,
- "disaster_id": 55,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 624960.43,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 122
- },
- {
- "id": 917,
- "disaster_id": 61,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 551460.46,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 29
- },
- {
- "id": 918,
- "disaster_id": 65,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 4135.69,
- "agent_assigned_id": 31,
- "claim_handler_assigned_id": 66
- },
- {
- "id": 919,
- "disaster_id": 36,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 36112.36,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 149
- },
- {
- "id": 920,
- "disaster_id": 1,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 588880.6,
- "agent_assigned_id": 75,
- "claim_handler_assigned_id": 113
- },
- {
- "id": 921,
- "disaster_id": 95,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 666270.01,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 40
- },
- {
- "id": 922,
- "disaster_id": 10,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 334400.43,
- "agent_assigned_id": 66,
- "claim_handler_assigned_id": 150
- },
- {
- "id": 923,
- "disaster_id": 43,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 26782.59,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 133
- },
- {
- "id": 924,
- "disaster_id": 48,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 1131.79,
- "agent_assigned_id": 5,
- "claim_handler_assigned_id": 35
- },
- {
- "id": 925,
- "disaster_id": 1,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 16452.99,
- "agent_assigned_id": 68,
- "claim_handler_assigned_id": 33
- },
- {
- "id": 926,
- "disaster_id": 47,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 1369.64,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 49
- },
- {
- "id": 927,
- "disaster_id": 91,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 662580.23,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 105
- },
- {
- "id": 928,
- "disaster_id": 73,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 1990.45,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 4
- },
- {
- "id": 929,
- "disaster_id": 51,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 2071.34,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 140
- },
- {
- "id": 930,
- "disaster_id": 82,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 1418.54,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 2
- },
- {
- "id": 931,
- "disaster_id": 9,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 245.77,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 51
- },
- {
- "id": 932,
- "disaster_id": 44,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 4,
- "estimate_cost": 45400.86,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 118
- },
- {
- "id": 933,
- "disaster_id": 47,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 379120.91,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 78
- },
- {
- "id": 934,
- "disaster_id": 96,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 2512.86,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 20
- },
- {
- "id": 935,
- "disaster_id": 31,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 141510.27,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 17
- },
- {
- "id": 936,
- "disaster_id": 54,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 289150.04,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 152
- },
- {
- "id": 937,
- "disaster_id": 40,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 1544.66,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 77
- },
- {
- "id": 938,
- "disaster_id": 9,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 73880.59,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 75
- },
- {
- "id": 939,
- "disaster_id": 88,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 2161.83,
- "agent_assigned_id": 47,
- "claim_handler_assigned_id": 120
- },
- {
- "id": 940,
- "disaster_id": 22,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 22011.55,
- "agent_assigned_id": 56,
- "claim_handler_assigned_id": 107
- },
- {
- "id": 941,
- "disaster_id": 80,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 455040.92,
- "agent_assigned_id": 23,
- "claim_handler_assigned_id": 12
- },
- {
- "id": 942,
- "disaster_id": 8,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 7,
- "estimate_cost": 190820.74,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 102
- },
- {
- "id": 943,
- "disaster_id": 32,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 1183.36,
- "agent_assigned_id": 73,
- "claim_handler_assigned_id": 86
- },
- {
- "id": 944,
- "disaster_id": 35,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 524.11,
- "agent_assigned_id": 85,
- "claim_handler_assigned_id": 12
- },
- {
- "id": 945,
- "disaster_id": 18,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 92040.59,
- "agent_assigned_id": 99,
- "claim_handler_assigned_id": 1
- },
- {
- "id": 946,
- "disaster_id": 42,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 41735.24,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 115
- },
- {
- "id": 947,
- "disaster_id": 26,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Life",
- "severity_rating": 6,
- "estimate_cost": 4991.11,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 60
- },
- {
- "id": 948,
- "disaster_id": 39,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 1389.04,
- "agent_assigned_id": 62,
- "claim_handler_assigned_id": 18
- },
- {
- "id": 949,
- "disaster_id": 58,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 3959.67,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 58
- },
- {
- "id": 950,
- "disaster_id": 9,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 43100.3,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 62
- },
- {
- "id": 951,
- "disaster_id": 61,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 246060.83,
- "agent_assigned_id": 57,
- "claim_handler_assigned_id": 106
- },
- {
- "id": 952,
- "disaster_id": 62,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 2704.88,
- "agent_assigned_id": 55,
- "claim_handler_assigned_id": 20
- },
- {
- "id": 953,
- "disaster_id": 34,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 498360.94,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 121
- },
- {
- "id": 954,
- "disaster_id": 63,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 8430.87,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 122
- },
- {
- "id": 955,
- "disaster_id": 63,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 8,
- "estimate_cost": 2521.48,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 65
- },
- {
- "id": 956,
- "disaster_id": 76,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 95600.69,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 70
- },
- {
- "id": 957,
- "disaster_id": 44,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 124290.48,
- "agent_assigned_id": 76,
- "claim_handler_assigned_id": 56
- },
- {
- "id": 958,
- "disaster_id": 72,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 43240.37,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 49
- },
- {
- "id": 959,
- "disaster_id": 95,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 10964.52,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 14
- },
- {
- "id": 960,
- "disaster_id": 54,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 469.92,
- "agent_assigned_id": 34,
- "claim_handler_assigned_id": 51
- },
- {
- "id": 961,
- "disaster_id": 97,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 629760.5,
- "agent_assigned_id": 13,
- "claim_handler_assigned_id": 42
- },
- {
- "id": 962,
- "disaster_id": 29,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 288840.08,
- "agent_assigned_id": 88,
- "claim_handler_assigned_id": 85
- },
- {
- "id": 963,
- "disaster_id": 34,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 71368.57,
- "agent_assigned_id": 58,
- "claim_handler_assigned_id": 36
- },
- {
- "id": 964,
- "disaster_id": 25,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 127.32,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 135
- },
- {
- "id": 965,
- "disaster_id": 17,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 694890.27,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 81
- },
- {
- "id": 966,
- "disaster_id": 18,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 40760.9,
- "agent_assigned_id": 39,
- "claim_handler_assigned_id": 130
- },
- {
- "id": 967,
- "disaster_id": 63,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 294960.98,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 43
- },
- {
- "id": 968,
- "disaster_id": 63,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 3094.95,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 96
- },
- {
- "id": 969,
- "disaster_id": 3,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 136.16,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 76
- },
- {
- "id": 970,
- "disaster_id": 99,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 9,
- "estimate_cost": 41607.83,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 120
- },
- {
- "id": 971,
- "disaster_id": 86,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 8,
- "estimate_cost": 2756.09,
- "agent_assigned_id": 86,
- "claim_handler_assigned_id": 110
- },
- {
- "id": 972,
- "disaster_id": 38,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 7,
- "estimate_cost": 4729.21,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 98
- },
- {
- "id": 973,
- "disaster_id": 31,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 7563.08,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 97
- },
- {
- "id": 974,
- "disaster_id": 38,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 3815.56,
- "agent_assigned_id": 20,
- "claim_handler_assigned_id": 130
- },
- {
- "id": 975,
- "disaster_id": 39,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 43056.28,
- "agent_assigned_id": 82,
- "claim_handler_assigned_id": 61
- },
- {
- "id": 976,
- "disaster_id": 24,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 7,
- "estimate_cost": 8379.17,
- "agent_assigned_id": 77,
- "claim_handler_assigned_id": 91
- },
- {
- "id": 977,
- "disaster_id": 23,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 370.47,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 10
- },
- {
- "id": 978,
- "disaster_id": 99,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 218910.99,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 47
- },
- {
- "id": 979,
- "disaster_id": 93,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 1,
- "estimate_cost": 1050.49,
- "agent_assigned_id": 30,
- "claim_handler_assigned_id": 140
- },
- {
- "id": 980,
- "disaster_id": 99,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 19410.9,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 95
- },
- {
- "id": 981,
- "disaster_id": 42,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 43560.01,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 40
- },
- {
- "id": 982,
- "disaster_id": 52,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 1,
- "estimate_cost": 584.99,
- "agent_assigned_id": 5,
- "claim_handler_assigned_id": 48
- },
- {
- "id": 983,
- "disaster_id": 94,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 4,
- "estimate_cost": 20256.5,
- "agent_assigned_id": 15,
- "claim_handler_assigned_id": 136
- },
- {
- "id": 984,
- "disaster_id": 3,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 3,
- "estimate_cost": 2400.82,
- "agent_assigned_id": 4,
- "claim_handler_assigned_id": 53
- },
- {
- "id": 985,
- "disaster_id": 63,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 969.22,
- "agent_assigned_id": 100,
- "claim_handler_assigned_id": 122
- },
- {
- "id": 986,
- "disaster_id": 99,
- "status": "In Review",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 63981.35,
- "agent_assigned_id": 7,
- "claim_handler_assigned_id": 47
- },
- {
- "id": 987,
- "disaster_id": 27,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 5,
- "estimate_cost": 985.83,
- "agent_assigned_id": 1,
- "claim_handler_assigned_id": 125
- },
- {
- "id": 988,
- "disaster_id": 93,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 3833.72,
- "agent_assigned_id": 43,
- "claim_handler_assigned_id": 15
- },
- {
- "id": 989,
- "disaster_id": 68,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 2935.22,
- "agent_assigned_id": 10,
- "claim_handler_assigned_id": 67
- },
- {
- "id": 990,
- "disaster_id": 95,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 2,
- "estimate_cost": 17720.19,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 66
- },
- {
- "id": 991,
- "disaster_id": 34,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 913300.2,
- "agent_assigned_id": 24,
- "claim_handler_assigned_id": 129
- },
- {
- "id": 992,
- "disaster_id": 12,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 3,
- "estimate_cost": 79980.03,
- "agent_assigned_id": 92,
- "claim_handler_assigned_id": 92
- },
- {
- "id": 993,
- "disaster_id": 42,
- "status": "Closed",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Auto",
- "severity_rating": 6,
- "estimate_cost": 4862.2,
- "agent_assigned_id": 87,
- "claim_handler_assigned_id": 110
- },
- {
- "id": 994,
- "disaster_id": 82,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Home",
- "severity_rating": 5,
- "estimate_cost": 177150.91,
- "agent_assigned_id": 79,
- "claim_handler_assigned_id": 88
- },
- {
- "id": 995,
- "disaster_id": 15,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 9,
- "estimate_cost": 248670.91,
- "agent_assigned_id": 21,
- "claim_handler_assigned_id": 140
- },
- {
- "id": 996,
- "disaster_id": 58,
- "status": "Received",
- "total_loss": false,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 4,
- "estimate_cost": 1662.24,
- "agent_assigned_id": 83,
- "claim_handler_assigned_id": 114
- },
- {
- "id": 997,
- "disaster_id": 95,
- "status": "In Review",
- "total_loss": false,
- "loss_of_life": false,
- "type": "Home",
- "severity_rating": 6,
- "estimate_cost": 2078.24,
- "agent_assigned_id": 84,
- "claim_handler_assigned_id": 80
- },
- {
- "id": 998,
- "disaster_id": 66,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 2,
- "estimate_cost": 17420.91,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 113
- },
- {
- "id": 999,
- "disaster_id": 17,
- "status": "Closed",
- "total_loss": true,
- "loss_of_life": true,
- "type": "Auto",
- "severity_rating": 10,
- "estimate_cost": 484100.78,
- "agent_assigned_id": 3,
- "claim_handler_assigned_id": 85
- },
- {
- "id": 1000,
- "disaster_id": 9,
- "status": "Received",
- "total_loss": true,
- "loss_of_life": false,
- "type": "Life",
- "severity_rating": 6,
- "estimate_cost": 42330.53,
- "agent_assigned_id": 94,
- "claim_handler_assigned_id": 156
- }
-]
\ No newline at end of file
diff --git a/round 1/sfcc_2023_disasters.json b/round 1/sfcc_2023_disasters.json
deleted file mode 100644
index eb8f6ac..0000000
--- a/round 1/sfcc_2023_disasters.json
+++ /dev/null
@@ -1,1302 +0,0 @@
-[
- {
- "id": 1,
- "type": "Flood",
- "state": "Alaska",
- "name": "Alaska Flood",
- "description": "Fusce consequat. Nulla nisl. Nunc nisl.\n\nDuis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa. Donec dapibus. Duis at velit eu est congue elementum.\n\nIn hac habitasse platea dictumst. Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante. Nulla justo.",
- "start_date": "2023-06-13",
- "end_date": "2023-06-20",
- "declared_date": "2023-06-17",
- "lat": 58.3271,
- "long": -134.4742,
- "radius_miles": 168
- },
- {
- "id": 2,
- "type": "Wildfire",
- "state": "Texas",
- "name": "Texas Wildfire",
- "description": "Duis consequat dui nec nisi volutpat eleifend. Donec ut dolor. Morbi vel lectus in quam fringilla rhoncus.\n\nMauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis. Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci. Mauris lacinia sapien quis libero.",
- "start_date": "2023-04-11",
- "end_date": "2023-04-19",
- "declared_date": "2023-04-12",
- "lat": 33.5693,
- "long": -101.8904,
- "radius_miles": 235
- },
- {
- "id": 3,
- "type": "Tornado",
- "state": "Virginia",
- "name": "Virginia Tornado",
- "description": "Nullam sit amet turpis elementum ligula vehicula consequat. Morbi a ipsum. Integer a nibh.\n\nIn quis justo. Maecenas rhoncus aliquam lacus. Morbi quis tortor id nulla ultrices aliquet.\n\nMaecenas leo odio, condimentum id, luctus nec, molestie sed, justo. Pellentesque viverra pede ac diam. Cras pellentesque volutpat dui.",
- "start_date": "2023-04-29",
- "end_date": "2023-05-07",
- "declared_date": "2023-05-06",
- "lat": 38.9776,
- "long": -77.386,
- "radius_miles": 273
- },
- {
- "id": 4,
- "type": "Earthquake",
- "state": "Connecticut",
- "name": "Connecticut Earthquake",
- "description": "Fusce consequat. Nulla nisl. Nunc nisl.",
- "start_date": "2023-04-24",
- "end_date": "2023-05-09",
- "declared_date": "2023-04-28",
- "lat": 41.3657,
- "long": -72.9275,
- "radius_miles": 120
- },
- {
- "id": 5,
- "type": "Winter Storm",
- "state": "Missouri",
- "name": "Missouri Winter Storm",
- "description": "Suspendisse potenti. In eleifend quam a odio. In hac habitasse platea dictumst.",
- "start_date": "2023-03-11",
- "end_date": "2023-03-21",
- "declared_date": "2023-03-14",
- "lat": 39.0663,
- "long": -94.5674,
- "radius_miles": 155
- },
- {
- "id": 6,
- "type": "Tornado",
- "state": "California",
- "name": "California Tornado",
- "description": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis. Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci. Mauris lacinia sapien quis libero.\n\nNullam sit amet turpis elementum ligula vehicula consequat. Morbi a ipsum. Integer a nibh.",
- "start_date": "2022-11-15",
- "end_date": "2022-11-19",
- "declared_date": "2022-11-20",
- "lat": 38.025,
- "long": -121.2972,
- "radius_miles": 142
- },
- {
- "id": 7,
- "type": "Thunderstorm",
- "state": "Massachusetts",
- "name": "Massachusetts Thunderstorm",
- "description": "Sed ante. Vivamus tortor. Duis mattis egestas metus.\n\nAenean fermentum. Donec ut mauris eget massa tempor convallis. Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.\n\nQuisque id justo sit amet sapien dignissim vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est. Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.",
- "start_date": "2023-05-19",
- "end_date": "2023-06-06",
- "declared_date": "2023-05-26",
- "lat": 41.6913,
- "long": -70.9355,
- "radius_miles": 266
- },
- {
- "id": 8,
- "type": "Earthquake",
- "state": "Tennessee",
- "name": "Tennessee Earthquake",
- "description": "Morbi porttitor lorem id ligula. Suspendisse ornare consequat lectus. In est risus, auctor sed, tristique in, tempus sit amet, sem.",
- "start_date": "2023-04-13",
- "end_date": "2023-04-21",
- "declared_date": "2023-04-20",
- "lat": 35.6124,
- "long": -88.8412,
- "radius_miles": 147
- },
- {
- "id": 9,
- "type": "Thunderstorm",
- "state": "New York",
- "name": "New York Thunderstorm",
- "description": "Curabitur gravida nisi at nibh. In hac habitasse platea dictumst. Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.",
- "start_date": "2022-11-04",
- "end_date": "2022-11-15",
- "declared_date": "2022-11-06",
- "lat": 40.7536,
- "long": -73.8226,
- "radius_miles": 48
- },
- {
- "id": 10,
- "type": "Winter Storm",
- "state": "Nebraska",
- "name": "Nebraska Winter Storm",
- "description": "Maecenas ut massa quis augue luctus tincidunt. Nulla mollis molestie lorem. Quisque ut erat.\n\nCurabitur gravida nisi at nibh. In hac habitasse platea dictumst. Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.",
- "start_date": "2022-11-28",
- "end_date": "2022-12-03",
- "declared_date": "2022-11-30",
- "lat": 40.8529,
- "long": -96.7943,
- "radius_miles": 239
- },
- {
- "id": 11,
- "type": "Wildfire",
- "state": "Kansas",
- "name": "Kansas Wildfire",
- "description": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis. Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci. Mauris lacinia sapien quis libero.",
- "start_date": "2022-11-12",
- "end_date": "2022-11-28",
- "declared_date": "2022-11-17",
- "lat": 38.8999,
- "long": -94.832,
- "radius_miles": 169
- },
- {
- "id": 12,
- "type": "Landslide",
- "state": "Florida",
- "name": "Florida Landslide",
- "description": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi. Integer ac neque.",
- "start_date": "2022-12-01",
- "end_date": "2022-12-07",
- "declared_date": "2022-12-03",
- "lat": 28.5559,
- "long": -81.3535,
- "radius_miles": 102
- },
- {
- "id": 13,
- "type": "Hurricane",
- "state": "Texas",
- "name": "Texas Hurricane Bliss",
- "description": "Proin interdum mauris non ligula pellentesque ultrices. Phasellus id sapien in sapien iaculis congue. Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.\n\nAenean lectus. Pellentesque eget nunc. Donec quis orci eget orci vehicula condimentum.\n\nCurabitur in libero ut massa volutpat convallis. Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo. Maecenas pulvinar lobortis est.",
- "start_date": "2023-03-29",
- "end_date": "2023-04-12",
- "declared_date": "2023-04-05",
- "lat": 30.43,
- "long": -97.8326,
- "radius_miles": 186
- },
- {
- "id": 14,
- "type": "Flood",
- "state": "Florida",
- "name": "Florida Flood",
- "description": "Aliquam quis turpis eget elit sodales scelerisque. Mauris sit amet eros. Suspendisse accumsan tortor quis turpis.\n\nSed ante. Vivamus tortor. Duis mattis egestas metus.\n\nAenean fermentum. Donec ut mauris eget massa tempor convallis. Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.",
- "start_date": "2023-04-05",
- "end_date": "2023-04-18",
- "declared_date": "2023-04-12",
- "lat": 30.4793,
- "long": -84.3462,
- "radius_miles": 110
- },
- {
- "id": 15,
- "type": "Wildfire",
- "state": "North Carolina",
- "name": "North Carolina Wildfire",
- "description": "In sagittis dui vel nisl. Duis ac nibh. Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus.\n\nSuspendisse potenti. In eleifend quam a odio. In hac habitasse platea dictumst.\n\nMaecenas ut massa quis augue luctus tincidunt. Nulla mollis molestie lorem. Quisque ut erat.",
- "start_date": "2023-03-28",
- "end_date": "2023-04-04",
- "declared_date": "2023-03-30",
- "lat": 36.1824,
- "long": -79.806,
- "radius_miles": 36
- },
- {
- "id": 16,
- "type": "Flood",
- "state": "New York",
- "name": "New York Flood",
- "description": "Duis aliquam convallis nunc. Proin at turpis a pede posuere nonummy. Integer non velit.\n\nDonec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi. Integer ac neque.",
- "start_date": "2023-02-27",
- "end_date": "2023-03-03",
- "declared_date": "2023-02-28",
- "lat": 42.8161,
- "long": -73.9398,
- "radius_miles": 182
- },
- {
- "id": 17,
- "type": "Thunderstorm",
- "state": "Connecticut",
- "name": "Connecticut Thunderstorm",
- "description": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi. Integer ac neque.\n\nDuis bibendum. Morbi non quam nec dui luctus rutrum. Nulla tellus.\n\nIn sagittis dui vel nisl. Duis ac nibh. Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus.",
- "start_date": "2023-04-05",
- "end_date": "2023-04-19",
- "declared_date": "2023-04-08",
- "lat": 41.3089,
- "long": -73.3637,
- "radius_miles": 57
- },
- {
- "id": 18,
- "type": "Wildfire",
- "state": "Georgia",
- "name": "Georgia Wildfire",
- "description": "Proin eu mi. Nulla ac enim. In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.\n\nDuis aliquam convallis nunc. Proin at turpis a pede posuere nonummy. Integer non velit.\n\nDonec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi. Integer ac neque.",
- "start_date": "2023-03-08",
- "end_date": "2023-03-20",
- "declared_date": "2023-03-14",
- "lat": 31.55,
- "long": -84.0612,
- "radius_miles": 31
- },
- {
- "id": 19,
- "type": "Earthquake",
- "state": "Georgia",
- "name": "Georgia Earthquake",
- "description": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vivamus vestibulum sagittis sapien. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\n\nEtiam vel augue. Vestibulum rutrum rutrum neque. Aenean auctor gravida sem.\n\nPraesent id massa id nisl venenatis lacinia. Aenean sit amet justo. Morbi ut odio.",
- "start_date": "2023-04-01",
- "end_date": "2023-04-11",
- "declared_date": "2023-04-02",
- "lat": 32.491,
- "long": -84.8741,
- "radius_miles": 79
- },
- {
- "id": 20,
- "type": "Landslide",
- "state": "New York",
- "name": "New York Landslide",
- "description": "Sed ante. Vivamus tortor. Duis mattis egestas metus.\n\nAenean fermentum. Donec ut mauris eget massa tempor convallis. Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.\n\nQuisque id justo sit amet sapien dignissim vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est. Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.",
- "start_date": "2023-01-01",
- "end_date": "2023-01-18",
- "declared_date": "2023-01-03",
- "lat": 40.6407,
- "long": -73.9028,
- "radius_miles": 164
- },
- {
- "id": 21,
- "type": "Winter Storm",
- "state": "Minnesota",
- "name": "Minnesota Winter Storm",
- "description": "Quisque porta volutpat erat. Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla. Nunc purus.\n\nPhasellus in felis. Donec semper sapien a libero. Nam dui.",
- "start_date": "2023-01-02",
- "end_date": "2023-01-19",
- "declared_date": "2023-01-07",
- "lat": 45.0059,
- "long": -93.1059,
- "radius_miles": 185
- },
- {
- "id": 22,
- "type": "Hurricane",
- "state": "District of Columbia",
- "name": "District of Columbia Hurricane Carolina",
- "description": "Morbi porttitor lorem id ligula. Suspendisse ornare consequat lectus. In est risus, auctor sed, tristique in, tempus sit amet, sem.\n\nFusce consequat. Nulla nisl. Nunc nisl.",
- "start_date": "2023-06-17",
- "end_date": "2023-06-22",
- "declared_date": "2023-06-24",
- "lat": 38.8933,
- "long": -77.0146,
- "radius_miles": 269
- },
- {
- "id": 23,
- "type": "Winter Storm",
- "state": "Florida",
- "name": "Florida Winter Storm",
- "description": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vivamus vestibulum sagittis sapien. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\n\nEtiam vel augue. Vestibulum rutrum rutrum neque. Aenean auctor gravida sem.",
- "start_date": "2023-01-27",
- "end_date": "2023-02-14",
- "declared_date": "2023-01-30",
- "lat": 30.6143,
- "long": -87.2758,
- "radius_miles": 121
- },
- {
- "id": 24,
- "type": "Earthquake",
- "state": "Michigan",
- "name": "Michigan Earthquake",
- "description": "Aliquam quis turpis eget elit sodales scelerisque. Mauris sit amet eros. Suspendisse accumsan tortor quis turpis.\n\nSed ante. Vivamus tortor. Duis mattis egestas metus.",
- "start_date": "2022-10-27",
- "end_date": "2022-11-11",
- "declared_date": "2022-11-03",
- "lat": 42.3749,
- "long": -83.1087,
- "radius_miles": 97
- },
- {
- "id": 25,
- "type": "Landslide",
- "state": "Texas",
- "name": "Texas Landslide",
- "description": "In quis justo. Maecenas rhoncus aliquam lacus. Morbi quis tortor id nulla ultrices aliquet.\n\nMaecenas leo odio, condimentum id, luctus nec, molestie sed, justo. Pellentesque viverra pede ac diam. Cras pellentesque volutpat dui.\n\nMaecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam. Suspendisse potenti.",
- "start_date": "2022-10-14",
- "end_date": "2022-11-02",
- "declared_date": "2022-10-17",
- "lat": 29.4189,
- "long": -98.6895,
- "radius_miles": 130
- },
- {
- "id": 26,
- "type": "Thunderstorm",
- "state": "Indiana",
- "name": "Indiana Thunderstorm",
- "description": "In congue. Etiam justo. Etiam pretium iaculis justo.\n\nIn hac habitasse platea dictumst. Etiam faucibus cursus urna. Ut tellus.\n\nNulla ut erat id mauris vulputate elementum. Nullam varius. Nulla facilisi.",
- "start_date": "2023-04-27",
- "end_date": "2023-05-18",
- "declared_date": "2023-04-29",
- "lat": 39.4336,
- "long": -87.4101,
- "radius_miles": 103
- },
- {
- "id": 27,
- "type": "Winter Storm",
- "state": "Minnesota",
- "name": "Minnesota Winter Storm",
- "description": "Maecenas ut massa quis augue luctus tincidunt. Nulla mollis molestie lorem. Quisque ut erat.",
- "start_date": "2022-11-16",
- "end_date": "2022-11-22",
- "declared_date": "2022-11-23",
- "lat": 45.2009,
- "long": -93.8881,
- "radius_miles": 23
- },
- {
- "id": 28,
- "type": "Tornado",
- "state": "Oklahoma",
- "name": "Oklahoma Tornado",
- "description": "Praesent id massa id nisl venenatis lacinia. Aenean sit amet justo. Morbi ut odio.\n\nCras mi pede, malesuada in, imperdiet et, commodo vulputate, justo. In blandit ultrices enim. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.",
- "start_date": "2023-03-30",
- "end_date": "2023-04-11",
- "declared_date": "2023-04-03",
- "lat": 35.411,
- "long": -97.4388,
- "radius_miles": 101
- },
- {
- "id": 29,
- "type": "Earthquake",
- "state": "Pennsylvania",
- "name": "Pennsylvania Earthquake",
- "description": "Praesent id massa id nisl venenatis lacinia. Aenean sit amet justo. Morbi ut odio.\n\nCras mi pede, malesuada in, imperdiet et, commodo vulputate, justo. In blandit ultrices enim. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.",
- "start_date": "2022-12-09",
- "end_date": "2022-12-30",
- "declared_date": "2022-12-14",
- "lat": 42.1109,
- "long": -80.1534,
- "radius_miles": 125
- },
- {
- "id": 30,
- "type": "Thunderstorm",
- "state": "California",
- "name": "California Thunderstorm",
- "description": "Sed sagittis. Nam congue, risus semper porta volutpat, quam pede lobortis ligula, sit amet eleifend pede libero quis orci. Nullam molestie nibh in lectus.\n\nPellentesque at nulla. Suspendisse potenti. Cras in purus eu magna vulputate luctus.",
- "start_date": "2023-05-24",
- "end_date": "2023-06-06",
- "declared_date": "2023-05-29",
- "lat": 34.4453,
- "long": -119.8025,
- "radius_miles": 282
- },
- {
- "id": 31,
- "type": "Landslide",
- "state": "New York",
- "name": "New York Landslide",
- "description": "Proin interdum mauris non ligula pellentesque ultrices. Phasellus id sapien in sapien iaculis congue. Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.\n\nAenean lectus. Pellentesque eget nunc. Donec quis orci eget orci vehicula condimentum.",
- "start_date": "2022-10-19",
- "end_date": "2022-10-31",
- "declared_date": "2022-10-20",
- "lat": 43.1577,
- "long": -77.608,
- "radius_miles": 119
- },
- {
- "id": 32,
- "type": "Winter Storm",
- "state": "Massachusetts",
- "name": "Massachusetts Winter Storm",
- "description": "Nulla ut erat id mauris vulputate elementum. Nullam varius. Nulla facilisi.",
- "start_date": "2023-01-12",
- "end_date": "2023-01-28",
- "declared_date": "2023-01-18",
- "lat": 42.3253,
- "long": -71.1122,
- "radius_miles": 79
- },
- {
- "id": 33,
- "type": "Wildfire",
- "state": "Texas",
- "name": "Texas Wildfire",
- "description": "Nulla ut erat id mauris vulputate elementum. Nullam varius. Nulla facilisi.",
- "start_date": "2022-11-08",
- "end_date": "2022-11-15",
- "declared_date": "2022-11-11",
- "lat": 32.7673,
- "long": -96.7776,
- "radius_miles": 255
- },
- {
- "id": 34,
- "type": "Flood",
- "state": "Ohio",
- "name": "Ohio Flood",
- "description": "Phasellus sit amet erat. Nulla tempus. Vivamus in felis eu sapien cursus vestibulum.",
- "start_date": "2023-01-25",
- "end_date": "2023-01-30",
- "declared_date": "2023-01-29",
- "lat": 41.6767,
- "long": -83.5573,
- "radius_miles": 142
- },
- {
- "id": 35,
- "type": "Landslide",
- "state": "Nebraska",
- "name": "Nebraska Landslide",
- "description": "Praesent blandit. Nam nulla. Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.\n\nMorbi porttitor lorem id ligula. Suspendisse ornare consequat lectus. In est risus, auctor sed, tristique in, tempus sit amet, sem.",
- "start_date": "2023-04-08",
- "end_date": "2023-04-16",
- "declared_date": "2023-04-10",
- "lat": 41.2338,
- "long": -96.0495,
- "radius_miles": 7
- },
- {
- "id": 36,
- "type": "Thunderstorm",
- "state": "Tennessee",
- "name": "Tennessee Thunderstorm",
- "description": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo. Pellentesque viverra pede ac diam. Cras pellentesque volutpat dui.\n\nMaecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam. Suspendisse potenti.",
- "start_date": "2023-04-27",
- "end_date": "2023-05-13",
- "declared_date": "2023-04-30",
- "lat": 35.9918,
- "long": -83.8496,
- "radius_miles": 53
- },
- {
- "id": 37,
- "type": "Winter Storm",
- "state": "Texas",
- "name": "Texas Winter Storm",
- "description": "Vestibulum ac est lacinia nisi venenatis tristique. Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue. Aliquam erat volutpat.\n\nIn congue. Etiam justo. Etiam pretium iaculis justo.\n\nIn hac habitasse platea dictumst. Etiam faucibus cursus urna. Ut tellus.",
- "start_date": "2022-10-27",
- "end_date": "2022-11-01",
- "declared_date": "2022-11-02",
- "lat": 31.8767,
- "long": -102.4375,
- "radius_miles": 193
- },
- {
- "id": 38,
- "type": "Winter Storm",
- "state": "Ohio",
- "name": "Ohio Winter Storm",
- "description": "In hac habitasse platea dictumst. Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante. Nulla justo.",
- "start_date": "2023-02-10",
- "end_date": "2023-03-03",
- "declared_date": "2023-02-16",
- "lat": 41.5008,
- "long": -81.5516,
- "radius_miles": 59
- },
- {
- "id": 39,
- "type": "Thunderstorm",
- "state": "Arizona",
- "name": "Arizona Thunderstorm",
- "description": "In congue. Etiam justo. Etiam pretium iaculis justo.",
- "start_date": "2022-10-07",
- "end_date": "2022-10-23",
- "declared_date": "2022-10-14",
- "lat": 33.2765,
- "long": -112.1872,
- "radius_miles": 191
- },
- {
- "id": 40,
- "type": "Thunderstorm",
- "state": "Florida",
- "name": "Florida Thunderstorm",
- "description": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Proin risus. Praesent lectus.\n\nVestibulum quam sapien, varius ut, blandit non, interdum in, ante. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio. Curabitur convallis.\n\nDuis consequat dui nec nisi volutpat eleifend. Donec ut dolor. Morbi vel lectus in quam fringilla rhoncus.",
- "start_date": "2022-10-16",
- "end_date": "2022-10-25",
- "declared_date": "2022-10-18",
- "lat": 27.872,
- "long": -82.4388,
- "radius_miles": 29
- },
- {
- "id": 41,
- "type": "Flood",
- "state": "Kansas",
- "name": "Kansas Flood",
- "description": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi. Integer ac neque.",
- "start_date": "2023-01-29",
- "end_date": "2023-02-03",
- "declared_date": "2023-01-30",
- "lat": 38.9613,
- "long": -94.8222,
- "radius_miles": 244
- },
- {
- "id": 42,
- "type": "Wildfire",
- "state": "Colorado",
- "name": "Colorado Wildfire",
- "description": "Curabitur gravida nisi at nibh. In hac habitasse platea dictumst. Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.\n\nInteger tincidunt ante vel ipsum. Praesent blandit lacinia erat. Vestibulum sed magna at nunc commodo placerat.\n\nPraesent blandit. Nam nulla. Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.",
- "start_date": "2023-05-11",
- "end_date": "2023-05-29",
- "declared_date": "2023-05-17",
- "lat": 39.7388,
- "long": -104.4083,
- "radius_miles": 31
- },
- {
- "id": 43,
- "type": "Flood",
- "state": "Michigan",
- "name": "Michigan Flood",
- "description": "Pellentesque at nulla. Suspendisse potenti. Cras in purus eu magna vulputate luctus.\n\nCum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vivamus vestibulum sagittis sapien. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\n\nEtiam vel augue. Vestibulum rutrum rutrum neque. Aenean auctor gravida sem.",
- "start_date": "2022-12-09",
- "end_date": "2022-12-30",
- "declared_date": "2022-12-15",
- "lat": 43.0349,
- "long": -83.6887,
- "radius_miles": 199
- },
- {
- "id": 44,
- "type": "Tornado",
- "state": "California",
- "name": "California Tornado",
- "description": "Nulla ut erat id mauris vulputate elementum. Nullam varius. Nulla facilisi.\n\nCras non velit nec nisi vulputate nonummy. Maecenas tincidunt lacus at velit. Vivamus vel nulla eget eros elementum pellentesque.\n\nQuisque porta volutpat erat. Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla. Nunc purus.",
- "start_date": "2022-10-14",
- "end_date": "2022-10-25",
- "declared_date": "2022-10-21",
- "lat": 33.0169,
- "long": -116.846,
- "radius_miles": 268
- },
- {
- "id": 45,
- "type": "Wildfire",
- "state": "Tennessee",
- "name": "Tennessee Wildfire",
- "description": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo. Pellentesque viverra pede ac diam. Cras pellentesque volutpat dui.\n\nMaecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam. Suspendisse potenti.\n\nNullam porttitor lacus at turpis. Donec posuere metus vitae ipsum. Aliquam non mauris.",
- "start_date": "2022-10-14",
- "end_date": "2022-10-27",
- "declared_date": "2022-10-20",
- "lat": 35.9918,
- "long": -83.8496,
- "radius_miles": 144
- },
- {
- "id": 46,
- "type": "Landslide",
- "state": "Florida",
- "name": "Florida Landslide",
- "description": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis. Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci. Mauris lacinia sapien quis libero.\n\nNullam sit amet turpis elementum ligula vehicula consequat. Morbi a ipsum. Integer a nibh.\n\nIn quis justo. Maecenas rhoncus aliquam lacus. Morbi quis tortor id nulla ultrices aliquet.",
- "start_date": "2022-11-19",
- "end_date": "2022-12-01",
- "declared_date": "2022-11-22",
- "lat": 28.1147,
- "long": -82.3678,
- "radius_miles": 96
- },
- {
- "id": 47,
- "type": "Winter Storm",
- "state": "California",
- "name": "California Winter Storm",
- "description": "Fusce consequat. Nulla nisl. Nunc nisl.\n\nDuis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa. Donec dapibus. Duis at velit eu est congue elementum.\n\nIn hac habitasse platea dictumst. Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante. Nulla justo.",
- "start_date": "2022-11-15",
- "end_date": "2022-11-28",
- "declared_date": "2022-11-17",
- "lat": 34.0606,
- "long": -118.3027,
- "radius_miles": 120
- },
- {
- "id": 48,
- "type": "Flood",
- "state": "Illinois",
- "name": "Illinois Flood",
- "description": "Nulla ut erat id mauris vulputate elementum. Nullam varius. Nulla facilisi.\n\nCras non velit nec nisi vulputate nonummy. Maecenas tincidunt lacus at velit. Vivamus vel nulla eget eros elementum pellentesque.\n\nQuisque porta volutpat erat. Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla. Nunc purus.",
- "start_date": "2022-12-29",
- "end_date": "2023-01-08",
- "declared_date": "2023-01-05",
- "lat": 42.0144,
- "long": -88.0935,
- "radius_miles": 170
- },
- {
- "id": 49,
- "type": "Wildfire",
- "state": "Indiana",
- "name": "Indiana Wildfire",
- "description": "Fusce consequat. Nulla nisl. Nunc nisl.\n\nDuis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa. Donec dapibus. Duis at velit eu est congue elementum.",
- "start_date": "2023-03-10",
- "end_date": "2023-03-16",
- "declared_date": "2023-03-12",
- "lat": 40.0938,
- "long": -85.6578,
- "radius_miles": 44
- },
- {
- "id": 50,
- "type": "Tornado",
- "state": "Maine",
- "name": "Maine Tornado",
- "description": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis. Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci. Mauris lacinia sapien quis libero.\n\nNullam sit amet turpis elementum ligula vehicula consequat. Morbi a ipsum. Integer a nibh.",
- "start_date": "2022-11-14",
- "end_date": "2022-11-17",
- "declared_date": "2022-11-20",
- "lat": 43.6783,
- "long": -70.1987,
- "radius_miles": 96
- },
- {
- "id": 51,
- "type": "Wildfire",
- "state": "Georgia",
- "name": "Georgia Wildfire",
- "description": "Morbi porttitor lorem id ligula. Suspendisse ornare consequat lectus. In est risus, auctor sed, tristique in, tempus sit amet, sem.\n\nFusce consequat. Nulla nisl. Nunc nisl.\n\nDuis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa. Donec dapibus. Duis at velit eu est congue elementum.",
- "start_date": "2023-02-07",
- "end_date": "2023-02-27",
- "declared_date": "2023-02-12",
- "lat": 33.9845,
- "long": -84.1529,
- "radius_miles": 42
- },
- {
- "id": 52,
- "type": "Earthquake",
- "state": "Illinois",
- "name": "Illinois Earthquake",
- "description": "Duis aliquam convallis nunc. Proin at turpis a pede posuere nonummy. Integer non velit.",
- "start_date": "2023-02-16",
- "end_date": "2023-03-02",
- "declared_date": "2023-02-22",
- "lat": 39.778,
- "long": -89.6466,
- "radius_miles": 213
- },
- {
- "id": 53,
- "type": "Winter Storm",
- "state": "New York",
- "name": "New York Winter Storm",
- "description": "Duis aliquam convallis nunc. Proin at turpis a pede posuere nonummy. Integer non velit.\n\nDonec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi. Integer ac neque.",
- "start_date": "2023-03-17",
- "end_date": "2023-03-26",
- "declared_date": "2023-03-21",
- "lat": 43.1216,
- "long": -77.7311,
- "radius_miles": 252
- },
- {
- "id": 54,
- "type": "Earthquake",
- "state": "Iowa",
- "name": "Iowa Earthquake",
- "description": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo. Pellentesque viverra pede ac diam. Cras pellentesque volutpat dui.\n\nMaecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam. Suspendisse potenti.\n\nNullam porttitor lacus at turpis. Donec posuere metus vitae ipsum. Aliquam non mauris.",
- "start_date": "2022-11-10",
- "end_date": "2022-11-22",
- "declared_date": "2022-11-16",
- "lat": 42.4011,
- "long": -96.372,
- "radius_miles": 192
- },
- {
- "id": 55,
- "type": "Landslide",
- "state": "Texas",
- "name": "Texas Landslide",
- "description": "Aenean lectus. Pellentesque eget nunc. Donec quis orci eget orci vehicula condimentum.\n\nCurabitur in libero ut massa volutpat convallis. Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo. Maecenas pulvinar lobortis est.",
- "start_date": "2023-02-19",
- "end_date": "2023-02-26",
- "declared_date": "2023-02-24",
- "lat": 31.8693,
- "long": -102.0317,
- "radius_miles": 268
- },
- {
- "id": 56,
- "type": "Landslide",
- "state": "Texas",
- "name": "Texas Landslide",
- "description": "Aliquam quis turpis eget elit sodales scelerisque. Mauris sit amet eros. Suspendisse accumsan tortor quis turpis.\n\nSed ante. Vivamus tortor. Duis mattis egestas metus.",
- "start_date": "2023-01-08",
- "end_date": "2023-01-29",
- "declared_date": "2023-01-10",
- "lat": 30.0167,
- "long": -95.447,
- "radius_miles": 17
- },
- {
- "id": 57,
- "type": "Hurricane",
- "state": "Arizona",
- "name": "Arizona Hurricane Waylen",
- "description": "Curabitur in libero ut massa volutpat convallis. Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo. Maecenas pulvinar lobortis est.\n\nPhasellus sit amet erat. Nulla tempus. Vivamus in felis eu sapien cursus vestibulum.",
- "start_date": "2023-03-09",
- "end_date": "2023-03-19",
- "declared_date": "2023-03-10",
- "lat": 31.9701,
- "long": -111.8907,
- "radius_miles": 60
- },
- {
- "id": 58,
- "type": "Earthquake",
- "state": "Minnesota",
- "name": "Minnesota Earthquake",
- "description": "Integer tincidunt ante vel ipsum. Praesent blandit lacinia erat. Vestibulum sed magna at nunc commodo placerat.\n\nPraesent blandit. Nam nulla. Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.",
- "start_date": "2023-06-23",
- "end_date": "2023-07-04",
- "declared_date": "2023-06-24",
- "lat": 45.0159,
- "long": -93.4719,
- "radius_miles": 256
- },
- {
- "id": 59,
- "type": "Thunderstorm",
- "state": "Colorado",
- "name": "Colorado Thunderstorm",
- "description": "Suspendisse potenti. In eleifend quam a odio. In hac habitasse platea dictumst.\n\nMaecenas ut massa quis augue luctus tincidunt. Nulla mollis molestie lorem. Quisque ut erat.\n\nCurabitur gravida nisi at nibh. In hac habitasse platea dictumst. Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.",
- "start_date": "2023-05-20",
- "end_date": "2023-06-07",
- "declared_date": "2023-05-27",
- "lat": 38.8247,
- "long": -104.562,
- "radius_miles": 174
- },
- {
- "id": 60,
- "type": "Tornado",
- "state": "New York",
- "name": "New York Tornado",
- "description": "Duis consequat dui nec nisi volutpat eleifend. Donec ut dolor. Morbi vel lectus in quam fringilla rhoncus.",
- "start_date": "2022-11-15",
- "end_date": "2022-11-25",
- "declared_date": "2022-11-18",
- "lat": 43.286,
- "long": -77.6843,
- "radius_miles": 156
- },
- {
- "id": 61,
- "type": "Tornado",
- "state": "Louisiana",
- "name": "Louisiana Tornado",
- "description": "Morbi porttitor lorem id ligula. Suspendisse ornare consequat lectus. In est risus, auctor sed, tristique in, tempus sit amet, sem.",
- "start_date": "2023-03-02",
- "end_date": "2023-03-22",
- "declared_date": "2023-03-06",
- "lat": 30.3633,
- "long": -91.0919,
- "radius_miles": 30
- },
- {
- "id": 62,
- "type": "Tornado",
- "state": "New Mexico",
- "name": "New Mexico Tornado",
- "description": "Cras mi pede, malesuada in, imperdiet et, commodo vulputate, justo. In blandit ultrices enim. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n\nProin interdum mauris non ligula pellentesque ultrices. Phasellus id sapien in sapien iaculis congue. Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.",
- "start_date": "2022-10-01",
- "end_date": "2022-10-13",
- "declared_date": "2022-10-06",
- "lat": 35.6219,
- "long": -105.8688,
- "radius_miles": 72
- },
- {
- "id": 63,
- "type": "Earthquake",
- "state": "California",
- "name": "California Earthquake",
- "description": "Integer tincidunt ante vel ipsum. Praesent blandit lacinia erat. Vestibulum sed magna at nunc commodo placerat.\n\nPraesent blandit. Nam nulla. Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.",
- "start_date": "2022-11-07",
- "end_date": "2022-11-26",
- "declared_date": "2022-11-14",
- "lat": 38.3774,
- "long": -121.4444,
- "radius_miles": 87
- },
- {
- "id": 64,
- "type": "Landslide",
- "state": "Texas",
- "name": "Texas Landslide",
- "description": "Proin leo odio, porttitor id, consequat in, consequat ut, nulla. Sed accumsan felis. Ut at dolor quis odio consequat varius.\n\nInteger ac leo. Pellentesque ultrices mattis odio. Donec vitae nisi.",
- "start_date": "2022-11-29",
- "end_date": "2022-12-18",
- "declared_date": "2022-12-01",
- "lat": 32.7714,
- "long": -97.2915,
- "radius_miles": 14
- },
- {
- "id": 65,
- "type": "Thunderstorm",
- "state": "Alabama",
- "name": "Alabama Thunderstorm",
- "description": "Aenean lectus. Pellentesque eget nunc. Donec quis orci eget orci vehicula condimentum.",
- "start_date": "2022-12-19",
- "end_date": "2023-01-01",
- "declared_date": "2022-12-21",
- "lat": 33.9352,
- "long": -85.9576,
- "radius_miles": 81
- },
- {
- "id": 66,
- "type": "Thunderstorm",
- "state": "New York",
- "name": "New York Thunderstorm",
- "description": "Suspendisse potenti. In eleifend quam a odio. In hac habitasse platea dictumst.",
- "start_date": "2023-04-21",
- "end_date": "2023-04-24",
- "declared_date": "2023-04-25",
- "lat": 40.8085,
- "long": -73.9198,
- "radius_miles": 49
- },
- {
- "id": 67,
- "type": "Flood",
- "state": "Pennsylvania",
- "name": "Pennsylvania Flood",
- "description": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vivamus vestibulum sagittis sapien. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\n\nEtiam vel augue. Vestibulum rutrum rutrum neque. Aenean auctor gravida sem.",
- "start_date": "2022-10-28",
- "end_date": "2022-11-02",
- "declared_date": "2022-10-29",
- "lat": 40.4344,
- "long": -80.0248,
- "radius_miles": 64
- },
- {
- "id": 68,
- "type": "Landslide",
- "state": "Maryland",
- "name": "Maryland Landslide",
- "description": "In quis justo. Maecenas rhoncus aliquam lacus. Morbi quis tortor id nulla ultrices aliquet.\n\nMaecenas leo odio, condimentum id, luctus nec, molestie sed, justo. Pellentesque viverra pede ac diam. Cras pellentesque volutpat dui.\n\nMaecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam. Suspendisse potenti.",
- "start_date": "2023-02-22",
- "end_date": "2023-03-02",
- "declared_date": "2023-02-28",
- "lat": 39.5207,
- "long": -77.9162,
- "radius_miles": 93
- },
- {
- "id": 69,
- "type": "Earthquake",
- "state": "Georgia",
- "name": "Georgia Earthquake",
- "description": "Vestibulum quam sapien, varius ut, blandit non, interdum in, ante. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio. Curabitur convallis.\n\nDuis consequat dui nec nisi volutpat eleifend. Donec ut dolor. Morbi vel lectus in quam fringilla rhoncus.",
- "start_date": "2022-10-18",
- "end_date": "2022-10-30",
- "declared_date": "2022-10-21",
- "lat": 33.9464,
- "long": -83.9912,
- "radius_miles": 39
- },
- {
- "id": 70,
- "type": "Hurricane",
- "state": "Ohio",
- "name": "Ohio Hurricane Darnell",
- "description": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vivamus vestibulum sagittis sapien. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\n\nEtiam vel augue. Vestibulum rutrum rutrum neque. Aenean auctor gravida sem.\n\nPraesent id massa id nisl venenatis lacinia. Aenean sit amet justo. Morbi ut odio.",
- "start_date": "2023-03-29",
- "end_date": "2023-04-18",
- "declared_date": "2023-04-02",
- "lat": 41.6782,
- "long": -83.4972,
- "radius_miles": 34
- },
- {
- "id": 71,
- "type": "Thunderstorm",
- "state": "Utah",
- "name": "Utah Thunderstorm",
- "description": "Aenean lectus. Pellentesque eget nunc. Donec quis orci eget orci vehicula condimentum.\n\nCurabitur in libero ut massa volutpat convallis. Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo. Maecenas pulvinar lobortis est.\n\nPhasellus sit amet erat. Nulla tempus. Vivamus in felis eu sapien cursus vestibulum.",
- "start_date": "2023-04-03",
- "end_date": "2023-04-10",
- "declared_date": "2023-04-10",
- "lat": 40.7713,
- "long": -111.9309,
- "radius_miles": 39
- },
- {
- "id": 72,
- "type": "Wildfire",
- "state": "Iowa",
- "name": "Iowa Wildfire",
- "description": "Duis consequat dui nec nisi volutpat eleifend. Donec ut dolor. Morbi vel lectus in quam fringilla rhoncus.",
- "start_date": "2023-06-17",
- "end_date": "2023-06-30",
- "declared_date": "2023-06-21",
- "lat": 41.6727,
- "long": -93.5722,
- "radius_miles": 132
- },
- {
- "id": 73,
- "type": "Flood",
- "state": "Michigan",
- "name": "Michigan Flood",
- "description": "Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam. Suspendisse potenti.\n\nNullam porttitor lacus at turpis. Donec posuere metus vitae ipsum. Aliquam non mauris.\n\nMorbi non lectus. Aliquam sit amet diam in magna bibendum imperdiet. Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.",
- "start_date": "2023-05-28",
- "end_date": "2023-06-17",
- "declared_date": "2023-05-29",
- "lat": 43.1791,
- "long": -86.1989,
- "radius_miles": 170
- },
- {
- "id": 74,
- "type": "Flood",
- "state": "North Carolina",
- "name": "North Carolina Flood",
- "description": "Nullam porttitor lacus at turpis. Donec posuere metus vitae ipsum. Aliquam non mauris.\n\nMorbi non lectus. Aliquam sit amet diam in magna bibendum imperdiet. Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.",
- "start_date": "2022-12-01",
- "end_date": "2022-12-19",
- "declared_date": "2022-12-08",
- "lat": 35.1316,
- "long": -80.8577,
- "radius_miles": 168
- },
- {
- "id": 75,
- "type": "Flood",
- "state": "Alabama",
- "name": "Alabama Flood",
- "description": "Etiam vel augue. Vestibulum rutrum rutrum neque. Aenean auctor gravida sem.\n\nPraesent id massa id nisl venenatis lacinia. Aenean sit amet justo. Morbi ut odio.",
- "start_date": "2023-06-15",
- "end_date": "2023-06-24",
- "declared_date": "2023-06-20",
- "lat": 32.2334,
- "long": -86.2085,
- "radius_miles": 259
- },
- {
- "id": 76,
- "type": "Winter Storm",
- "state": "Ohio",
- "name": "Ohio Winter Storm",
- "description": "Proin eu mi. Nulla ac enim. In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.",
- "start_date": "2023-03-21",
- "end_date": "2023-03-26",
- "declared_date": "2023-03-23",
- "lat": 41.1287,
- "long": -81.54,
- "radius_miles": 228
- },
- {
- "id": 77,
- "type": "Landslide",
- "state": "Mississippi",
- "name": "Mississippi Landslide",
- "description": "Phasellus sit amet erat. Nulla tempus. Vivamus in felis eu sapien cursus vestibulum.",
- "start_date": "2023-01-31",
- "end_date": "2023-02-10",
- "declared_date": "2023-02-02",
- "lat": 30.4158,
- "long": -89.0684,
- "radius_miles": 232
- },
- {
- "id": 78,
- "type": "Landslide",
- "state": "New York",
- "name": "New York Landslide",
- "description": "Cras non velit nec nisi vulputate nonummy. Maecenas tincidunt lacus at velit. Vivamus vel nulla eget eros elementum pellentesque.\n\nQuisque porta volutpat erat. Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla. Nunc purus.",
- "start_date": "2023-02-03",
- "end_date": "2023-02-16",
- "declared_date": "2023-02-07",
- "lat": 40.6964,
- "long": -74.0253,
- "radius_miles": 186
- },
- {
- "id": 79,
- "type": "Hurricane",
- "state": "Missouri",
- "name": "Missouri Hurricane Mahmud",
- "description": "Quisque porta volutpat erat. Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla. Nunc purus.\n\nPhasellus in felis. Donec semper sapien a libero. Nam dui.\n\nProin leo odio, porttitor id, consequat in, consequat ut, nulla. Sed accumsan felis. Ut at dolor quis odio consequat varius.",
- "start_date": "2023-04-20",
- "end_date": "2023-04-30",
- "declared_date": "2023-04-27",
- "lat": 38.8518,
- "long": -94.3944,
- "radius_miles": 300
- },
- {
- "id": 80,
- "type": "Earthquake",
- "state": "Washington",
- "name": "Washington Earthquake",
- "description": "Etiam vel augue. Vestibulum rutrum rutrum neque. Aenean auctor gravida sem.\n\nPraesent id massa id nisl venenatis lacinia. Aenean sit amet justo. Morbi ut odio.\n\nCras mi pede, malesuada in, imperdiet et, commodo vulputate, justo. In blandit ultrices enim. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.",
- "start_date": "2023-02-08",
- "end_date": "2023-02-20",
- "declared_date": "2023-02-13",
- "lat": 47.1591,
- "long": -122.5485,
- "radius_miles": 219
- },
- {
- "id": 81,
- "type": "Winter Storm",
- "state": "Virginia",
- "name": "Virginia Winter Storm",
- "description": "Aenean fermentum. Donec ut mauris eget massa tempor convallis. Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.\n\nQuisque id justo sit amet sapien dignissim vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est. Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.\n\nVestibulum ac est lacinia nisi venenatis tristique. Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue. Aliquam erat volutpat.",
- "start_date": "2023-04-28",
- "end_date": "2023-05-01",
- "declared_date": "2023-05-02",
- "lat": 37.3589,
- "long": -79.9448,
- "radius_miles": 68
- },
- {
- "id": 82,
- "type": "Wildfire",
- "state": "Texas",
- "name": "Texas Wildfire",
- "description": "Duis bibendum. Morbi non quam nec dui luctus rutrum. Nulla tellus.",
- "start_date": "2022-11-20",
- "end_date": "2022-11-29",
- "declared_date": "2022-11-27",
- "lat": 32.7673,
- "long": -96.7776,
- "radius_miles": 164
- },
- {
- "id": 83,
- "type": "Flood",
- "state": "California",
- "name": "California Flood",
- "description": "Integer ac leo. Pellentesque ultrices mattis odio. Donec vitae nisi.",
- "start_date": "2023-02-04",
- "end_date": "2023-02-10",
- "declared_date": "2023-02-09",
- "lat": 37.7772,
- "long": -121.9554,
- "radius_miles": 118
- },
- {
- "id": 84,
- "type": "Landslide",
- "state": "Florida",
- "name": "Florida Landslide",
- "description": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis. Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci. Mauris lacinia sapien quis libero.\n\nNullam sit amet turpis elementum ligula vehicula consequat. Morbi a ipsum. Integer a nibh.",
- "start_date": "2023-03-28",
- "end_date": "2023-04-18",
- "declared_date": "2023-04-02",
- "lat": 26.1457,
- "long": -80.4483,
- "radius_miles": 91
- },
- {
- "id": 85,
- "type": "Wildfire",
- "state": "Georgia",
- "name": "Georgia Wildfire",
- "description": "Proin eu mi. Nulla ac enim. In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.\n\nDuis aliquam convallis nunc. Proin at turpis a pede posuere nonummy. Integer non velit.",
- "start_date": "2023-06-11",
- "end_date": "2023-06-29",
- "declared_date": "2023-06-13",
- "lat": 33.8123,
- "long": -84.2819,
- "radius_miles": 170
- },
- {
- "id": 86,
- "type": "Wildfire",
- "state": "California",
- "name": "California Wildfire",
- "description": "In quis justo. Maecenas rhoncus aliquam lacus. Morbi quis tortor id nulla ultrices aliquet.\n\nMaecenas leo odio, condimentum id, luctus nec, molestie sed, justo. Pellentesque viverra pede ac diam. Cras pellentesque volutpat dui.\n\nMaecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam. Suspendisse potenti.",
- "start_date": "2022-12-08",
- "end_date": "2022-12-17",
- "declared_date": "2022-12-09",
- "lat": 38.3774,
- "long": -121.4444,
- "radius_miles": 41
- },
- {
- "id": 87,
- "type": "Winter Storm",
- "state": "Washington",
- "name": "Washington Winter Storm",
- "description": "Morbi non lectus. Aliquam sit amet diam in magna bibendum imperdiet. Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.",
- "start_date": "2023-06-05",
- "end_date": "2023-06-22",
- "declared_date": "2023-06-08",
- "lat": 45.6644,
- "long": -122.5212,
- "radius_miles": 103
- },
- {
- "id": 88,
- "type": "Wildfire",
- "state": "Idaho",
- "name": "Idaho Wildfire",
- "description": "Praesent blandit. Nam nulla. Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.",
- "start_date": "2023-02-12",
- "end_date": "2023-02-28",
- "declared_date": "2023-02-18",
- "lat": 43.4599,
- "long": -116.244,
- "radius_miles": 144
- },
- {
- "id": 89,
- "type": "Winter Storm",
- "state": "Pennsylvania",
- "name": "Pennsylvania Winter Storm",
- "description": "Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam. Suspendisse potenti.\n\nNullam porttitor lacus at turpis. Donec posuere metus vitae ipsum. Aliquam non mauris.\n\nMorbi non lectus. Aliquam sit amet diam in magna bibendum imperdiet. Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.",
- "start_date": "2023-01-08",
- "end_date": "2023-01-12",
- "declared_date": "2023-01-12",
- "lat": 40.0018,
- "long": -75.1179,
- "radius_miles": 235
- },
- {
- "id": 90,
- "type": "Hurricane",
- "state": "North Carolina",
- "name": "North Carolina Hurricane Rubin",
- "description": "Sed sagittis. Nam congue, risus semper porta volutpat, quam pede lobortis ligula, sit amet eleifend pede libero quis orci. Nullam molestie nibh in lectus.",
- "start_date": "2023-01-15",
- "end_date": "2023-01-23",
- "declared_date": "2023-01-19",
- "lat": 35.7977,
- "long": -78.6253,
- "radius_miles": 143
- },
- {
- "id": 91,
- "type": "Hurricane",
- "state": "Florida",
- "name": "Florida Hurricane Celle",
- "description": "Fusce posuere felis sed lacus. Morbi sem mauris, laoreet ut, rhoncus aliquet, pulvinar sed, nisl. Nunc rhoncus dui vel sem.\n\nSed sagittis. Nam congue, risus semper porta volutpat, quam pede lobortis ligula, sit amet eleifend pede libero quis orci. Nullam molestie nibh in lectus.",
- "start_date": "2023-05-11",
- "end_date": "2023-05-22",
- "declared_date": "2023-05-13",
- "lat": 30.6143,
- "long": -87.2758,
- "radius_miles": 144
- },
- {
- "id": 92,
- "type": "Landslide",
- "state": "Florida",
- "name": "Florida Landslide",
- "description": "Quisque id justo sit amet sapien dignissim vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est. Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.\n\nVestibulum ac est lacinia nisi venenatis tristique. Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue. Aliquam erat volutpat.",
- "start_date": "2023-05-01",
- "end_date": "2023-05-08",
- "declared_date": "2023-05-06",
- "lat": 26.6644,
- "long": -80.1741,
- "radius_miles": 66
- },
- {
- "id": 93,
- "type": "Wildfire",
- "state": "Missouri",
- "name": "Missouri Wildfire",
- "description": "Aenean fermentum. Donec ut mauris eget massa tempor convallis. Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.\n\nQuisque id justo sit amet sapien dignissim vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est. Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.",
- "start_date": "2022-12-26",
- "end_date": "2023-01-01",
- "declared_date": "2022-12-31",
- "lat": 38.8518,
- "long": -94.3944,
- "radius_miles": 278
- },
- {
- "id": 94,
- "type": "Winter Storm",
- "state": "Indiana",
- "name": "Indiana Winter Storm",
- "description": "Curabitur in libero ut massa volutpat convallis. Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo. Maecenas pulvinar lobortis est.\n\nPhasellus sit amet erat. Nulla tempus. Vivamus in felis eu sapien cursus vestibulum.\n\nProin eu mi. Nulla ac enim. In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.",
- "start_date": "2022-10-15",
- "end_date": "2022-10-24",
- "declared_date": "2022-10-21",
- "lat": 41.0938,
- "long": -85.0707,
- "radius_miles": 41
- },
- {
- "id": 95,
- "type": "Flood",
- "state": "California",
- "name": "California Flood",
- "description": "In congue. Etiam justo. Etiam pretium iaculis justo.\n\nIn hac habitasse platea dictumst. Etiam faucibus cursus urna. Ut tellus.",
- "start_date": "2023-01-07",
- "end_date": "2023-01-11",
- "declared_date": "2023-01-14",
- "lat": 32.8538,
- "long": -117.1197,
- "radius_miles": 162
- },
- {
- "id": 96,
- "type": "Thunderstorm",
- "state": "California",
- "name": "California Thunderstorm",
- "description": "Aenean fermentum. Donec ut mauris eget massa tempor convallis. Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.\n\nQuisque id justo sit amet sapien dignissim vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est. Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.\n\nVestibulum ac est lacinia nisi venenatis tristique. Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue. Aliquam erat volutpat.",
- "start_date": "2023-04-26",
- "end_date": "2023-05-05",
- "declared_date": "2023-04-28",
- "lat": 37.7772,
- "long": -121.9554,
- "radius_miles": 282
- },
- {
- "id": 97,
- "type": "Hurricane",
- "state": "Pennsylvania",
- "name": "Pennsylvania Hurricane Celene",
- "description": "Proin eu mi. Nulla ac enim. In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.\n\nDuis aliquam convallis nunc. Proin at turpis a pede posuere nonummy. Integer non velit.\n\nDonec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi. Integer ac neque.",
- "start_date": "2023-03-16",
- "end_date": "2023-03-20",
- "declared_date": "2023-03-20",
- "lat": 39.9832,
- "long": -75.7481,
- "radius_miles": 273
- },
- {
- "id": 98,
- "type": "Wildfire",
- "state": "Michigan",
- "name": "Michigan Wildfire",
- "description": "Quisque porta volutpat erat. Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla. Nunc purus.\n\nPhasellus in felis. Donec semper sapien a libero. Nam dui.",
- "start_date": "2023-06-17",
- "end_date": "2023-06-30",
- "declared_date": "2023-06-20",
- "lat": 42.2399,
- "long": -83.1508,
- "radius_miles": 189
- },
- {
- "id": 99,
- "type": "Winter Storm",
- "state": "Tennessee",
- "name": "Tennessee Winter Storm",
- "description": "Duis bibendum. Morbi non quam nec dui luctus rutrum. Nulla tellus.",
- "start_date": "2023-05-16",
- "end_date": "2023-06-02",
- "declared_date": "2023-05-22",
- "lat": 35.9901,
- "long": -83.9622,
- "radius_miles": 81
- },
- {
- "id": 100,
- "type": "Earthquake",
- "state": "District of Columbia",
- "name": "District of Columbia Earthquake",
- "description": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vivamus vestibulum sagittis sapien. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\n\nEtiam vel augue. Vestibulum rutrum rutrum neque. Aenean auctor gravida sem.",
- "start_date": "2022-10-25",
- "end_date": "2022-11-01",
- "declared_date": "2022-10-30",
- "lat": 38.8933,
- "long": -77.0146,
- "radius_miles": 178
- }
-]