diff --git a/.gitignore b/.gitignore
index 3775733..5814112 100644
--- a/.gitignore
+++ b/.gitignore
@@ -26,6 +26,7 @@ crashlytics-build.properties
fabric.properties
.idea/httpRequests
.idea/caches/build_file_checksums.ser
+.idea/
.DS_Store
.AppleDouble
.LSOverride
diff --git a/Pipfile b/Pipfile
new file mode 100644
index 0000000..55aac82
--- /dev/null
+++ b/Pipfile
@@ -0,0 +1,12 @@
+[[source]]
+url = "https://pypi.org/simple"
+verify_ssl = true
+name = "pypi"
+
+[packages]
+python-dotenv = "*"
+
+[dev-packages]
+
+[requires]
+python_version = "3.8"
diff --git a/Pipfile.lock b/Pipfile.lock
new file mode 100644
index 0000000..1e71e8e
--- /dev/null
+++ b/Pipfile.lock
@@ -0,0 +1,29 @@
+{
+ "_meta": {
+ "hash": {
+ "sha256": "580cb6a9b28d54ce847142d6c2dfcdf68fdc46d1cd31141832b3b21d4776b3fb"
+ },
+ "pipfile-spec": 6,
+ "requires": {
+ "python_version": "3.8"
+ },
+ "sources": [
+ {
+ "name": "pypi",
+ "url": "https://pypi.org/simple",
+ "verify_ssl": true
+ }
+ ]
+ },
+ "default": {
+ "python-dotenv": {
+ "hashes": [
+ "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba",
+ "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"
+ ],
+ "index": "pypi",
+ "version": "==1.0.0"
+ }
+ },
+ "develop": {}
+}
diff --git a/app/__init__.py b/app/__init__.py
index e69de29..e096662 100644
--- a/app/__init__.py
+++ b/app/__init__.py
@@ -0,0 +1,22 @@
+"""
+In a Python project, an __init__.py file within a directory signals to Python that the directory should be considered a
+Python package. This means that the directory can be imported as a module, and other Python files within the directory
+can be organized as submodules.
+
+The presence of an __init__.py file allows you to create a hierarchical structure of modules, making code organization
+cleaner and more maintainable.
+
+Here's a brief overview of what the __init__.py file can do:
+
+Package Initialization: You can place initialization code for your package inside the __init__.py file, and it will be
+executed when the package is imported.
+
+Define __all__ for Wildcard Imports: By defining a list called __all__ in your __init__.py file, you can control what
+is imported when a user performs a wildcard import (from package import *).
+
+Submodule Import Control: You can write import statements in __init__.py to make submodules available at the package
+level, allowing users to access them with shorter import paths.
+
+Empty __init__.py: Even an empty __init__.py file serves the purpose of marking a directory as a package, though it
+doesn't provide any of the additional functionality mentioned above.
+"""
diff --git a/app/data.py b/app/data.py
index 61e69e5..50216ce 100644
--- a/app/data.py
+++ b/app/data.py
@@ -1,4 +1,6 @@
from os import getenv
+from typing import Dict, Iterable, Iterator
+# from random import randrange
from certifi import where
from dotenv import load_dotenv
@@ -8,18 +10,256 @@
class Database:
+ """
+ The Database class is an interface between a Pymongo database
+ hosted on Atlas https://cloud.mongodb.com/ using MongoClient.
- def seed(self, amount):
- pass
+ The interface supports CRUD, and has business logic functions as well.
+ There are also functions to seed the database, reset it, wrap the data
+ in a dataframe, and create a html table from a dataframe.
+
+ Class Attributes:
+ ---------
+ None
+
+ Instance Attributes: (defined in __init__() )
+ ---------
+ self.client : MongoClient
+ A database driver for a MongoDB. The connection.
+ self.db : PyMongo Database (https://pymongo.readthedocs.io/en/stable/api/pymongo/database.html#pymongo.
+ database.Database)
+ A PyMongo Database object. The specific database.
+ self.Collection : PyMongo Collection object (https://pymongo.readthedocs.io/en/stable/api/pymongo/collection.
+ html#pymongo.collection.Collection)
+ A PyMongo Collection object. The specific collection.
+
+ Init and CRUD Methods:
+ ---------
+ __init__(self) -> None:
+ Initializes a PyMongo Connection, with instance objects: client, db, Collection
+ create_one(self, record: Dict = None) -> bool:
+ CRUD method: creates a single Monster in the database.
+ read_one(self, query: Dict = None) -> Dict:
+ CRUD method: reads a single record matching the query.
+ update_one(self, query: Dict, update: Dict) -> bool:
+ CRUD method: updates a record in the database using a query and an update dictionary.
+ delete_one(self, query: Dict) -> bool:
+ CRUD method: deletes a single record in the database using a query.
+ create_many(self, records: Iterable[Dict]) -> bool:
+ CRUD method: creates many record in the database using an iterable
+ containing dictionary records.
+ read_many(self, query: Dict) -> Iterator[Dict]:
+ CRUD method: reads many records from the database that match query.
+ update_many(self, query: Dict, update: Dict) -> bool:
+ CRUD method: updates many records that match query with update dictionary.
+ delete_many(self, query: Dict) -> bool:
+ CRUD method: deletes many records that match query.
+
+ Business logic methods:
+ ---------
+ seed(self, amount: int):
+ Creates the input amount of Monsters in the database.
+ reset(self):
+ Resets the database to be empty.
+ count(self) -> int:
+ Returns a count of the total objects in the database's current collection.
+ dataframe(self) -> DataFrame:
+ Returns a Pandas dataframe with all objects in the database's current collection.
+ html_table(self) -> str:
+ Returns a string containing a html table of all the Monsters
+ in the database's current collection.
+ """
+
+ def __init__(self) -> None:
+ """
+ The init function creates a connection to the Atlas hosted database
+ using an environment file string. And also sets class variables for
+ the database 'db' and the Monster collection 'collection'
+
+ :return: Database, an instance of the Database interface class
+ with instance attributes.
+ """
+
+ # Load environmental variables
+ load_dotenv()
+
+ # Create a connection to the MongoDB server
+ self.client = MongoClient(getenv("DB_URL"), tlsCAFile=where())
+
+ # Select the database
+ self.db = self.client['Database']
+
+ # Select the collection
+ self.collection = self.db['Monsters']
+
+ def create_one(self, record: Dict = None) -> bool:
+ """
+ CRUD method: creates a single Monster in the database.
+
+ If no input Monster record is given, it creates a random Monster.
+ It uses the pymongo insert_one method: https://pymongo.readthedocs.io/en/stable/api/pymongo/collection.html#
+ pymongo.collection.Collection.insert_one
+ It returns a bool as type pymongo.results.InsertOneResult
+
+ :param record: Dict, the attributes of the Monster to create.
+ :return: bool, representing if the Monster was created.
+ """
+ if record is None:
+ record = Monster().to_dict()
+ return self.collection.insert_one(record).acknowledged
+
+ def read_one(self, query: Dict = None) -> Dict:
+ """
+ CRUD method: reads a single record matching the query.
+
+ If no query is given, then it returns the first record.
+ In the MongoDB context, passing None as the query to find_one will
+ return the first document in the collection without any filter,
+ excluding the _id field.
+
+ :param query: Dict, the attributes to find a single Monster.
+ :return: Dict, the attributes of the found Monster.
+ """
+ # if query is None:
+ # pipeline = [
+ # {'$sample': {'size': 1}}
+ # ]
+ # record = list(self.collection.aggregate(pipeline))
+ return self.collection.find_one(query, {"_id": False})
+
+ def update_one(self, query: Dict, update: Dict) -> bool:
+ """
+ CRUD method: updates a record in the database using a query and an update dictionary.
+
+ and updates the first matching record to the query with the new info.
+ The $set operator replaces the value of the field or creates it if is does
+ not exist.
+ Returns a pymongo.results.UpdateResult which has properties: acknowledged,
+ matched_count (num of docs matching), modified_count (num of docs modified),
+ raw_result(raw doc returned from server), upserted_id (id of upserted doc)
+
+ :param query: Dict, the attributes to match to find a single Monster to update.
+ :param update: Dict, the attributes to update.
+ :return: bool, representing if the Monster was updated.
+ """
+ return self.collection.update_one(query, {"$set": update}).acknowledged
+
+ def delete_one(self, query: Dict) -> bool:
+ """
+ CRUD method: deletes a single record in the database using a query.
+
+ :param query: Dict, the Monster attributes to find and delete a single Monster.
+ :return: bool, representing if the Monster was deleted.
+ """
+ return self.collection.delete_one(query).acknowledged
+
+ def create_many(self, records: Iterable[Dict]) -> bool:
+ """
+ CRUD method: creates many record in the database using an iterable
+ containing dictionary records.
+
+ :param records: Iterable[Dict], Dicts of Monsters to create.
+ :return: bool, representing if the Monsters were created.
+ """
+ return self.collection.insert_many(records).acknowledged
+
+ def read_many(self, query: Dict) -> Iterator[Dict]:
+ """
+ CRUD method: reads many records from the database that match query.
+
+ :param query: Dict, Monster attributes to find matching Monsters.
+ :return: bool, representing if Monsters are found.
+ """
+ return self.collection.find(query, {"_id": False})
+
+ def update_many(self, query: Dict, update: Dict) -> bool:
+ """
+ CRUD method: updates many records that match query with update dictionary.
+
+ :param query: Dict, Monster attributes to find Monsters to update.
+ :param update: Dict, the attribute changes to be made to matching Monsters.
+ :return: bool, representing if the Monsters were updated.
+ """
+ return self.collection.update_many(query, {"$set": update}).acknowledged
+
+ def delete_many(self, query: Dict) -> bool:
+ """
+ CRUD method: deletes many records that match query.
+
+ :param query: Dict, Monster attributes that are used to delete Monsters
+ from the database.
+ :return: bool, representing if the objects were deleted successfully.
+ """
+ return self.collection.delete_many(query).acknowledged
+
+ def seed(self, amount: int):
+ """
+ Creates the input amount of Monsters in the database.
+
+ :param amount: int, the desired number of Monsters to create in the database.
+ :return: bool, representing if the objects were created successfully.
+ """
+ records = [Monster().to_dict() for _ in range(amount)]
+ return self.create_many(records)
def reset(self):
- pass
+ """
+ Resets the database to be empty.
+
+ :return: bool, representing if the objects were deleted successfully.
+ """
+ records = {}
+ return self.delete_many(records)
def count(self) -> int:
- pass
+ """
+ Returns a count of the total objects in the database's current collection.
+
+ :return: int, count of Monsters.
+ """
+ query = {}
+ count = self.collection.count_documents(query) # {} means no filter, so it counts all documents
+ print(f'There are {count} documents in the collection.')
+ return count
def dataframe(self) -> DataFrame:
- pass
+ """
+ Returns a Pandas dataframe with all objects in the database's current collection.
+
+ :return: Pandas DataFrame object, of Monsters.
+ """
+ query = {}
+ df = DataFrame(list(self.read_many(query)))
+ return df
def html_table(self) -> str:
- pass
+ """
+ Returns a string containing a html table of all the Monsters
+ in the database's current collection.
+
+ :return: str, html formatted in a table.
+ """
+ df = self.dataframe()
+ html_table = df.to_html(border=1, classes='dataframe', index=True)
+ return html_table
+
+
+if __name__ == '__main__':
+ '''
+ This code is run when data.py file is the main program.
+ If imported into another file, this block of code will not run.
+ '''
+ print('Running data.py, the Database interface, as main...')
+
+ db = Database()
+
+ print(f'The client: {db.client}')
+
+ databases = db.client.list_database_names()
+ print(f'The databases: {databases}')
+
+ # use list_collection_names method to get a list of all collection names
+ collections = db.client.list_collection_names()
+ # print the collections
+ for collection in collections:
+ print(f'Collection: {collection}')
diff --git a/app/graph.py b/app/graph.py
index 7fb68f1..861e031 100644
--- a/app/graph.py
+++ b/app/graph.py
@@ -1,5 +1,48 @@
-from altair import Chart
+from altair import Chart, Tooltip
+from pandas import DataFrame
+import altair as alt
+# Define a custom theme
+def custom_theme():
+ return {
+ 'config': {
+ 'axis': {
+ 'labelColor': '#aaaaaa',
+ 'titleColor': '#aaaaaa',
+ 'tickColor': '#4f4f4f',
+ 'domainColor': '#aaaaaa',
+ 'gridColor': '#4f4f4f'
+ },
+ 'legend': {
+ 'labelColor': '#aaaaaa',
+ 'titleColor': '#aaaaaa',
+ },
+ 'title': {
+ 'color': '#aaaaaa',
+ 'fontSize': 24
+ },
+ }
+ }
+
+# Register and enable the custom theme
+alt.themes.register('custom', custom_theme)
+alt.themes.enable('custom')
+
+
+def chart(df: DataFrame, x: str, y: str, target: str) -> Chart:
+ graph = Chart(
+ df,
+ title=f"{y} by {x} for {target}",
+ ).mark_circle(size=100).encode(
+ x=x,
+ y=y,
+ color=target,
+ tooltip=Tooltip(df.columns.to_list())
+ ).properties(
+ width=600,
+ height=600,
+ background='#2b2b2b',
+ padding=25
+ )
+ return graph
-def chart(df, x, y, target) -> Chart:
- pass
diff --git a/app/machine.py b/app/machine.py
index 1785a57..9e43e58 100644
--- a/app/machine.py
+++ b/app/machine.py
@@ -1,17 +1,143 @@
-class Machine:
+from pandas import DataFrame
+from sklearn.ensemble import RandomForestClassifier
+from sklearn.model_selection import train_test_split
+from sklearn.metrics import accuracy_score
+from sklearn.preprocessing import LabelEncoder
+from joblib import load, dump
+from datetime import datetime
+import os
+
+# Define the project root path
+PROJECT_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
+class Machine:
def __init__(self, df):
- pass
+ print(f"--------Initializing a new machine instance...")
+ # Create a Machine instance.
+ # (In __init__(), Try to load an existing model. If no model exists, train one).
+ # Use __init__() with open(). OR train a model and save it with save(). Fill in machine attributes using
+ # the model (loaded or created) and info(): self.name, self.timestamp, self.target, self.features, self.model
+
+ # Try to load an existing model. Use open()
+ filepath = os.path.join(PROJECT_ROOT, 'app', 'model.joblib')
+ if os.path.exists(filepath):
+ print("Model already exists! Loading model...")
+ model = self.open(filepath)
+ self.name = model
+ self.timestamp = datetime.now()
+ self.target = df["Rarity"]
+ self.features = df.drop(columns=["Rarity"])
+ self.model = model
+
+ # Save the model labels/classes as part of the Machine object, for future use
+ self.labels = ['Rank 0', 'Rank 1', 'Rank 2', 'Rank 3', 'Rank 4', 'Rank 5']
+
+ else:
+ print("Model does not exist! Creating one...")
+ # If no model exists, train one, then save with save().
+
+ # Cleanup the dataframe for training
+ le = LabelEncoder()
+ df.loc[:, 'Rarity'] = le.fit_transform(df['Rarity']).astype(int)
+ df['Rarity'] = df['Rarity'].astype(int)
+
+ columns_to_drop = ['Timestamp', 'Damage', 'Name', 'Type']
+ columns_to_drop = [col for col in columns_to_drop if col in df.columns]
+ if columns_to_drop:
+ df.drop(columns=columns_to_drop, inplace=True)
+
+ self.target = df["Rarity"]
+ self.features = df.drop(columns=["Rarity"])
+
+ # Initializing the Random Forest Classifier
+ self.model = RandomForestClassifier(random_state=42)
+
+ # Splitting the data into training and testing sets
+ X_train, X_test, y_train, y_test = train_test_split(self.features, self.target, test_size=0.2,
+ random_state=42)
+
+ # Fitting the model
+ self.model.fit(X_train, y_train)
+
+ # Predicting the target variable
+ y_pred = self.model.predict(X_test)
+
+ # Calculating the accuracy
+ accuracy = accuracy_score(y_test, y_pred)
+
+ # Save the trained model
+ self.save(filepath)
+
+ self.name = self.model
+ self.timestamp = datetime.now()
+ self.target = df["Rarity"]
+ self.features = df.drop(columns=["Rarity"])
+
+ # Save the labels/classes for future use
+ self.labels = ['Rank 0', 'Rank 1', 'Rank 2', 'Rank 3', 'Rank 4', 'Rank 5']
+ print(f"Model created with these labels: {self.labels}")
+
+ def __call__(self, pred_basis: DataFrame):
+ print(f"Calling machine instance with __call__() to return prediction and confidence...")
+ prediction, *_ = self.model.predict(pred_basis)
+ confidence = max(self.model.predict_proba(pred_basis)[0])
+ return prediction, confidence
+
+ def retrain(self, df):
+ print(f"Retraining starting...")
+ filepath = os.path.join(PROJECT_ROOT, 'app', 'model.joblib')
+
+ # Cleanup the dataframe for training
+ le = LabelEncoder()
+ df.loc[:, 'Rarity'] = le.fit_transform(df['Rarity']).astype(int)
+ df['Rarity'] = df['Rarity'].astype(int)
+
+ columns_to_drop = ['Timestamp', 'Damage', 'Name', 'Type']
+ columns_to_drop = [col for col in columns_to_drop if col in df.columns]
+ if columns_to_drop:
+ df.drop(columns=columns_to_drop, inplace=True)
+
+ self.target = df["Rarity"]
+ self.features = df.drop(columns=["Rarity"])
+
+ # Initializing the Random Forest Classifier
+ self.model = RandomForestClassifier(random_state=42)
+
+ # Splitting the data into training and testing sets
+ X_train, X_test, y_train, y_test = train_test_split(self.features, self.target, test_size=0.2,
+ random_state=42)
+
+ # Fitting the model
+ self.model.fit(X_train, y_train)
+
+ # Predicting the target variable
+ y_pred = self.model.predict(X_test)
+
+ # Calculating the accuracy
+ accuracy = accuracy_score(y_test, y_pred)
+
+ # Save the trained model
+ self.save(filepath)
+
+ self.name = self.model
+ self.timestamp = datetime.now()
+ self.target = df["Rarity"]
+ self.features = df.drop(columns=["Rarity"])
- def __call__(self, feature_basis):
- pass
+ # Save the labels/classes for future use
+ self.labels = ['Rank 0', 'Rank 1', 'Rank 2', 'Rank 3', 'Rank 4', 'Rank 5']
+ print(f"RETRAINED Model created with these labels: {self.labels}")
def save(self, filepath):
- pass
+ print(f"Saving self.model {self.model} to filepath {filepath}")
+ # Save the model to a file
+ dump(self.model, filepath)
@staticmethod
def open(filepath):
- pass
+ model = load(filepath)
+ return model
def info(self):
- pass
+ model_info = f'Base Model: {self.name}\n Timestamp: {self.timestamp.strftime("%Y-%m-%d %I:%M:%S %p")}'
+ return model_info
diff --git a/app/main.py b/app/main.py
index 1f9e0b0..5c903cf 100644
--- a/app/main.py
+++ b/app/main.py
@@ -3,14 +3,19 @@
from Fortuna import random_int, random_float
from MonsterLab import Monster
-from flask import Flask, render_template, request
+from flask import Flask, render_template, request, redirect, url_for
from pandas import DataFrame
from app.data import Database
from app.graph import chart
-from app.machine import Machine
+from app.machine import Machine, PROJECT_ROOT
-SPRINT = 0
+import logging
+
+
+logging.basicConfig(filename='application.log', level=logging.DEBUG)
+
+SPRINT = 3
APP = Flask(__name__)
@@ -40,17 +45,22 @@ def data():
def view():
if SPRINT < 2:
return render_template("view.html")
+
db = Database()
+
options = ["Level", "Health", "Energy", "Sanity", "Rarity"]
+
x_axis = request.values.get("x_axis") or options[1]
y_axis = request.values.get("y_axis") or options[2]
target = request.values.get("target") or options[4]
+
graph = chart(
df=db.dataframe(),
x=x_axis,
y=y_axis,
target=target,
).to_json()
+
return render_template(
"view.html",
options=options,
@@ -64,37 +74,98 @@ def view():
@APP.route("/model", methods=["GET", "POST"])
def model():
+ logging.debug("Entered model route")
+
if SPRINT < 3:
- return render_template("model.html")
- db = Database()
- options = ["Level", "Health", "Energy", "Sanity", "Rarity"]
- filepath = os.path.join("app", "model.joblib")
- if not os.path.exists(filepath):
- df = db.dataframe()
- machine = Machine(df[options])
- machine.save(filepath)
+ return render_template("model.html",
+ level = 4)
+
else:
- machine = Machine.open(filepath)
- stats = [round(random_float(1, 250), 2) for _ in range(3)]
- level = request.values.get("level", type=int) or random_int(1, 20)
- health = request.values.get("health", type=float) or stats.pop()
- energy = request.values.get("energy", type=float) or stats.pop()
- sanity = request.values.get("sanity", type=float) or stats.pop()
- prediction, confidence = machine(DataFrame(
- [dict(zip(options, (level, health, energy, sanity)))]
- ))
- info = machine.info()
- return render_template(
- "model.html",
- info=info,
- level=level,
- health=health,
- energy=energy,
- sanity=sanity,
- prediction=prediction,
- confidence=f"{confidence:.2%}",
- )
+ # Setup:
+ # Create a database instance and dataframe instance.
+ db = Database()
+ df = db.dataframe()
+
+
+ # Create a Machine instance.
+ # (In __init__(), Try to load an existing model. If no model exists, train one).
+ # Use __init__() with open(). OR train a model and save it with save(). Fill in machine attributes using
+ # the model (loaded or created) and info().
+ machine = Machine(df)
+
+
+ # Assign the variables to load the page:
+ info = machine.info()
+ level = request.values.get("level", type=int) or random_int(1, 20)
+ stats = [round(random_float(1, 250), 2) for _ in range(3)]
+ health = request.values.get("health", type=float) or stats.pop()
+ energy = request.values.get("energy", type=float) or stats.pop()
+ sanity = request.values.get("sanity", type=float) or stats.pop()
+
+
+ # Make a Prediction.
+ # If no values are present in the form, give random numbers. And immediately use those random
+ # numbers to predict Rarity with a confidence number using the existing model (either loaded or trained).
+ # Use __call__() to make a prediction
+
+ options = ["Level", "Health", "Energy", "Sanity", "Rarity"]
+ prediction, confidence = machine(DataFrame([dict(zip(options, (level, health, energy, sanity)))]))
+ print(f"Labels are: {machine.labels}, type: {type(machine.labels)}")
+ string_prediction = machine.labels[prediction]
+ print(f"String prediction is: {string_prediction}")
+ print(f"Prediction {prediction}. Confidence {confidence}")
+
+
+ # Make a new Prediction.
+ # Option A - yes retrain)
+ # If the user changes those numbers and clicks the button ‘Retrain’, then create a new model
+ # (with the full database), save it, make a prediction (with the input numbers) and return that prediction.
+ # Delete the model.
+ # Then create a new Machine instance
+ retrain = request.form.get('retrain')
+ print(f"Retrain: {retrain}")
+
+ if retrain == 'True':
+ # Checkbox was checked
+ print("Retrain is checked")
+ filepath = os.path.join(PROJECT_ROOT, 'app', 'model.joblib')
+
+ # Check if the model file exists, then delete it
+ if os.path.exists(filepath):
+ os.remove(filepath)
+ print(f"Model file at {filepath} has been deleted")
+
+ machine.retrain(df)
+
+ options = ["Level", "Health", "Energy", "Sanity", "Rarity"]
+ prediction, confidence = machine(DataFrame([dict(zip(options, (level, health, energy, sanity)))]))
+ print(f"Labels are: {machine.labels}, type: {type(machine.labels)}")
+ string_prediction = machine.labels[prediction]
+ print(f"String prediction is: {string_prediction}")
+ print(f"Prediction {prediction}. Confidence {confidence}")
+
+ else:
+ print(f"No such model file at {filepath}")
+
+ else:
+ # Checkbox was not checked
+ print("Retrain is not checked")
+ # Option B - no retrain)
+ # If the user changes those numbers and clicks ‘predict rarity’ (without ‘Retrain’
+ # clicked) then use the existing loaded model, and new numbers, to make a prediction and return that
+ # prediction.
+ # The prediction/confidence will change automatically as the page is reloaded when the button is clicked.
+ return render_template(
+ "model.html",
+ info=info,
+ level=level,
+ health=health,
+ energy=energy,
+ sanity=sanity,
+ prediction=string_prediction,
+ confidence=f"{confidence:.2%}",
+ )
if __name__ == '__main__':
- APP.run()
+ APP.run(debug=True)
diff --git a/app/model.joblib b/app/model.joblib
new file mode 100644
index 0000000..8a0b292
Binary files /dev/null and b/app/model.joblib differ
diff --git a/app/static/css/reset.css b/app/static/css/reset.css
index 81d90fa..a9016c1 100644
--- a/app/static/css/reset.css
+++ b/app/static/css/reset.css
@@ -78,4 +78,4 @@ hr {
}
input, select {
vertical-align:middle;
-}
+}
\ No newline at end of file
diff --git a/app/static/css/style.css b/app/static/css/style.css
index c6d2bfb..7155ed7 100644
--- a/app/static/css/style.css
+++ b/app/static/css/style.css
@@ -161,6 +161,12 @@ form input {
float: right;
}
+form input[type=checkbox] {
+ margin: 5px 107px 0 -47px;
+ cursor: pointer;
+ padding: 0 0 0 0;
+}
+
form select {
width: 164px;
margin: 2px 20px 5px 5px;
@@ -216,3 +222,4 @@ article table td {
.vega-embed summary {
display: none;
}
+
diff --git a/app/templates/home.html b/app/templates/home.html
index ae82ee4..e809c8d 100644
--- a/app/templates/home.html
+++ b/app/templates/home.html
@@ -9,6 +9,7 @@
Data Science Team
April Fairweather: Database Engineer
Thackery Binx: Data Analyst
Eugene Albright: Machine Learning Engineer
+ Stephen Mordue: Data Scientist Student, Bloomtech 2023
Tech Stack
diff --git a/app/templates/model.html b/app/templates/model.html
index 9996552..581f84c 100644
--- a/app/templates/model.html
+++ b/app/templates/model.html
@@ -21,6 +21,10 @@ Prediction Basis
Sanity:
+
+ Retrain:
+
+
Predict Rarity
diff --git a/app/templates/view.html b/app/templates/view.html
index 597366c..525ead4 100644
--- a/app/templates/view.html
+++ b/app/templates/view.html
@@ -55,4 +55,5 @@ Bandersnatch Viewer
+
{% endblock %}
diff --git a/install.sh b/install.sh
old mode 100644
new mode 100755
diff --git a/requirements.txt b/requirements.txt
index a23d75a..b4d041d 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -13,3 +13,4 @@ pymongo[srv]
python-dotenv
scikit-learn
scipy
+pytest
diff --git a/run.sh b/run.sh
old mode 100644
new mode 100755
index bdddf39..2ccdbeb
--- a/run.sh
+++ b/run.sh
@@ -1 +1 @@
-python3 -m gunicorn app.main:APP
+python3 -m gunicorn --reload app.main:APP
\ No newline at end of file
diff --git a/tests/__init__.py b/tests/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/tests/monsters.csv b/tests/monsters.csv
new file mode 100644
index 0000000..be1c894
--- /dev/null
+++ b/tests/monsters.csv
@@ -0,0 +1,4101 @@
+Name,Type,Level,Rarity,Damage,Health,Energy,Sanity,Timestamp
+Poltergeist,Undead,10,Rank 2,10d6+2,62.62,58.82,58.83,2023-08-14 14:23:24
+Blue Faerie,Fey,3,Rank 0,3d2+2,5.75,5.49,5.41,2023-08-14 14:23:24
+Spore Elemental,Elemental,2,Rank 0,2d2,3.53,4.65,3.05,2023-08-14 14:23:24
+Hook Horror,Demonic,9,Rank 4,9d10,94.85,90.05,86.53,2023-08-14 14:23:24
+Demilich,Undead,7,Rank 3,7d8+1,56.88,55.46,57.76,2023-08-14 14:23:24
+Efreeti,Elemental,3,Rank 2,3d6+1,20.3,16.64,17.38,2023-08-14 14:23:24
+Dust Devil,Devilkin,3,Rank 0,3d2+4,5.24,6.8,5.73,2023-08-14 14:23:24
+Platinum Faerie,Fey,6,Rank 4,6d10+3,57.8,63.2,57.33,2023-08-14 14:23:24
+Pseudodragon,Dragon,1,Rank 1,1d4,4.92,3.12,4.15,2023-08-14 14:23:24
+Incubus,Devilkin,6,Rank 3,6d8+5,49.25,50.26,45.6,2023-08-14 14:23:24
+Red Faerie,Fey,9,Rank 3,9d8,72.91,70.36,75.01,2023-08-14 14:23:24
+Magma Elemental,Elemental,4,Rank 1,4d4,14.96,17.63,16.29,2023-08-14 14:23:24
+Succubus,Devilkin,9,Rank 2,9d6+3,52.48,56.84,52.59,2023-08-14 14:23:24
+Ghoul,Undead,4,Rank 1,4d4+4,15.25,15.59,15.12,2023-08-14 14:23:24
+Lightning Elemental,Elemental,7,Rank 1,7d4+2,28.25,26.26,28.92,2023-08-14 14:23:24
+Ruby Dragon,Dragon,5,Rank 0,5d2+2,10.75,10.27,9.0,2023-08-14 14:23:24
+Prince of Fear,Devilkin,2,Rank 0,2d2+2,3.31,4.51,3.04,2023-08-14 14:23:24
+Dust Archfey,Fey,6,Rank 1,6d4,24.14,24.81,24.68,2023-08-14 14:23:24
+Wyvern,Dragon,14,Rank 3,14d8+1,113.79,114.4,112.11,2023-08-14 14:23:24
+Mummy Lord,Undead,10,Rank 2,10d6+3,61.05,59.5,61.56,2023-08-14 14:23:24
+Efreeti,Elemental,7,Rank 3,7d8+2,59.18,57.92,57.6,2023-08-14 14:23:24
+Kobold Mage,Devilkin,4,Rank 1,4d4+1,16.0,14.31,16.75,2023-08-14 14:23:24
+Bronze Archfey,Fey,11,Rank 2,11d6+1,64.22,64.03,64.0,2023-08-14 14:23:24
+Prismatic Dragon,Dragon,2,Rank 4,2d10,23.69,20.33,15.32,2023-08-14 14:23:24
+Imp,Demonic,10,Rank 1,10d4+1,40.11,41.63,40.14,2023-08-14 14:23:24
+Succubus,Devilkin,3,Rank 0,3d2,6.52,6.89,5.1,2023-08-14 14:23:24
+Ghostly Knight,Undead,18,Rank 1,18d4,72.2,71.13,71.02,2023-08-14 14:23:24
+Ice Archfey,Fey,5,Rank 4,5d10,51.13,51.57,45.64,2023-08-14 14:23:24
+Faerie Dragon,Dragon,15,Rank 5,15d12+1,177.62,175.53,179.03,2023-08-14 14:23:24
+Ghoul,Undead,5,Rank 2,5d6,31.1,31.04,28.38,2023-08-14 14:23:24
+Silver Dragon,Dragon,4,Rank 3,4d8+3,32.09,29.17,31.51,2023-08-14 14:23:24
+Imp,Demonic,5,Rank 2,5d6+2,31.34,31.53,30.67,2023-08-14 14:23:24
+Red Archfey,Fey,14,Rank 3,14d8+1,108.35,110.52,108.99,2023-08-14 14:23:24
+Faerie Dragon,Dragon,7,Rank 2,7d6+5,40.05,44.08,42.92,2023-08-14 14:23:24
+Lich King,Undead,2,Rank 0,2d2+2,3.18,3.71,3.98,2023-08-14 14:23:24
+Efreeti,Elemental,3,Rank 1,3d4,12.35,11.93,11.25,2023-08-14 14:23:24
+Imp,Demonic,14,Rank 0,14d2,27.12,28.13,27.03,2023-08-14 14:23:24
+Poltergeist,Undead,10,Rank 0,10d2+3,19.41,19.83,20.15,2023-08-14 14:23:24
+Magma Elemental,Elemental,10,Rank 0,10d2,19.17,19.28,19.19,2023-08-14 14:23:24
+Quasit,Demonic,4,Rank 0,4d2+4,7.31,8.84,8.62,2023-08-14 14:23:24
+Poltergeist,Undead,3,Rank 3,3d8,27.66,24.75,23.91,2023-08-14 14:23:24
+Efreeti,Elemental,3,Rank 1,3d4,12.59,12.28,12.27,2023-08-14 14:23:24
+Night Hag,Demonic,15,Rank 2,15d6+1,89.4,91.48,88.49,2023-08-14 14:23:24
+Pit Lord,Devilkin,3,Rank 0,3d2+4,6.57,5.87,6.32,2023-08-14 14:23:24
+Flame Spirit,Fey,3,Rank 1,3d4+2,11.79,13.65,12.43,2023-08-14 14:23:24
+Faerie Dragon,Dragon,13,Rank 1,13d4,52.85,51.91,51.47,2023-08-14 14:23:24
+Mud Devil,Devilkin,12,Rank 1,12d4,47.08,46.92,48.23,2023-08-14 14:23:24
+Magma Archfey,Fey,3,Rank 2,3d6+1,17.85,19.39,18.5,2023-08-14 14:23:24
+Diamond Wyrmling,Dragon,11,Rank 0,11d2+4,22.79,22.44,21.16,2023-08-14 14:23:24
+Hell Hound,Demonic,6,Rank 5,6d12+3,76.3,68.62,75.09,2023-08-14 14:23:24
+Mummy Lord,Undead,10,Rank 0,10d2,20.9,20.46,20.52,2023-08-14 14:23:24
+Djinni,Elemental,17,Rank 0,17d2,34.95,33.44,33.24,2023-08-14 14:23:24
+Hook Horror,Demonic,11,Rank 5,11d12+2,128.93,135.65,134.81,2023-08-14 14:23:24
+Revenant,Undead,2,Rank 2,2d6,9.99,11.62,11.54,2023-08-14 14:23:24
+Lightning Elemental,Elemental,12,Rank 2,12d6+2,72.11,72.64,71.74,2023-08-14 14:23:24
+Night Hag,Demonic,3,Rank 0,3d2+3,6.5,6.72,6.51,2023-08-14 14:23:24
+Pit Lord,Devilkin,11,Rank 4,11d10,113.85,105.54,109.32,2023-08-14 14:23:24
+Smoke Elemental,Elemental,1,Rank 0,1d2+4,1.59,1.89,1.31,2023-08-14 14:23:24
+Emerald Dragon,Dragon,15,Rank 3,15d8+3,119.76,122.1,121.03,2023-08-14 14:23:24
+Pit Fiend,Demonic,9,Rank 1,9d4+1,35.09,36.66,35.06,2023-08-14 14:23:24
+Ghostly Archer,Undead,8,Rank 1,8d4+1,30.46,31.94,32.37,2023-08-14 14:23:24
+Ice Spirit,Fey,8,Rank 2,8d6+1,49.33,47.46,49.63,2023-08-14 14:23:24
+Djinni,Elemental,15,Rank 0,15d2+1,30.45,30.35,30.55,2023-08-14 14:23:24
+Platinum Dragon,Dragon,2,Rank 2,2d6,13.53,13.51,9.99,2023-08-14 14:23:24
+Incubus,Devilkin,2,Rank 2,2d6+2,11.98,13.45,9.17,2023-08-14 14:23:24
+Diamond Archfey,Fey,6,Rank 1,6d4+1,24.82,25.92,25.53,2023-08-14 14:23:24
+Pseudodragon,Dragon,8,Rank 0,8d2+2,16.38,16.87,16.53,2023-08-14 14:23:24
+Magma Devil,Devilkin,8,Rank 2,8d6+1,46.73,48.67,49.16,2023-08-14 14:23:24
+Skeletal Mage,Undead,2,Rank 0,2d2+1,3.26,4.33,4.47,2023-08-14 14:23:24
+Lightning Archfey,Fey,5,Rank 4,5d10,45.18,47.87,52.69,2023-08-14 14:23:24
+Wyvern,Dragon,2,Rank 0,2d2+2,3.71,4.84,4.27,2023-08-14 14:23:24
+Ice Devil,Devilkin,2,Rank 2,2d6+5,13.15,9.14,10.39,2023-08-14 14:23:24
+Spore Spirit,Fey,4,Rank 2,4d6+3,23.34,21.66,21.08,2023-08-14 14:23:24
+Emerald Drake,Dragon,2,Rank 0,2d2+2,3.58,4.8,3.79,2023-08-14 14:23:24
+Pit Lord,Devilkin,7,Rank 5,7d12,85.92,89.35,87.91,2023-08-14 14:23:24
+Mud Spirit,Fey,4,Rank 0,4d2+1,8.4,8.35,8.57,2023-08-14 14:23:24
+Ice Mephit,Elemental,9,Rank 2,9d6+1,53.21,56.1,53.74,2023-08-14 14:23:24
+Balor,Demonic,16,Rank 4,16d10+1,159.44,160.6,158.44,2023-08-14 14:23:24
+Silver Archfey,Fey,2,Rank 0,2d2+1,3.51,3.78,4.56,2023-08-14 14:23:24
+White Drake,Dragon,5,Rank 0,5d2+3,10.87,9.23,9.95,2023-08-14 14:23:24
+Kobold Villager,Devilkin,1,Rank 0,1d2,2.5,1.36,2.57,2023-08-14 14:23:24
+Flame Spirit,Fey,12,Rank 2,12d6+3,73.85,72.38,73.41,2023-08-14 14:23:24
+Pseudodragon,Dragon,17,Rank 1,17d4,68.58,66.78,67.12,2023-08-14 14:23:24
+Smoke Devil,Devilkin,3,Rank 2,3d6+1,15.49,18.65,19.42,2023-08-14 14:23:24
+Djinni,Elemental,5,Rank 3,5d8+4,36.37,42.02,40.97,2023-08-14 14:23:24
+Quasit,Demonic,6,Rank 0,6d2+1,12.94,12.42,12.61,2023-08-14 14:23:24
+Zombie Archer,Undead,3,Rank 2,3d6+1,16.91,18.88,16.82,2023-08-14 14:23:24
+Efreeti,Elemental,2,Rank 2,2d6,14.06,12.37,13.48,2023-08-14 14:23:24
+Succubus,Devilkin,3,Rank 2,3d6,19.57,17.28,19.99,2023-08-14 14:23:24
+Magma Mephit,Elemental,17,Rank 0,17d2+1,33.33,33.7,34.04,2023-08-14 14:23:24
+Incubus,Devilkin,15,Rank 1,15d4+2,59.54,58.72,58.22,2023-08-14 14:23:24
+Flame Spirit,Fey,1,Rank 1,1d4+1,4.59,4.46,5.6,2023-08-14 14:23:24
+Emerald Dragon,Dragon,7,Rank 1,7d4+2,27.18,29.32,29.66,2023-08-14 14:23:24
+Mummy Lord,Undead,2,Rank 1,2d4+1,8.81,7.8,6.35,2023-08-14 14:23:24
+Prismatic Wyrmling,Dragon,7,Rank 2,7d6+3,43.24,42.62,39.0,2023-08-14 14:23:24
+Kobold Mage,Devilkin,6,Rank 1,6d4,23.89,25.32,24.5,2023-08-14 14:23:24
+Lightning Archfey,Fey,6,Rank 4,6d10+2,60.94,56.58,56.25,2023-08-14 14:23:24
+Faerie Dragon,Dragon,1,Rank 1,1d4+2,4.23,4.13,5.97,2023-08-14 14:23:24
+Zombie Knight,Undead,7,Rank 4,7d10,70.58,73.23,68.1,2023-08-14 14:23:24
+Smoke Spirit,Fey,9,Rank 0,9d2+2,17.74,17.29,17.95,2023-08-14 14:23:24
+Sapphire Drake,Dragon,2,Rank 3,2d8+3,18.0,13.79,13.35,2023-08-15 12:58:52
+Pit Lord,Devilkin,6,Rank 4,6d10,58.27,62.13,64.83,2023-08-15 12:58:52
+Steam Spirit,Fey,17,Rank 0,17d2+3,33.8,34.98,34.01,2023-08-15 12:58:52
+Copper Dragon,Dragon,12,Rank 0,12d2,23.23,23.75,24.98,2023-08-15 12:58:52
+Pit Lord,Devilkin,4,Rank 1,4d4+1,15.53,16.79,16.4,2023-08-15 12:58:52
+Ruby Faerie,Fey,5,Rank 2,5d6+3,31.64,27.69,31.17,2023-08-15 12:58:52
+Djinni,Elemental,18,Rank 1,18d4+3,71.03,71.13,72.02,2023-08-15 12:58:52
+Ice Devil,Devilkin,8,Rank 1,8d4+1,33.63,30.82,31.38,2023-08-15 12:58:52
+Pseudodragon,Dragon,8,Rank 1,8d4+4,33.46,30.95,31.76,2023-08-15 12:58:52
+Night Hag,Demonic,2,Rank 0,2d2,4.45,4.37,3.28,2023-08-15 12:58:52
+Dracolich,Undead,7,Rank 4,7d10+1,66.39,65.14,65.52,2023-08-15 12:58:52
+Black Archfey,Fey,15,Rank 4,15d10+4,150.5,151.16,153.07,2023-08-15 12:58:52
+Shadow Mephit,Elemental,11,Rank 0,11d2,21.77,22.4,22.22,2023-08-15 12:58:52
+Goblin Knight,Devilkin,9,Rank 4,9d10+3,94.28,93.52,90.69,2023-08-15 12:58:52
+Dust Spirit,Fey,17,Rank 0,17d2+3,33.2,34.22,33.9,2023-08-15 12:58:52
+Ice Elemental,Elemental,2,Rank 1,2d4+2,8.43,7.56,7.04,2023-08-15 12:58:52
+Pit Lord,Devilkin,5,Rank 2,5d6+3,30.89,28.72,28.67,2023-08-15 12:58:52
+Magma Spirit,Fey,6,Rank 3,6d8+2,51.11,47.43,49.92,2023-08-15 12:58:52
+Dust Mephit,Elemental,3,Rank 0,3d2+1,6.63,5.32,6.82,2023-08-15 12:58:52
+Dracolich,Undead,8,Rank 0,8d2,15.67,16.85,16.47,2023-08-15 12:58:52
+Faerie Dragon,Dragon,5,Rank 0,5d2,9.65,10.68,9.72,2023-08-15 12:58:52
+Kobold Villager,Devilkin,7,Rank 0,7d2,13.41,13.2,13.38,2023-08-15 12:58:52
+Wyvern,Dragon,5,Rank 4,5d10+1,54.61,47.08,47.7,2023-08-15 12:58:52
+Hook Horror,Demonic,7,Rank 1,7d4,29.84,29.8,27.11,2023-08-15 12:58:52
+Banshee,Undead,2,Rank 0,2d2+3,4.91,3.94,3.22,2023-08-15 12:58:52
+Onyx Faerie,Fey,10,Rank 1,10d4,39.9,40.62,40.98,2023-08-15 12:58:52
+Imp,Demonic,5,Rank 1,5d4+2,19.55,18.37,20.39,2023-08-15 12:58:52
+Goblin Mage,Devilkin,15,Rank 1,15d4,59.44,60.27,59.26,2023-08-15 12:58:52
+Lightning Archfey,Fey,4,Rank 2,4d6+1,26.17,26.4,23.72,2023-08-15 12:58:52
+Bronze Drake,Dragon,10,Rank 1,10d4,38.67,40.17,40.63,2023-08-15 12:58:52
+Goblin Guard,Devilkin,9,Rank 1,9d4+3,36.94,34.29,37.17,2023-08-15 12:58:52
+Platinum Faerie,Fey,13,Rank 2,13d6,76.81,78.91,77.25,2023-08-15 12:58:52
+Green Dragon,Dragon,5,Rank 1,5d4,21.46,19.36,19.01,2023-08-15 12:58:52
+Kobold Archer,Devilkin,4,Rank 1,4d4+3,16.1,15.43,15.16,2023-08-15 12:58:52
+Diamond Faerie,Fey,3,Rank 0,3d2+1,6.68,5.28,5.27,2023-08-15 12:58:52
+Mud Mephit,Elemental,6,Rank 1,6d4+1,23.59,23.87,25.73,2023-08-15 12:58:52
+Nightmare,Demonic,10,Rank 4,10d10+2,103.35,96.33,99.26,2023-08-15 12:58:52
+Spore Devil,Devilkin,14,Rank 4,14d10+1,139.19,143.15,144.81,2023-08-15 12:58:52
+Silver Faerie,Fey,7,Rank 1,7d4+3,26.59,27.51,29.32,2023-08-15 12:58:52
+Nightmare,Demonic,2,Rank 5,2d12+4,18.69,18.35,20.75,2023-08-15 12:58:52
+Death Knight,Undead,6,Rank 0,6d2,12.67,11.65,11.88,2023-08-15 12:58:52
+Faerie Dragon,Dragon,6,Rank 4,6d10,56.1,60.1,63.33,2023-08-15 12:58:52
+Goblin Knight,Devilkin,11,Rank 5,11d12+1,128.84,126.12,128.33,2023-08-15 12:58:52
+Lightning Spirit,Fey,5,Rank 1,5d4+1,18.46,18.66,20.1,2023-08-15 12:58:52
+Ice Mephit,Elemental,4,Rank 3,4d8+1,33.12,32.56,33.42,2023-08-15 12:58:52
+Prince of Fear,Devilkin,4,Rank 4,4d10,43.34,36.74,41.3,2023-08-15 12:58:52
+Blue Faerie,Fey,13,Rank 4,13d10+1,125.22,132.0,127.19,2023-08-15 12:58:52
+Pseudodragon,Dragon,2,Rank 0,2d2+1,3.56,4.96,3.53,2023-08-15 12:58:52
+Brass Demon,Demonic,15,Rank 0,15d2,30.06,30.6,30.02,2023-08-15 12:58:52
+Goblin Guard,Devilkin,17,Rank 0,17d2+2,33.44,34.49,33.82,2023-08-15 12:58:52
+Mummy Lord,Undead,13,Rank 4,13d10,130.31,129.82,132.94,2023-08-15 12:58:52
+Ruby Wyrmling,Dragon,8,Rank 1,8d4+2,31.94,30.15,32.24,2023-08-15 12:58:52
+Night Hag,Demonic,3,Rank 0,3d2+3,5.12,5.23,5.06,2023-08-15 12:58:52
+Green Archfey,Fey,4,Rank 0,4d2+1,8.2,7.79,8.98,2023-08-15 12:58:52
+Imp,Demonic,2,Rank 2,2d6+1,12.66,14.86,11.74,2023-08-15 12:58:52
+Lich,Undead,3,Rank 3,3d8,26.75,21.52,24.8,2023-08-15 12:58:52
+Brass Faerie,Fey,9,Rank 0,9d2+1,18.51,18.64,17.19,2023-08-15 12:58:52
+Djinni,Elemental,7,Rank 2,7d6,41.35,39.31,40.28,2023-08-15 12:58:52
+Goblin Archer,Devilkin,11,Rank 4,11d10,114.86,114.16,109.35,2023-08-15 12:58:52
+Flame Spirit,Fey,6,Rank 3,6d8+1,51.53,45.09,47.47,2023-08-15 12:58:52
+Pit Fiend,Demonic,13,Rank 3,13d8,104.69,106.09,101.24,2023-08-15 12:58:52
+Wight,Undead,3,Rank 1,3d4+2,12.03,12.83,12.4,2023-08-15 12:58:52
+Bronze Faerie,Fey,9,Rank 1,9d4+1,37.16,36.44,35.26,2023-08-15 12:58:52
+Blue Demon,Demonic,5,Rank 4,5d10+1,48.8,46.93,47.27,2023-08-15 12:58:52
+Wight,Undead,8,Rank 3,8d8+2,61.93,65.79,62.13,2023-08-15 12:58:52
+Djinni,Elemental,11,Rank 0,11d2+3,21.95,22.37,21.01,2023-08-15 12:58:52
+Pit Lord,Devilkin,10,Rank 4,10d10+3,100.17,104.54,100.73,2023-08-15 12:58:52
+Lightning Spirit,Fey,13,Rank 5,13d12+2,156.45,157.45,159.59,2023-08-15 12:58:52
+Efreeti,Elemental,7,Rank 0,7d2+4,14.61,13.21,14.48,2023-08-15 12:58:52
+Dracolich,Undead,3,Rank 1,3d4+2,11.89,11.3,12.81,2023-08-15 12:58:52
+Brass Wyrmling,Dragon,13,Rank 0,13d2+2,25.5,26.36,25.9,2023-08-15 12:58:52
+Incubus,Devilkin,3,Rank 0,3d2+2,5.77,6.93,5.13,2023-08-15 12:58:52
+Magma Archfey,Fey,16,Rank 1,16d4+4,62.25,64.18,64.97,2023-08-15 12:58:52
+Dust Mephit,Elemental,14,Rank 3,14d8,115.94,110.23,111.89,2023-08-15 12:58:52
+Prince of Fear,Devilkin,7,Rank 4,7d10+1,72.92,69.33,70.88,2023-08-15 12:58:52
+Ruby Dragon,Dragon,5,Rank 1,5d4+2,19.91,20.62,19.98,2023-08-15 12:58:52
+White Demon,Demonic,11,Rank 0,11d2+1,21.97,21.97,22.24,2023-08-15 12:58:52
+Skeletal Knight,Undead,14,Rank 2,14d6+1,84.26,85.53,85.97,2023-08-15 12:58:52
+Diamond Archfey,Fey,11,Rank 1,11d4+2,44.5,43.34,44.82,2023-08-15 12:58:52
+Nightmare,Demonic,16,Rank 2,16d6+2,96.84,94.3,96.54,2023-08-15 12:58:52
+Revenant,Undead,5,Rank 2,5d6+2,30.56,30.21,28.3,2023-08-15 12:58:52
+Smoke Elemental,Elemental,4,Rank 5,4d12+1,47.82,42.67,51.11,2023-08-15 12:58:52
+Kobold Villager,Devilkin,15,Rank 0,15d2+1,30.24,29.96,30.68,2023-08-15 12:58:52
+Magma Spirit,Fey,4,Rank 3,4d8,32.38,34.55,31.18,2023-08-15 12:58:52
+Faerie Dragon,Dragon,6,Rank 1,6d4+3,25.06,24.29,22.49,2023-08-15 12:58:52
+Hook Horror,Demonic,4,Rank 2,4d6+3,23.17,23.92,22.2,2023-08-15 12:58:52
+Lich,Undead,7,Rank 2,7d6+2,40.48,41.56,42.41,2023-08-15 12:58:52
+Spore Archfey,Fey,5,Rank 1,5d4+3,20.88,19.55,19.94,2023-08-15 12:58:52
+Efreeti,Elemental,1,Rank 0,1d2,1.59,2.03,1.16,2023-08-15 12:58:52
+Prince of Fear,Devilkin,8,Rank 2,8d6,46.59,45.21,46.83,2023-08-15 12:58:52
+Ruby Faerie,Fey,2,Rank 1,2d4,8.13,9.59,9.04,2023-08-15 12:58:52
+Faerie Dragon,Dragon,4,Rank 1,4d4+2,17.65,16.48,16.22,2023-08-15 12:58:52
+Smoke Devil,Devilkin,3,Rank 4,3d10,27.51,29.8,29.03,2023-08-15 12:58:52
+Green Wyrmling,Dragon,12,Rank 4,12d10+1,124.65,118.34,124.66,2023-08-15 12:58:52
+Quasit,Demonic,4,Rank 4,4d10+2,38.78,44.4,36.79,2023-08-15 12:58:52
+Ghostly Mage,Undead,9,Rank 0,9d2,17.54,17.18,18.0,2023-08-15 12:58:52
+Wyvern,Dragon,12,Rank 0,12d2+1,24.35,24.81,23.17,2023-08-15 12:58:52
+Night Hag,Demonic,10,Rank 0,10d2+2,19.07,20.92,19.56,2023-08-15 12:58:52
+Lich,Undead,9,Rank 0,9d2+1,17.03,17.85,17.29,2023-08-15 12:58:52
+Wyvern,Dragon,6,Rank 1,6d4+1,23.26,25.88,23.71,2023-08-15 12:58:52
+Djinni,Elemental,10,Rank 0,10d2,20.47,19.25,19.97,2023-08-15 12:58:52
+Goblin Guard,Devilkin,6,Rank 0,6d2+4,11.77,12.69,12.86,2023-08-15 12:58:52
+Wyvern,Dragon,3,Rank 2,3d6+2,17.43,17.13,17.45,2023-08-15 12:58:52
+Hell Hound,Demonic,6,Rank 1,6d4,25.62,23.16,25.26,2023-08-15 12:58:52
+Zombie Archer,Undead,6,Rank 1,6d4+2,22.9,23.08,25.97,2023-08-15 12:58:52
+Magma Mephit,Elemental,12,Rank 3,12d8+1,99.56,98.76,95.76,2023-08-15 12:58:52
+Revenant,Undead,12,Rank 1,12d4+3,47.21,48.26,47.68,2023-08-15 12:58:52
+Brass Drake,Dragon,1,Rank 0,1d2,1.25,2.29,1.41,2023-08-15 12:58:52
+Dust Mephit,Elemental,16,Rank 2,16d6,97.72,98.84,95.36,2023-08-15 12:58:52
+Kobold Knight,Devilkin,5,Rank 3,5d8+1,43.15,41.35,38.84,2023-08-15 12:58:52
+Lightning Spirit,Fey,9,Rank 2,9d6+5,54.23,55.06,55.03,2023-08-15 12:58:52
+Smoke Elemental,Elemental,5,Rank 2,5d6+2,29.82,29.4,28.5,2023-08-15 12:58:52
+Prince of Fear,Devilkin,11,Rank 1,11d4+2,45.74,45.89,43.82,2023-08-15 12:58:52
+Flame Spirit,Fey,14,Rank 2,14d6+3,82.67,83.71,86.3,2023-08-15 12:58:52
+Djinni,Elemental,6,Rank 1,6d4+1,22.6,22.8,22.02,2023-08-15 12:58:52
+Goblin Villager,Devilkin,7,Rank 2,7d6+5,40.87,44.77,43.95,2023-08-15 12:58:52
+Wraith,Undead,4,Rank 3,4d8+1,32.33,34.32,32.66,2023-08-15 12:58:52
+Silver Faerie,Fey,8,Rank 0,8d2,15.18,16.68,16.62,2023-08-15 12:58:52
+Djinni,Elemental,8,Rank 0,8d2+3,16.93,15.72,15.16,2023-08-15 12:58:52
+Platinum Demon,Demonic,9,Rank 0,9d2,17.66,17.59,17.98,2023-08-15 12:58:52
+Steam Spirit,Fey,3,Rank 2,3d6+1,15.86,19.24,17.67,2023-08-15 12:58:52
+Efreeti,Elemental,9,Rank 3,9d8,70.93,73.16,72.36,2023-08-15 12:58:52
+Prince of Fear,Devilkin,4,Rank 0,4d2+1,8.79,8.68,7.92,2023-08-15 12:58:52
+Prismatic Archfey,Fey,8,Rank 1,8d4+2,33.22,32.4,33.66,2023-08-15 12:58:52
+Mud Mephit,Elemental,3,Rank 1,3d4,12.13,12.37,10.88,2023-08-15 12:58:52
+Pit Fiend,Demonic,10,Rank 1,10d4,39.06,39.45,40.71,2023-08-15 12:58:52
+Death Knight,Undead,5,Rank 2,5d6,28.94,31.18,27.3,2023-08-15 12:58:52
+Faerie Dragon,Dragon,16,Rank 0,16d2,31.25,32.43,32.42,2023-08-15 12:58:52
+Nightmare,Demonic,8,Rank 2,8d6+3,46.09,46.91,45.64,2023-08-15 12:58:52
+Ghostly Archer,Undead,8,Rank 1,8d4+3,31.49,32.24,31.56,2023-08-15 12:58:52
+Diamond Dragon,Dragon,8,Rank 0,8d2+1,15.21,15.85,15.67,2023-08-15 12:58:52
+Succubus,Devilkin,19,Rank 1,19d4+1,76.79,76.81,75.7,2023-08-15 12:58:52
+Flame Archfey,Fey,4,Rank 2,4d6+1,22.58,26.59,24.07,2023-08-15 12:58:52
+Efreeti,Elemental,15,Rank 4,15d10+1,148.92,153.3,154.24,2023-08-15 12:58:52
+Nightmare,Demonic,7,Rank 3,7d8,58.01,54.37,54.37,2023-08-15 12:58:52
+Goblin Mage,Devilkin,12,Rank 0,12d2+4,24.7,23.34,24.92,2023-08-15 12:58:52
+Ruby Archfey,Fey,2,Rank 2,2d6+1,12.64,10.99,13.94,2023-08-15 12:58:52
+Djinni,Elemental,6,Rank 1,6d4+1,24.79,23.35,23.65,2023-08-15 12:58:52
+Goblin Guard,Devilkin,16,Rank 4,16d10+1,157.64,158.34,163.88,2023-08-15 12:58:52
+Dust Archfey,Fey,16,Rank 3,16d8+4,127.1,125.14,126.12,2023-08-15 12:58:52
+Quasit,Demonic,2,Rank 3,2d8+1,13.71,12.76,13.27,2023-08-15 12:58:52
+Ghoul,Undead,16,Rank 1,16d4+1,62.16,63.35,64.8,2023-08-15 12:58:52
+Blue Drake,Dragon,3,Rank 0,3d2,6.77,5.17,6.64,2023-08-15 12:58:52
+Smoke Elemental,Elemental,11,Rank 1,11d4+1,44.42,42.54,44.33,2023-08-15 12:58:52
+Night Hag,Demonic,13,Rank 0,13d2+1,26.73,26.57,26.09,2023-08-15 12:58:52
+Wraith,Undead,6,Rank 2,6d6+2,34.49,35.88,36.65,2023-08-15 12:58:52
+Shadow Spirit,Fey,5,Rank 2,5d6,28.18,28.37,29.09,2023-08-15 12:58:52
+Steam Mephit,Elemental,2,Rank 3,2d8+2,15.56,16.78,19.77,2023-08-15 12:58:52
+Ghoul,Undead,4,Rank 2,4d6+2,21.41,24.07,23.23,2023-08-15 12:58:52
+Faerie Dragon,Dragon,8,Rank 4,8d10+1,83.56,84.26,77.81,2023-08-15 12:58:52
+Mud Elemental,Elemental,2,Rank 0,2d2+1,4.34,3.2,3.47,2023-08-15 12:58:52
+Pit Lord,Devilkin,3,Rank 1,3d4+2,12.64,11.37,13.74,2023-08-15 12:58:52
+Brass Dragon,Dragon,7,Rank 0,7d2+3,13.81,13.51,14.53,2023-08-15 12:58:52
+Kobold Archer,Devilkin,12,Rank 0,12d2+4,23.66,24.13,23.41,2023-08-15 12:58:52
+Spore Spirit,Fey,1,Rank 0,1d2,1.37,2.38,1.98,2023-08-15 12:58:52
+Lightning Mephit,Elemental,5,Rank 1,5d4+2,18.99,18.01,20.59,2023-08-15 12:58:52
+Prince of Fear,Devilkin,12,Rank 3,12d8+3,93.1,96.0,94.97,2023-08-15 12:58:52
+Mud Spirit,Fey,8,Rank 0,8d2+1,16.33,15.23,17.0,2023-08-15 12:58:52
+Balor,Demonic,10,Rank 3,10d8+3,77.18,78.29,80.92,2023-08-15 12:58:52
+Poltergeist,Undead,9,Rank 0,9d2,17.2,18.62,18.72,2023-08-15 12:58:52
+Spore Mephit,Elemental,15,Rank 4,15d10,149.37,148.55,154.29,2023-08-15 12:58:52
+Kobold Mage,Devilkin,1,Rank 5,1d12+2,13.47,17.63,15.41,2023-08-15 12:58:52
+Platinum Faerie,Fey,12,Rank 0,12d2+1,24.89,24.64,24.1,2023-08-15 12:58:52
+Djinni,Elemental,7,Rank 0,7d2,13.1,13.22,14.11,2023-08-15 12:58:52
+Balor,Demonic,9,Rank 0,9d2+1,18.26,17.27,18.68,2023-08-15 12:58:52
+Revenant,Undead,13,Rank 2,13d6+1,79.19,77.75,79.94,2023-08-15 12:58:52
+Efreeti,Elemental,16,Rank 1,16d4,63.94,63.76,63.43,2023-08-15 12:58:52
+Pit Fiend,Demonic,8,Rank 0,8d2+2,15.64,15.76,15.56,2023-08-15 12:58:52
+Lich,Undead,11,Rank 0,11d2+3,22.26,22.82,22.16,2023-08-15 12:58:52
+Pseudodragon,Dragon,7,Rank 0,7d2+2,13.94,13.06,13.13,2023-08-15 12:58:52
+Steam Mephit,Elemental,16,Rank 2,16d6+1,98.22,95.78,95.17,2023-08-15 12:58:52
+Prince of Fear,Devilkin,2,Rank 3,2d8+1,15.27,16.25,13.49,2023-08-15 12:58:52
+Zombie Knight,Undead,9,Rank 1,9d4+2,35.19,37.55,35.67,2023-08-15 12:58:52
+Prismatic Wyrmling,Dragon,5,Rank 1,5d4,18.34,19.24,21.98,2023-08-15 12:58:52
+Hook Horror,Demonic,9,Rank 0,9d2+1,18.73,17.82,17.29,2023-08-15 12:58:52
+Zombie Villager,Undead,13,Rank 3,13d8,103.47,106.52,106.46,2023-08-15 12:58:52
+Red Wyrmling,Dragon,7,Rank 1,7d4+1,26.36,28.7,28.13,2023-08-15 12:58:52
+Magma Mephit,Elemental,20,Rank 0,20d2+2,40.65,39.41,40.43,2023-08-15 12:58:52
+Vampire,Undead,2,Rank 0,2d2,4.71,3.74,4.33,2023-08-15 12:58:52
+Copper Drake,Dragon,2,Rank 0,2d2,4.95,3.06,3.46,2023-08-15 12:58:52
+Balor,Demonic,6,Rank 0,6d2,12.01,11.51,12.91,2023-08-15 12:58:52
+Succubus,Devilkin,4,Rank 5,4d12+4,48.47,43.04,52.84,2023-08-15 12:58:52
+Ghostly Mage,Undead,6,Rank 2,6d6+2,36.8,35.63,38.09,2023-08-15 12:58:52
+Faerie Dragon,Dragon,17,Rank 4,17d10,172.86,171.37,173.34,2023-08-15 12:58:52
+Djinni,Elemental,13,Rank 1,13d4+1,53.34,50.05,53.32,2023-08-15 12:58:52
+Imp,Demonic,2,Rank 2,2d6+2,14.99,9.68,11.81,2023-08-15 12:58:52
+Emerald Archfey,Fey,10,Rank 1,10d4+3,38.0,38.29,39.04,2023-08-15 12:58:52
+Dust Elemental,Elemental,4,Rank 2,4d6+1,23.61,24.11,25.0,2023-08-15 12:58:52
+Imp,Demonic,3,Rank 0,3d2,5.0,5.62,6.92,2023-08-15 12:58:52
+Mummy,Undead,14,Rank 5,14d12,170.86,168.17,172.15,2023-08-15 12:58:52
+Green Dragon,Dragon,16,Rank 2,16d6+5,95.05,96.61,96.39,2023-08-15 12:58:52
+Imp,Demonic,9,Rank 1,9d4,35.42,36.57,35.08,2023-08-15 12:58:52
+Ghast,Undead,1,Rank 1,1d4,3.45,4.13,3.4,2023-08-15 12:58:52
+Faerie Dragon,Dragon,6,Rank 1,6d4+4,22.34,24.46,22.5,2023-08-15 12:58:52
+Djinni,Elemental,4,Rank 1,4d4+4,14.51,16.78,16.37,2023-08-15 12:58:52
+Pit Lord,Devilkin,10,Rank 0,10d2,20.66,20.49,19.84,2023-08-15 12:58:52
+Ice Archfey,Fey,4,Rank 3,4d8,30.25,34.73,31.8,2023-08-15 12:58:52
+Sapphire Wyrmling,Dragon,12,Rank 0,12d2+1,23.09,24.88,24.14,2023-08-15 12:58:52
+Succubus,Devilkin,13,Rank 0,13d2+1,25.16,26.47,25.75,2023-08-15 12:58:52
+Flame Spirit,Fey,14,Rank 1,14d4+4,54.89,54.31,57.27,2023-08-15 12:58:52
+Pseudodragon,Dragon,7,Rank 4,7d10+1,68.28,71.19,68.32,2023-08-15 12:58:52
+Succubus,Devilkin,4,Rank 3,4d8+1,33.84,35.04,34.75,2023-08-15 12:58:52
+Copper Faerie,Fey,4,Rank 2,4d6+1,23.79,23.75,24.41,2023-08-15 12:58:52
+Black Dragon,Dragon,12,Rank 0,12d2,24.55,24.8,23.25,2023-08-15 12:58:52
+Efreeti,Elemental,2,Rank 0,2d2+3,4.82,3.09,4.26,2023-08-15 12:58:52
+Succubus,Devilkin,1,Rank 1,1d4,3.6,4.62,4.53,2023-08-15 12:58:52
+Prismatic Faerie,Fey,6,Rank 3,6d8,46.71,46.11,44.61,2023-08-15 12:58:52
+Djinni,Elemental,4,Rank 2,4d6+2,25.34,23.68,23.53,2023-08-15 12:58:52
+Kobold Guard,Devilkin,6,Rank 2,6d6+2,36.31,34.4,34.48,2023-08-15 12:58:52
+Demilich,Undead,19,Rank 0,19d2+1,38.11,37.9,38.29,2023-08-15 12:58:52
+Faerie Dragon,Dragon,4,Rank 1,4d4+1,15.58,17.73,17.0,2023-08-15 12:58:52
+Steam Mephit,Elemental,2,Rank 2,2d6,13.99,10.2,11.49,2023-08-15 12:58:52
+Ghostly Archer,Undead,4,Rank 4,4d10+2,36.78,37.63,41.98,2023-08-15 12:58:52
+Onyx Drake,Dragon,7,Rank 2,7d6+3,39.18,44.23,42.24,2023-08-15 12:58:52
+Hell Hound,Demonic,4,Rank 4,4d10+3,37.09,38.84,38.56,2023-08-15 12:58:52
+Goblin Knight,Devilkin,17,Rank 3,17d8+2,135.11,136.68,135.52,2023-08-15 12:58:52
+Copper Archfey,Fey,3,Rank 0,3d2+4,6.9,5.05,5.54,2023-08-15 12:58:52
+Balor,Demonic,10,Rank 0,10d2+3,20.35,19.79,19.94,2023-08-15 12:58:52
+Banshee,Undead,2,Rank 0,2d2+1,3.9,3.69,3.84,2023-08-15 12:58:52
+Emerald Wyrmling,Dragon,17,Rank 0,17d2+1,34.99,34.58,33.84,2023-08-15 12:58:52
+Prince of Fear,Devilkin,9,Rank 2,9d6+1,53.88,56.1,54.58,2023-08-15 12:58:52
+Ice Archfey,Fey,16,Rank 1,16d4+5,62.24,66.0,64.04,2023-08-15 12:58:52
+Shadow Elemental,Elemental,8,Rank 0,8d2+1,16.8,15.99,16.73,2023-08-15 12:58:52
+Demilich,Undead,16,Rank 0,16d2+1,32.22,31.02,32.22,2023-08-15 12:58:52
+White Wyrmling,Dragon,7,Rank 1,7d4,28.26,27.57,27.6,2023-08-15 12:58:52
+Prince of Fear,Devilkin,6,Rank 1,6d4+2,23.81,24.25,24.3,2023-08-15 12:58:52
+Bronze Faerie,Fey,7,Rank 0,7d2,14.12,13.67,14.46,2023-08-15 12:58:52
+Nightmare,Demonic,8,Rank 2,8d6,49.57,47.84,49.89,2023-08-15 12:58:52
+Lich King,Undead,11,Rank 0,11d2,21.7,21.15,21.44,2023-08-15 12:58:52
+Ruby Wyrmling,Dragon,2,Rank 3,2d8+1,14.36,13.26,13.0,2023-08-15 12:58:52
+Efreeti,Elemental,16,Rank 0,16d2+2,31.62,32.19,32.31,2023-08-15 12:58:52
+Succubus,Devilkin,20,Rank 3,20d8+3,160.83,157.42,158.13,2023-08-15 12:58:52
+Sapphire Wyrmling,Dragon,8,Rank 2,8d6,49.74,50.33,50.77,2023-08-15 12:58:52
+Prince of Fear,Devilkin,9,Rank 3,9d8+3,73.39,70.48,68.14,2023-08-15 12:58:52
+Faerie Dragon,Dragon,15,Rank 2,15d6+1,89.61,88.62,91.04,2023-08-15 12:58:52
+Quasit,Demonic,14,Rank 2,14d6,83.09,84.67,83.07,2023-08-15 12:58:52
+Revenant,Undead,1,Rank 3,1d8+1,9.51,7.16,7.58,2023-08-15 12:58:52
+Faerie Dragon,Dragon,7,Rank 2,7d6,43.56,43.32,39.42,2023-08-15 12:58:52
+Efreeti,Elemental,7,Rank 0,7d2,14.25,14.03,13.54,2023-08-15 12:58:52
+Mummy Lord,Undead,2,Rank 4,2d10,20.63,24.63,18.13,2023-08-15 12:58:52
+Diamond Wyrmling,Dragon,4,Rank 3,4d8+2,34.94,33.41,35.19,2023-08-15 12:58:52
+Balor,Demonic,14,Rank 2,14d6+1,84.51,82.6,85.47,2023-08-15 12:58:52
+Goblin Villager,Devilkin,13,Rank 4,13d10+2,133.67,126.35,130.38,2023-08-15 12:58:52
+Skeletal Archer,Undead,7,Rank 1,7d4+5,29.54,27.0,26.46,2023-08-15 12:58:52
+Pseudodragon,Dragon,9,Rank 1,9d4+3,37.0,35.73,37.5,2023-08-15 12:58:52
+Dust Elemental,Elemental,4,Rank 1,4d4+3,17.53,15.5,15.56,2023-08-15 12:58:52
+Zombie Knight,Undead,3,Rank 0,3d2+1,5.01,5.21,5.43,2023-08-15 12:58:52
+Ruby Wyrmling,Dragon,6,Rank 1,6d4,25.22,24.19,24.92,2023-08-15 12:58:52
+Quasit,Demonic,5,Rank 2,5d6,31.14,29.86,31.37,2023-08-15 12:58:52
+Ghostly Guard,Undead,2,Rank 2,2d6,12.54,12.41,10.89,2023-08-15 12:58:52
+Faerie Dragon,Dragon,13,Rank 0,13d2+2,26.79,26.62,25.15,2023-08-15 12:58:52
+Incubus,Devilkin,3,Rank 3,3d8+1,26.78,26.38,22.29,2023-08-15 12:58:52
+Lightning Spirit,Fey,6,Rank 1,6d4+3,23.19,23.25,22.72,2023-08-15 12:58:52
+Blue Dragon,Dragon,4,Rank 0,4d2+4,7.31,7.1,8.62,2023-08-15 12:58:52
+Night Hag,Demonic,4,Rank 1,4d4+2,15.28,16.22,16.42,2023-08-15 12:58:52
+Ghostly Archer,Undead,6,Rank 0,6d2+1,11.33,11.15,12.36,2023-08-15 12:58:52
+White Archfey,Fey,12,Rank 5,12d12+1,138.71,141.41,148.6,2023-08-15 12:58:52
+Magma Elemental,Elemental,2,Rank 2,2d6,14.03,13.15,13.87,2023-08-15 12:58:52
+Nightmare,Demonic,14,Rank 2,14d6+3,85.86,84.0,82.66,2023-08-15 12:58:52
+Skeletal Knight,Undead,3,Rank 3,3d8+2,26.69,24.61,26.61,2023-08-15 12:58:52
+Bronze Wyrmling,Dragon,8,Rank 4,8d10+1,77.08,78.08,79.2,2023-08-15 12:58:52
+Night Hag,Demonic,10,Rank 2,10d6,60.59,61.91,59.1,2023-08-15 12:58:52
+Dust Spirit,Fey,6,Rank 0,6d2+2,11.18,11.89,11.89,2023-08-15 12:58:52
+Djinni,Elemental,14,Rank 0,14d2,28.84,27.71,27.87,2023-08-15 12:58:52
+Goblin Villager,Devilkin,10,Rank 2,10d6+1,62.76,61.34,62.02,2023-08-15 12:58:52
+Lightning Archfey,Fey,13,Rank 2,13d6+3,79.74,77.95,76.89,2023-08-15 12:58:52
+Shadow Mephit,Elemental,3,Rank 0,3d2+2,5.27,5.67,6.28,2023-08-15 12:58:52
+Hell Hound,Demonic,10,Rank 5,10d12+1,117.82,121.99,124.25,2023-08-15 12:58:52
+Ghostly Mage,Undead,19,Rank 4,19d10+1,185.72,191.35,188.46,2023-08-15 12:58:52
+Spore Spirit,Fey,8,Rank 4,8d10,75.56,76.29,77.99,2023-08-15 12:58:52
+Djinni,Elemental,4,Rank 3,4d8+2,30.91,30.24,29.86,2023-08-15 12:58:52
+Blue Demon,Demonic,8,Rank 0,8d2+1,16.22,16.73,16.51,2023-08-15 12:58:52
+Pit Lord,Devilkin,4,Rank 1,4d4,15.41,15.35,16.39,2023-08-15 12:58:52
+Revenant,Undead,8,Rank 2,8d6+2,48.55,47.84,46.45,2023-08-15 12:58:52
+Faerie Dragon,Dragon,3,Rank 0,3d2+1,6.29,5.54,5.32,2023-08-15 12:58:52
+Quasit,Demonic,6,Rank 1,6d4,23.94,24.87,22.77,2023-08-15 12:58:52
+Banshee,Undead,11,Rank 2,11d6+2,63.88,65.04,67.96,2023-08-15 12:58:52
+Dust Elemental,Elemental,1,Rank 1,1d4+1,2.43,3.39,3.38,2023-08-15 12:58:52
+Pit Lord,Devilkin,9,Rank 0,9d2+1,18.03,18.56,17.05,2023-08-15 12:58:52
+White Faerie,Fey,4,Rank 3,4d8,31.95,32.92,33.55,2023-08-15 12:58:52
+Lightning Elemental,Elemental,8,Rank 0,8d2,15.64,15.15,16.35,2023-08-15 12:58:52
+Pit Lord,Devilkin,6,Rank 1,6d4+1,24.3,23.95,23.48,2023-08-15 12:58:52
+Faerie Dragon,Dragon,6,Rank 2,6d6,35.19,36.99,38.35,2023-08-15 12:58:52
+Ice Elemental,Elemental,4,Rank 0,4d2+4,8.89,7.62,8.06,2023-08-15 12:58:52
+Pit Lord,Devilkin,6,Rank 5,6d12+3,68.2,72.07,74.26,2023-08-15 12:58:52
+Diamond Faerie,Fey,5,Rank 2,5d6+1,29.72,31.54,29.88,2023-08-15 12:58:52
+Djinni,Elemental,2,Rank 0,2d2,3.73,4.07,4.07,2023-08-15 12:58:52
+Incubus,Devilkin,9,Rank 3,9d8+1,72.74,69.39,74.45,2023-08-15 12:58:52
+Silver Faerie,Fey,4,Rank 4,4d10,41.06,42.88,38.33,2023-08-15 12:58:52
+Faerie Dragon,Dragon,4,Rank 3,4d8+1,30.71,33.08,31.88,2023-08-15 12:58:52
+Hook Horror,Demonic,7,Rank 0,7d2+4,13.63,14.89,14.2,2023-08-15 12:58:52
+Black Faerie,Fey,11,Rank 2,11d6+1,63.88,67.84,64.27,2023-08-15 12:58:52
+Wyvern,Dragon,4,Rank 2,4d6+3,25.2,26.87,26.45,2023-08-15 12:58:52
+Nightmare,Demonic,11,Rank 1,11d4+2,42.83,42.06,45.67,2023-08-15 12:58:52
+Ghoul,Undead,5,Rank 0,5d2,10.77,9.11,10.48,2023-08-15 12:58:52
+Wyvern,Dragon,2,Rank 1,2d4,6.1,8.0,6.51,2023-08-15 12:58:52
+Hook Horror,Demonic,8,Rank 2,8d6+3,48.34,46.33,50.39,2023-08-15 12:58:52
+Onyx Archfey,Fey,3,Rank 4,3d10+1,26.09,26.77,27.67,2023-08-15 12:58:52
+Efreeti,Elemental,3,Rank 0,3d2+2,5.85,5.34,6.74,2023-08-15 12:58:52
+Pit Lord,Devilkin,8,Rank 0,8d2+2,16.85,15.78,16.29,2023-08-15 12:58:52
+Ghostly Guard,Undead,13,Rank 1,13d4,52.6,50.16,50.08,2023-08-15 12:58:52
+Pseudodragon,Dragon,5,Rank 3,5d8,41.62,38.38,42.09,2023-08-15 12:58:52
+Hell Hound,Demonic,5,Rank 1,5d4+1,21.08,18.65,21.05,2023-08-15 12:58:52
+Lich King,Undead,5,Rank 3,5d8+1,42.85,42.02,39.99,2023-08-15 12:58:52
+Gold Wyrmling,Dragon,12,Rank 3,12d8,93.09,93.53,97.57,2023-08-15 12:58:52
+Flame Devil,Devilkin,5,Rank 0,5d2+2,9.22,9.95,9.56,2023-08-15 12:58:52
+Faerie Dragon,Dragon,2,Rank 1,2d4+5,7.59,8.26,6.56,2023-08-15 12:58:52
+Lightning Mephit,Elemental,5,Rank 1,5d4,19.02,19.99,19.99,2023-08-15 12:58:52
+Hell Hound,Demonic,12,Rank 1,12d4+4,46.05,49.51,48.36,2023-08-15 12:58:52
+Mummy,Undead,8,Rank 2,8d6,45.73,49.55,47.38,2023-08-15 12:58:52
+Wyvern,Dragon,4,Rank 0,4d2,7.62,7.82,8.1,2023-08-15 12:58:52
+Efreeti,Elemental,4,Rank 3,4d8+1,33.54,34.73,29.64,2023-08-15 12:58:52
+Pit Lord,Devilkin,16,Rank 4,16d10,162.89,161.47,160.85,2023-08-15 12:58:52
+Mud Spirit,Fey,8,Rank 0,8d2+1,15.89,16.51,16.75,2023-08-15 12:58:52
+Spore Mephit,Elemental,14,Rank 4,14d10+3,144.85,137.5,136.36,2023-08-15 12:58:52
+Kobold Archer,Devilkin,8,Rank 1,8d4,33.53,30.27,33.83,2023-08-15 12:58:52
+Smoke Spirit,Fey,11,Rank 1,11d4+1,45.3,43.8,44.31,2023-08-15 12:58:52
+Faerie Dragon,Dragon,14,Rank 1,14d4+2,57.42,55.38,55.55,2023-08-15 12:58:52
+Hook Horror,Demonic,13,Rank 2,13d6+3,77.74,80.98,77.72,2023-08-15 12:58:52
+Prince of Fear,Devilkin,12,Rank 1,12d4+3,48.36,46.25,47.83,2023-08-15 12:58:52
+Pseudodragon,Dragon,4,Rank 0,4d2+3,7.7,8.19,8.41,2023-08-15 12:58:52
+Green Demon,Demonic,4,Rank 5,4d12+3,50.37,51.63,53.58,2023-08-15 12:58:52
+Mummy Lord,Undead,8,Rank 1,8d4+2,31.54,32.07,32.28,2023-08-15 12:58:52
+Shadow Elemental,Elemental,9,Rank 1,9d4+1,35.75,35.44,35.61,2023-08-15 12:58:52
+Hook Horror,Demonic,6,Rank 2,6d6,34.71,35.64,33.63,2023-08-15 12:58:52
+Diamond Faerie,Fey,10,Rank 3,10d8,81.1,76.07,77.12,2023-08-15 12:58:52
+Efreeti,Elemental,4,Rank 3,4d8,29.55,34.87,29.84,2023-08-15 12:58:52
+Succubus,Devilkin,8,Rank 1,8d4+4,30.8,31.47,30.98,2023-08-15 12:58:52
+Skeletal Knight,Undead,4,Rank 1,4d4+1,16.56,17.21,14.21,2023-08-15 12:58:52
+Lightning Spirit,Fey,7,Rank 0,7d2,13.93,13.53,14.21,2023-08-15 12:58:52
+Smoke Mephit,Elemental,11,Rank 3,11d8+2,89.27,91.18,89.58,2023-08-15 12:58:52
+Succubus,Devilkin,2,Rank 4,2d10,19.08,24.27,20.24,2023-08-15 12:58:52
+Magma Archfey,Fey,4,Rank 3,4d8+1,30.42,32.82,29.74,2023-08-15 12:58:52
+Pseudodragon,Dragon,8,Rank 2,8d6+2,48.32,48.95,49.91,2023-08-15 12:58:52
+Night Hag,Demonic,9,Rank 2,9d6+5,53.62,55.47,52.16,2023-08-15 12:58:52
+Dust Spirit,Fey,5,Rank 2,5d6+2,29.87,30.38,28.53,2023-08-15 12:58:52
+Emerald Dragon,Dragon,14,Rank 1,14d4+3,55.94,55.04,55.48,2023-08-15 12:58:52
+Imp,Demonic,9,Rank 1,9d4+1,36.49,34.14,34.62,2023-08-15 12:58:52
+Red Faerie,Fey,14,Rank 1,14d4+1,54.95,55.35,56.13,2023-08-15 12:58:52
+Djinni,Elemental,12,Rank 0,12d2+1,23.31,23.22,24.22,2023-08-15 12:58:52
+Hell Hound,Demonic,17,Rank 3,17d8,136.89,137.65,132.54,2023-08-15 12:58:52
+Zombie Villager,Undead,11,Rank 5,11d12+1,133.8,127.67,129.0,2023-08-15 12:58:52
+Wyvern,Dragon,5,Rank 0,5d2+1,9.21,9.76,9.61,2023-08-15 12:58:52
+Imp,Demonic,8,Rank 2,8d6+1,49.51,49.41,50.61,2023-08-15 12:58:52
+Goblin Archer,Devilkin,15,Rank 1,15d4+3,59.32,59.8,59.33,2023-08-15 12:58:52
+Bronze Archfey,Fey,6,Rank 3,6d8,47.11,49.4,45.11,2023-08-15 12:58:52
+Efreeti,Elemental,15,Rank 1,15d4+1,59.35,59.52,60.26,2023-08-15 12:58:52
+Incubus,Devilkin,3,Rank 1,3d4,13.69,13.87,11.03,2023-08-15 12:58:52
+Wight,Undead,14,Rank 2,14d6+1,86.42,85.81,85.87,2023-08-15 12:58:52
+Lightning Archfey,Fey,4,Rank 3,4d8+3,32.12,30.21,31.43,2023-08-15 12:58:52
+Quasit,Demonic,10,Rank 1,10d4,38.5,40.22,40.44,2023-08-15 12:58:52
+Kobold Knight,Devilkin,10,Rank 0,10d2+2,20.21,20.79,20.33,2023-08-15 12:58:52
+Ice Spirit,Fey,5,Rank 3,5d8+2,42.38,43.93,40.0,2023-08-15 12:58:52
+Shadow Elemental,Elemental,4,Rank 1,4d4,17.48,17.06,15.13,2023-08-15 12:58:52
+Goblin Villager,Devilkin,11,Rank 4,11d10,114.13,105.01,110.2,2023-08-15 12:58:52
+Gold Faerie,Fey,4,Rank 1,4d4+1,16.56,16.35,15.22,2023-08-15 12:58:52
+Lightning Mephit,Elemental,2,Rank 1,2d4+1,9.13,8.84,9.84,2023-08-15 12:58:52
+Goblin Mage,Devilkin,10,Rank 1,10d4,38.8,39.0,40.84,2023-08-15 12:58:52
+Green Faerie,Fey,3,Rank 0,3d2,6.02,6.06,5.41,2023-08-15 12:58:52
+Magma Elemental,Elemental,7,Rank 3,7d8+2,56.87,57.19,55.95,2023-08-15 12:58:52
+Kobold Guard,Devilkin,9,Rank 1,9d4+2,34.95,35.35,36.79,2023-08-15 12:58:52
+Wyvern,Dragon,2,Rank 4,2d10+1,17.83,17.33,24.98,2023-08-15 12:58:52
+Djinni,Elemental,3,Rank 2,3d6+2,18.97,19.46,17.36,2023-08-15 12:58:52
+Kobold Archer,Devilkin,7,Rank 0,7d2,14.29,14.7,14.86,2023-08-15 12:58:52
+Brass Archfey,Fey,10,Rank 5,10d12,118.11,114.35,124.13,2023-08-15 12:58:52
+Spore Mephit,Elemental,3,Rank 0,3d2+4,6.03,6.16,6.97,2023-08-15 12:58:52
+Incubus,Devilkin,1,Rank 2,1d6,8.44,6.69,4.48,2023-08-15 12:58:52
+Ice Spirit,Fey,3,Rank 4,3d10+3,28.12,27.2,27.08,2023-08-15 12:58:52
+Flame Mephit,Elemental,11,Rank 1,11d4,43.23,45.82,44.1,2023-08-15 12:58:52
+Goblin Knight,Devilkin,6,Rank 1,6d4,23.74,24.73,23.64,2023-08-15 12:58:52
+Pseudodragon,Dragon,3,Rank 2,3d6,19.82,17.91,19.87,2023-08-15 12:58:52
+Ruby Demon,Demonic,9,Rank 1,9d4+4,35.12,34.05,35.3,2023-08-15 12:58:52
+Mummy Lord,Undead,13,Rank 0,13d2+4,25.74,26.74,26.15,2023-08-15 12:58:52
+Faerie Dragon,Dragon,5,Rank 0,5d2+3,10.59,10.2,10.2,2023-08-15 12:58:52
+Imp,Demonic,5,Rank 0,5d2+3,9.37,10.49,10.75,2023-08-15 12:58:52
+Revenant,Undead,11,Rank 0,11d2,22.44,21.46,21.47,2023-08-15 12:58:52
+Efreeti,Elemental,4,Rank 3,4d8,29.03,30.53,32.2,2023-08-15 12:58:52
+Succubus,Devilkin,6,Rank 3,6d8,51.36,44.35,51.28,2023-08-15 12:58:52
+Pseudodragon,Dragon,5,Rank 1,5d4+1,19.64,19.64,18.0,2023-08-15 12:58:52
+Imp,Demonic,3,Rank 4,3d10+3,27.58,27.46,25.46,2023-08-15 12:58:52
+Wight,Undead,15,Rank 0,15d2,30.69,29.7,30.91,2023-08-15 12:58:52
+Prismatic Drake,Dragon,8,Rank 2,8d6+1,47.62,46.17,48.3,2023-08-15 12:58:52
+White Demon,Demonic,5,Rank 1,5d4+1,18.1,21.56,20.38,2023-08-15 12:58:52
+Smoke Spirit,Fey,18,Rank 2,18d6+3,106.19,109.69,109.41,2023-08-15 12:58:52
+Wyvern,Dragon,9,Rank 0,9d2,18.12,17.36,18.54,2023-08-15 12:58:52
+Hook Horror,Demonic,4,Rank 3,4d8,31.32,35.93,33.54,2023-08-15 12:58:52
+Vampire,Undead,2,Rank 0,2d2+2,4.09,3.69,4.13,2023-08-15 12:58:52
+Shadow Archfey,Fey,5,Rank 1,5d4,19.35,19.43,19.1,2023-08-15 12:58:52
+Copper Demon,Demonic,15,Rank 1,15d4+5,60.87,59.57,58.81,2023-08-15 12:58:52
+Goblin Villager,Devilkin,15,Rank 0,15d2+1,29.61,29.46,29.4,2023-08-15 12:58:52
+Emerald Faerie,Fey,2,Rank 0,2d2,3.35,4.39,4.97,2023-08-15 12:58:52
+Night Hag,Demonic,11,Rank 2,11d6+1,66.51,65.42,67.78,2023-08-15 12:58:52
+Death Knight,Undead,15,Rank 0,15d2+1,29.56,29.52,29.9,2023-08-15 12:58:52
+Sapphire Drake,Dragon,11,Rank 0,11d2+3,21.14,21.56,21.14,2023-08-15 12:58:52
+Pit Lord,Devilkin,9,Rank 1,9d4+4,37.94,36.95,36.04,2023-08-15 12:58:52
+Silver Wyrmling,Dragon,2,Rank 1,2d4+5,8.81,8.88,8.29,2023-08-15 12:58:52
+Spore Mephit,Elemental,10,Rank 0,10d2,19.8,20.96,20.87,2023-08-15 12:58:52
+Night Hag,Demonic,2,Rank 2,2d6+1,12.63,12.03,13.72,2023-08-15 12:58:52
+Steam Devil,Devilkin,17,Rank 1,17d4+3,67.2,69.31,67.03,2023-08-15 12:58:52
+Mud Spirit,Fey,4,Rank 2,4d6,24.24,23.42,24.65,2023-08-15 12:58:52
+Emerald Wyrmling,Dragon,3,Rank 1,3d4+3,13.76,11.95,11.24,2023-08-15 12:58:52
+Spore Mephit,Elemental,10,Rank 2,10d6,60.14,61.13,61.3,2023-08-15 12:58:52
+Incubus,Devilkin,3,Rank 3,3d8+3,25.63,22.87,22.95,2023-08-15 12:58:52
+Prismatic Faerie,Fey,2,Rank 0,2d2,4.77,4.15,3.19,2023-08-15 12:58:52
+Hell Hound,Demonic,5,Rank 0,5d2,10.98,10.18,10.87,2023-08-15 12:58:52
+Onyx Faerie,Fey,14,Rank 0,14d2+2,28.99,27.65,27.61,2023-08-15 12:58:52
+Efreeti,Elemental,10,Rank 0,10d2+1,20.2,19.72,19.1,2023-08-15 12:58:52
+Hell Hound,Demonic,18,Rank 3,18d8+3,140.31,147.88,144.29,2023-08-15 12:58:52
+Steam Devil,Devilkin,18,Rank 1,18d4+2,72.87,71.02,70.03,2023-08-15 12:58:52
+Diamond Archfey,Fey,4,Rank 1,4d4,14.66,15.52,17.77,2023-08-15 12:58:52
+Efreeti,Elemental,12,Rank 0,12d2,23.99,24.81,23.37,2023-08-15 12:58:52
+Prince of Fear,Devilkin,10,Rank 3,10d8,82.98,83.62,77.15,2023-08-15 12:58:52
+Ruby Faerie,Fey,9,Rank 0,9d2+3,18.92,17.61,17.09,2023-08-15 12:58:52
+Quasit,Demonic,9,Rank 1,9d4+1,35.54,34.61,34.71,2023-08-15 12:58:52
+Zombie Mage,Undead,7,Rank 0,7d2+4,13.54,14.81,13.46,2023-08-15 12:58:52
+Green Wyrmling,Dragon,3,Rank 3,3d8+3,20.86,21.17,26.12,2023-08-15 12:58:52
+Efreeti,Elemental,4,Rank 4,4d10+3,43.41,37.6,38.49,2023-08-15 12:58:52
+Quasit,Demonic,12,Rank 0,12d2+2,23.33,23.36,24.49,2023-08-15 12:58:52
+Goblin Guard,Devilkin,8,Rank 1,8d4,32.04,31.51,31.93,2023-08-15 12:58:52
+Copper Faerie,Fey,18,Rank 3,18d8,140.84,142.65,147.64,2023-08-15 12:58:52
+Faerie Dragon,Dragon,6,Rank 1,6d4+3,22.15,23.35,23.53,2023-08-15 12:58:52
+Djinni,Elemental,3,Rank 0,3d2,5.25,6.72,6.03,2023-08-15 12:58:52
+Platinum Demon,Demonic,10,Rank 0,10d2+1,19.59,19.45,20.28,2023-08-15 12:58:52
+Mummy Lord,Undead,3,Rank 2,3d6+3,17.8,18.63,17.61,2023-08-15 12:58:52
+Black Faerie,Fey,2,Rank 1,2d4+3,6.75,6.99,8.34,2023-08-15 12:58:52
+Red Drake,Dragon,12,Rank 0,12d2+2,23.57,24.11,23.09,2023-08-15 12:58:52
+Hook Horror,Demonic,9,Rank 3,9d8,73.69,71.88,74.31,2023-08-15 12:58:52
+Gold Faerie,Fey,7,Rank 1,7d4+1,27.03,29.11,26.9,2023-08-15 12:58:52
+Emerald Drake,Dragon,2,Rank 2,2d6,10.91,10.94,12.98,2023-08-15 12:58:52
+Nightmare,Demonic,16,Rank 0,16d2+2,32.41,32.97,31.98,2023-08-15 12:58:52
+Revenant,Undead,4,Rank 1,4d4+3,16.22,14.58,14.98,2023-08-15 12:58:52
+Red Faerie,Fey,4,Rank 2,4d6+4,22.2,23.63,23.88,2023-08-15 12:58:52
+Nightmare,Demonic,15,Rank 2,15d6+4,87.06,90.54,91.11,2023-08-15 12:58:52
+Mud Devil,Devilkin,8,Rank 0,8d2+4,15.31,15.3,16.85,2023-08-15 12:58:52
+Flame Archfey,Fey,14,Rank 1,14d4+2,55.99,55.97,54.35,2023-08-15 12:58:52
+Steam Mephit,Elemental,10,Rank 1,10d4,39.5,40.31,41.22,2023-08-15 12:58:52
+Night Hag,Demonic,15,Rank 1,15d4+1,59.64,59.12,59.53,2023-08-15 12:58:52
+Pit Lord,Devilkin,12,Rank 1,12d4+5,49.46,46.32,46.16,2023-08-15 12:58:52
+Smoke Spirit,Fey,16,Rank 0,16d2+2,31.14,31.96,32.87,2023-08-15 12:58:52
+Silver Dragon,Dragon,6,Rank 3,6d8+3,44.89,49.24,50.7,2023-08-15 12:58:52
+Pit Fiend,Demonic,9,Rank 0,9d2+1,17.85,17.76,18.59,2023-08-15 12:58:52
+Goblin Archer,Devilkin,13,Rank 0,13d2+5,26.83,25.02,25.32,2023-08-15 12:58:52
+Blue Archfey,Fey,7,Rank 2,7d6+2,41.09,39.74,40.8,2023-08-15 12:58:52
+Prismatic Wyrmling,Dragon,6,Rank 2,6d6+2,37.92,36.38,35.84,2023-08-15 12:58:52
+Balor,Demonic,6,Rank 2,6d6,36.53,33.13,37.55,2023-08-15 12:58:52
+Shadow Archfey,Fey,11,Rank 2,11d6+1,64.01,65.11,64.01,2023-08-15 12:58:52
+Efreeti,Elemental,14,Rank 1,14d4+1,57.91,55.95,54.5,2023-08-15 12:58:52
+Prince of Fear,Devilkin,7,Rank 5,7d12,80.98,86.27,85.98,2023-08-15 12:58:52
+Zombie Knight,Undead,12,Rank 4,12d10+2,120.88,122.96,120.0,2023-08-15 12:58:52
+Wyvern,Dragon,12,Rank 0,12d2+2,23.78,23.02,23.36,2023-08-15 12:58:52
+Pit Lord,Devilkin,12,Rank 0,12d2,23.62,23.79,23.9,2023-08-15 12:58:52
+Onyx Faerie,Fey,10,Rank 0,10d2,20.61,19.2,19.09,2023-08-15 12:58:52
+Djinni,Elemental,1,Rank 1,1d4+1,4.83,2.76,4.84,2023-08-15 12:58:52
+Hook Horror,Demonic,10,Rank 1,10d4,41.23,40.85,41.75,2023-08-15 12:58:52
+Dracolich,Undead,6,Rank 2,6d6,34.69,36.0,35.32,2023-08-15 12:58:52
+Copper Wyrmling,Dragon,4,Rank 1,4d4+3,15.73,16.26,17.38,2023-08-15 12:58:52
+Hook Horror,Demonic,15,Rank 3,15d8,118.42,122.43,116.36,2023-08-15 12:58:52
+Flame Devil,Devilkin,3,Rank 1,3d4,11.61,11.27,11.23,2023-08-15 12:58:52
+Platinum Faerie,Fey,8,Rank 2,8d6+3,45.22,49.28,49.88,2023-08-15 12:58:52
+Efreeti,Elemental,2,Rank 1,2d4+1,9.73,8.95,7.46,2023-08-15 12:58:52
+Succubus,Devilkin,12,Rank 3,12d8,92.61,95.59,95.91,2023-08-15 12:58:52
+Blue Archfey,Fey,8,Rank 0,8d2+2,16.2,16.09,15.71,2023-08-15 12:58:52
+Sapphire Drake,Dragon,19,Rank 3,19d8,149.18,148.56,149.83,2023-08-15 12:58:52
+Hell Hound,Demonic,11,Rank 2,11d6+2,67.98,67.55,64.75,2023-08-15 12:58:52
+Death Knight,Undead,4,Rank 0,4d2,7.19,7.43,7.94,2023-08-15 12:58:52
+Copper Wyrmling,Dragon,5,Rank 2,5d6+5,28.17,30.78,31.81,2023-08-15 12:58:52
+Imp,Demonic,13,Rank 3,13d8+2,106.3,103.73,104.17,2023-08-15 12:58:52
+Emerald Faerie,Fey,4,Rank 0,4d2+1,7.56,7.74,8.64,2023-08-15 12:58:52
+Efreeti,Elemental,2,Rank 0,2d2+4,4.3,3.58,4.49,2023-08-15 12:58:52
+Dracolich,Undead,4,Rank 1,4d4,17.38,17.34,15.32,2023-08-15 12:58:52
+Blue Wyrmling,Dragon,11,Rank 0,11d2,22.11,21.14,21.32,2023-08-15 12:58:52
+Sapphire Demon,Demonic,5,Rank 2,5d6,30.56,29.12,28.65,2023-08-15 12:58:52
+Zombie Guard,Undead,6,Rank 0,6d2+4,11.91,12.39,12.54,2023-08-15 12:58:52
+Lightning Mephit,Elemental,12,Rank 0,12d2+3,24.23,24.63,24.94,2023-08-15 12:58:52
+Poltergeist,Undead,10,Rank 0,10d2+3,19.78,19.69,19.07,2023-08-15 12:58:52
+Mud Mephit,Elemental,9,Rank 3,9d8+1,68.89,72.06,68.24,2023-08-15 12:58:52
+Succubus,Devilkin,16,Rank 0,16d2+3,31.16,31.84,32.0,2023-08-15 12:58:52
+Lich,Undead,1,Rank 1,1d4+1,2.75,2.95,2.0,2023-08-15 12:58:52
+Wyvern,Dragon,7,Rank 4,7d10+3,69.89,72.14,65.85,2023-08-15 12:58:52
+Balor,Demonic,16,Rank 3,16d8,126.97,128.98,125.0,2023-08-15 12:58:52
+Death Knight,Undead,10,Rank 0,10d2+1,20.01,20.72,20.46,2023-08-15 12:58:52
+Spore Archfey,Fey,5,Rank 0,5d2,9.42,10.96,10.09,2023-08-15 12:58:52
+Wyvern,Dragon,3,Rank 2,3d6+1,19.31,17.67,16.97,2023-08-15 12:58:52
+Balor,Demonic,11,Rank 2,11d6+1,66.09,65.2,68.28,2023-08-15 12:58:52
+Mummy,Undead,8,Rank 1,8d4+1,32.38,31.23,31.49,2023-08-15 12:58:52
+Djinni,Elemental,4,Rank 2,4d6+3,25.36,23.63,25.56,2023-08-15 12:58:52
+Nightmare,Demonic,4,Rank 0,4d2,7.87,7.72,8.66,2023-08-15 12:58:52
+Ghoul,Undead,7,Rank 2,7d6+1,44.35,44.23,39.52,2023-08-15 12:58:52
+Silver Wyrmling,Dragon,18,Rank 2,18d6,109.62,108.39,108.44,2023-08-15 12:58:52
+Nightmare,Demonic,2,Rank 1,2d4,7.02,6.1,8.55,2023-08-15 12:58:52
+Prismatic Faerie,Fey,2,Rank 1,2d4+3,8.18,7.22,7.8,2023-08-15 12:58:52
+Smoke Mephit,Elemental,7,Rank 0,7d2+4,13.91,14.18,14.38,2023-08-15 12:58:52
+Pit Lord,Devilkin,9,Rank 0,9d2+1,17.91,17.59,18.31,2023-08-15 12:58:52
+Brass Archfey,Fey,4,Rank 1,4d4,17.01,15.71,16.04,2023-08-15 12:58:52
+Magma Elemental,Elemental,3,Rank 1,3d4+1,12.64,12.52,10.2,2023-08-15 12:58:52
+Prince of Fear,Devilkin,3,Rank 3,3d8+1,24.13,23.97,22.54,2023-08-15 12:58:52
+Faerie Dragon,Dragon,3,Rank 1,3d4,12.06,13.0,10.23,2023-08-15 12:58:52
+Efreeti,Elemental,13,Rank 0,13d2+1,25.27,25.26,25.06,2023-08-15 12:58:52
+Dust Devil,Devilkin,8,Rank 0,8d2+1,15.41,16.84,16.23,2023-08-15 12:58:52
+Mummy Lord,Undead,4,Rank 1,4d4,15.55,17.07,15.52,2023-08-15 12:58:52
+Faerie Dragon,Dragon,2,Rank 2,2d6+3,9.98,10.9,13.99,2023-08-15 12:58:52
+Nightmare,Demonic,10,Rank 3,10d8+4,83.52,80.99,80.78,2023-08-15 12:58:52
+Ghoul,Undead,4,Rank 0,4d2+1,8.63,8.61,8.65,2023-08-15 12:58:52
+Smoke Elemental,Elemental,8,Rank 1,8d4+3,32.61,31.33,33.17,2023-08-15 12:58:52
+Shadow Devil,Devilkin,7,Rank 0,7d2,14.69,13.98,13.84,2023-08-15 12:58:52
+Bronze Wyrmling,Dragon,12,Rank 0,12d2,24.83,24.18,24.8,2023-08-15 12:58:52
+Goblin Archer,Devilkin,8,Rank 4,8d10+3,77.29,78.56,80.41,2023-08-15 12:58:52
+Emerald Wyrmling,Dragon,7,Rank 1,7d4,28.32,29.95,29.17,2023-08-15 12:58:52
+Goblin Knight,Devilkin,8,Rank 4,8d10+3,79.13,80.94,80.4,2023-08-15 12:58:52
+Spore Archfey,Fey,12,Rank 0,12d2+5,23.3,23.09,24.16,2023-08-15 12:58:52
+Sapphire Wyrmling,Dragon,3,Rank 1,3d4,13.19,11.89,12.62,2023-08-15 12:58:52
+Efreeti,Elemental,5,Rank 1,5d4+1,20.17,21.61,21.64,2023-08-15 12:58:52
+Mummy Lord,Undead,2,Rank 1,2d4,8.43,9.89,9.44,2023-08-15 12:58:52
+Efreeti,Elemental,4,Rank 2,4d6+1,26.13,21.86,23.89,2023-08-15 12:58:52
+Imp,Demonic,4,Rank 3,4d8,34.06,32.71,34.4,2023-08-15 12:58:52
+Smoke Spirit,Fey,6,Rank 1,6d4,23.13,23.95,23.68,2023-08-15 12:58:52
+Efreeti,Elemental,9,Rank 1,9d4+3,34.75,35.16,36.6,2023-08-15 12:58:52
+Hook Horror,Demonic,6,Rank 1,6d4+1,22.88,25.21,22.51,2023-08-15 12:58:52
+Lich,Undead,4,Rank 1,4d4+2,15.64,17.37,15.36,2023-08-15 12:58:52
+Faerie Dragon,Dragon,14,Rank 2,14d6+2,85.96,84.95,83.19,2023-08-15 12:58:52
+Efreeti,Elemental,19,Rank 1,19d4+5,75.78,75.06,77.29,2023-08-15 12:58:52
+Wraith,Undead,7,Rank 1,7d4+3,29.21,26.4,27.74,2023-08-15 12:58:52
+Bronze Dragon,Dragon,3,Rank 3,3d8,23.34,20.64,26.64,2023-08-15 12:58:52
+Quasit,Demonic,12,Rank 2,12d6,71.33,71.91,70.55,2023-08-15 12:58:52
+Gold Archfey,Fey,3,Rank 0,3d2,5.35,6.0,5.33,2023-08-15 12:58:52
+Djinni,Elemental,4,Rank 0,4d2+3,7.87,8.17,8.89,2023-08-15 12:58:52
+Pit Lord,Devilkin,12,Rank 0,12d2,23.52,24.01,24.09,2023-08-15 12:58:52
+Shadow Archfey,Fey,14,Rank 5,14d12+2,168.25,164.01,170.21,2023-08-15 12:58:52
+Djinni,Elemental,6,Rank 0,6d2+3,12.6,11.39,12.65,2023-08-15 12:58:52
+Ghast,Undead,8,Rank 0,8d2+5,16.65,15.82,15.91,2023-08-15 12:58:52
+Efreeti,Elemental,5,Rank 0,5d2,10.8,9.99,10.23,2023-08-15 12:58:52
+Incubus,Devilkin,2,Rank 1,2d4+2,7.28,8.73,9.5,2023-08-15 12:58:52
+Faerie Dragon,Dragon,3,Rank 5,3d12+2,35.28,38.96,36.4,2023-08-15 12:58:52
+Djinni,Elemental,4,Rank 1,4d4,15.18,15.13,16.9,2023-08-15 12:58:52
+Kobold Villager,Devilkin,14,Rank 4,14d10+1,137.29,142.97,141.54,2023-08-15 12:58:52
+Dust Spirit,Fey,7,Rank 2,7d6+1,41.85,40.93,42.03,2023-08-15 12:58:52
+Ice Elemental,Elemental,5,Rank 2,5d6,30.9,30.15,32.6,2023-08-15 12:58:52
+Magma Devil,Devilkin,9,Rank 3,9d8,75.8,71.03,69.48,2023-08-15 12:58:52
+Prismatic Faerie,Fey,4,Rank 4,4d10+2,37.76,43.28,40.42,2023-08-15 12:58:52
+Dust Mephit,Elemental,18,Rank 0,18d2,35.31,35.44,35.45,2023-08-15 12:58:52
+Pit Lord,Devilkin,3,Rank 4,3d10+1,27.2,31.25,32.65,2023-08-15 12:58:52
+Ghoul,Undead,4,Rank 4,4d10,35.09,38.72,38.11,2023-08-15 12:58:52
+Efreeti,Elemental,11,Rank 0,11d2,22.32,21.57,22.92,2023-08-15 12:58:52
+Wraith,Undead,9,Rank 0,9d2,18.78,17.33,18.33,2023-08-15 12:58:52
+Djinni,Elemental,4,Rank 3,4d8+2,33.77,34.34,31.17,2023-08-15 12:58:52
+Succubus,Devilkin,4,Rank 1,4d4+1,16.58,16.34,15.14,2023-08-15 12:58:52
+Brass Archfey,Fey,3,Rank 2,3d6+1,15.63,19.03,16.91,2023-08-15 12:58:52
+Bronze Demon,Demonic,5,Rank 3,5d8+2,39.61,37.52,39.55,2023-08-15 12:58:52
+Ice Spirit,Fey,18,Rank 2,18d6+5,110.9,108.88,109.94,2023-08-15 12:58:52
+Efreeti,Elemental,2,Rank 2,2d6,10.88,10.01,11.26,2023-08-15 12:58:52
+Zombie Archer,Undead,7,Rank 0,7d2,14.5,13.46,13.49,2023-08-15 12:58:52
+Spore Archfey,Fey,2,Rank 2,2d6,10.59,14.25,9.31,2023-08-15 12:58:52
+Djinni,Elemental,9,Rank 1,9d4+1,35.94,34.55,35.96,2023-08-15 12:58:52
+Pit Fiend,Demonic,13,Rank 2,13d6,80.61,77.44,78.53,2023-08-15 12:58:52
+Black Archfey,Fey,18,Rank 4,18d10+3,175.62,175.0,178.84,2023-08-15 12:58:52
+Pit Fiend,Demonic,14,Rank 0,14d2,27.34,28.99,27.63,2023-08-15 12:58:52
+Goblin Knight,Devilkin,15,Rank 0,15d2,29.12,30.09,30.45,2023-08-15 12:58:52
+Dust Spirit,Fey,11,Rank 0,11d2,22.49,21.66,21.19,2023-08-15 12:58:52
+Onyx Dragon,Dragon,10,Rank 2,10d6+3,57.07,60.0,58.87,2023-08-15 12:58:52
+Pit Fiend,Demonic,13,Rank 0,13d2+4,25.21,26.92,25.11,2023-08-15 12:58:52
+Vampire,Undead,6,Rank 2,6d6+4,37.67,33.68,35.85,2023-08-15 12:58:52
+Ice Spirit,Fey,16,Rank 0,16d2+4,32.04,32.97,31.2,2023-08-15 12:58:52
+Imp,Demonic,11,Rank 0,11d2+1,21.04,22.02,22.02,2023-08-15 12:58:52
+Lich King,Undead,3,Rank 3,3d8+2,24.21,24.33,20.2,2023-08-15 12:58:52
+Efreeti,Elemental,16,Rank 1,16d4+5,63.8,65.73,63.5,2023-08-15 12:58:52
+Goblin Villager,Devilkin,5,Rank 0,5d2+2,10.63,9.07,9.72,2023-08-15 12:58:52
+Diamond Faerie,Fey,5,Rank 1,5d4+1,18.23,20.11,19.22,2023-08-15 12:58:52
+Efreeti,Elemental,14,Rank 2,14d6+2,83.17,86.78,84.87,2023-08-15 12:58:52
+Kobold Archer,Devilkin,7,Rank 5,7d12,88.28,81.84,81.05,2023-08-15 12:58:52
+Shadow Spirit,Fey,2,Rank 4,2d10+4,20.8,22.92,23.85,2023-08-15 12:58:52
+Flame Mephit,Elemental,9,Rank 4,9d10,90.06,93.35,90.78,2023-08-15 12:58:52
+Lightning Devil,Devilkin,2,Rank 3,2d8+1,19.99,18.06,13.7,2023-08-15 12:58:52
+Magma Spirit,Fey,5,Rank 3,5d8,38.6,40.83,42.4,2023-08-15 12:58:52
+Dust Mephit,Elemental,17,Rank 4,17d10,174.82,167.69,167.73,2023-08-15 12:58:52
+Ice Devil,Devilkin,3,Rank 0,3d2+4,6.86,6.92,5.98,2023-08-15 12:58:52
+Flame Archfey,Fey,11,Rank 0,11d2+2,21.96,22.89,21.69,2023-08-15 12:58:52
+Night Hag,Demonic,18,Rank 0,18d2,35.94,35.96,35.85,2023-08-15 12:58:52
+Ghast,Undead,5,Rank 1,5d4+1,20.37,20.43,21.25,2023-08-15 12:58:52
+Ruby Dragon,Dragon,10,Rank 1,10d4,38.54,39.11,39.38,2023-08-15 12:58:52
+Kobold Knight,Devilkin,3,Rank 0,3d2,5.84,5.67,6.75,2023-08-15 12:58:52
+Lightning Spirit,Fey,5,Rank 3,5d8,37.44,41.83,41.37,2023-08-15 12:58:52
+Djinni,Elemental,10,Rank 0,10d2+1,19.56,19.2,19.4,2023-08-15 12:58:52
+Hell Hound,Demonic,1,Rank 2,1d6,4.8,6.44,5.03,2023-08-15 12:58:52
+Zombie Villager,Undead,11,Rank 0,11d2+5,22.82,22.09,22.23,2023-08-15 12:58:52
+Faerie Dragon,Dragon,10,Rank 0,10d2+3,19.79,19.98,20.44,2023-08-15 12:58:52
+Balor,Demonic,3,Rank 1,3d4+4,12.57,12.49,11.81,2023-08-15 12:58:52
+Smoke Spirit,Fey,5,Rank 0,5d2,10.42,9.02,10.32,2023-08-15 12:58:52
+Green Dragon,Dragon,8,Rank 2,8d6+1,47.77,50.93,47.59,2023-08-15 12:58:52
+Quasit,Demonic,18,Rank 3,18d8+3,145.41,140.16,145.44,2023-08-15 12:58:52
+Magma Spirit,Fey,5,Rank 0,5d2+4,9.29,9.45,10.51,2023-08-15 12:58:52
+Dust Mephit,Elemental,10,Rank 1,10d4,39.9,39.9,39.4,2023-08-15 12:58:52
+Kobold Mage,Devilkin,7,Rank 2,7d6+1,44.32,43.87,42.91,2023-08-15 12:58:52
+Faerie Dragon,Dragon,4,Rank 0,4d2+4,8.76,7.25,7.48,2023-08-15 12:58:52
+Hook Horror,Demonic,14,Rank 0,14d2+4,27.54,28.47,27.93,2023-08-15 12:58:52
+Ice Devil,Devilkin,8,Rank 2,8d6+3,49.12,45.71,49.61,2023-08-15 12:58:52
+Faerie Dragon,Dragon,2,Rank 0,2d2+1,4.74,3.39,4.97,2023-08-15 12:58:52
+Pit Lord,Devilkin,5,Rank 0,5d2+2,10.21,9.58,10.96,2023-08-15 12:58:52
+Diamond Faerie,Fey,15,Rank 1,15d4+1,59.45,60.53,60.33,2023-08-15 12:58:52
+Pseudodragon,Dragon,8,Rank 2,8d6,45.65,48.12,50.53,2023-08-15 12:58:52
+Night Hag,Demonic,7,Rank 0,7d2,14.86,14.88,13.95,2023-08-15 12:58:52
+Wraith,Undead,13,Rank 2,13d6,76.04,78.59,77.13,2023-08-15 12:58:52
+Shadow Mephit,Elemental,2,Rank 2,2d6,13.34,12.97,10.49,2023-08-15 12:58:52
+Succubus,Devilkin,10,Rank 0,10d2+2,20.01,20.5,20.22,2023-08-15 12:58:52
+Vampire,Undead,3,Rank 4,3d10+1,33.41,28.61,34.6,2023-08-15 12:58:52
+Efreeti,Elemental,2,Rank 1,2d4+1,7.85,7.76,8.81,2023-08-15 12:58:52
+Quasit,Demonic,1,Rank 0,1d2+1,1.99,1.27,1.62,2023-08-15 12:58:52
+Banshee,Undead,7,Rank 1,7d4,26.01,26.46,26.97,2023-08-15 12:58:52
+Platinum Wyrmling,Dragon,8,Rank 1,8d4+4,30.02,31.59,31.59,2023-08-15 12:58:52
+Quasit,Demonic,4,Rank 2,4d6+4,21.57,23.87,22.31,2023-08-15 12:58:52
+Pit Lord,Devilkin,16,Rank 2,16d6,97.01,97.76,96.04,2023-08-15 12:58:52
+Pseudodragon,Dragon,11,Rank 0,11d2,22.4,22.35,22.35,2023-08-15 12:58:52
+White Demon,Demonic,15,Rank 4,15d10+2,151.9,147.51,147.05,2023-08-15 12:58:52
+Pit Lord,Devilkin,9,Rank 0,9d2+4,18.89,17.2,18.5,2023-08-15 12:58:52
+Bronze Faerie,Fey,14,Rank 4,14d10+1,140.62,136.13,139.37,2023-08-15 12:58:52
+Ruby Drake,Dragon,6,Rank 0,6d2+5,11.3,11.92,11.18,2023-08-15 12:58:52
+Balor,Demonic,3,Rank 0,3d2+2,6.88,6.27,6.09,2023-08-15 12:58:52
+Lich King,Undead,15,Rank 1,15d4,60.86,61.66,59.83,2023-08-15 12:58:52
+Steam Elemental,Elemental,15,Rank 1,15d4+1,61.94,59.61,58.49,2023-08-15 12:58:52
+Goblin Guard,Devilkin,10,Rank 0,10d2,20.75,20.03,19.57,2023-08-15 12:58:52
+Ice Spirit,Fey,11,Rank 0,11d2,22.78,22.0,21.84,2023-08-15 12:58:52
+Efreeti,Elemental,3,Rank 0,3d2,5.16,5.78,5.79,2023-08-15 12:58:52
+Succubus,Devilkin,12,Rank 1,12d4+1,47.44,49.83,48.43,2023-08-15 12:58:52
+Shadow Spirit,Fey,7,Rank 0,7d2,13.04,14.79,13.31,2023-08-15 12:58:52
+Efreeti,Elemental,12,Rank 4,12d10,121.78,121.33,118.54,2023-08-15 12:58:52
+Spore Devil,Devilkin,12,Rank 0,12d2+1,24.49,24.56,24.88,2023-08-15 12:58:52
+White Dragon,Dragon,13,Rank 3,13d8+5,105.38,105.39,100.94,2023-08-15 12:58:52
+Bronze Demon,Demonic,16,Rank 0,16d2,32.3,32.33,32.57,2023-08-15 12:58:52
+Blue Archfey,Fey,10,Rank 0,10d2+4,19.4,19.67,20.63,2023-08-15 12:58:52
+Brass Demon,Demonic,8,Rank 3,8d8+1,63.98,64.09,64.06,2023-08-15 12:58:52
+Lich King,Undead,13,Rank 0,13d2+1,26.5,25.6,26.66,2023-08-15 12:58:52
+Lightning Spirit,Fey,4,Rank 2,4d6+2,25.33,25.71,21.42,2023-08-15 12:58:52
+Efreeti,Elemental,6,Rank 3,6d8+4,46.41,47.11,45.25,2023-08-15 12:58:52
+Vampire,Undead,15,Rank 3,15d8+1,122.93,116.83,116.17,2023-08-15 12:58:52
+Pseudodragon,Dragon,9,Rank 0,9d2+1,17.58,18.75,17.2,2023-08-15 12:58:52
+Pit Fiend,Demonic,10,Rank 0,10d2,20.68,19.61,20.93,2023-08-15 12:58:52
+Bronze Faerie,Fey,5,Rank 0,5d2+1,10.95,9.49,9.58,2023-08-15 12:58:52
+Efreeti,Elemental,6,Rank 2,6d6+1,34.6,35.3,36.88,2023-08-15 12:58:52
+Hook Horror,Demonic,17,Rank 0,17d2,33.3,33.69,33.1,2023-08-15 12:58:52
+Ghoul,Undead,7,Rank 1,7d4,28.52,28.33,28.36,2023-08-15 12:58:52
+Ice Archfey,Fey,19,Rank 0,19d2+3,38.15,37.39,37.63,2023-08-15 12:58:52
+Flame Mephit,Elemental,5,Rank 1,5d4+1,18.41,19.21,20.4,2023-08-15 12:58:52
+Goblin Villager,Devilkin,7,Rank 0,7d2+4,14.12,14.36,14.26,2023-08-15 12:58:52
+Ruby Faerie,Fey,4,Rank 3,4d8+2,28.23,34.18,34.47,2023-08-15 12:58:52
+Smoke Mephit,Elemental,3,Rank 0,3d2+3,5.55,5.53,6.01,2023-08-15 12:58:52
+White Demon,Demonic,11,Rank 1,11d4+1,43.21,42.3,43.6,2023-08-15 12:58:52
+Dracolich,Undead,4,Rank 1,4d4,15.66,17.54,15.69,2023-08-15 12:58:52
+Diamond Faerie,Fey,10,Rank 2,10d6+1,59.06,61.25,62.22,2023-08-15 12:58:52
+Pit Fiend,Demonic,2,Rank 2,2d6+3,10.22,10.1,11.69,2023-08-15 12:58:52
+Prince of Fear,Devilkin,7,Rank 0,7d2+3,13.82,13.88,13.34,2023-08-15 12:58:52
+Ice Spirit,Fey,14,Rank 3,14d8,112.12,113.23,113.83,2023-08-15 12:58:52
+Ruby Drake,Dragon,17,Rank 2,17d6+2,99.08,99.76,100.45,2023-08-15 12:58:52
+Pit Fiend,Demonic,14,Rank 0,14d2,27.41,28.8,28.44,2023-08-15 12:58:52
+Vampire,Undead,4,Rank 2,4d6+4,24.77,22.85,22.88,2023-08-15 12:58:52
+Faerie Dragon,Dragon,10,Rank 0,10d2+1,19.49,19.15,19.29,2023-08-15 12:58:52
+Quasit,Demonic,4,Rank 1,4d4+2,15.45,16.25,15.55,2023-08-15 12:58:52
+Wraith,Undead,12,Rank 0,12d2,23.79,23.53,24.95,2023-08-15 12:58:52
+Sapphire Dragon,Dragon,4,Rank 1,4d4+3,16.61,14.78,15.86,2023-08-15 12:58:52
+Imp,Demonic,1,Rank 3,1d8,9.23,4.0,6.68,2023-08-15 12:58:52
+Brass Faerie,Fey,2,Rank 2,2d6+2,14.98,13.25,10.98,2023-08-15 12:58:52
+Djinni,Elemental,10,Rank 4,10d10+1,99.81,98.48,98.11,2023-08-15 12:58:52
+Kobold Mage,Devilkin,17,Rank 2,17d6+4,103.11,101.38,101.71,2023-08-15 12:58:52
+Platinum Faerie,Fey,3,Rank 1,3d4,12.32,13.44,11.47,2023-08-15 12:58:52
+Shadow Elemental,Elemental,4,Rank 1,4d4,16.04,14.19,16.85,2023-08-15 12:58:52
+Ghostly Guard,Undead,11,Rank 2,11d6+1,64.06,64.78,66.88,2023-08-15 12:58:52
+Pseudodragon,Dragon,2,Rank 5,2d12+1,22.0,21.78,22.72,2023-08-15 12:58:52
+Efreeti,Elemental,10,Rank 3,10d8,80.2,79.82,83.23,2023-08-15 12:58:52
+Prince of Fear,Devilkin,8,Rank 1,8d4+1,33.34,31.28,31.47,2023-08-15 12:58:52
+Blue Faerie,Fey,13,Rank 0,13d2+4,26.76,26.25,26.74,2023-08-15 12:58:52
+Balor,Demonic,13,Rank 0,13d2+2,26.18,26.75,25.39,2023-08-15 12:58:52
+Pit Lord,Devilkin,16,Rank 2,16d6,94.24,95.47,97.82,2023-08-15 12:58:52
+Red Faerie,Fey,9,Rank 0,9d2+3,18.53,18.82,18.18,2023-08-15 12:58:52
+Gold Wyrmling,Dragon,11,Rank 0,11d2+2,21.55,21.17,21.28,2023-08-15 12:58:52
+Hell Hound,Demonic,5,Rank 1,5d4,19.91,20.2,20.63,2023-08-15 12:58:52
+Spore Devil,Devilkin,3,Rank 2,3d6+1,18.35,15.69,20.95,2023-08-15 12:58:52
+Steam Spirit,Fey,8,Rank 1,8d4,33.51,31.44,30.68,2023-08-15 12:58:52
+Nightmare,Demonic,12,Rank 1,12d4+2,47.24,49.07,48.89,2023-08-15 12:58:52
+Magma Spirit,Fey,13,Rank 2,13d6,79.64,75.2,76.99,2023-08-15 12:58:52
+Efreeti,Elemental,14,Rank 1,14d4+2,54.75,57.72,55.74,2023-08-15 12:58:52
+Balor,Demonic,3,Rank 0,3d2,5.02,6.37,5.82,2023-08-15 12:58:52
+Demilich,Undead,10,Rank 2,10d6,61.05,59.25,61.36,2023-08-15 12:58:52
+Djinni,Elemental,9,Rank 3,9d8,70.05,73.81,70.67,2023-08-15 12:58:52
+Goblin Archer,Devilkin,10,Rank 1,10d4+4,39.52,39.15,38.8,2023-08-15 12:58:52
+Platinum Faerie,Fey,8,Rank 2,8d6+3,49.06,49.03,47.54,2023-08-15 12:58:52
+Wyvern,Dragon,6,Rank 1,6d4+2,24.46,24.18,23.7,2023-08-15 12:58:52
+Hell Hound,Demonic,6,Rank 4,6d10,59.02,59.18,58.12,2023-08-15 12:58:52
+Spore Spirit,Fey,10,Rank 2,10d6+4,59.64,61.11,61.74,2023-08-15 12:58:52
+Lightning Elemental,Elemental,15,Rank 0,15d2,29.73,30.46,29.58,2023-08-15 12:58:52
+Night Hag,Demonic,12,Rank 0,12d2+1,23.1,23.1,23.9,2023-08-15 12:58:52
+Ghast,Undead,4,Rank 3,4d8+2,29.76,29.45,29.54,2023-08-15 12:58:52
+Black Faerie,Fey,3,Rank 4,3d10+1,33.4,27.99,29.58,2023-08-15 12:58:52
+Efreeti,Elemental,17,Rank 0,17d2,34.59,33.09,33.36,2023-08-15 12:58:52
+Ghast,Undead,6,Rank 2,6d6+2,36.6,36.12,36.33,2023-08-15 12:58:52
+Prismatic Drake,Dragon,11,Rank 0,11d2+3,21.05,21.03,22.45,2023-08-15 12:58:52
+Pit Lord,Devilkin,8,Rank 1,8d4+5,31.98,31.48,31.78,2023-08-15 12:58:52
+Green Faerie,Fey,5,Rank 1,5d4,20.83,19.36,19.42,2023-08-15 12:58:52
+Efreeti,Elemental,5,Rank 3,5d8,39.99,38.68,41.7,2023-08-15 12:58:52
+Goblin Knight,Devilkin,11,Rank 2,11d6+1,65.5,63.34,65.49,2023-08-15 12:58:52
+Ice Spirit,Fey,9,Rank 1,9d4,37.08,36.97,35.15,2023-08-15 12:58:52
+Pit Fiend,Demonic,2,Rank 2,2d6+1,9.38,14.24,10.54,2023-08-15 12:58:52
+Diamond Archfey,Fey,5,Rank 2,5d6+1,30.81,28.55,31.84,2023-08-15 12:58:52
+Balor,Demonic,4,Rank 2,4d6,24.28,22.62,25.0,2023-08-15 12:58:52
+Vampire,Undead,3,Rank 5,3d12+5,32.49,38.03,40.27,2023-08-15 12:58:52
+Gold Dragon,Dragon,11,Rank 0,11d2,21.11,21.55,21.08,2023-08-15 12:58:52
+Night Hag,Demonic,3,Rank 0,3d2+1,6.19,6.32,5.62,2023-08-15 12:58:52
+Ghostly Villager,Undead,1,Rank 3,1d8+4,10.44,7.62,5.84,2023-08-15 12:58:52
+Mud Spirit,Fey,7,Rank 5,7d12+1,81.2,81.2,78.84,2023-08-15 12:58:52
+Efreeti,Elemental,6,Rank 0,6d2+2,12.73,12.22,12.34,2023-08-15 12:58:52
+Prince of Fear,Devilkin,5,Rank 0,5d2+3,9.94,9.37,10.47,2023-08-15 12:58:52
+Blue Faerie,Fey,8,Rank 4,8d10+1,81.39,78.21,75.04,2023-08-15 12:58:52
+Djinni,Elemental,2,Rank 0,2d2+2,3.43,4.79,4.55,2023-08-15 12:58:52
+Spore Devil,Devilkin,12,Rank 2,12d6+2,70.78,72.47,70.41,2023-08-15 12:58:52
+Onyx Drake,Dragon,17,Rank 0,17d2+1,33.79,34.48,33.84,2023-08-15 12:58:52
+Efreeti,Elemental,6,Rank 0,6d2,12.48,11.74,11.74,2023-08-15 12:58:52
+Prince of Fear,Devilkin,8,Rank 1,8d4,31.79,31.82,30.22,2023-08-15 12:58:52
+Steam Archfey,Fey,5,Rank 0,5d2+4,10.34,9.71,10.74,2023-08-15 12:58:52
+Efreeti,Elemental,3,Rank 0,3d2+1,6.05,5.86,6.42,2023-08-15 12:58:52
+Prince of Fear,Devilkin,17,Rank 0,17d2,33.07,33.57,34.91,2023-08-15 12:58:52
+Diamond Faerie,Fey,4,Rank 0,4d2+4,7.08,7.75,8.11,2023-08-15 12:58:52
+Djinni,Elemental,3,Rank 2,3d6+3,16.21,18.54,17.38,2023-08-15 12:58:52
+Prince of Fear,Devilkin,6,Rank 0,6d2+3,12.98,11.97,11.54,2023-08-15 12:58:52
+Ruby Faerie,Fey,14,Rank 2,14d6,83.83,85.06,86.73,2023-08-15 12:58:52
+Sapphire Wyrmling,Dragon,14,Rank 1,14d4+1,55.12,56.06,54.45,2023-08-15 12:58:52
+Hook Horror,Demonic,14,Rank 1,14d4+4,56.98,56.14,57.53,2023-08-15 12:58:52
+Prince of Fear,Devilkin,5,Rank 0,5d2,10.14,9.63,10.97,2023-08-15 12:58:52
+Faerie Dragon,Dragon,8,Rank 4,8d10+3,81.06,83.45,82.31,2023-08-15 12:58:52
+Nightmare,Demonic,10,Rank 0,10d2+5,20.46,19.43,20.18,2023-08-15 12:58:52
+Mud Devil,Devilkin,12,Rank 5,12d12+2,142.18,145.2,143.55,2023-08-15 12:58:52
+Copper Archfey,Fey,13,Rank 0,13d2+4,25.97,26.53,26.55,2023-08-15 12:58:52
+Gold Drake,Dragon,11,Rank 0,11d2+3,21.75,22.32,22.61,2023-08-15 12:58:52
+Nightmare,Demonic,4,Rank 2,4d6+2,24.41,22.15,24.32,2023-08-15 12:58:52
+Flame Archfey,Fey,5,Rank 0,5d2+5,9.39,9.33,10.09,2023-08-15 12:58:52
+Efreeti,Elemental,8,Rank 2,8d6+1,48.07,48.08,47.66,2023-08-15 12:58:52
+Steam Devil,Devilkin,9,Rank 1,9d4+4,35.41,35.77,35.74,2023-08-15 12:58:52
+Prismatic Drake,Dragon,5,Rank 1,5d4+1,20.33,18.63,18.69,2023-08-15 12:58:52
+Quasit,Demonic,10,Rank 4,10d10+4,96.13,103.67,98.83,2023-08-15 12:58:52
+Vampire,Undead,4,Rank 2,4d6+3,21.41,24.84,23.53,2023-08-15 12:58:52
+Wyvern,Dragon,13,Rank 3,13d8+4,103.74,102.31,104.31,2023-08-15 12:58:52
+Nightmare,Demonic,2,Rank 0,2d2+3,3.36,4.16,3.47,2023-08-15 12:58:52
+Demilich,Undead,9,Rank 3,9d8+1,68.04,74.5,74.6,2023-08-15 12:58:52
+Efreeti,Elemental,16,Rank 2,16d6,97.38,95.04,96.18,2023-08-15 12:58:52
+Prince of Fear,Devilkin,15,Rank 0,15d2,30.83,30.73,29.61,2023-08-15 12:58:52
+Onyx Dragon,Dragon,17,Rank 1,17d4,68.14,68.18,67.91,2023-08-15 12:58:52
+Hell Hound,Demonic,7,Rank 4,7d10,70.99,74.35,73.43,2023-08-15 12:58:52
+Dracolich,Undead,8,Rank 1,8d4+4,31.62,31.02,31.52,2023-08-15 12:58:52
+Platinum Archfey,Fey,3,Rank 1,3d4+1,12.54,12.92,12.81,2023-08-15 12:58:52
+Pit Fiend,Demonic,5,Rank 0,5d2+4,9.68,10.92,10.59,2023-08-15 12:58:52
+Mud Devil,Devilkin,6,Rank 0,6d2,11.37,11.38,12.49,2023-08-15 12:58:52
+Spore Archfey,Fey,13,Rank 4,13d10+2,130.41,133.75,131.64,2023-08-15 12:58:52
+Djinni,Elemental,9,Rank 1,9d4+1,37.72,34.6,37.31,2023-08-15 12:58:52
+Pit Lord,Devilkin,2,Rank 4,2d10+1,19.2,19.67,15.17,2023-08-15 12:58:52
+Green Archfey,Fey,7,Rank 2,7d6,40.71,39.03,42.23,2023-08-15 12:58:52
+Djinni,Elemental,6,Rank 2,6d6,38.59,35.2,38.11,2023-08-15 12:58:52
+Prince of Fear,Devilkin,15,Rank 2,15d6+2,89.04,88.27,91.05,2023-08-15 12:58:52
+Faerie Dragon,Dragon,8,Rank 3,8d8+2,65.19,65.73,67.59,2023-08-15 12:58:52
+Succubus,Devilkin,4,Rank 1,4d4+2,17.62,16.55,15.32,2023-08-15 12:58:52
+Skeletal Mage,Undead,5,Rank 4,5d10+2,46.45,45.91,53.83,2023-08-15 12:58:52
+Pseudodragon,Dragon,6,Rank 0,6d2+3,11.91,11.27,11.69,2023-08-15 12:58:52
+Hell Hound,Demonic,7,Rank 4,7d10,71.33,71.74,70.45,2023-08-15 12:58:52
+Prince of Fear,Devilkin,5,Rank 1,5d4+2,19.02,18.82,18.24,2023-08-15 12:58:52
+Lightning Spirit,Fey,10,Rank 0,10d2+1,19.17,21.0,20.86,2023-08-15 12:58:52
+Efreeti,Elemental,17,Rank 0,17d2+1,34.37,33.93,34.16,2023-08-15 12:58:52
+Pit Fiend,Demonic,4,Rank 2,4d6+3,24.39,23.34,25.33,2023-08-15 12:58:52
+Lich King,Undead,16,Rank 1,16d4+1,63.22,63.81,64.22,2023-08-15 12:58:52
+Faerie Dragon,Dragon,4,Rank 4,4d10+5,36.18,41.56,39.99,2023-08-15 12:58:52
+Hell Hound,Demonic,7,Rank 3,7d8+4,58.8,58.22,54.72,2023-08-15 12:58:52
+Magma Archfey,Fey,6,Rank 0,6d2+1,12.76,12.37,12.55,2023-08-15 12:58:52
+Dust Elemental,Elemental,5,Rank 0,5d2,9.38,9.36,9.25,2023-08-15 12:58:52
+Goblin Guard,Devilkin,6,Rank 3,6d8,46.67,50.73,47.32,2023-08-15 12:58:52
+Wyvern,Dragon,6,Rank 4,6d10+1,63.1,60.33,63.4,2023-08-15 12:58:52
+Imp,Demonic,16,Rank 0,16d2+2,31.07,32.51,31.58,2023-08-15 12:58:52
+Lich King,Undead,2,Rank 0,2d2+3,3.43,4.28,3.32,2023-08-15 12:58:52
+Smoke Spirit,Fey,7,Rank 1,7d4+2,28.57,27.27,27.32,2023-08-15 12:58:52
+Diamond Drake,Dragon,10,Rank 3,10d8+3,76.41,81.91,83.92,2023-08-15 12:58:52
+Hell Hound,Demonic,10,Rank 0,10d2,19.23,19.19,20.81,2023-08-15 12:58:52
+Magma Devil,Devilkin,4,Rank 2,4d6+3,22.53,25.84,24.07,2023-08-15 12:58:52
+Bronze Faerie,Fey,8,Rank 3,8d8,62.5,66.63,66.12,2023-08-15 12:58:52
+Dust Mephit,Elemental,6,Rank 1,6d4+3,22.36,24.14,23.56,2023-08-15 12:58:52
+Pit Lord,Devilkin,10,Rank 0,10d2,20.45,20.56,20.52,2023-08-15 12:58:52
+Emerald Archfey,Fey,10,Rank 2,10d6+3,61.74,62.11,61.95,2023-08-15 12:58:52
+Nightmare,Demonic,11,Rank 1,11d4+4,44.08,43.3,45.49,2023-08-15 12:58:52
+Blue Faerie,Fey,13,Rank 0,13d2+2,26.63,27.0,25.86,2023-08-15 12:58:52
+Djinni,Elemental,5,Rank 0,5d2+3,11.0,9.24,9.75,2023-08-15 12:58:52
+Hell Hound,Demonic,1,Rank 2,1d6,3.61,6.1,7.89,2023-08-15 12:58:52
+Skeletal Archer,Undead,16,Rank 2,16d6+3,93.65,95.15,94.57,2023-08-15 12:58:52
+Faerie Dragon,Dragon,11,Rank 1,11d4+2,45.82,44.66,44.07,2023-08-15 12:58:52
+Pit Lord,Devilkin,5,Rank 1,5d4+1,18.11,19.26,20.94,2023-08-15 12:58:52
+Ghoul,Undead,8,Rank 0,8d2,15.68,15.6,15.9,2023-08-15 12:58:52
+Pseudodragon,Dragon,3,Rank 0,3d2+5,6.5,5.45,6.95,2023-08-15 12:58:52
+Ice Devil,Devilkin,15,Rank 2,15d6+2,91.91,91.55,90.08,2023-08-15 12:58:52
+Flame Spirit,Fey,8,Rank 4,8d10,82.84,80.63,77.42,2023-08-15 12:58:52
+Brass Demon,Demonic,6,Rank 1,6d4+2,24.04,22.11,23.7,2023-08-15 12:58:52
+Banshee,Undead,10,Rank 2,10d6,61.9,62.11,59.3,2023-08-15 12:58:52
+Steam Archfey,Fey,12,Rank 4,12d10+3,117.2,121.75,118.94,2023-08-15 12:58:52
+Bronze Demon,Demonic,3,Rank 3,3d8+5,25.53,27.84,25.1,2023-08-15 12:58:52
+Prince of Fear,Devilkin,9,Rank 2,9d6+4,56.31,51.35,51.13,2023-08-15 12:58:52
+Smoke Spirit,Fey,5,Rank 1,5d4+1,19.77,21.81,20.04,2023-08-15 12:58:52
+Quasit,Demonic,3,Rank 1,3d4+2,12.02,12.67,13.28,2023-08-15 12:58:52
+Succubus,Devilkin,5,Rank 0,5d2+4,9.86,10.88,9.12,2023-08-15 12:58:52
+Ghast,Undead,6,Rank 0,6d2+2,11.77,11.27,12.73,2023-08-15 12:58:52
+Wyvern,Dragon,12,Rank 1,12d4+1,48.2,48.81,47.16,2023-08-15 12:58:52
+Pit Fiend,Demonic,3,Rank 0,3d2+4,6.0,6.17,5.41,2023-08-15 12:58:52
+Poltergeist,Undead,4,Rank 3,4d8+1,31.37,28.24,28.17,2023-08-15 12:58:52
+Wyvern,Dragon,6,Rank 0,6d2+1,12.3,12.32,12.35,2023-08-15 12:58:52
+Night Hag,Demonic,5,Rank 2,5d6+3,32.45,27.57,32.59,2023-08-15 12:58:52
+Lich King,Undead,6,Rank 0,6d2+1,11.79,11.37,11.77,2023-08-15 12:58:52
+Emerald Drake,Dragon,2,Rank 0,2d2+1,3.77,3.11,4.0,2023-08-15 12:58:52
+Pit Fiend,Demonic,8,Rank 3,8d8+3,62.76,66.82,62.22,2023-08-15 12:58:52
+Sapphire Faerie,Fey,7,Rank 1,7d4+2,29.3,27.9,28.91,2023-08-15 12:58:52
+Magma Elemental,Elemental,10,Rank 4,10d10+1,95.86,98.71,103.75,2023-08-15 12:58:52
+Pit Lord,Devilkin,18,Rank 2,18d6+2,107.69,105.71,106.98,2023-08-15 12:58:52
+Copper Archfey,Fey,3,Rank 3,3d8+4,20.41,25.95,25.16,2023-08-15 12:58:52
+Hook Horror,Demonic,5,Rank 4,5d10,49.13,52.69,48.56,2023-08-15 12:58:52
+Vampire,Undead,3,Rank 1,3d4+2,13.09,11.78,12.37,2023-08-15 12:58:52
+Ruby Dragon,Dragon,1,Rank 1,1d4+3,3.53,4.83,4.54,2023-08-15 12:58:52
+Hook Horror,Demonic,12,Rank 3,12d8,93.63,92.18,94.2,2023-08-15 12:58:52
+Zombie Knight,Undead,2,Rank 3,2d8,16.72,18.48,19.72,2023-08-15 12:58:52
+White Faerie,Fey,15,Rank 3,15d8+3,117.21,121.22,116.88,2023-08-15 12:58:52
+Bronze Dragon,Dragon,15,Rank 0,15d2+4,29.82,30.69,29.34,2023-08-15 12:58:52
+Djinni,Elemental,9,Rank 4,9d10,90.63,90.46,93.75,2023-08-15 12:58:52
+Dracolich,Undead,6,Rank 1,6d4+1,22.27,22.84,23.03,2023-08-15 12:58:52
+Emerald Wyrmling,Dragon,3,Rank 2,3d6+3,16.57,16.12,15.62,2023-08-15 12:58:52
+Hell Hound,Demonic,5,Rank 2,5d6+2,30.64,29.15,28.32,2023-08-15 12:58:52
+Dust Spirit,Fey,9,Rank 0,9d2,17.43,18.01,18.14,2023-08-15 12:58:52
+Faerie Dragon,Dragon,2,Rank 1,2d4+1,8.48,8.04,8.23,2023-08-15 12:58:52
+Hell Hound,Demonic,9,Rank 3,9d8+3,74.69,73.52,73.02,2023-08-15 12:58:52
+Kobold Villager,Devilkin,9,Rank 1,9d4,35.63,37.83,36.39,2023-08-15 12:58:52
+Pseudodragon,Dragon,10,Rank 0,10d2,19.74,20.24,20.08,2023-08-15 12:58:52
+Ice Mephit,Elemental,6,Rank 1,6d4,23.19,25.49,23.75,2023-08-15 12:58:52
+Balor,Demonic,11,Rank 3,11d8,86.52,85.88,86.05,2023-08-15 12:58:52
+Revenant,Undead,5,Rank 4,5d10,49.71,53.72,45.02,2023-08-15 12:58:52
+Efreeti,Elemental,5,Rank 4,5d10+1,49.95,52.06,50.19,2023-08-15 12:58:52
+Banshee,Undead,3,Rank 4,3d10+4,30.33,26.02,27.25,2023-08-15 12:58:52
+Efreeti,Elemental,10,Rank 2,10d6+3,58.07,61.66,60.35,2023-08-15 12:58:52
+Goblin Mage,Devilkin,5,Rank 3,5d8+3,36.88,43.16,40.49,2023-08-15 12:58:52
+Wyvern,Dragon,7,Rank 0,7d2,13.81,13.67,13.12,2023-08-15 12:58:52
+Balor,Demonic,18,Rank 1,18d4,70.24,71.25,70.99,2023-08-15 12:58:52
+Demilich,Undead,3,Rank 4,3d10+2,31.46,34.81,28.22,2023-08-15 12:58:52
+Flame Spirit,Fey,4,Rank 3,4d8+2,28.66,31.4,29.79,2023-08-15 12:58:52
+Efreeti,Elemental,6,Rank 0,6d2+1,11.52,12.94,11.51,2023-08-15 12:58:52
+Hook Horror,Demonic,10,Rank 2,10d6+1,61.44,59.84,60.52,2023-08-15 12:58:52
+Prince of Fear,Devilkin,6,Rank 2,6d6+3,34.48,36.36,35.45,2023-08-15 12:58:52
+Ghast,Undead,7,Rank 0,7d2+2,14.96,14.48,14.75,2023-08-15 12:58:52
+Lightning Archfey,Fey,19,Rank 1,19d4+1,76.94,75.52,77.82,2023-08-15 12:58:52
+Efreeti,Elemental,10,Rank 0,10d2+3,19.09,19.16,19.44,2023-08-15 12:58:52
+Goblin Knight,Devilkin,5,Rank 1,5d4,21.46,20.67,21.18,2023-08-15 12:58:52
+Lich King,Undead,8,Rank 4,8d10+1,81.15,82.13,78.44,2023-08-15 12:58:52
+White Archfey,Fey,5,Rank 2,5d6+1,31.12,27.44,32.54,2023-08-15 12:58:52
+Ice Elemental,Elemental,18,Rank 1,18d4+2,73.94,72.88,73.35,2023-08-15 12:58:52
+Flame Devil,Devilkin,11,Rank 4,11d10+2,111.05,110.52,110.32,2023-08-15 12:58:52
+Copper Dragon,Dragon,5,Rank 3,5d8+2,41.94,43.53,40.48,2023-08-15 12:58:52
+Smoke Mephit,Elemental,9,Rank 3,9d8+4,75.32,75.24,74.86,2023-08-15 12:58:52
+Kobold Villager,Devilkin,8,Rank 0,8d2+2,16.61,15.16,15.96,2023-08-15 12:58:52
+Skeletal Mage,Undead,15,Rank 0,15d2+2,29.69,30.73,29.42,2023-08-15 12:58:52
+Efreeti,Elemental,16,Rank 1,16d4+2,63.58,65.96,63.77,2023-08-15 12:58:52
+Prince of Fear,Devilkin,7,Rank 1,7d4,27.13,29.91,29.94,2023-08-15 12:58:52
+Pseudodragon,Dragon,18,Rank 1,18d4+2,73.18,71.82,71.54,2023-08-15 12:58:52
+Quasit,Demonic,8,Rank 2,8d6+5,47.02,45.44,48.64,2023-08-15 12:58:52
+Succubus,Devilkin,1,Rank 0,1d2+1,1.85,2.98,1.87,2023-08-15 12:58:52
+Ruby Faerie,Fey,4,Rank 3,4d8+1,32.23,30.78,33.26,2023-08-15 12:58:52
+Mud Mephit,Elemental,6,Rank 0,6d2+4,12.57,11.17,12.99,2023-08-15 12:58:52
+Prince of Fear,Devilkin,8,Rank 1,8d4+1,32.19,32.36,32.77,2023-08-15 12:58:52
+Revenant,Undead,9,Rank 1,9d4+1,36.86,36.28,34.63,2023-08-15 12:58:52
+Spore Spirit,Fey,5,Rank 2,5d6,29.91,28.37,28.3,2023-08-15 12:58:52
+Nightmare,Demonic,11,Rank 0,11d2+3,21.48,22.23,22.64,2023-08-15 12:58:52
+Ghostly Guard,Undead,4,Rank 0,4d2+1,8.94,8.11,7.14,2023-08-15 12:58:52
+Lightning Archfey,Fey,11,Rank 0,11d2+2,21.73,21.51,21.81,2023-08-15 12:58:52
+White Wyrmling,Dragon,4,Rank 1,4d4+1,17.0,14.25,16.82,2023-08-15 12:58:52
+Pit Lord,Devilkin,3,Rank 3,3d8,27.26,25.5,23.65,2023-08-15 12:58:52
+Mud Spirit,Fey,6,Rank 2,6d6+1,35.66,34.75,33.99,2023-08-15 12:58:52
+Spore Elemental,Elemental,15,Rank 0,15d2+3,30.74,30.39,29.29,2023-08-15 12:58:52
+Prince of Fear,Devilkin,17,Rank 2,17d6,102.79,102.38,100.51,2023-08-15 12:58:52
+Faerie Dragon,Dragon,5,Rank 1,5d4+4,18.0,20.18,20.23,2023-08-15 12:58:52
+Onyx Demon,Demonic,8,Rank 2,8d6+1,47.61,49.21,47.18,2023-08-15 12:58:52
+Platinum Archfey,Fey,9,Rank 3,9d8+1,75.73,71.71,69.36,2023-08-15 12:58:52
+Efreeti,Elemental,10,Rank 1,10d4+2,38.75,41.47,39.87,2023-08-15 12:58:52
+Prince of Fear,Devilkin,14,Rank 1,14d4,56.95,57.26,55.27,2023-08-15 12:58:52
+Blue Drake,Dragon,17,Rank 1,17d4+5,69.95,67.64,69.22,2023-08-15 12:58:52
+Quasit,Demonic,4,Rank 4,4d10,35.67,43.81,41.5,2023-08-15 12:58:52
+Ghostly Archer,Undead,3,Rank 3,3d8+1,24.65,27.56,23.42,2023-08-15 12:58:52
+Brass Dragon,Dragon,9,Rank 1,9d4+2,35.86,37.51,35.66,2023-08-15 12:58:52
+Hook Horror,Demonic,14,Rank 1,14d4,57.94,55.99,55.39,2023-08-15 12:58:52
+Lightning Devil,Devilkin,6,Rank 1,6d4+3,24.59,23.39,22.8,2023-08-15 12:58:52
+Platinum Faerie,Fey,2,Rank 0,2d2,4.26,3.22,3.22,2023-08-15 12:58:52
+White Drake,Dragon,10,Rank 0,10d2+1,20.19,19.04,20.45,2023-08-15 12:58:52
+Imp,Demonic,10,Rank 1,10d4+2,39.52,39.42,40.67,2023-08-15 12:58:52
+Goblin Knight,Devilkin,19,Rank 5,19d12,228.36,223.99,228.78,2023-08-15 12:58:52
+Magma Spirit,Fey,2,Rank 0,2d2+1,3.25,4.63,4.94,2023-08-15 12:58:52
+Wyvern,Dragon,7,Rank 1,7d4+2,29.89,28.75,27.81,2023-08-15 12:58:52
+Hell Hound,Demonic,17,Rank 4,17d10,169.25,172.34,168.89,2023-08-15 12:58:52
+Prince of Fear,Devilkin,16,Rank 1,16d4+3,63.37,62.53,63.72,2023-08-15 12:58:52
+Spore Spirit,Fey,7,Rank 1,7d4+4,28.87,27.95,27.74,2023-08-15 12:58:52
+Djinni,Elemental,12,Rank 1,12d4+3,48.95,48.72,48.26,2023-08-15 12:58:52
+Kobold Villager,Devilkin,2,Rank 1,2d4,7.27,6.77,8.68,2023-08-15 12:58:52
+Steam Archfey,Fey,10,Rank 4,10d10+1,98.7,103.88,103.67,2023-08-15 12:58:52
+Balor,Demonic,3,Rank 1,3d4+4,10.12,13.45,11.39,2023-08-15 12:58:52
+Prince of Fear,Devilkin,9,Rank 3,9d8+1,74.59,69.75,69.33,2023-08-15 12:58:52
+Mud Spirit,Fey,4,Rank 0,4d2,8.86,8.73,7.3,2023-08-15 12:58:52
+Shadow Mephit,Elemental,5,Rank 2,5d6+5,30.84,27.0,29.67,2023-08-15 12:58:52
+Steam Devil,Devilkin,9,Rank 1,9d4+2,35.08,36.81,36.49,2023-08-15 12:58:52
+Faerie Dragon,Dragon,8,Rank 1,8d4+1,32.77,32.76,32.15,2023-08-15 12:58:52
+Efreeti,Elemental,12,Rank 4,12d10+1,118.41,118.15,120.04,2023-08-15 12:58:52
+Quasit,Demonic,4,Rank 2,4d6+2,24.08,23.25,22.32,2023-08-15 12:58:52
+Death Knight,Undead,7,Rank 0,7d2+2,13.56,13.61,13.06,2023-08-15 12:58:52
+Sapphire Archfey,Fey,11,Rank 2,11d6,67.37,64.67,63.97,2023-08-15 12:58:52
+Night Hag,Demonic,1,Rank 2,1d6+2,4.46,7.84,7.57,2023-08-15 12:58:52
+Death Knight,Undead,10,Rank 1,10d4+2,39.56,40.99,41.08,2023-08-15 12:58:52
+Brass Dragon,Dragon,10,Rank 2,10d6+2,61.49,58.19,58.27,2023-08-15 12:58:52
+Smoke Mephit,Elemental,5,Rank 3,5d8+1,41.34,38.23,41.9,2023-08-15 12:58:52
+Mummy Lord,Undead,15,Rank 0,15d2+3,30.19,29.51,29.02,2023-08-15 12:58:52
+Efreeti,Elemental,6,Rank 1,6d4,25.57,25.78,24.96,2023-08-15 12:58:52
+Succubus,Devilkin,6,Rank 0,6d2+1,11.62,12.4,11.52,2023-08-15 12:58:52
+Flame Spirit,Fey,3,Rank 0,3d2,5.41,5.29,6.83,2023-08-15 12:58:52
+Lightning Elemental,Elemental,3,Rank 0,3d2,5.82,5.0,6.18,2023-08-15 12:58:52
+Kobold Mage,Devilkin,3,Rank 4,3d10+2,32.19,27.94,29.04,2023-08-15 12:58:52
+Ghast,Undead,7,Rank 0,7d2,14.16,13.55,13.67,2023-08-15 12:58:52
+Pseudodragon,Dragon,11,Rank 0,11d2,21.98,21.52,21.37,2023-08-15 12:58:52
+Night Hag,Demonic,12,Rank 1,12d4,47.02,47.86,48.07,2023-08-15 12:58:52
+Pit Lord,Devilkin,4,Rank 5,4d12+1,43.1,44.36,52.71,2023-08-15 12:58:52
+Magma Archfey,Fey,4,Rank 2,4d6+1,23.93,24.57,23.9,2023-08-15 12:58:52
+Steam Elemental,Elemental,5,Rank 2,5d6+1,32.94,29.25,27.43,2023-08-15 12:58:52
+Wight,Undead,3,Rank 1,3d4+2,11.76,12.28,12.01,2023-08-15 12:58:52
+Wyvern,Dragon,14,Rank 2,14d6+1,84.77,82.11,81.76,2023-08-15 12:58:52
+Efreeti,Elemental,7,Rank 1,7d4+3,27.14,26.48,27.41,2023-08-15 12:58:52
+Pit Lord,Devilkin,3,Rank 0,3d2+1,5.73,6.54,6.98,2023-08-15 12:58:52
+Ruby Faerie,Fey,9,Rank 0,9d2,18.15,17.65,18.73,2023-08-15 12:58:52
+Ice Mephit,Elemental,14,Rank 3,14d8,114.11,115.24,113.87,2023-08-15 12:58:52
+Shadow Devil,Devilkin,16,Rank 1,16d4+1,63.25,63.21,63.1,2023-08-15 12:58:52
+Faerie Dragon,Dragon,3,Rank 3,3d8+2,21.07,20.72,22.17,2023-08-15 12:58:52
+Quasit,Demonic,5,Rank 0,5d2,9.32,10.5,10.23,2023-08-15 12:58:52
+Dust Spirit,Fey,5,Rank 1,5d4,20.4,20.6,20.03,2023-08-15 12:58:52
+Smoke Mephit,Elemental,5,Rank 1,5d4+4,19.49,19.71,21.74,2023-08-15 12:58:52
+Night Hag,Demonic,3,Rank 1,3d4+2,12.27,12.45,12.71,2023-08-15 12:58:52
+Kobold Guard,Devilkin,12,Rank 1,12d4+4,46.72,48.19,47.58,2023-08-15 12:58:52
+White Archfey,Fey,12,Rank 1,12d4+1,48.7,49.43,46.11,2023-08-15 12:58:52
+Bronze Dragon,Dragon,7,Rank 2,7d6+3,43.63,41.65,39.4,2023-08-15 12:58:52
+Kobold Villager,Devilkin,7,Rank 3,7d8+4,54.49,53.37,55.01,2023-08-15 12:58:52
+Flame Archfey,Fey,9,Rank 0,9d2+1,17.19,18.97,18.92,2023-08-15 12:58:52
+Faerie Dragon,Dragon,9,Rank 1,9d4,36.14,35.08,35.99,2023-08-15 12:58:52
+Steam Elemental,Elemental,12,Rank 1,12d4,48.54,49.79,47.98,2023-08-15 12:58:52
+Mummy,Undead,2,Rank 0,2d2,4.63,3.97,3.97,2023-08-15 12:58:52
+Smoke Mephit,Elemental,2,Rank 1,2d4,7.26,7.66,8.3,2023-08-15 12:58:52
+Flame Devil,Devilkin,6,Rank 0,6d2+3,12.5,11.98,12.27,2023-08-15 12:58:52
+Black Archfey,Fey,9,Rank 1,9d4+2,37.56,35.39,34.15,2023-08-15 12:58:52
+Green Drake,Dragon,14,Rank 1,14d4+3,56.34,55.12,56.0,2023-08-15 12:58:52
+Imp,Demonic,6,Rank 3,6d8+1,51.51,51.59,46.93,2023-08-15 12:58:52
+Lich King,Undead,9,Rank 2,9d6+1,53.99,55.8,54.85,2023-08-15 12:58:52
+Dust Elemental,Elemental,14,Rank 0,14d2+1,28.71,27.97,29.0,2023-08-15 12:58:52
+Lich,Undead,5,Rank 2,5d6+1,29.55,28.3,32.02,2023-08-15 12:58:52
+Ice Archfey,Fey,6,Rank 4,6d10,64.1,59.07,63.66,2023-08-15 12:58:52
+Efreeti,Elemental,8,Rank 1,8d4+2,33.59,31.23,31.33,2023-08-15 12:58:52
+Goblin Mage,Devilkin,17,Rank 3,17d8,132.83,133.79,137.85,2023-08-15 12:58:52
+Wraith,Undead,19,Rank 3,19d8,153.84,149.17,148.85,2023-08-15 12:58:52
+Wyvern,Dragon,6,Rank 2,6d6+1,37.71,34.37,35.77,2023-08-15 12:58:52
+Pit Lord,Devilkin,8,Rank 3,8d8+2,63.7,60.93,61.26,2023-08-15 12:58:52
+Shadow Spirit,Fey,3,Rank 4,3d10+3,33.07,32.28,33.07,2023-08-15 12:58:52
+Onyx Wyrmling,Dragon,6,Rank 2,6d6+2,34.95,36.73,35.32,2023-08-15 12:58:52
+Efreeti,Elemental,13,Rank 0,13d2+1,25.96,26.41,25.17,2023-08-15 12:58:52
+Incubus,Devilkin,10,Rank 1,10d4+4,39.16,40.26,39.39,2023-08-15 12:58:52
+Ghostly Knight,Undead,4,Rank 0,4d2,8.27,7.24,8.61,2023-08-15 12:58:52
+Spore Spirit,Fey,6,Rank 0,6d2+1,11.43,11.53,11.51,2023-08-15 12:58:52
+Copper Dragon,Dragon,11,Rank 0,11d2,21.9,21.46,21.55,2023-08-15 12:58:52
+Goblin Villager,Devilkin,8,Rank 2,8d6+2,47.23,48.51,47.44,2023-08-15 12:58:52
+Black Dragon,Dragon,12,Rank 3,12d8+2,98.29,95.05,97.9,2023-08-15 12:58:52
+Smoke Elemental,Elemental,9,Rank 0,9d2+1,17.1,17.41,18.61,2023-08-15 12:58:52
+Succubus,Devilkin,7,Rank 1,7d4+1,28.92,26.97,26.93,2023-08-15 12:58:52
+White Archfey,Fey,17,Rank 1,17d4,67.56,68.37,66.65,2023-08-15 12:58:52
+Magma Mephit,Elemental,3,Rank 0,3d2,6.39,5.52,6.49,2023-08-15 12:58:52
+Prince of Fear,Devilkin,3,Rank 2,3d6,16.76,16.21,20.95,2023-08-15 12:58:52
+Spore Archfey,Fey,9,Rank 1,9d4,35.14,37.32,35.3,2023-08-15 12:58:52
+Djinni,Elemental,9,Rank 0,9d2+1,18.56,18.98,18.26,2023-08-15 12:58:52
+Prince of Fear,Devilkin,4,Rank 3,4d8+3,28.25,30.12,35.99,2023-08-15 12:58:52
+Diamond Faerie,Fey,7,Rank 1,7d4+1,28.24,28.4,28.8,2023-08-15 12:58:52
+Lightning Elemental,Elemental,3,Rank 1,3d4,12.57,10.94,13.19,2023-08-15 12:58:52
+Prince of Fear,Devilkin,12,Rank 0,12d2,24.08,23.5,23.21,2023-08-15 12:58:52
+Ruby Archfey,Fey,6,Rank 2,6d6,35.91,38.96,35.7,2023-08-15 12:58:52
+Efreeti,Elemental,3,Rank 3,3d8+2,24.52,23.31,24.24,2023-08-15 12:58:52
+Skeletal Mage,Undead,14,Rank 0,14d2+1,28.79,27.58,27.29,2023-08-15 12:58:52
+Pseudodragon,Dragon,19,Rank 2,19d6+1,115.7,113.28,116.82,2023-08-15 12:58:52
+Djinni,Elemental,1,Rank 0,1d2+1,2.33,2.96,2.09,2023-08-15 12:58:52
+Goblin Guard,Devilkin,1,Rank 5,1d12+2,7.55,11.35,10.65,2023-08-15 12:58:52
+Faerie Dragon,Dragon,10,Rank 0,10d2+1,19.85,19.82,20.36,2023-08-15 12:58:52
+Sapphire Demon,Demonic,13,Rank 1,13d4+3,53.49,52.59,53.06,2023-08-15 12:58:52
+Dracolich,Undead,5,Rank 4,5d10+1,53.04,49.27,53.39,2023-08-15 12:58:52
+Wyvern,Dragon,3,Rank 2,3d6+1,18.09,20.31,15.93,2023-08-15 12:58:52
+Succubus,Devilkin,9,Rank 4,9d10+1,93.7,90.94,93.29,2023-08-15 12:58:52
+Pseudodragon,Dragon,6,Rank 4,6d10+2,58.84,61.18,56.43,2023-08-15 12:58:52
+Mud Mephit,Elemental,5,Rank 5,5d12+1,64.43,57.75,56.38,2023-08-15 12:58:52
+Revenant,Undead,12,Rank 1,12d4,47.47,48.04,48.16,2023-08-15 12:58:52
+Diamond Drake,Dragon,6,Rank 1,6d4+1,22.9,24.68,24.07,2023-08-15 12:58:52
+Ruby Demon,Demonic,4,Rank 0,4d2,8.83,7.69,8.2,2023-08-15 12:58:52
+Demilich,Undead,13,Rank 2,13d6,76.49,78.27,75.02,2023-08-15 12:58:52
+Prismatic Dragon,Dragon,9,Rank 2,9d6+3,51.73,52.21,52.81,2023-08-15 12:58:52
+Night Hag,Demonic,5,Rank 2,5d6+4,32.49,27.74,30.78,2023-08-15 12:58:52
+Lich,Undead,13,Rank 1,13d4+3,52.89,51.14,51.11,2023-08-15 12:58:52
+Pseudodragon,Dragon,3,Rank 0,3d2+1,6.85,6.39,6.69,2023-08-15 12:58:52
+Hell Hound,Demonic,17,Rank 2,17d6,103.02,102.02,100.8,2023-08-15 12:58:52
+Succubus,Devilkin,14,Rank 1,14d4,55.36,54.37,54.27,2023-08-15 12:58:52
+Spore Spirit,Fey,5,Rank 0,5d2,9.73,10.21,9.76,2023-08-15 12:58:52
+Efreeti,Elemental,7,Rank 2,7d6,44.67,44.12,41.86,2023-08-15 12:58:52
+Goblin Archer,Devilkin,18,Rank 1,18d4,73.09,70.0,70.34,2023-08-15 12:58:52
+Goblin Archer,Devilkin,4,Rank 2,4d6+1,26.76,25.17,25.95,2023-08-15 13:18:48
+Vampire,Undead,3,Rank 2,3d6,18.19,15.43,15.27,2023-08-15 13:18:48
+Wyvern,Dragon,3,Rank 3,3d8+1,26.82,24.86,21.94,2023-08-15 13:18:48
+Copper Faerie,Fey,1,Rank 0,1d2+4,2.52,1.23,2.06,2023-08-15 13:18:48
+Djinni,Elemental,4,Rank 3,4d8,33.36,33.44,34.38,2023-08-15 13:18:48
+Wyvern,Dragon,19,Rank 1,19d4+1,74.71,77.04,75.75,2023-08-15 13:18:48
+Spore Spirit,Fey,14,Rank 2,14d6+5,86.27,83.55,81.67,2023-08-15 13:18:48
+Ice Mephit,Elemental,5,Rank 0,5d2+3,10.49,10.38,9.16,2023-08-15 13:18:48
+Faerie Dragon,Dragon,14,Rank 2,14d6+1,85.16,83.47,86.32,2023-08-15 13:18:48
+Lightning Spirit,Fey,10,Rank 2,10d6+1,59.3,61.43,60.56,2023-08-15 13:18:48
+Poltergeist,Undead,8,Rank 1,8d4,32.44,31.3,32.25,2023-08-15 13:18:48
+Blue Wyrmling,Dragon,7,Rank 1,7d4+4,27.86,29.01,29.95,2023-08-15 13:18:48
+Silver Faerie,Fey,7,Rank 0,7d2+1,14.91,13.72,13.23,2023-08-15 13:18:48
+Efreeti,Elemental,5,Rank 0,5d2+3,9.72,9.92,10.45,2023-08-15 13:18:48
+Wyvern,Dragon,7,Rank 0,7d2+4,14.78,14.89,13.6,2023-08-15 13:18:48
+Pit Lord,Devilkin,5,Rank 0,5d2+4,10.94,10.43,10.25,2023-08-15 13:18:48
+Lich King,Undead,8,Rank 2,8d6,47.94,45.85,47.12,2023-08-15 13:18:48
+Night Hag,Demonic,5,Rank 4,5d10,53.75,46.63,48.39,2023-08-15 13:18:48
+Succubus,Devilkin,4,Rank 2,4d6+4,24.08,22.84,21.34,2023-08-15 13:18:48
+Zombie Mage,Undead,5,Rank 0,5d2+3,10.81,9.98,10.59,2023-08-15 13:18:48
+Hook Horror,Demonic,7,Rank 1,7d4+3,27.05,27.49,27.91,2023-08-15 13:18:48
+Dust Devil,Devilkin,7,Rank 3,7d8,53.7,54.96,56.44,2023-08-15 13:18:48
+Efreeti,Elemental,9,Rank 3,9d8,72.65,70.76,68.73,2023-08-15 13:18:48
+Ghast,Undead,9,Rank 2,9d6+3,51.24,52.58,53.08,2023-08-15 13:18:48
+Steam Spirit,Fey,9,Rank 4,9d10,89.47,85.71,90.54,2023-08-15 13:18:48
+Efreeti,Elemental,2,Rank 4,2d10,22.4,22.67,19.48,2023-08-15 13:18:48
+Balor,Demonic,16,Rank 0,16d2,32.84,31.62,31.97,2023-08-15 13:18:48
+Pit Lord,Devilkin,3,Rank 0,3d2,5.1,5.78,6.77,2023-08-15 13:18:48
+Death Knight,Undead,13,Rank 0,13d2+2,25.47,26.97,26.76,2023-08-15 13:18:48
+Hook Horror,Demonic,4,Rank 1,4d4+2,16.77,16.76,16.71,2023-08-15 13:18:48
+Shadow Spirit,Fey,9,Rank 3,9d8,75.85,68.65,72.85,2023-08-15 13:18:48
+Succubus,Devilkin,9,Rank 2,9d6+3,55.76,53.72,51.59,2023-08-15 13:18:48
+Ice Elemental,Elemental,19,Rank 2,19d6+1,112.19,112.35,114.41,2023-08-15 13:18:48
+Copper Dragon,Dragon,1,Rank 2,1d6,4.97,4.73,7.93,2023-08-15 13:18:48
+Green Faerie,Fey,7,Rank 4,7d10+3,72.85,73.41,66.8,2023-08-15 13:18:48
+Wraith,Undead,9,Rank 3,9d8+3,72.19,70.51,72.65,2023-08-15 13:18:48
+Quasit,Demonic,9,Rank 0,9d2,18.79,17.96,18.86,2023-08-15 13:18:48
+Pit Lord,Devilkin,3,Rank 4,3d10+3,28.99,33.54,30.1,2023-08-15 13:18:48
+Efreeti,Elemental,11,Rank 2,11d6+1,65.59,68.76,65.38,2023-08-15 13:18:48
+Gold Wyrmling,Dragon,16,Rank 2,16d6+1,93.01,94.74,98.51,2023-08-15 13:18:48
+Pit Lord,Devilkin,5,Rank 1,5d4+1,20.56,18.42,18.26,2023-08-15 13:18:48
+Smoke Elemental,Elemental,7,Rank 0,7d2+3,13.43,14.49,14.57,2023-08-15 13:18:48
+Pseudodragon,Dragon,4,Rank 4,4d10+1,38.13,38.05,41.65,2023-08-15 13:18:48
+Lightning Archfey,Fey,9,Rank 1,9d4+1,35.11,36.1,35.55,2023-08-15 13:18:48
+Flame Mephit,Elemental,8,Rank 3,8d8+4,65.56,65.76,61.11,2023-08-15 13:18:48
+Ghast,Undead,4,Rank 0,4d2+2,8.55,7.65,7.74,2023-08-15 13:18:48
+Copper Archfey,Fey,8,Rank 3,8d8+1,61.31,61.32,67.05,2023-08-15 13:18:48
+Incubus,Devilkin,3,Rank 1,3d4,12.14,11.55,12.48,2023-08-15 13:18:48
+Lich,Undead,16,Rank 2,16d6,94.82,95.03,98.57,2023-08-15 13:18:48
+Emerald Wyrmling,Dragon,9,Rank 1,9d4,36.97,36.61,34.55,2023-08-15 13:18:48
+Brass Faerie,Fey,2,Rank 2,2d6+3,14.6,11.19,11.2,2023-08-15 13:18:48
+Ghast,Undead,13,Rank 0,13d2+3,25.35,26.12,25.38,2023-08-15 13:18:48
+Pit Fiend,Demonic,13,Rank 0,13d2+2,26.99,25.92,26.39,2023-08-15 13:18:48
+Prince of Fear,Devilkin,10,Rank 0,10d2+2,20.27,19.91,20.79,2023-08-15 13:18:48
+Ghast,Undead,10,Rank 4,10d10,96.47,96.23,100.75,2023-08-15 13:18:48
+Imp,Demonic,1,Rank 3,1d8+2,4.55,8.12,9.43,2023-08-15 13:18:48
+Efreeti,Elemental,9,Rank 2,9d6+3,52.24,55.34,54.56,2023-08-15 13:18:48
+Faerie Dragon,Dragon,8,Rank 0,8d2+2,16.5,16.09,15.57,2023-08-15 13:18:48
+Pit Lord,Devilkin,1,Rank 0,1d2+3,1.48,2.56,1.89,2023-08-15 13:18:48
+Lich King,Undead,4,Rank 3,4d8+1,34.62,30.81,32.4,2023-08-15 13:18:48
+Night Hag,Demonic,13,Rank 0,13d2+3,26.11,25.55,25.08,2023-08-15 13:18:48
+Djinni,Elemental,12,Rank 3,12d8,94.0,93.61,95.67,2023-08-15 13:18:48
+Lich King,Undead,8,Rank 2,8d6+2,46.02,47.81,46.05,2023-08-15 13:18:48
+Hook Horror,Demonic,16,Rank 0,16d2+1,31.97,31.87,32.47,2023-08-15 13:18:48
+Djinni,Elemental,9,Rank 0,9d2,17.69,17.61,18.97,2023-08-15 13:18:48
+Red Dragon,Dragon,3,Rank 1,3d4+1,11.97,13.63,11.82,2023-08-15 13:18:48
+Night Hag,Demonic,1,Rank 4,1d10+1,14.1,12.96,8.77,2023-08-15 13:18:48
+Magma Devil,Devilkin,2,Rank 5,2d12,22.38,29.65,26.16,2023-08-15 13:18:48
+Faerie Dragon,Dragon,19,Rank 0,19d2+3,38.13,37.25,38.82,2023-08-15 13:18:48
+Imp,Demonic,8,Rank 3,8d8,66.65,67.57,61.37,2023-08-15 13:18:48
+Pit Lord,Devilkin,7,Rank 0,7d2+1,14.08,13.37,13.52,2023-08-15 13:18:48
+Wight,Undead,13,Rank 2,13d6+1,75.37,76.63,75.86,2023-08-15 13:18:48
+Night Hag,Demonic,4,Rank 0,4d2+1,8.09,7.8,8.54,2023-08-15 13:18:48
+Steam Devil,Devilkin,8,Rank 2,8d6,50.73,48.62,46.77,2023-08-15 13:18:48
+Demilich,Undead,8,Rank 2,8d6+2,50.24,45.79,49.36,2023-08-15 13:18:48
+Imp,Demonic,6,Rank 5,6d12,68.69,76.35,71.82,2023-08-15 13:18:48
+Efreeti,Elemental,6,Rank 0,6d2+5,12.18,12.59,12.02,2023-08-15 13:18:48
+Hook Horror,Demonic,12,Rank 1,12d4+1,48.57,47.24,49.53,2023-08-15 13:18:48
+Goblin Guard,Devilkin,5,Rank 2,5d6+1,30.79,27.89,30.09,2023-08-15 13:18:48
+Death Knight,Undead,4,Rank 3,4d8+2,29.86,30.82,29.5,2023-08-15 13:18:48
+Imp,Demonic,3,Rank 1,3d4,11.93,11.83,11.28,2023-08-15 13:18:48
+Kobold Archer,Devilkin,4,Rank 2,4d6+5,23.55,22.53,25.77,2023-08-15 13:18:48
+Lich King,Undead,5,Rank 5,5d12+4,63.34,58.73,58.63,2023-08-15 13:18:48
+Hook Horror,Demonic,10,Rank 0,10d2+2,20.84,19.25,20.5,2023-08-15 13:18:48
+Goblin Knight,Devilkin,3,Rank 4,3d10+3,26.6,30.99,30.39,2023-08-15 13:18:48
+Demilich,Undead,4,Rank 0,4d2+3,7.59,7.51,7.52,2023-08-15 13:18:48
+White Faerie,Fey,13,Rank 3,13d8+4,101.67,105.15,101.89,2023-08-15 13:18:48
+Spore Devil,Devilkin,3,Rank 3,3d8+3,22.52,24.66,25.04,2023-08-15 13:18:48
+Wraith,Undead,4,Rank 3,4d8+1,29.66,31.23,34.46,2023-08-15 13:18:48
+Pseudodragon,Dragon,4,Rank 0,4d2,8.18,8.01,7.33,2023-08-15 13:18:48
+Flame Spirit,Fey,18,Rank 3,18d8+2,143.33,144.12,147.34,2023-08-15 13:18:48
+Death Knight,Undead,16,Rank 2,16d6+2,95.29,96.89,97.76,2023-08-15 13:18:48
+Balor,Demonic,10,Rank 3,10d8+2,81.84,77.92,77.41,2023-08-15 13:18:48
+Succubus,Devilkin,6,Rank 0,6d2+1,12.57,11.82,12.33,2023-08-15 13:18:48
+Ice Mephit,Elemental,3,Rank 3,3d8+1,25.53,26.52,23.5,2023-08-15 13:18:48
+Ghast,Undead,2,Rank 3,2d8+3,14.74,16.98,16.51,2023-08-15 13:18:48
+Hook Horror,Demonic,5,Rank 3,5d8+3,39.91,40.13,42.02,2023-08-15 13:18:48
+Prince of Fear,Devilkin,7,Rank 0,7d2+2,14.25,14.12,14.48,2023-08-15 13:18:48
+Wyvern,Dragon,6,Rank 0,6d2+4,12.42,12.29,12.1,2023-08-15 13:18:48
+Lightning Archfey,Fey,7,Rank 4,7d10+2,69.7,67.74,66.98,2023-08-15 13:18:48
+Ghostly Villager,Undead,7,Rank 2,7d6+1,42.55,41.56,40.03,2023-08-15 13:18:48
+Hook Horror,Demonic,3,Rank 0,3d2,6.69,5.78,6.24,2023-08-15 13:18:48
+Kobold Mage,Devilkin,4,Rank 0,4d2+2,8.69,8.37,8.62,2023-08-15 13:18:48
+Djinni,Elemental,16,Rank 5,16d12+1,194.31,189.32,194.09,2023-08-15 13:18:48
+Lich,Undead,5,Rank 1,5d4+2,18.9,20.54,19.96,2023-08-15 13:18:48
+Prismatic Drake,Dragon,13,Rank 1,13d4+5,51.29,51.35,52.41,2023-08-15 13:18:48
+Magma Spirit,Fey,3,Rank 1,3d4+1,11.99,13.64,11.44,2023-08-15 13:18:48
+Ice Mephit,Elemental,4,Rank 0,4d2,7.26,7.47,8.09,2023-08-15 13:18:48
+Ghoul,Undead,5,Rank 3,5d8+1,36.64,42.86,43.53,2023-08-15 13:18:48
+Balor,Demonic,2,Rank 0,2d2+3,4.71,3.36,3.72,2023-08-15 13:18:48
+Kobold Guard,Devilkin,7,Rank 1,7d4,27.42,28.12,27.0,2023-08-15 13:18:48
+Djinni,Elemental,12,Rank 4,12d10+2,115.23,117.5,118.14,2023-08-15 13:18:48
+Wyvern,Dragon,8,Rank 2,8d6+2,48.85,48.15,46.65,2023-08-15 13:18:48
+Pit Lord,Devilkin,15,Rank 4,15d10,152.02,148.19,148.53,2023-08-15 13:18:48
+Wraith,Undead,15,Rank 3,15d8+1,117.04,119.95,117.7,2023-08-15 13:18:48
+Faerie Dragon,Dragon,10,Rank 0,10d2,20.79,20.56,19.47,2023-08-15 13:18:48
+Brass Archfey,Fey,2,Rank 0,2d2+4,3.92,3.02,3.63,2023-08-15 13:18:48
+Pit Lord,Devilkin,2,Rank 1,2d4+4,7.41,6.18,7.16,2023-08-15 13:18:48
+Lightning Elemental,Elemental,5,Rank 4,5d10+5,49.25,53.2,52.39,2023-08-15 13:18:48
+Platinum Drake,Dragon,4,Rank 0,4d2+3,7.79,7.3,8.95,2023-08-15 13:18:48
+Shadow Spirit,Fey,18,Rank 0,18d2+2,35.99,35.81,35.57,2023-08-15 13:18:48
+Smoke Elemental,Elemental,12,Rank 2,12d6+3,70.92,69.69,72.6,2023-08-15 13:18:48
+Faerie Dragon,Dragon,3,Rank 4,3d10+2,29.94,33.14,25.65,2023-08-15 13:18:48
+Kobold Archer,Devilkin,14,Rank 0,14d2+3,28.33,28.99,28.47,2023-08-15 13:18:48
+Death Knight,Undead,4,Rank 0,4d2+1,8.89,8.29,7.19,2023-08-15 13:18:48
+Quasit,Demonic,2,Rank 0,2d2,3.34,4.17,4.16,2023-08-15 13:18:48
+Goblin Mage,Devilkin,1,Rank 5,1d12+1,9.83,7.41,9.44,2023-08-15 13:18:48
+Pseudodragon,Dragon,7,Rank 2,7d6+3,39.2,40.51,42.7,2023-08-15 13:18:48
+Goblin Guard,Devilkin,13,Rank 1,13d4+3,52.61,51.47,53.32,2023-08-15 13:18:48
+Revenant,Undead,13,Rank 1,13d4,51.47,52.1,50.19,2023-08-15 13:18:48
+Quasit,Demonic,3,Rank 2,3d6,18.54,18.58,17.47,2023-08-15 13:18:48
+Lightning Devil,Devilkin,2,Rank 4,2d10,16.5,18.06,24.33,2023-08-15 13:18:48
+Lich,Undead,9,Rank 0,9d2+1,17.55,17.21,17.93,2023-08-15 13:18:48
+Wyvern,Dragon,3,Rank 0,3d2+3,6.13,6.77,5.1,2023-08-15 13:18:48
+Copper Faerie,Fey,6,Rank 3,6d8+4,49.85,47.44,46.35,2023-08-15 13:18:48
+Djinni,Elemental,4,Rank 1,4d4+4,15.24,15.76,16.93,2023-08-15 13:18:48
+Wyvern,Dragon,12,Rank 0,12d2+1,23.87,23.11,24.3,2023-08-15 13:18:48
+Ruby Faerie,Fey,7,Rank 2,7d6,44.18,40.7,44.68,2023-08-15 13:18:48
+Efreeti,Elemental,8,Rank 1,8d4+2,32.17,31.13,30.43,2023-08-15 13:18:48
+Wyvern,Dragon,12,Rank 2,12d6,74.09,73.25,70.81,2023-08-15 13:18:48
+Succubus,Devilkin,12,Rank 0,12d2+4,23.87,24.58,23.23,2023-08-15 13:18:48
+Banshee,Undead,6,Rank 0,6d2+1,12.39,12.89,11.85,2023-08-15 13:18:48
+Onyx Demon,Demonic,9,Rank 3,9d8,72.87,71.46,70.88,2023-08-15 13:18:48
+Kobold Villager,Devilkin,8,Rank 0,8d2+4,16.76,16.01,15.48,2023-08-15 13:18:48
+Djinni,Elemental,5,Rank 3,5d8+4,41.95,43.27,36.87,2023-08-15 13:18:48
+Quasit,Demonic,2,Rank 0,2d2+2,4.71,4.62,3.6,2023-08-15 13:18:48
+Magma Mephit,Elemental,12,Rank 1,12d4,46.39,48.19,47.5,2023-08-15 13:18:48
+Sapphire Drake,Dragon,9,Rank 3,9d8+2,69.44,74.87,69.61,2023-08-15 13:18:48
+Night Hag,Demonic,5,Rank 0,5d2+1,9.57,10.36,10.13,2023-08-15 13:18:48
+Smoke Spirit,Fey,7,Rank 3,7d8+3,53.15,52.23,55.66,2023-08-15 13:18:48
+Lich King,Undead,5,Rank 1,5d4,21.23,20.67,19.95,2023-08-15 13:18:48
+Hell Hound,Demonic,12,Rank 0,12d2+2,24.73,23.17,24.98,2023-08-15 13:18:48
+Prince of Fear,Devilkin,2,Rank 1,2d4+5,6.91,6.81,8.08,2023-08-15 13:18:48
+Black Wyrmling,Dragon,9,Rank 3,9d8+1,72.68,73.26,72.66,2023-08-15 13:18:48
+Brass Faerie,Fey,16,Rank 1,16d4+5,64.97,64.83,64.39,2023-08-15 13:18:48
+Lightning Devil,Devilkin,9,Rank 3,9d8,70.32,71.07,71.2,2023-08-15 13:18:48
+Ghostly Mage,Undead,10,Rank 4,10d10,103.71,101.28,97.49,2023-08-15 13:18:48
+Hell Hound,Demonic,5,Rank 0,5d2+3,9.39,10.74,9.71,2023-08-15 13:18:48
+Prince of Fear,Devilkin,6,Rank 1,6d4+1,24.98,22.68,24.82,2023-08-15 13:18:48
+Demilich,Undead,4,Rank 0,4d2,8.93,8.26,8.15,2023-08-15 13:18:48
+Hell Hound,Demonic,4,Rank 1,4d4+3,16.2,17.17,15.2,2023-08-15 13:18:48
+Succubus,Devilkin,7,Rank 1,7d4+2,27.56,27.83,28.2,2023-08-15 13:18:48
+Lich,Undead,2,Rank 2,2d6,9.88,13.66,10.73,2023-08-15 13:18:48
+Silver Dragon,Dragon,12,Rank 0,12d2+1,24.42,24.44,23.99,2023-08-15 13:18:48
+Night Hag,Demonic,3,Rank 2,3d6+3,15.73,16.07,18.01,2023-08-15 13:18:48
+Prince of Fear,Devilkin,14,Rank 0,14d2+2,27.72,28.65,28.66,2023-08-15 13:18:48
+Poltergeist,Undead,4,Rank 4,4d10+1,42.13,42.38,42.86,2023-08-15 13:18:48
+Night Hag,Demonic,7,Rank 1,7d4+3,29.87,28.62,28.22,2023-08-15 13:18:48
+Prince of Fear,Devilkin,11,Rank 1,11d4+1,43.76,42.49,43.73,2023-08-15 13:18:48
+Mummy Lord,Undead,5,Rank 0,5d2+2,10.8,10.18,10.26,2023-08-15 13:18:48
+Shadow Archfey,Fey,11,Rank 4,11d10+2,111.7,106.36,110.36,2023-08-15 13:18:48
+Wraith,Undead,2,Rank 4,2d10+3,24.68,23.05,18.19,2023-08-15 13:18:48
+Imp,Demonic,10,Rank 2,10d6,62.77,59.93,58.2,2023-08-15 13:18:48
+Goblin Guard,Devilkin,9,Rank 2,9d6+1,53.49,55.52,52.93,2023-08-15 13:18:48
+Dracolich,Undead,6,Rank 1,6d4+3,24.5,22.74,25.65,2023-08-15 13:18:48
+Bronze Wyrmling,Dragon,7,Rank 1,7d4+3,27.92,27.12,27.69,2023-08-15 13:18:48
+Ice Spirit,Fey,17,Rank 0,17d2,34.37,33.48,33.71,2023-08-15 13:18:48
+Demilich,Undead,11,Rank 3,11d8,87.59,86.75,87.26,2023-08-15 13:18:48
+Emerald Archfey,Fey,12,Rank 1,12d4+3,48.3,49.48,47.46,2023-08-15 13:18:48
+Efreeti,Elemental,2,Rank 0,2d2,3.71,4.85,3.86,2023-08-15 13:18:48
+Diamond Dragon,Dragon,2,Rank 2,2d6+3,12.93,12.82,13.6,2023-08-15 13:18:48
+Prince of Fear,Devilkin,11,Rank 2,11d6+2,63.86,64.51,65.29,2023-08-15 13:18:48
+Demilich,Undead,14,Rank 0,14d2+4,28.45,27.78,27.59,2023-08-15 13:18:48
+Platinum Drake,Dragon,1,Rank 1,1d4,3.22,4.6,4.78,2023-08-15 13:18:48
+Imp,Demonic,13,Rank 5,13d12+1,152.17,151.5,152.3,2023-08-15 13:18:48
+Prince of Fear,Devilkin,13,Rank 2,13d6,80.07,78.64,77.95,2023-08-15 13:18:48
+Mummy Lord,Undead,12,Rank 5,12d12+2,148.88,142.27,144.45,2023-08-15 13:18:48
+Sapphire Dragon,Dragon,10,Rank 1,10d4+2,41.64,40.32,39.25,2023-08-15 13:18:48
+Prismatic Faerie,Fey,13,Rank 3,13d8+3,104.78,105.86,103.04,2023-08-15 13:18:48
+Djinni,Elemental,2,Rank 0,2d2+1,4.05,3.77,4.09,2023-08-15 13:18:48
+Red Dragon,Dragon,12,Rank 5,12d12,140.39,146.52,145.51,2023-08-15 13:18:48
+Bronze Faerie,Fey,7,Rank 0,7d2+4,13.31,14.01,13.41,2023-08-15 13:18:48
+Mud Mephit,Elemental,1,Rank 1,1d4+3,3.64,4.32,2.58,2023-08-15 13:18:48
+Diamond Dragon,Dragon,3,Rank 1,3d4+1,12.58,12.81,11.97,2023-08-15 13:18:48
+Spore Archfey,Fey,5,Rank 3,5d8+5,42.44,39.26,39.02,2023-08-15 13:18:48
+Dust Mephit,Elemental,3,Rank 2,3d6+4,20.91,16.56,20.14,2023-08-15 13:18:48
+Ghostly Archer,Undead,13,Rank 1,13d4+2,51.12,51.29,52.8,2023-08-15 13:18:48
+Balor,Demonic,10,Rank 0,10d2+1,20.83,20.55,19.95,2023-08-15 13:18:48
+Ruby Faerie,Fey,14,Rank 1,14d4+2,56.32,56.12,54.41,2023-08-15 13:18:48
+Mud Mephit,Elemental,3,Rank 4,3d10,26.61,30.63,30.13,2023-08-15 13:18:48
+Mummy,Undead,12,Rank 3,12d8,97.33,95.25,96.13,2023-08-15 13:18:48
+Nightmare,Demonic,11,Rank 2,11d6+2,63.62,68.9,67.16,2023-08-15 13:18:48
+White Faerie,Fey,5,Rank 3,5d8+1,36.36,36.97,36.76,2023-08-15 13:18:48
+Djinni,Elemental,10,Rank 4,10d10+3,99.12,99.94,103.61,2023-08-15 13:18:48
+Quasit,Demonic,10,Rank 2,10d6,59.67,61.06,57.25,2023-08-15 13:18:48
+Spore Elemental,Elemental,16,Rank 0,16d2+3,31.31,32.57,32.53,2023-08-15 13:18:48
+Faerie Dragon,Dragon,3,Rank 0,3d2+2,6.03,6.01,5.98,2023-08-15 13:18:48
+Black Archfey,Fey,5,Rank 1,5d4,20.35,20.47,18.44,2023-08-15 13:18:48
+Efreeti,Elemental,1,Rank 1,1d4+3,2.48,4.18,3.88,2023-08-15 13:18:48
+Nightmare,Demonic,16,Rank 3,16d8+1,128.63,131.39,130.43,2023-08-15 13:18:48
+Shadow Spirit,Fey,13,Rank 0,13d2+3,26.78,26.05,25.66,2023-08-15 13:18:48
+Wraith,Undead,16,Rank 0,16d2+5,32.82,31.51,31.69,2023-08-15 13:18:48
+Nightmare,Demonic,9,Rank 1,9d4+3,34.19,37.01,34.64,2023-08-15 13:18:48
+Prince of Fear,Devilkin,14,Rank 3,14d8,115.79,113.0,112.91,2023-08-15 13:18:48
+Djinni,Elemental,6,Rank 3,6d8+2,48.57,48.46,50.81,2023-08-15 13:18:48
+Ghoul,Undead,3,Rank 0,3d2+1,6.13,5.43,6.59,2023-08-15 13:18:48
+Ice Spirit,Fey,6,Rank 2,6d6+2,35.82,38.15,35.33,2023-08-15 13:18:48
+Dracolich,Undead,4,Rank 0,4d2,8.85,8.78,8.6,2023-08-15 13:18:48
+Ruby Drake,Dragon,3,Rank 0,3d2+2,5.85,6.08,5.61,2023-08-15 13:18:48
+Night Hag,Demonic,4,Rank 1,4d4,15.99,15.63,14.85,2023-08-15 13:18:48
+Kobold Mage,Devilkin,7,Rank 0,7d2+5,14.64,14.0,14.5,2023-08-15 13:18:48
+Dracolich,Undead,11,Rank 2,11d6+3,66.37,65.77,67.54,2023-08-15 13:18:48
+Nightmare,Demonic,11,Rank 3,11d8,87.18,85.91,85.17,2023-08-15 13:18:48
+Succubus,Devilkin,7,Rank 3,7d8+2,55.54,52.19,57.99,2023-08-15 13:18:48
+Zombie Knight,Undead,8,Rank 0,8d2+3,15.11,15.45,16.62,2023-08-15 13:18:48
+Night Hag,Demonic,7,Rank 4,7d10+1,72.48,68.12,66.32,2023-08-15 13:18:48
+Efreeti,Elemental,11,Rank 2,11d6+4,65.28,64.3,63.24,2023-08-15 13:18:48
+Revenant,Undead,8,Rank 1,8d4+1,30.46,31.2,32.17,2023-08-15 13:18:48
+Platinum Faerie,Fey,15,Rank 5,15d12+1,184.66,182.16,176.2,2023-08-15 13:18:48
+Spore Mephit,Elemental,3,Rank 0,3d2,5.83,5.9,6.99,2023-08-15 13:18:48
+Wyvern,Dragon,4,Rank 1,4d4,14.58,16.13,15.16,2023-08-15 13:18:48
+Quasit,Demonic,8,Rank 2,8d6+3,47.82,47.98,49.33,2023-08-15 13:18:48
+Succubus,Devilkin,15,Rank 2,15d6+1,92.65,91.68,92.68,2023-08-15 13:18:48
+Pseudodragon,Dragon,4,Rank 1,4d4,15.19,17.45,15.26,2023-08-15 13:18:48
+Sapphire Faerie,Fey,5,Rank 1,5d4,18.71,20.14,18.42,2023-08-15 13:18:48
+Djinni,Elemental,10,Rank 4,10d10,98.87,100.26,103.51,2023-08-15 13:18:48
+Revenant,Undead,9,Rank 4,9d10,86.97,92.32,87.34,2023-08-15 13:18:48
+Nightmare,Demonic,2,Rank 2,2d6+2,12.55,12.18,10.12,2023-08-15 13:18:48
+Shadow Devil,Devilkin,6,Rank 1,6d4,23.32,23.58,25.18,2023-08-15 13:18:48
+Vampire,Undead,4,Rank 1,4d4+3,15.6,15.76,15.29,2023-08-15 13:18:48
+Pit Fiend,Demonic,6,Rank 1,6d4,24.77,25.62,25.3,2023-08-15 13:18:48
+Succubus,Devilkin,4,Rank 1,4d4,14.7,14.27,15.42,2023-08-15 13:18:48
+Wraith,Undead,14,Rank 2,14d6+1,84.54,84.23,81.95,2023-08-15 13:18:48
+Night Hag,Demonic,13,Rank 3,13d8,107.91,106.39,101.9,2023-08-15 13:18:48
+Dust Spirit,Fey,4,Rank 2,4d6+1,23.56,22.46,22.73,2023-08-15 13:18:48
+Efreeti,Elemental,3,Rank 0,3d2+2,6.29,6.2,6.24,2023-08-15 13:18:48
+Brass Drake,Dragon,9,Rank 0,9d2+3,18.06,18.14,17.4,2023-08-15 13:18:48
+Red Faerie,Fey,8,Rank 0,8d2,16.34,16.22,15.4,2023-08-15 13:18:48
+Revenant,Undead,2,Rank 1,2d4+5,6.09,8.37,6.89,2023-08-15 13:18:48
+Balor,Demonic,15,Rank 5,15d12+3,180.74,180.23,175.45,2023-08-15 13:18:48
+Goblin Villager,Devilkin,9,Rank 0,9d2+1,18.9,18.46,17.14,2023-08-15 13:18:48
+Djinni,Elemental,8,Rank 5,8d12+1,94.21,96.87,95.46,2023-08-15 13:18:48
+Bronze Dragon,Dragon,4,Rank 2,4d6+2,22.98,22.03,26.57,2023-08-15 13:18:48
+Blue Faerie,Fey,16,Rank 3,16d8,124.58,128.61,127.58,2023-08-15 13:18:48
+Prince of Fear,Devilkin,4,Rank 0,4d2+1,8.24,8.39,7.18,2023-08-15 13:18:48
+Mummy Lord,Undead,12,Rank 0,12d2+4,24.92,23.96,23.7,2023-08-15 13:18:48
+Hell Hound,Demonic,11,Rank 1,11d4+2,44.27,44.06,42.68,2023-08-15 13:18:48
+Pit Lord,Devilkin,10,Rank 1,10d4+2,41.39,41.64,40.52,2023-08-15 13:18:48
+Poltergeist,Undead,17,Rank 3,17d8+2,138.39,138.39,133.61,2023-08-15 13:18:48
+Silver Wyrmling,Dragon,2,Rank 0,2d2+4,4.6,3.55,3.75,2023-08-15 13:18:48
+Ice Spirit,Fey,2,Rank 0,2d2+1,3.34,4.03,3.14,2023-08-15 13:18:48
+Mud Elemental,Elemental,5,Rank 4,5d10+1,50.98,49.59,52.49,2023-08-15 13:18:48
+Faerie Dragon,Dragon,4,Rank 1,4d4,17.89,16.3,15.64,2023-08-15 13:18:48
+Shadow Spirit,Fey,14,Rank 1,14d4+3,56.8,54.62,55.94,2023-08-15 13:18:48
+Ice Mephit,Elemental,7,Rank 1,7d4+2,27.89,27.96,26.67,2023-08-15 13:18:48
+Prismatic Wyrmling,Dragon,9,Rank 1,9d4+3,35.0,34.4,34.22,2023-08-15 13:18:48
+Lightning Spirit,Fey,3,Rank 0,3d2+1,6.99,5.78,5.8,2023-08-15 13:18:48
+Ghoul,Undead,6,Rank 2,6d6,35.13,33.95,37.57,2023-08-15 13:18:48
+Hook Horror,Demonic,16,Rank 2,16d6,97.2,97.86,97.57,2023-08-15 13:18:48
+Magma Devil,Devilkin,13,Rank 1,13d4+1,52.31,51.84,51.25,2023-08-15 13:18:48
+Faerie Dragon,Dragon,7,Rank 1,7d4+1,28.94,28.74,27.47,2023-08-15 13:18:48
+Nightmare,Demonic,10,Rank 1,10d4+1,41.91,38.85,39.46,2023-08-15 13:18:48
+Djinni,Elemental,18,Rank 3,18d8+4,140.39,146.77,146.12,2023-08-15 13:18:48
+Mummy,Undead,5,Rank 2,5d6+4,30.9,28.11,30.54,2023-08-15 13:18:48
+Pit Fiend,Demonic,3,Rank 0,3d2+3,5.83,5.63,6.85,2023-08-15 13:18:48
+Smoke Archfey,Fey,9,Rank 1,9d4+3,36.22,34.16,35.23,2023-08-15 13:18:48
+Dracolich,Undead,1,Rank 2,1d6+3,6.01,8.81,8.19,2023-08-15 13:18:48
+Balor,Demonic,7,Rank 4,7d10+5,66.73,66.44,70.43,2023-08-15 13:18:48
+Pit Lord,Devilkin,6,Rank 2,6d6+1,36.99,38.49,36.91,2023-08-15 13:18:48
+Ghast,Undead,8,Rank 1,8d4+1,31.95,32.42,30.59,2023-08-15 13:18:48
+Red Archfey,Fey,10,Rank 3,10d8+2,80.06,82.2,82.82,2023-08-15 13:18:48
+Lightning Elemental,Elemental,3,Rank 0,3d2,5.18,6.31,5.78,2023-08-15 13:18:48
+Hook Horror,Demonic,12,Rank 1,12d4+2,49.05,46.48,47.35,2023-08-15 13:18:48
+Shadow Archfey,Fey,3,Rank 0,3d2+2,6.45,6.17,5.88,2023-08-15 13:18:48
+Vampire,Undead,6,Rank 1,6d4+2,23.27,22.72,22.29,2023-08-15 13:18:48
+Bronze Faerie,Fey,11,Rank 2,11d6+5,67.88,68.56,67.0,2023-08-15 13:18:48
+Wight,Undead,8,Rank 3,8d8+1,66.17,63.2,65.66,2023-08-15 13:18:48
+Balor,Demonic,13,Rank 1,13d4+3,52.6,52.52,53.82,2023-08-15 13:18:48
+Kobold Mage,Devilkin,10,Rank 0,10d2+5,19.15,19.34,19.33,2023-08-15 13:18:48
+Zombie Knight,Undead,2,Rank 1,2d4+1,9.22,8.88,8.04,2023-08-15 13:18:48
+Brass Wyrmling,Dragon,2,Rank 2,2d6+2,13.95,13.98,14.32,2023-08-15 13:18:48
+Night Hag,Demonic,6,Rank 0,6d2+3,12.05,12.14,11.94,2023-08-15 13:18:48
+Smoke Mephit,Elemental,19,Rank 1,19d4+3,76.17,74.94,75.45,2023-08-15 13:18:48
+Hook Horror,Demonic,16,Rank 1,16d4+4,65.87,62.53,64.46,2023-08-15 13:18:48
+Goblin Villager,Devilkin,11,Rank 1,11d4+4,43.73,43.85,44.05,2023-08-15 13:18:48
+Lich King,Undead,4,Rank 4,4d10,38.43,40.11,44.04,2023-08-15 13:18:48
+Onyx Wyrmling,Dragon,14,Rank 4,14d10,140.82,140.54,141.74,2023-08-15 13:18:48
+Lightning Spirit,Fey,4,Rank 1,4d4,15.72,15.07,16.64,2023-08-15 13:18:48
+Djinni,Elemental,7,Rank 5,7d12,79.52,78.21,82.72,2023-08-15 13:18:48
+Faerie Dragon,Dragon,9,Rank 2,9d6+2,53.69,54.5,52.71,2023-08-15 13:18:48
+Balor,Demonic,20,Rank 0,20d2+1,39.13,39.02,39.35,2023-08-15 13:18:48
+Goblin Archer,Devilkin,8,Rank 2,8d6,45.25,47.14,48.79,2023-08-15 13:18:48
+Wyvern,Dragon,3,Rank 0,3d2,6.57,6.23,6.49,2023-08-15 13:18:48
+Sapphire Faerie,Fey,7,Rank 1,7d4+2,27.51,28.64,29.09,2023-08-15 13:18:48
+Shadow Mephit,Elemental,6,Rank 3,6d8+1,45.14,47.58,49.43,2023-08-15 13:18:48
+Diamond Drake,Dragon,16,Rank 1,16d4+3,62.94,62.65,64.51,2023-08-15 13:18:48
+Smoke Spirit,Fey,3,Rank 1,3d4+2,12.42,11.04,11.27,2023-08-15 13:18:48
+Efreeti,Elemental,1,Rank 0,1d2+2,2.22,1.22,1.65,2023-08-15 13:18:48
+Wyvern,Dragon,11,Rank 0,11d2+2,22.39,22.06,22.93,2023-08-15 13:18:48
+Pit Lord,Devilkin,3,Rank 4,3d10+1,33.84,27.57,31.8,2023-08-15 13:18:48
+Zombie Mage,Undead,1,Rank 0,1d2,2.7,1.42,1.7,2023-08-15 13:18:48
+Imp,Demonic,3,Rank 0,3d2+2,5.79,6.96,6.22,2023-08-15 13:18:48
+Efreeti,Elemental,5,Rank 0,5d2+1,10.25,10.0,9.42,2023-08-15 13:18:48
+Mummy Lord,Undead,2,Rank 1,2d4,8.7,6.29,8.35,2023-08-15 13:18:48
+Onyx Demon,Demonic,13,Rank 4,13d10,130.62,131.73,127.35,2023-08-15 13:18:48
+Mud Elemental,Elemental,15,Rank 3,15d8+1,119.66,123.77,122.58,2023-08-15 13:18:48
+Pseudodragon,Dragon,7,Rank 1,7d4+2,27.17,28.28,28.14,2023-08-15 13:18:48
+Black Faerie,Fey,5,Rank 1,5d4+3,18.2,21.59,21.65,2023-08-15 13:18:48
+Efreeti,Elemental,14,Rank 1,14d4+1,56.2,55.91,54.8,2023-08-15 13:18:48
+Pseudodragon,Dragon,3,Rank 0,3d2+1,6.72,5.79,6.24,2023-08-15 13:18:48
+Blue Faerie,Fey,9,Rank 0,9d2,17.4,18.05,17.27,2023-08-15 13:18:48
+Vampire,Undead,4,Rank 0,4d2+2,8.23,7.16,7.01,2023-08-15 13:18:48
+Faerie Dragon,Dragon,5,Rank 2,5d6+3,30.53,31.38,28.5,2023-08-15 13:18:48
+Pit Fiend,Demonic,4,Rank 4,4d10+4,38.8,42.45,41.85,2023-08-15 13:18:48
+White Archfey,Fey,15,Rank 0,15d2,29.65,30.55,29.42,2023-08-15 13:18:48
+Djinni,Elemental,5,Rank 4,5d10+4,49.57,51.7,51.67,2023-08-15 13:18:48
+Pseudodragon,Dragon,8,Rank 3,8d8+3,66.83,64.11,66.78,2023-08-15 13:18:48
+Prince of Fear,Devilkin,5,Rank 1,5d4+3,20.6,19.51,20.7,2023-08-15 13:18:48
+Demilich,Undead,2,Rank 4,2d10+4,19.89,15.95,16.49,2023-08-15 13:18:48
+Copper Faerie,Fey,8,Rank 0,8d2+3,16.32,16.22,16.68,2023-08-15 13:18:48
+Mummy Lord,Undead,11,Rank 0,11d2+3,23.0,21.91,21.67,2023-08-15 13:18:48
+Diamond Dragon,Dragon,17,Rank 0,17d2,34.94,33.25,33.36,2023-08-15 13:18:48
+Shadow Archfey,Fey,17,Rank 0,17d2+4,34.49,34.09,33.01,2023-08-15 13:18:48
+Efreeti,Elemental,10,Rank 1,10d4+3,39.55,38.14,38.97,2023-08-15 13:18:48
+Onyx Dragon,Dragon,15,Rank 0,15d2+1,29.44,29.62,29.36,2023-08-15 13:18:48
+Imp,Demonic,4,Rank 1,4d4+1,16.21,17.46,16.24,2023-08-15 13:18:48
+Prince of Fear,Devilkin,2,Rank 1,2d4+2,6.2,8.12,7.33,2023-08-15 13:18:48
+Faerie Dragon,Dragon,20,Rank 3,20d8,158.8,161.66,160.05,2023-08-15 13:18:48
+Nightmare,Demonic,4,Rank 2,4d6+2,23.51,21.7,24.45,2023-08-15 13:18:48
+Smoke Devil,Devilkin,3,Rank 0,3d2+5,5.44,6.79,5.16,2023-08-15 13:18:48
+Faerie Dragon,Dragon,5,Rank 4,5d10+1,52.76,45.31,52.74,2023-08-15 13:18:48
+Kobold Guard,Devilkin,10,Rank 2,10d6+4,60.93,61.24,60.65,2023-08-15 13:18:48
+Wraith,Undead,11,Rank 1,11d4+1,44.62,43.82,45.83,2023-08-15 13:18:48
+Wyvern,Dragon,2,Rank 1,2d4+3,8.68,8.06,9.64,2023-08-15 13:18:48
+Balor,Demonic,6,Rank 4,6d10+2,61.47,60.97,61.69,2023-08-15 13:18:48
+Pit Lord,Devilkin,4,Rank 0,4d2,7.08,8.36,8.23,2023-08-15 13:18:48
+Efreeti,Elemental,6,Rank 1,6d4,24.98,24.54,23.87,2023-08-15 13:18:48
+Death Knight,Undead,3,Rank 3,3d8+3,24.54,21.36,23.03,2023-08-15 13:18:48
+Imp,Demonic,11,Rank 2,11d6+4,65.13,67.65,66.23,2023-08-15 13:18:48
+Black Archfey,Fey,1,Rank 2,1d6+1,5.43,6.88,7.27,2023-08-15 13:18:48
+Efreeti,Elemental,3,Rank 2,3d6+4,18.59,18.23,19.77,2023-08-15 13:18:48
+Brass Wyrmling,Dragon,3,Rank 0,3d2+1,5.47,6.01,6.69,2023-08-15 13:18:48
+Pit Fiend,Demonic,4,Rank 1,4d4+1,16.81,14.06,15.33,2023-08-15 13:18:48
+Efreeti,Elemental,3,Rank 3,3d8,26.57,22.63,23.3,2023-08-15 13:18:48
+Onyx Drake,Dragon,1,Rank 1,1d4+4,4.57,5.33,5.78,2023-08-15 13:18:48
+Mud Spirit,Fey,6,Rank 1,6d4+3,23.71,24.71,23.32,2023-08-15 13:18:48
+Skeletal Archer,Undead,4,Rank 0,4d2+2,8.13,7.37,7.63,2023-08-15 13:18:48
+Faerie Dragon,Dragon,14,Rank 1,14d4+2,55.09,54.64,54.4,2023-08-15 13:18:48
+Goblin Knight,Devilkin,13,Rank 3,13d8+5,101.07,104.05,101.92,2023-08-15 13:18:48
+Revenant,Undead,8,Rank 1,8d4+4,30.4,32.16,31.22,2023-08-15 13:18:48
+Bronze Dragon,Dragon,11,Rank 1,11d4,42.62,43.15,44.51,2023-08-15 13:18:48
+Flame Archfey,Fey,3,Rank 2,3d6+1,19.74,17.72,19.03,2023-08-15 13:18:48
+Wraith,Undead,3,Rank 2,3d6,20.49,20.03,18.07,2023-08-15 13:18:48
+Pit Fiend,Demonic,8,Rank 3,8d8+4,61.18,64.94,64.53,2023-08-15 13:18:48
+Goblin Villager,Devilkin,13,Rank 3,13d8+2,100.25,106.51,101.4,2023-08-15 13:18:48
+Banshee,Undead,10,Rank 1,10d4+2,40.05,40.58,40.82,2023-08-15 13:18:48
+Quasit,Demonic,15,Rank 0,15d2+2,30.49,29.59,30.05,2023-08-15 13:18:48
+Succubus,Devilkin,13,Rank 3,13d8,105.42,101.25,103.84,2023-08-15 13:18:48
+Efreeti,Elemental,15,Rank 0,15d2+4,30.13,29.28,30.51,2023-08-15 13:18:48
+Emerald Drake,Dragon,4,Rank 2,4d6+2,23.53,24.22,23.49,2023-08-15 13:18:48
+Ice Spirit,Fey,3,Rank 0,3d2+1,5.67,5.76,6.09,2023-08-15 13:18:48
+Lightning Elemental,Elemental,2,Rank 0,2d2+1,4.29,4.85,3.91,2023-08-15 13:18:48
+Nightmare,Demonic,17,Rank 0,17d2,33.14,33.46,33.09,2023-08-15 13:18:48
+Green Faerie,Fey,6,Rank 0,6d2+3,12.5,12.61,11.15,2023-08-15 13:18:48
+Wight,Undead,10,Rank 2,10d6+3,59.82,60.53,57.16,2023-08-15 13:18:48
+Hook Horror,Demonic,9,Rank 4,9d10+4,85.19,88.18,90.96,2023-08-15 13:18:48
+Magma Mephit,Elemental,2,Rank 1,2d4+1,8.93,7.14,9.04,2023-08-15 13:18:48
+Pit Fiend,Demonic,18,Rank 0,18d2+1,36.55,36.67,36.85,2023-08-15 13:18:48
+Prince of Fear,Devilkin,7,Rank 3,7d8+1,57.41,52.06,53.19,2023-08-15 13:18:48
+Demilich,Undead,11,Rank 0,11d2+3,21.46,22.48,21.84,2023-08-15 13:18:48
+Gold Wyrmling,Dragon,10,Rank 1,10d4,39.69,39.44,38.6,2023-08-15 13:18:48
+Imp,Demonic,7,Rank 4,7d10+4,73.16,72.93,68.31,2023-08-15 13:18:48
+Smoke Spirit,Fey,7,Rank 1,7d4+2,29.72,28.25,26.85,2023-08-15 13:18:48
+Pit Lord,Devilkin,4,Rank 1,4d4+1,17.92,15.26,14.09,2023-08-15 13:18:48
+Ghast,Undead,9,Rank 1,9d4+3,36.73,34.26,36.03,2023-08-15 13:18:48
+Prismatic Drake,Dragon,8,Rank 0,8d2+2,16.74,16.16,16.07,2023-08-15 13:18:48
+Prince of Fear,Devilkin,11,Rank 2,11d6,65.61,66.99,64.47,2023-08-15 13:18:48
+Poltergeist,Undead,12,Rank 1,12d4,48.28,46.59,46.25,2023-08-15 13:18:48
+Ruby Archfey,Fey,3,Rank 0,3d2+4,5.9,6.02,6.96,2023-08-15 13:18:48
+Ghostly Mage,Undead,7,Rank 0,7d2+1,13.59,14.48,13.15,2023-08-15 13:18:48
+Lightning Archfey,Fey,5,Rank 0,5d2+2,9.35,10.94,9.58,2023-08-15 13:18:48
+Revenant,Undead,9,Rank 3,9d8,71.13,73.25,71.95,2023-08-15 13:18:48
+Pseudodragon,Dragon,13,Rank 1,13d4+3,51.33,52.12,51.24,2023-08-15 13:18:48
+Onyx Faerie,Fey,5,Rank 0,5d2+1,10.94,9.96,9.92,2023-08-15 13:18:48
+Kobold Guard,Devilkin,9,Rank 3,9d8+1,74.05,72.31,74.94,2023-08-15 13:18:48
+Ghoul,Undead,17,Rank 3,17d8+2,134.37,138.39,135.0,2023-08-15 13:18:48
+Imp,Demonic,3,Rank 0,3d2+1,6.24,6.9,6.0,2023-08-15 13:18:48
+Shadow Spirit,Fey,4,Rank 3,4d8+1,32.12,32.99,35.42,2023-08-15 13:18:48
+Prince of Fear,Devilkin,8,Rank 0,8d2+2,15.73,16.66,15.99,2023-08-15 13:18:48
+Black Wyrmling,Dragon,12,Rank 4,12d10+4,115.9,119.83,122.32,2023-08-15 13:18:48
+Goblin Archer,Devilkin,12,Rank 0,12d2+3,24.53,23.45,24.91,2023-08-15 13:18:48
+Lich King,Undead,5,Rank 2,5d6,28.93,27.23,28.48,2023-08-15 13:18:48
+Hell Hound,Demonic,5,Rank 0,5d2+2,9.29,10.03,9.55,2023-08-15 13:18:48
+Ice Mephit,Elemental,8,Rank 2,8d6+4,49.62,47.23,49.16,2023-08-15 13:18:48
+Faerie Dragon,Dragon,5,Rank 0,5d2+2,9.77,10.12,10.83,2023-08-15 13:18:48
+Steam Spirit,Fey,10,Rank 0,10d2+3,20.67,19.78,19.56,2023-08-15 13:18:48
+Lightning Mephit,Elemental,6,Rank 1,6d4+1,25.64,23.88,24.87,2023-08-15 13:18:48
+Quasit,Demonic,7,Rank 3,7d8+1,57.22,59.5,55.58,2023-08-15 13:18:48
+Pit Lord,Devilkin,1,Rank 3,1d8+3,8.37,6.87,7.55,2023-08-15 13:18:48
+Death Knight,Undead,13,Rank 2,13d6+3,77.18,77.08,76.52,2023-08-15 13:18:48
+Imp,Demonic,6,Rank 4,6d10,57.81,60.26,58.08,2023-08-15 13:18:48
+Flame Devil,Devilkin,6,Rank 1,6d4+4,22.62,22.76,22.04,2023-08-15 13:18:48
+Poltergeist,Undead,4,Rank 1,4d4+3,15.94,16.37,16.67,2023-08-15 13:18:48
+Quasit,Demonic,16,Rank 0,16d2+1,32.72,31.17,32.12,2023-08-15 13:18:48
+Ice Elemental,Elemental,17,Rank 0,17d2+2,33.1,33.53,34.13,2023-08-15 13:18:48
+Blue Drake,Dragon,3,Rank 3,3d8+4,27.84,22.04,26.61,2023-08-15 13:18:48
+White Archfey,Fey,11,Rank 0,11d2,21.94,21.38,21.65,2023-08-15 13:18:48
+Djinni,Elemental,13,Rank 1,13d4+3,53.69,53.66,52.79,2023-08-15 13:18:48
+Poltergeist,Undead,7,Rank 1,7d4+1,29.71,27.71,28.11,2023-08-15 13:18:48
+Quasit,Demonic,5,Rank 2,5d6+1,29.83,31.45,30.16,2023-08-15 13:18:48
+Goblin Knight,Devilkin,10,Rank 2,10d6+5,59.91,58.23,57.9,2023-08-15 13:18:48
+Wyvern,Dragon,2,Rank 1,2d4,8.25,7.95,6.83,2023-08-15 13:18:48
+Smoke Spirit,Fey,5,Rank 0,5d2+3,10.44,10.29,10.36,2023-08-15 13:18:48
+Djinni,Elemental,9,Rank 1,9d4+1,35.36,36.26,35.18,2023-08-15 13:18:48
+Faerie Dragon,Dragon,7,Rank 0,7d2+3,13.9,14.78,14.09,2023-08-15 13:18:48
+Lightning Devil,Devilkin,10,Rank 1,10d4,41.97,39.61,40.27,2023-08-15 13:18:48
+Emerald Wyrmling,Dragon,13,Rank 2,13d6+2,77.65,76.24,76.19,2023-08-15 13:18:48
+Dust Spirit,Fey,8,Rank 1,8d4+3,31.08,33.4,31.94,2023-08-15 13:18:48
+Steam Elemental,Elemental,3,Rank 2,3d6+1,16.87,17.29,15.38,2023-08-15 13:18:48
+Zombie Villager,Undead,15,Rank 2,15d6+2,89.05,92.72,88.45,2023-08-15 13:18:48
+Hell Hound,Demonic,4,Rank 1,4d4+1,14.59,15.69,17.48,2023-08-15 13:18:48
+Pit Lord,Devilkin,17,Rank 0,17d2+1,34.66,33.46,33.11,2023-08-15 13:18:48
+Faerie Dragon,Dragon,3,Rank 2,3d6,17.96,19.1,19.6,2023-08-15 13:18:48
+Hell Hound,Demonic,8,Rank 0,8d2+4,15.52,16.93,17.0,2023-08-15 13:18:48
+Succubus,Devilkin,1,Rank 1,1d4,2.38,3.4,3.14,2023-08-15 13:18:48
+Blue Wyrmling,Dragon,4,Rank 0,4d2,8.2,8.07,7.39,2023-08-15 13:18:48
+Goblin Archer,Devilkin,4,Rank 1,4d4+2,14.34,16.86,15.85,2023-08-15 13:18:48
+Djinni,Elemental,4,Rank 5,4d12+1,51.46,52.98,46.17,2023-08-15 13:18:48
+Wyvern,Dragon,14,Rank 0,14d2+3,28.23,28.42,28.05,2023-08-15 13:18:48
+Imp,Demonic,2,Rank 2,2d6+2,11.24,14.67,12.68,2023-08-15 13:18:48
+Flame Mephit,Elemental,18,Rank 0,18d2,36.82,35.41,36.08,2023-08-15 13:18:48
+Pseudodragon,Dragon,8,Rank 3,8d8+3,62.77,61.65,65.45,2023-08-15 13:18:48
+Balor,Demonic,3,Rank 3,3d8+3,25.24,26.24,22.16,2023-08-15 13:18:48
+Prince of Fear,Devilkin,5,Rank 1,5d4+3,20.94,20.55,19.34,2023-08-15 13:18:48
+Efreeti,Elemental,3,Rank 5,3d12,41.63,30.03,33.89,2023-08-15 13:18:48
+Wyvern,Dragon,3,Rank 0,3d2+1,6.86,6.27,6.83,2023-08-15 13:18:48
+White Faerie,Fey,3,Rank 2,3d6+3,20.83,19.97,17.04,2023-08-15 13:18:48
+Smoke Elemental,Elemental,13,Rank 4,13d10+3,125.05,133.89,127.95,2023-08-15 13:18:48
+Prismatic Drake,Dragon,3,Rank 0,3d2+2,6.9,5.42,6.88,2023-08-15 13:18:48
+Lightning Devil,Devilkin,8,Rank 3,8d8+1,64.5,63.86,63.99,2023-08-15 13:18:48
+Revenant,Undead,7,Rank 3,7d8+5,54.58,57.28,53.03,2023-08-15 13:18:48
+Diamond Wyrmling,Dragon,2,Rank 3,2d8+1,18.0,15.06,12.56,2023-08-15 13:18:48
+Flame Spirit,Fey,8,Rank 0,8d2+3,16.94,15.94,15.4,2023-08-15 13:18:48
+Ghostly Knight,Undead,9,Rank 1,9d4,35.18,36.81,36.21,2023-08-15 13:18:48
+Imp,Demonic,13,Rank 0,13d2+3,26.16,26.3,25.47,2023-08-15 13:18:48
+Goblin Villager,Devilkin,5,Rank 3,5d8,39.89,41.36,37.31,2023-08-15 13:18:48
+Lich,Undead,12,Rank 3,12d8+4,93.84,96.78,98.88,2023-08-15 13:18:48
+Quasit,Demonic,1,Rank 1,1d4+4,4.53,4.22,2.46,2023-08-15 13:18:48
+Kobold Mage,Devilkin,3,Rank 1,3d4+1,10.99,11.18,10.01,2023-08-15 13:18:48
+Onyx Dragon,Dragon,3,Rank 1,3d4,13.61,11.45,12.31,2023-08-15 13:18:48
+Sapphire Faerie,Fey,3,Rank 1,3d4+3,13.2,12.84,11.29,2023-08-15 13:18:48
+Zombie Guard,Undead,9,Rank 2,9d6+1,53.28,55.75,54.45,2023-08-15 13:18:48
+Hook Horror,Demonic,8,Rank 0,8d2+1,15.37,16.7,16.2,2023-08-15 13:18:48
+Pit Lord,Devilkin,8,Rank 4,8d10+3,83.75,82.77,77.8,2023-08-15 13:18:48
+Banshee,Undead,15,Rank 2,15d6+3,92.89,88.63,88.84,2023-08-15 13:18:48
+Nightmare,Demonic,12,Rank 1,12d4+1,47.53,47.36,48.16,2023-08-15 13:18:48
+Goblin Archer,Devilkin,2,Rank 3,2d8+1,17.05,12.86,15.09,2023-08-15 13:18:48
+Brass Wyrmling,Dragon,5,Rank 1,5d4+1,19.24,20.05,20.79,2023-08-15 13:18:48
+Silver Faerie,Fey,12,Rank 4,12d10+3,118.42,118.62,117.17,2023-08-15 13:18:48
+Dust Mephit,Elemental,10,Rank 1,10d4+1,40.66,40.72,39.1,2023-08-15 13:18:48
+Faerie Dragon,Dragon,5,Rank 3,5d8,42.52,39.79,38.81,2023-08-15 13:18:48
+Copper Faerie,Fey,11,Rank 0,11d2,21.14,22.92,21.31,2023-08-15 13:18:48
+Banshee,Undead,7,Rank 1,7d4+2,26.86,27.49,28.48,2023-08-15 13:18:48
+Mud Archfey,Fey,9,Rank 3,9d8+5,71.59,72.17,70.98,2023-08-15 13:18:48
+Spore Mephit,Elemental,16,Rank 1,16d4+2,64.44,64.3,65.06,2023-08-15 13:18:48
+Pseudodragon,Dragon,3,Rank 5,3d12,37.14,36.88,32.16,2023-08-15 13:18:48
+Blue Archfey,Fey,3,Rank 1,3d4+2,13.98,11.33,12.83,2023-08-15 13:18:48
+Magma Mephit,Elemental,3,Rank 1,3d4+4,10.56,12.6,12.16,2023-08-15 13:18:48
+Onyx Dragon,Dragon,18,Rank 1,18d4+3,72.18,70.07,72.69,2023-08-15 13:18:48
+Sapphire Faerie,Fey,2,Rank 1,2d4+2,8.77,8.71,6.56,2023-08-15 13:18:48
+Steam Mephit,Elemental,8,Rank 3,8d8+1,63.98,62.48,60.26,2023-08-15 13:18:48
+Copper Dragon,Dragon,6,Rank 0,6d2,11.14,11.39,11.43,2023-08-15 13:18:48
+Goblin Mage,Devilkin,6,Rank 4,6d10+1,61.37,58.99,59.73,2023-08-15 13:18:48
+Banshee,Undead,5,Rank 0,5d2,9.85,10.84,10.3,2023-08-15 13:18:48
+Pit Fiend,Demonic,10,Rank 1,10d4+2,41.42,40.26,39.09,2023-08-15 13:18:48
+Pit Lord,Devilkin,7,Rank 2,7d6,41.46,41.41,42.83,2023-08-15 13:18:48
+Diamond Dragon,Dragon,17,Rank 0,17d2,33.15,33.4,34.28,2023-08-15 13:18:48
+Green Faerie,Fey,9,Rank 0,9d2+3,17.09,17.6,18.27,2023-08-15 13:18:48
+Djinni,Elemental,12,Rank 3,12d8+1,97.07,93.57,95.6,2023-08-15 13:18:48
+Gold Dragon,Dragon,4,Rank 2,4d6+1,24.18,24.88,22.09,2023-08-15 13:18:48
+Shadow Spirit,Fey,6,Rank 3,6d8+2,49.31,51.7,48.44,2023-08-15 13:18:48
+Djinni,Elemental,10,Rank 1,10d4+1,40.78,38.06,39.26,2023-08-15 13:18:48
+Copper Drake,Dragon,6,Rank 4,6d10+2,59.67,61.75,59.93,2023-08-15 13:18:48
+Ice Archfey,Fey,4,Rank 0,4d2+1,7.24,8.75,8.37,2023-08-15 13:18:48
+Pit Lord,Devilkin,6,Rank 2,6d6+4,34.72,37.87,35.8,2023-08-15 13:18:48
+Demilich,Undead,4,Rank 2,4d6+3,22.46,22.46,24.84,2023-08-15 13:18:48
+Night Hag,Demonic,4,Rank 0,4d2,8.0,7.02,8.15,2023-08-15 13:18:48
+Green Faerie,Fey,8,Rank 4,8d10,83.02,76.58,79.35,2023-08-15 13:18:48
+Smoke Mephit,Elemental,9,Rank 1,9d4+1,36.02,34.04,34.29,2023-08-15 13:18:48
+Poltergeist,Undead,11,Rank 2,11d6,64.0,65.47,63.72,2023-08-15 13:18:48
+Nightmare,Demonic,4,Rank 0,4d2+1,7.95,8.55,8.54,2023-08-15 13:18:48
+Platinum Archfey,Fey,3,Rank 2,3d6,18.47,16.85,16.9,2023-08-15 13:18:48
+Djinni,Elemental,13,Rank 2,13d6,78.94,79.73,78.05,2023-08-15 13:18:48
+Pseudodragon,Dragon,11,Rank 4,11d10+1,111.2,113.3,111.73,2023-08-15 13:18:48
+Spore Archfey,Fey,6,Rank 1,6d4+1,25.17,22.1,23.06,2023-08-15 13:18:48
+Djinni,Elemental,1,Rank 0,1d2+2,1.75,2.42,1.89,2023-08-15 13:18:48
+Zombie Guard,Undead,6,Rank 1,6d4+1,24.86,24.06,23.06,2023-08-15 13:18:48
+Quasit,Demonic,3,Rank 1,3d4+4,12.86,13.86,13.67,2023-08-15 13:18:48
+Succubus,Devilkin,10,Rank 2,10d6+2,58.36,62.45,58.69,2023-08-15 13:18:48
+Dracolich,Undead,20,Rank 0,20d2,40.82,39.02,39.66,2023-08-15 13:18:48
+Gold Archfey,Fey,8,Rank 4,8d10,76.98,82.16,80.59,2023-08-15 13:18:48
+Magma Mephit,Elemental,15,Rank 2,15d6+2,87.0,90.65,89.06,2023-08-15 13:18:48
+Night Hag,Demonic,12,Rank 1,12d4+1,49.8,49.21,47.43,2023-08-15 13:18:48
+Pit Lord,Devilkin,10,Rank 2,10d6,60.91,59.6,61.68,2023-08-15 13:18:48
+Poltergeist,Undead,13,Rank 2,13d6+2,79.2,80.73,78.11,2023-08-15 13:18:48
+Imp,Demonic,11,Rank 0,11d2,21.67,21.23,21.85,2023-08-15 13:18:48
+Djinni,Elemental,5,Rank 3,5d8,38.17,41.3,39.72,2023-08-15 13:18:48
+Wyvern,Dragon,5,Rank 4,5d10,48.46,45.55,52.11,2023-08-15 13:18:48
+Imp,Demonic,7,Rank 0,7d2+1,13.95,14.52,13.43,2023-08-15 13:18:48
+Succubus,Devilkin,7,Rank 0,7d2+1,13.17,13.47,14.58,2023-08-15 13:18:48
+Mummy,Undead,14,Rank 4,14d10+4,141.53,143.9,137.23,2023-08-15 13:18:48
+Steam Spirit,Fey,5,Rank 2,5d6+4,31.61,28.66,27.75,2023-08-15 13:18:48
+Vampire,Undead,9,Rank 2,9d6+1,55.63,52.4,52.89,2023-08-15 13:18:48
+Balor,Demonic,3,Rank 0,3d2+2,5.82,5.45,6.69,2023-08-15 13:18:48
+Pit Lord,Devilkin,13,Rank 1,13d4+2,50.35,51.26,53.06,2023-08-15 13:18:48
+Shadow Mephit,Elemental,7,Rank 1,7d4+5,26.79,28.68,28.54,2023-08-15 13:18:48
+Prismatic Drake,Dragon,6,Rank 2,6d6+2,35.79,37.24,36.85,2023-08-15 13:18:48
+Ice Archfey,Fey,7,Rank 4,7d10+1,67.34,67.94,71.95,2023-08-15 13:18:48
+Death Knight,Undead,19,Rank 0,19d2+1,37.77,37.93,37.69,2023-08-15 13:18:48
+Wyvern,Dragon,4,Rank 1,4d4,16.54,17.08,16.85,2023-08-15 13:18:48
+Blue Faerie,Fey,9,Rank 0,9d2+1,17.69,17.89,17.61,2023-08-15 13:18:48
+Djinni,Elemental,4,Rank 2,4d6+4,23.49,25.52,24.41,2023-08-15 13:18:48
+Pit Fiend,Demonic,19,Rank 2,19d6+2,112.27,114.59,114.25,2023-08-15 13:18:48
+Pit Lord,Devilkin,2,Rank 4,2d10+3,22.11,19.92,23.91,2023-08-15 13:18:48
+Lich,Undead,6,Rank 2,6d6+3,34.0,35.86,38.95,2023-08-15 13:18:48
+Lightning Spirit,Fey,3,Rank 1,3d4+1,11.21,13.97,10.51,2023-08-15 13:18:48
+Magma Elemental,Elemental,6,Rank 1,6d4,24.37,24.75,22.56,2023-08-15 13:18:48
+Onyx Wyrmling,Dragon,4,Rank 4,4d10+2,39.3,41.27,44.22,2023-08-15 13:18:48
+Goblin Villager,Devilkin,9,Rank 1,9d4+1,37.56,37.03,37.16,2023-08-15 13:18:48
+Smoke Mephit,Elemental,16,Rank 0,16d2+1,32.49,31.55,31.15,2023-08-15 13:18:48
+Wraith,Undead,1,Rank 1,1d4+1,3.14,5.18,4.2,2023-08-15 13:18:48
+Lightning Spirit,Fey,9,Rank 2,9d6+1,56.74,53.5,53.87,2023-08-15 13:18:48
+Shadow Mephit,Elemental,5,Rank 4,5d10,49.1,46.73,48.42,2023-08-15 13:18:48
+Demilich,Undead,15,Rank 0,15d2+1,29.15,29.91,29.2,2023-08-15 13:18:48
+Hell Hound,Demonic,6,Rank 0,6d2,12.87,12.66,11.13,2023-08-15 13:18:48
+Kobold Mage,Devilkin,9,Rank 2,9d6+3,54.11,56.31,52.97,2023-08-15 13:18:48
+Revenant,Undead,12,Rank 5,12d12,139.53,141.85,146.06,2023-08-15 13:18:48
+Balor,Demonic,13,Rank 0,13d2+3,26.64,26.39,25.98,2023-08-15 13:18:48
+Smoke Mephit,Elemental,6,Rank 2,6d6+3,34.56,36.08,33.42,2023-08-15 13:18:48
+Pseudodragon,Dragon,4,Rank 1,4d4+1,16.71,17.24,16.24,2023-08-15 13:18:48
+Balor,Demonic,6,Rank 1,6d4+1,23.42,23.76,24.31,2023-08-15 13:18:48
+Kobold Guard,Devilkin,8,Rank 2,8d6,45.72,46.19,48.11,2023-08-15 13:18:48
+Wight,Undead,4,Rank 2,4d6+2,23.86,22.39,22.26,2023-08-15 13:18:48
+Hook Horror,Demonic,8,Rank 1,8d4+5,31.14,31.01,30.88,2023-08-15 13:18:48
+Spore Mephit,Elemental,5,Rank 2,5d6+4,32.29,31.79,30.52,2023-08-15 13:18:48
+Banshee,Undead,5,Rank 5,5d12,57.35,57.7,58.31,2023-08-15 13:18:48
+Bronze Demon,Demonic,3,Rank 1,3d4+5,10.88,12.04,12.97,2023-08-15 13:18:48
+Djinni,Elemental,10,Rank 0,10d2+4,20.96,20.5,19.31,2023-08-15 13:18:48
+Faerie Dragon,Dragon,3,Rank 2,3d6+1,17.64,15.46,19.4,2023-08-15 13:18:48
+Nightmare,Demonic,9,Rank 0,9d2+1,18.84,17.12,18.03,2023-08-15 13:18:48
+Shadow Devil,Devilkin,7,Rank 0,7d2+1,14.59,13.41,13.98,2023-08-15 13:18:48
+Dracolich,Undead,5,Rank 0,5d2+1,10.79,10.79,9.23,2023-08-15 13:18:48
+Hell Hound,Demonic,3,Rank 0,3d2,5.26,5.72,6.17,2023-08-15 13:18:48
+Brass Archfey,Fey,5,Rank 2,5d6+1,28.13,28.05,32.75,2023-08-15 13:18:48
+Efreeti,Elemental,2,Rank 1,2d4+4,8.82,9.33,9.96,2023-08-15 13:18:48
+Faerie Dragon,Dragon,3,Rank 4,3d10+5,29.3,31.92,27.19,2023-08-15 13:18:48
+Goblin Archer,Devilkin,10,Rank 0,10d2+2,19.57,21.0,19.71,2023-08-15 13:18:48
+Faerie Dragon,Dragon,5,Rank 1,5d4+5,20.23,19.2,20.32,2023-08-15 13:18:48
+Pit Lord,Devilkin,12,Rank 1,12d4+1,47.54,47.63,47.59,2023-08-15 13:18:48
+Revenant,Undead,5,Rank 2,5d6+2,31.84,27.2,28.11,2023-08-15 13:18:48
+Quasit,Demonic,15,Rank 3,15d8+3,122.47,117.47,122.97,2023-08-15 13:18:48
+Succubus,Devilkin,10,Rank 1,10d4+3,39.14,39.55,38.73,2023-08-15 13:18:48
+Magma Elemental,Elemental,5,Rank 0,5d2,10.6,9.06,10.65,2023-08-15 13:18:48
+Imp,Demonic,6,Rank 3,6d8+3,48.38,48.54,50.82,2023-08-15 13:18:48
+Pit Lord,Devilkin,1,Rank 0,1d2+3,2.26,1.35,1.02,2023-08-15 13:18:48
+Pseudodragon,Dragon,7,Rank 0,7d2+5,14.18,13.37,14.18,2023-08-15 13:18:48
+Blue Faerie,Fey,19,Rank 3,19d8+2,151.28,149.41,149.82,2023-08-15 13:18:48
+Steam Mephit,Elemental,6,Rank 1,6d4+2,23.3,22.35,23.58,2023-08-15 13:18:48
+Platinum Demon,Demonic,2,Rank 1,2d4,7.38,9.99,7.17,2023-08-15 13:18:48
+Spore Devil,Devilkin,9,Rank 1,9d4,37.93,37.69,35.04,2023-08-15 13:18:48
+Ghoul,Undead,7,Rank 0,7d2,13.6,13.8,13.04,2023-08-15 13:18:48
+Sapphire Faerie,Fey,12,Rank 3,12d8+1,97.91,98.81,97.6,2023-08-15 13:18:48
+Djinni,Elemental,5,Rank 0,5d2+1,10.09,9.47,10.94,2023-08-15 13:18:48
+Zombie Knight,Undead,4,Rank 3,4d8,28.94,30.05,32.77,2023-08-15 13:18:48
+Emerald Drake,Dragon,6,Rank 0,6d2,11.48,11.2,12.22,2023-08-15 13:18:48
+Hell Hound,Demonic,7,Rank 0,7d2,13.89,13.02,13.14,2023-08-15 13:18:48
+Prince of Fear,Devilkin,15,Rank 1,15d4+3,59.33,61.12,59.01,2023-08-15 13:18:48
+Ghast,Undead,3,Rank 3,3d8+4,24.06,24.25,20.63,2023-08-15 13:18:48
+Night Hag,Demonic,1,Rank 0,1d2+2,1.89,1.18,1.65,2023-08-15 13:18:48
+Dust Mephit,Elemental,9,Rank 0,9d2+3,17.83,17.59,18.97,2023-08-15 13:18:48
+Faerie Dragon,Dragon,10,Rank 3,10d8+1,81.89,80.16,82.37,2023-08-15 13:18:48
+Goblin Villager,Devilkin,6,Rank 3,6d8+3,46.88,46.48,46.67,2023-08-15 13:18:48
+Wyvern,Dragon,12,Rank 1,12d4+3,46.23,47.55,48.38,2023-08-15 13:18:48
+Brass Faerie,Fey,15,Rank 2,15d6,90.29,89.32,91.28,2023-08-15 13:18:48
+Djinni,Elemental,7,Rank 3,7d8+3,58.41,53.75,54.29,2023-08-15 13:18:48
+Faerie Dragon,Dragon,7,Rank 2,7d6+2,41.37,41.77,40.97,2023-08-15 13:18:48
+Smoke Spirit,Fey,13,Rank 3,13d8+2,104.08,101.45,105.07,2023-08-15 13:18:48
+Mud Mephit,Elemental,6,Rank 4,6d10+2,60.19,57.19,63.31,2023-08-15 13:18:48
+Mummy,Undead,3,Rank 1,3d4+4,11.81,12.51,12.86,2023-08-15 13:18:48
+Balor,Demonic,18,Rank 0,18d2+4,36.3,35.99,36.83,2023-08-15 13:18:48
+Kobold Mage,Devilkin,4,Rank 1,4d4+3,16.22,15.5,16.52,2023-08-15 13:18:48
+Flame Elemental,Elemental,7,Rank 1,7d4+2,28.12,26.1,28.12,2023-08-15 13:18:48
+Dracolich,Undead,20,Rank 1,20d4+1,80.87,79.94,78.07,2023-08-15 13:18:48
+Pit Fiend,Demonic,10,Rank 0,10d2+5,20.77,19.62,20.72,2023-08-15 13:18:48
+Magma Devil,Devilkin,14,Rank 0,14d2+4,28.92,28.46,27.66,2023-08-15 13:18:48
+Ghast,Undead,7,Rank 0,7d2+1,14.37,13.13,13.77,2023-08-15 13:18:48
+Pit Fiend,Demonic,4,Rank 2,4d6+2,23.1,23.17,26.91,2023-08-15 13:18:48
+Steam Archfey,Fey,5,Rank 1,5d4+2,20.95,21.08,20.3,2023-08-15 13:18:48
+Flame Mephit,Elemental,14,Rank 0,14d2,27.14,28.41,28.98,2023-08-15 13:18:48
+Night Hag,Demonic,9,Rank 4,9d10+2,92.36,92.89,87.41,2023-08-15 13:18:48
+Kobold Knight,Devilkin,7,Rank 3,7d8,53.17,58.49,58.34,2023-08-15 13:18:48
+Pseudodragon,Dragon,6,Rank 3,6d8,46.91,48.73,46.1,2023-08-15 13:18:48
+Dust Spirit,Fey,9,Rank 2,9d6+3,51.58,53.94,53.4,2023-08-15 13:18:48
+Mud Elemental,Elemental,12,Rank 3,12d8+4,97.25,95.02,95.15,2023-08-15 13:18:48
+Faerie Dragon,Dragon,8,Rank 2,8d6+1,46.7,45.52,46.05,2023-08-15 13:18:48
+Silver Faerie,Fey,2,Rank 2,2d6+1,11.0,9.96,10.77,2023-08-15 13:18:48
+Shadow Elemental,Elemental,15,Rank 2,15d6+1,92.7,88.92,90.79,2023-08-15 13:18:48
+Wyvern,Dragon,3,Rank 0,3d2+2,6.9,5.51,5.42,2023-08-15 13:18:48
+Pit Lord,Devilkin,11,Rank 4,11d10+5,107.28,109.69,108.59,2023-08-15 13:18:48
+Copper Wyrmling,Dragon,12,Rank 3,12d8+1,97.26,93.26,99.49,2023-08-15 13:18:48
+Smoke Spirit,Fey,14,Rank 2,14d6,82.62,85.36,81.06,2023-08-15 13:18:48
+Spore Elemental,Elemental,3,Rank 0,3d2+3,5.05,6.17,6.44,2023-08-15 13:18:48
+Ghast,Undead,1,Rank 1,1d4,5.29,4.94,2.0,2023-08-15 13:18:48
+Hook Horror,Demonic,6,Rank 1,6d4+4,23.46,22.63,23.14,2023-08-15 13:18:48
+Dust Devil,Devilkin,7,Rank 4,7d10,70.58,73.61,70.35,2023-08-15 13:18:48
+Efreeti,Elemental,3,Rank 2,3d6,16.33,16.86,17.14,2023-08-15 13:18:48
+Blue Drake,Dragon,6,Rank 0,6d2,12.79,11.41,12.56,2023-08-15 13:18:48
+Red Faerie,Fey,7,Rank 2,7d6,40.89,40.88,41.08,2023-08-15 13:18:48
+Lich King,Undead,1,Rank 3,1d8,5.64,6.69,5.0,2023-08-15 13:18:48
+Imp,Demonic,9,Rank 1,9d4+5,34.01,34.68,36.88,2023-08-15 13:18:48
+Steam Spirit,Fey,11,Rank 1,11d4,43.39,44.9,42.98,2023-08-15 13:18:48
+Goblin Villager,Devilkin,4,Rank 1,4d4+5,16.85,14.91,17.97,2023-08-15 13:18:48
+Mummy Lord,Undead,11,Rank 1,11d4,43.54,45.69,44.65,2023-08-15 13:18:48
+Nightmare,Demonic,5,Rank 4,5d10+1,47.7,48.83,48.34,2023-08-15 13:18:48
+Succubus,Devilkin,3,Rank 3,3d8,21.04,20.55,27.48,2023-08-15 13:18:48
+Bronze Dragon,Dragon,2,Rank 3,2d8,14.15,19.15,18.98,2023-08-15 13:18:48
+Blue Archfey,Fey,2,Rank 1,2d4+1,9.64,8.99,7.25,2023-08-15 13:18:48
+Flame Mephit,Elemental,16,Rank 5,16d12+1,195.0,191.49,192.69,2023-08-15 13:18:48
+Onyx Dragon,Dragon,13,Rank 2,13d6,79.02,77.86,75.07,2023-08-15 13:18:48
+Bronze Faerie,Fey,9,Rank 2,9d6+1,54.97,55.45,55.77,2023-08-15 13:18:48
+Efreeti,Elemental,7,Rank 2,7d6+2,40.37,43.54,42.86,2023-08-15 13:18:48
+Diamond Dragon,Dragon,12,Rank 2,12d6+2,70.38,71.97,71.54,2023-08-15 13:18:48
+Ice Spirit,Fey,15,Rank 3,15d8+1,121.77,117.14,122.96,2023-08-15 13:18:48
+Death Knight,Undead,15,Rank 2,15d6,89.7,91.52,88.69,2023-08-15 13:18:48
+Hell Hound,Demonic,5,Rank 1,5d4+3,21.68,20.07,21.49,2023-08-15 13:18:48
+Steam Archfey,Fey,7,Rank 2,7d6+5,40.82,43.4,41.24,2023-08-15 13:18:48
+Shadow Elemental,Elemental,4,Rank 1,4d4+2,15.94,17.78,16.86,2023-08-15 13:18:48
+Wyvern,Dragon,8,Rank 1,8d4+2,33.7,33.99,30.4,2023-08-15 13:18:48
+Pit Lord,Devilkin,6,Rank 0,6d2+2,11.7,11.74,12.71,2023-08-15 13:18:48
+Faerie Dragon,Dragon,3,Rank 3,3d8+2,25.72,26.52,23.35,2023-08-15 13:18:48
+Steam Spirit,Fey,4,Rank 4,4d10+4,38.78,39.58,36.59,2023-08-15 13:18:48
+Flame Elemental,Elemental,18,Rank 0,18d2,35.54,35.74,35.97,2023-08-15 13:18:48
+Mummy Lord,Undead,6,Rank 2,6d6,36.89,36.86,37.85,2023-08-15 13:18:48
+Smoke Spirit,Fey,5,Rank 1,5d4,20.79,19.45,19.82,2023-08-15 13:18:48
+Lightning Elemental,Elemental,6,Rank 3,6d8+1,46.4,49.36,48.82,2023-08-15 13:18:48
+Pseudodragon,Dragon,11,Rank 0,11d2+3,21.37,21.95,22.02,2023-08-15 13:18:48
+Ruby Archfey,Fey,10,Rank 2,10d6,59.73,59.27,59.27,2023-08-15 13:18:48
+Goblin Mage,Devilkin,11,Rank 3,11d8+2,84.04,88.79,84.13,2023-08-15 13:18:48
+Wyvern,Dragon,2,Rank 0,2d2+3,3.16,3.14,3.76,2023-08-15 13:18:48
+Shadow Spirit,Fey,4,Rank 1,4d4+4,15.25,16.9,16.24,2023-08-15 13:18:48
+Djinni,Elemental,15,Rank 0,15d2+1,29.34,30.55,29.8,2023-08-15 13:18:48
+Balor,Demonic,3,Rank 0,3d2+2,5.86,5.82,5.91,2023-08-15 13:18:48
+Prince of Fear,Devilkin,11,Rank 1,11d4+4,44.57,43.67,42.96,2023-08-15 13:18:48
+Gold Wyrmling,Dragon,15,Rank 0,15d2,30.22,30.72,30.9,2023-08-15 13:18:48
+Smoke Archfey,Fey,6,Rank 3,6d8+2,46.5,48.64,46.88,2023-08-15 13:18:48
+Efreeti,Elemental,4,Rank 0,4d2+1,8.08,8.49,7.36,2023-08-15 13:18:48
+Diamond Dragon,Dragon,11,Rank 1,11d4+4,43.84,44.94,42.85,2023-08-15 13:18:48
+Platinum Faerie,Fey,15,Rank 0,15d2,30.12,30.31,30.09,2023-08-15 13:18:48
+Spore Elemental,Elemental,5,Rank 3,5d8+2,43.61,40.85,37.07,2023-08-15 13:18:48
+Faerie Dragon,Dragon,15,Rank 2,15d6+1,88.02,89.92,91.71,2023-08-15 13:18:48
+Sapphire Archfey,Fey,14,Rank 2,14d6+1,84.61,83.36,82.66,2023-08-15 13:18:48
+Dust Mephit,Elemental,2,Rank 1,2d4,7.44,8.66,8.96,2023-08-15 13:18:48
+Prismatic Dragon,Dragon,16,Rank 0,16d2+2,31.98,31.33,31.06,2023-08-15 13:18:48
+Green Faerie,Fey,7,Rank 0,7d2+2,14.46,14.35,14.79,2023-08-15 13:18:48
+Smoke Elemental,Elemental,3,Rank 4,3d10,27.92,32.85,26.51,2023-08-15 13:18:48
+Red Wyrmling,Dragon,2,Rank 1,2d4,7.15,9.06,7.08,2023-08-15 13:18:48
+Hell Hound,Demonic,5,Rank 3,5d8+4,37.49,41.4,38.86,2023-08-15 13:18:48
+Goblin Guard,Devilkin,2,Rank 0,2d2+1,4.59,3.65,3.8,2023-08-15 13:18:48
+Spore Elemental,Elemental,3,Rank 2,3d6+2,16.37,16.71,16.23,2023-08-15 13:18:48
+Bronze Drake,Dragon,8,Rank 1,8d4,32.07,30.49,33.28,2023-08-15 13:18:48
+Blue Faerie,Fey,9,Rank 0,9d2+1,17.08,18.12,18.06,2023-08-15 13:18:48
+Ghostly Archer,Undead,2,Rank 3,2d8+4,12.95,13.4,14.87,2023-08-15 13:18:48
+Night Hag,Demonic,15,Rank 0,15d2+1,29.4,29.86,29.23,2023-08-15 13:18:48
+Magma Devil,Devilkin,3,Rank 0,3d2+4,6.56,6.92,5.21,2023-08-15 13:18:48
+Wyvern,Dragon,1,Rank 0,1d2+3,2.12,2.6,2.75,2023-08-15 13:18:48
+Smoke Spirit,Fey,15,Rank 0,15d2+3,30.73,29.02,30.21,2023-08-15 13:18:48
+Spore Mephit,Elemental,6,Rank 3,6d8,44.29,47.19,50.36,2023-08-15 13:18:48
+Platinum Drake,Dragon,8,Rank 0,8d2+4,16.09,16.28,16.42,2023-08-15 13:18:48
+Quasit,Demonic,10,Rank 0,10d2+2,19.24,20.73,19.43,2023-08-15 13:18:48
+Pit Lord,Devilkin,10,Rank 2,10d6,60.95,60.64,61.82,2023-08-15 13:18:48
+Copper Wyrmling,Dragon,4,Rank 1,4d4+1,15.91,15.13,15.65,2023-08-15 13:18:48
+Balor,Demonic,7,Rank 0,7d2,14.91,13.77,13.52,2023-08-15 13:18:48
+Ice Archfey,Fey,2,Rank 4,2d10,20.69,23.88,19.45,2023-08-15 13:18:48
+Spore Mephit,Elemental,10,Rank 1,10d4,41.02,39.87,39.81,2023-08-15 13:18:48
+Mummy Lord,Undead,16,Rank 0,16d2+1,31.95,32.05,31.89,2023-08-15 13:18:48
+Ruby Archfey,Fey,6,Rank 1,6d4+2,22.21,22.27,22.27,2023-08-15 13:18:48
+Dust Elemental,Elemental,13,Rank 2,13d6,75.29,77.03,76.98,2023-08-15 13:18:48
+Silver Drake,Dragon,6,Rank 0,6d2,12.88,11.35,11.44,2023-08-15 13:18:48
+Mud Devil,Devilkin,11,Rank 0,11d2,21.06,22.59,22.62,2023-08-15 13:18:48
+Ghoul,Undead,4,Rank 1,4d4,15.04,16.92,15.31,2023-08-15 13:18:48
+Nightmare,Demonic,3,Rank 4,3d10+2,28.64,27.49,26.15,2023-08-15 13:18:48
+Shadow Devil,Devilkin,13,Rank 2,13d6+2,79.38,77.39,80.59,2023-08-15 13:18:48
+Prismatic Wyrmling,Dragon,3,Rank 3,3d8+2,21.42,20.31,21.58,2023-08-15 13:18:48
+Pit Lord,Devilkin,9,Rank 2,9d6+1,53.46,54.56,53.26,2023-08-15 13:18:48
+Poltergeist,Undead,12,Rank 3,12d8+1,97.61,98.04,96.16,2023-08-15 13:18:48
+Pseudodragon,Dragon,16,Rank 3,16d8,128.56,127.35,130.34,2023-08-15 13:18:48
+Dust Devil,Devilkin,13,Rank 4,13d10,129.62,134.5,126.82,2023-08-15 13:18:48
+Dracolich,Undead,1,Rank 0,1d2+2,2.08,2.84,1.44,2023-08-15 13:18:48
+Green Demon,Demonic,4,Rank 1,4d4+3,16.47,17.62,14.65,2023-08-15 13:18:48
+Ice Archfey,Fey,9,Rank 4,9d10+2,93.66,86.51,86.12,2023-08-15 13:18:48
+Lightning Devil,Devilkin,2,Rank 1,2d4,7.52,7.98,6.48,2023-08-15 13:18:48
+Platinum Dragon,Dragon,14,Rank 0,14d2,27.61,28.17,27.65,2023-08-15 13:18:48
+Flame Spirit,Fey,9,Rank 0,9d2+1,18.79,18.88,17.83,2023-08-15 13:18:48
+Dust Mephit,Elemental,3,Rank 0,3d2,6.79,5.19,6.92,2023-08-15 13:18:48
+Pit Fiend,Demonic,5,Rank 3,5d8,40.77,42.62,42.34,2023-08-15 13:18:48
+Succubus,Devilkin,14,Rank 2,14d6+2,83.43,86.98,85.45,2023-08-15 13:18:48
+Mud Mephit,Elemental,11,Rank 1,11d4+1,42.1,44.56,43.01,2023-08-15 13:18:48
+Pseudodragon,Dragon,2,Rank 3,2d8,18.01,13.61,15.98,2023-08-15 13:18:48
+Pit Fiend,Demonic,5,Rank 4,5d10+2,52.76,50.66,53.93,2023-08-15 13:18:48
+Shadow Mephit,Elemental,15,Rank 3,15d8+1,121.94,120.29,120.29,2023-08-15 13:18:48
+Copper Dragon,Dragon,2,Rank 4,2d10+1,21.69,16.94,17.15,2023-08-15 13:18:48
+Blue Demon,Demonic,9,Rank 0,9d2+2,18.33,18.83,18.19,2023-08-15 13:18:48
+Efreeti,Elemental,7,Rank 4,7d10+1,68.49,74.39,71.53,2023-08-15 13:18:48
+Wyvern,Dragon,3,Rank 2,3d6+3,17.13,17.22,18.72,2023-08-15 13:18:48
+Steam Spirit,Fey,9,Rank 0,9d2+1,18.41,18.01,18.39,2023-08-15 13:18:48
+Kobold Knight,Devilkin,16,Rank 4,16d10+2,163.41,156.05,157.81,2023-08-15 13:18:48
+Banshee,Undead,14,Rank 1,14d4,56.17,57.73,58.0,2023-08-15 13:18:48
+Quasit,Demonic,13,Rank 0,13d2,26.64,25.32,25.4,2023-08-15 13:18:48
+Djinni,Elemental,1,Rank 0,1d2,2.94,2.1,2.6,2023-08-15 13:18:48
+Balor,Demonic,3,Rank 0,3d2,6.44,6.15,5.79,2023-08-15 13:18:48
+Kobold Guard,Devilkin,4,Rank 0,4d2,7.29,8.08,8.08,2023-08-15 13:18:48
+Ghostly Archer,Undead,8,Rank 3,8d8,65.94,65.27,61.51,2023-08-15 13:18:48
+Platinum Faerie,Fey,4,Rank 2,4d6,24.78,21.02,26.53,2023-08-15 13:18:48
+Shadow Mephit,Elemental,18,Rank 1,18d4,71.57,73.17,70.19,2023-08-15 13:18:48
+Copper Demon,Demonic,2,Rank 3,2d8,17.02,14.02,13.97,2023-08-15 13:18:48
+Kobold Knight,Devilkin,2,Rank 4,2d10+2,20.41,18.24,20.18,2023-08-15 13:18:48
+Wyvern,Dragon,8,Rank 0,8d2+1,16.26,16.2,15.94,2023-08-15 13:18:48
+Succubus,Devilkin,10,Rank 0,10d2,20.76,20.22,19.47,2023-08-15 13:18:48
+Ghostly Villager,Undead,11,Rank 3,11d8,84.41,86.15,85.34,2023-08-15 13:18:48
+Nightmare,Demonic,16,Rank 1,16d4+4,64.25,64.6,64.82,2023-08-15 13:18:48
+Goblin Mage,Devilkin,16,Rank 2,16d6+2,94.5,96.33,95.72,2023-08-15 13:18:48
+Blue Wyrmling,Dragon,3,Rank 1,3d4,12.62,13.66,12.69,2023-08-15 13:18:48
+Goblin Guard,Devilkin,10,Rank 3,10d8+4,81.18,78.33,78.89,2023-08-15 13:18:48
+Wight,Undead,6,Rank 1,6d4,23.69,24.65,24.34,2023-08-15 13:18:48
+Faerie Dragon,Dragon,5,Rank 4,5d10+2,49.91,53.42,52.55,2023-08-15 13:18:48
+White Archfey,Fey,12,Rank 4,12d10,120.12,116.25,119.53,2023-08-15 13:18:48
+Ice Mephit,Elemental,3,Rank 0,3d2+1,5.39,6.04,6.13,2023-08-15 13:18:48
+Pseudodragon,Dragon,7,Rank 0,7d2,13.33,14.35,14.13,2023-08-15 13:18:48
+Pit Lord,Devilkin,2,Rank 3,2d8,16.55,17.51,15.71,2023-08-15 13:18:48
+Ghoul,Undead,3,Rank 1,3d4+3,11.01,11.17,12.83,2023-08-15 13:18:48
+Mud Spirit,Fey,10,Rank 1,10d4+1,38.8,40.01,38.66,2023-08-15 13:18:48
+Efreeti,Elemental,4,Rank 2,4d6+3,23.08,23.33,25.28,2023-08-15 13:18:48
+Balor,Demonic,12,Rank 0,12d2+2,24.67,23.5,24.92,2023-08-15 13:18:48
+Pit Lord,Devilkin,13,Rank 5,13d12,156.95,154.56,151.97,2023-08-15 13:18:48
+Mummy,Undead,2,Rank 3,2d8+1,13.16,12.22,13.08,2023-08-15 13:18:48
+Copper Demon,Demonic,12,Rank 1,12d4+2,48.47,49.75,49.08,2023-08-15 13:18:48
+Succubus,Devilkin,12,Rank 1,12d4,47.88,47.28,48.22,2023-08-15 13:18:48
+Efreeti,Elemental,4,Rank 0,4d2+3,7.34,8.7,8.42,2023-08-15 13:18:48
+Faerie Dragon,Dragon,7,Rank 0,7d2+1,14.0,14.61,13.38,2023-08-15 13:18:48
+Shadow Spirit,Fey,6,Rank 4,6d10+2,59.39,64.34,56.52,2023-08-15 13:18:48
+Prince of Fear,Devilkin,7,Rank 2,7d6+2,41.75,41.67,43.81,2023-08-15 13:18:48
+Wight,Undead,18,Rank 2,18d6+1,105.98,108.25,106.66,2023-08-15 13:18:48
+Green Demon,Demonic,16,Rank 2,16d6+4,98.57,96.98,97.15,2023-08-15 13:18:48
+Magma Archfey,Fey,15,Rank 4,15d10+2,149.63,150.4,147.28,2023-08-15 13:18:48
+Ghostly Archer,Undead,10,Rank 2,10d6+2,60.52,61.38,59.51,2023-08-15 13:18:48
+Balor,Demonic,2,Rank 0,2d2+1,3.96,3.25,4.42,2023-08-15 13:18:48
+Pit Lord,Devilkin,5,Rank 0,5d2+4,9.09,10.18,10.71,2023-08-15 13:18:48
+Djinni,Elemental,6,Rank 0,6d2+1,11.91,11.04,11.76,2023-08-15 13:18:48
+Wyvern,Dragon,3,Rank 3,3d8+1,27.07,26.82,24.84,2023-08-15 13:18:48
+Sapphire Archfey,Fey,10,Rank 0,10d2,19.14,20.9,19.84,2023-08-15 13:18:48
+Djinni,Elemental,3,Rank 0,3d2,5.67,5.65,6.93,2023-08-15 13:18:48
+Copper Dragon,Dragon,1,Rank 4,1d10+2,5.54,7.24,12.16,2023-08-15 13:18:48
+Prince of Fear,Devilkin,8,Rank 1,8d4+4,30.97,31.97,33.07,2023-08-15 13:18:48
+Wyvern,Dragon,8,Rank 1,8d4+1,30.74,31.85,31.64,2023-08-15 13:18:48
+Nightmare,Demonic,5,Rank 0,5d2,10.64,10.88,9.53,2023-08-15 13:18:48
+Pit Lord,Devilkin,7,Rank 1,7d4+2,27.64,28.27,28.17,2023-08-15 13:18:48
+Lich King,Undead,7,Rank 0,7d2,14.4,14.02,13.67,2023-08-15 13:18:48
+Wyvern,Dragon,3,Rank 0,3d2+2,5.47,6.74,5.96,2023-08-15 13:18:48
+Dust Archfey,Fey,5,Rank 0,5d2+2,9.42,9.38,9.39,2023-08-15 13:18:48
+Goblin Knight,Devilkin,16,Rank 0,16d2+3,31.21,32.01,32.96,2023-08-15 13:18:48
+Banshee,Undead,4,Rank 0,4d2,7.34,8.51,8.07,2023-08-15 13:18:48
+Lightning Spirit,Fey,8,Rank 1,8d4+2,31.69,33.83,32.25,2023-08-15 13:18:48
+Dust Mephit,Elemental,12,Rank 4,12d10,116.85,120.59,117.72,2023-08-15 13:18:48
+Night Hag,Demonic,1,Rank 2,1d6+2,8.81,6.56,5.69,2023-08-15 13:18:48
+Pit Lord,Devilkin,3,Rank 1,3d4+1,12.24,13.43,11.99,2023-08-15 13:18:48
+Demilich,Undead,2,Rank 4,2d10+2,22.3,23.83,20.13,2023-08-15 13:18:48
+Faerie Dragon,Dragon,7,Rank 1,7d4+1,27.02,26.05,28.72,2023-08-15 13:18:48
+Green Faerie,Fey,2,Rank 2,2d6,9.26,10.23,12.32,2023-08-15 13:18:48
+Mud Mephit,Elemental,6,Rank 2,6d6,34.84,37.98,37.71,2023-08-15 13:18:48
+Ghast,Undead,5,Rank 0,5d2+2,9.97,9.23,10.96,2023-08-15 13:18:48
+White Drake,Dragon,9,Rank 2,9d6,55.42,55.44,55.75,2023-08-15 13:18:48
+Quasit,Demonic,9,Rank 0,9d2+4,18.4,17.54,17.48,2023-08-15 13:18:48
+Lightning Mephit,Elemental,4,Rank 1,4d4+5,16.92,15.05,15.37,2023-08-15 13:18:48
+Night Hag,Demonic,3,Rank 0,3d2,6.89,5.24,5.41,2023-08-15 13:18:48
+Dust Spirit,Fey,3,Rank 1,3d4+2,11.54,10.52,12.58,2023-08-15 13:18:48
+Mummy Lord,Undead,3,Rank 1,3d4,12.73,12.28,13.38,2023-08-15 13:18:48
+Imp,Demonic,10,Rank 1,10d4,40.82,40.29,38.9,2023-08-15 13:18:48
+Djinni,Elemental,2,Rank 0,2d2+1,3.89,4.69,4.05,2023-08-15 13:18:48
+Banshee,Undead,10,Rank 1,10d4+1,41.39,41.61,39.13,2023-08-15 13:18:48
+Hell Hound,Demonic,11,Rank 3,11d8+2,90.16,88.44,86.29,2023-08-15 13:18:48
+Lightning Mephit,Elemental,7,Rank 1,7d4,27.61,27.09,27.28,2023-08-15 13:18:48
+Pseudodragon,Dragon,10,Rank 0,10d2,20.41,19.59,19.97,2023-08-15 13:18:48
+Sapphire Faerie,Fey,15,Rank 2,15d6,91.64,89.28,90.38,2023-08-15 13:18:48
+Djinni,Elemental,2,Rank 0,2d2+1,3.32,4.35,3.87,2023-08-15 13:18:48
+Poltergeist,Undead,8,Rank 1,8d4+1,32.47,33.34,33.04,2023-08-15 13:18:48
+Quasit,Demonic,14,Rank 4,14d10+1,137.2,138.64,140.6,2023-08-15 13:18:48
+Goblin Villager,Devilkin,4,Rank 2,4d6,23.99,21.38,25.82,2023-08-15 13:18:48
+Ghostly Mage,Undead,2,Rank 3,2d8,15.9,16.05,18.35,2023-08-15 13:18:48
+Hook Horror,Demonic,13,Rank 1,13d4,53.73,50.66,51.95,2023-08-15 13:18:48
+Succubus,Devilkin,10,Rank 1,10d4+2,38.46,38.04,40.09,2023-08-15 13:18:48
+Lich King,Undead,16,Rank 0,16d2,31.05,32.01,32.4,2023-08-15 13:18:48
+Nightmare,Demonic,6,Rank 4,6d10+2,58.12,63.48,56.5,2023-08-15 13:18:48
+Copper Archfey,Fey,5,Rank 4,5d10+1,51.05,52.32,51.43,2023-08-15 13:18:48
+Djinni,Elemental,2,Rank 1,2d4+3,7.91,8.45,8.12,2023-08-15 13:18:48
+Mummy,Undead,9,Rank 0,9d2+4,18.68,18.04,17.2,2023-08-15 13:18:48
+Blue Demon,Demonic,5,Rank 2,5d6,29.0,28.11,29.08,2023-08-15 13:18:48
+Prince of Fear,Devilkin,6,Rank 4,6d10,59.36,59.02,57.61,2023-08-15 13:18:48
+Lich King,Undead,10,Rank 4,10d10+1,103.61,99.07,100.4,2023-08-15 13:18:48
+Balor,Demonic,4,Rank 2,4d6+2,26.84,21.12,22.55,2023-08-15 13:18:48
+Magma Devil,Devilkin,5,Rank 0,5d2,10.63,10.21,10.92,2023-08-15 13:18:48
+Djinni,Elemental,12,Rank 0,12d2+3,24.61,24.24,23.1,2023-08-15 13:18:48
+Platinum Dragon,Dragon,3,Rank 3,3d8,22.64,24.35,26.54,2023-08-15 13:18:48
+Pit Fiend,Demonic,10,Rank 0,10d2+2,20.93,19.23,20.23,2023-08-15 13:18:48
+Efreeti,Elemental,5,Rank 2,5d6+2,30.47,28.16,30.51,2023-08-15 13:18:48
+Hell Hound,Demonic,12,Rank 1,12d4+3,47.49,48.59,48.84,2023-08-15 13:18:48
+Smoke Mephit,Elemental,4,Rank 3,4d8,28.03,31.65,31.6,2023-08-15 13:18:48
+Zombie Knight,Undead,10,Rank 2,10d6+3,60.59,57.0,59.87,2023-08-15 13:18:48
+Bronze Faerie,Fey,12,Rank 2,12d6+1,69.48,71.39,71.03,2023-08-15 13:18:48
+Djinni,Elemental,4,Rank 0,4d2+3,7.02,7.35,8.23,2023-08-15 13:18:48
+Brass Wyrmling,Dragon,2,Rank 1,2d4+3,8.95,7.74,6.47,2023-08-15 13:18:48
+Silver Faerie,Fey,4,Rank 0,4d2+2,8.48,8.31,8.21,2023-08-15 13:18:48
+Djinni,Elemental,11,Rank 1,11d4,44.76,44.78,44.77,2023-08-15 13:18:48
+Faerie Dragon,Dragon,7,Rank 1,7d4+1,28.15,27.54,28.5,2023-08-15 13:18:48
+White Faerie,Fey,8,Rank 0,8d2+2,16.98,15.15,16.84,2023-08-15 13:18:48
+Spore Mephit,Elemental,13,Rank 0,13d2+2,25.96,25.75,26.1,2023-08-15 13:18:48
+Wyvern,Dragon,10,Rank 2,10d6+2,58.74,61.82,58.13,2023-08-15 13:18:48
+Balor,Demonic,7,Rank 1,7d4,27.2,27.22,28.6,2023-08-15 13:18:48
+Pit Lord,Devilkin,19,Rank 0,19d2+5,37.76,38.49,38.71,2023-08-15 13:18:48
+Mummy,Undead,6,Rank 1,6d4,23.36,24.65,22.87,2023-08-15 13:18:48
+Sapphire Demon,Demonic,5,Rank 2,5d6,31.3,30.48,28.89,2023-08-15 13:18:48
+Dust Spirit,Fey,3,Rank 0,3d2,5.52,6.02,5.91,2023-08-15 13:18:48
+Efreeti,Elemental,14,Rank 5,14d12+1,164.12,163.29,166.61,2023-08-15 13:18:48
+Pseudodragon,Dragon,13,Rank 3,13d8+1,102.2,104.74,105.84,2023-08-15 13:18:48
+Ice Archfey,Fey,11,Rank 0,11d2+2,22.94,21.84,22.22,2023-08-15 13:18:48
+Djinni,Elemental,14,Rank 4,14d10+3,135.48,138.76,143.34,2023-08-15 13:18:48
+Diamond Demon,Demonic,10,Rank 1,10d4+1,39.59,38.26,40.75,2023-08-15 13:18:48
+Mud Devil,Devilkin,4,Rank 1,4d4,14.94,14.68,17.96,2023-08-15 13:18:48
+Djinni,Elemental,13,Rank 5,13d12+4,158.59,154.21,153.23,2023-08-15 13:18:48
+Death Knight,Undead,8,Rank 3,8d8+4,62.18,66.19,61.41,2023-08-15 13:18:48
+Pit Fiend,Demonic,8,Rank 2,8d6+1,47.39,47.62,46.29,2023-08-15 13:18:48
+Incubus,Devilkin,14,Rank 3,14d8+2,111.11,115.02,111.2,2023-08-15 13:18:48
+Shadow Mephit,Elemental,10,Rank 3,10d8+1,82.51,77.48,78.84,2023-08-15 13:18:48
+Imp,Demonic,10,Rank 0,10d2+1,19.87,20.84,19.8,2023-08-15 13:18:48
+Kobold Villager,Devilkin,5,Rank 0,5d2,9.78,9.24,9.91,2023-08-15 13:18:48
+Skeletal Mage,Undead,7,Rank 2,7d6+3,41.78,41.13,41.75,2023-08-15 13:18:48
+Wyvern,Dragon,16,Rank 0,16d2,31.22,32.89,31.8,2023-08-15 13:18:48
+Balor,Demonic,4,Rank 0,4d2+2,8.99,8.9,7.4,2023-08-15 13:18:48
+Red Archfey,Fey,7,Rank 2,7d6+4,43.86,40.29,40.5,2023-08-15 13:18:48
+Efreeti,Elemental,16,Rank 0,16d2+1,32.24,32.03,31.61,2023-08-15 13:18:48
+Faerie Dragon,Dragon,6,Rank 4,6d10+4,56.93,62.54,59.97,2023-08-15 13:18:48
+Ice Archfey,Fey,7,Rank 0,7d2+3,14.96,14.38,14.42,2023-08-15 13:18:48
+Skeletal Guard,Undead,14,Rank 1,14d4+4,55.31,55.61,55.66,2023-08-15 13:18:48
+Bronze Dragon,Dragon,7,Rank 0,7d2+2,14.87,14.06,13.85,2023-08-15 13:18:48
+Mud Devil,Devilkin,1,Rank 0,1d2+3,2.52,1.66,2.78,2023-08-15 13:18:48
+Faerie Dragon,Dragon,7,Rank 3,7d8+3,56.95,53.24,55.22,2023-08-15 13:18:48
+Prince of Fear,Devilkin,11,Rank 3,11d8+3,87.42,86.01,86.86,2023-08-15 13:18:48
+Diamond Wyrmling,Dragon,10,Rank 0,10d2+1,19.58,19.1,20.51,2023-08-15 13:18:48
+Magma Spirit,Fey,5,Rank 0,5d2+3,10.9,9.53,10.46,2023-08-15 13:18:48
+Mud Devil,Devilkin,2,Rank 0,2d2+1,3.14,4.03,4.14,2023-08-15 13:18:48
+Ghostly Archer,Undead,13,Rank 4,13d10+3,131.11,128.8,129.89,2023-08-15 13:18:48
+Balor,Demonic,8,Rank 2,8d6+2,47.65,49.61,45.24,2023-08-15 13:18:48
+Platinum Archfey,Fey,7,Rank 3,7d8+2,55.69,55.07,55.51,2023-08-15 13:18:48
+Magma Elemental,Elemental,7,Rank 1,7d4+1,28.4,27.57,29.37,2023-08-15 13:18:48
+Wight,Undead,10,Rank 2,10d6+1,62.8,59.99,60.24,2023-08-15 13:18:48
+Nightmare,Demonic,3,Rank 3,3d8,24.11,23.01,24.52,2023-08-15 13:18:48
+Steam Devil,Devilkin,2,Rank 2,2d6+2,13.16,12.92,12.4,2023-08-15 13:18:48
+Black Drake,Dragon,11,Rank 1,11d4,45.02,45.14,43.82,2023-08-15 13:18:48
+Shadow Devil,Devilkin,15,Rank 5,15d12+1,176.19,180.08,175.66,2023-08-15 13:18:48
+Blue Dragon,Dragon,12,Rank 2,12d6,72.86,70.12,69.99,2023-08-15 13:18:48
+Platinum Demon,Demonic,4,Rank 2,4d6,25.58,22.45,25.26,2023-08-15 13:18:48
+Smoke Spirit,Fey,9,Rank 1,9d4+4,37.02,35.02,36.26,2023-08-15 13:18:48
+Efreeti,Elemental,12,Rank 2,12d6,73.67,70.58,74.65,2023-08-15 13:18:48
+Wight,Undead,7,Rank 0,7d2+1,14.59,13.5,13.83,2023-08-15 13:18:48
+Night Hag,Demonic,17,Rank 0,17d2+3,34.52,33.54,33.21,2023-08-15 13:18:48
+Spore Archfey,Fey,1,Rank 1,1d4+1,4.69,3.21,5.69,2023-08-15 13:18:48
+Dust Elemental,Elemental,1,Rank 0,1d2+2,1.86,1.49,1.78,2023-08-15 13:18:48
+Night Hag,Demonic,13,Rank 2,13d6,76.7,79.11,79.52,2023-08-15 13:18:48
+Mud Spirit,Fey,2,Rank 0,2d2,4.85,4.09,3.6,2023-08-15 13:18:48
+Demilich,Undead,3,Rank 1,3d4+2,12.24,11.95,10.55,2023-08-15 13:18:48
+Wyvern,Dragon,8,Rank 2,8d6,45.68,49.18,49.15,2023-08-15 13:18:48
+Magma Spirit,Fey,6,Rank 1,6d4+3,23.24,23.73,23.56,2023-08-15 13:18:48
+Steam Elemental,Elemental,9,Rank 0,9d2,17.51,18.49,17.69,2023-08-15 13:18:48
+Pseudodragon,Dragon,4,Rank 2,4d6+3,23.06,25.58,23.3,2023-08-15 13:18:48
+Black Archfey,Fey,3,Rank 3,3d8+1,21.85,22.19,25.84,2023-08-15 13:18:48
+Prince of Fear,Devilkin,8,Rank 1,8d4+4,31.62,31.36,32.35,2023-08-15 13:18:48
+Mud Elemental,Elemental,5,Rank 1,5d4,19.15,19.14,20.47,2023-08-15 13:18:48
+Lich,Undead,5,Rank 0,5d2+1,10.51,10.6,9.54,2023-08-15 13:18:48
+Flame Spirit,Fey,8,Rank 0,8d2+3,15.13,15.73,15.64,2023-08-15 13:18:48
+Wraith,Undead,12,Rank 1,12d4+4,46.09,48.67,46.96,2023-08-15 13:18:48
+Hook Horror,Demonic,16,Rank 3,16d8+1,128.82,126.8,126.49,2023-08-15 13:18:48
+Pit Lord,Devilkin,3,Rank 2,3d6,18.49,18.55,19.12,2023-08-15 13:18:48
+Dust Elemental,Elemental,15,Rank 2,15d6+1,87.0,93.0,90.51,2023-08-15 13:18:48
+Zombie Knight,Undead,8,Rank 3,8d8+2,63.54,64.32,61.9,2023-08-15 13:18:48
+Imp,Demonic,4,Rank 2,4d6+2,24.3,24.38,25.16,2023-08-15 13:18:48
+Blue Faerie,Fey,8,Rank 3,8d8,65.24,64.35,65.37,2023-08-15 13:18:48
+Wight,Undead,12,Rank 1,12d4+2,48.95,49.0,47.73,2023-08-15 13:18:48
+Nightmare,Demonic,8,Rank 2,8d6+2,50.48,47.57,45.68,2023-08-15 13:18:48
+Smoke Devil,Devilkin,9,Rank 2,9d6+2,51.94,54.57,55.4,2023-08-15 13:18:48
+Pseudodragon,Dragon,3,Rank 4,3d10+1,32.2,31.07,27.08,2023-08-15 13:18:48
+Kobold Villager,Devilkin,14,Rank 0,14d2,28.61,28.69,28.72,2023-08-15 13:18:48
+Silver Drake,Dragon,2,Rank 0,2d2,4.87,4.73,3.71,2023-08-15 13:18:48
+Spore Spirit,Fey,9,Rank 1,9d4+4,36.51,35.87,37.04,2023-08-15 13:18:48
+Banshee,Undead,5,Rank 0,5d2+3,10.6,10.01,9.45,2023-08-15 13:18:48
+Hook Horror,Demonic,13,Rank 0,13d2+1,25.89,25.44,25.76,2023-08-15 13:18:48
+Efreeti,Elemental,2,Rank 0,2d2+1,4.55,4.68,3.67,2023-08-15 13:18:48
+Quasit,Demonic,3,Rank 1,3d4,10.68,13.63,10.12,2023-08-15 13:18:48
+Copper Faerie,Fey,6,Rank 0,6d2+2,11.88,12.39,12.72,2023-08-15 13:18:48
+Ghoul,Undead,8,Rank 0,8d2+1,15.09,15.31,16.77,2023-08-15 13:18:48
+Wyvern,Dragon,2,Rank 1,2d4+1,8.79,9.68,9.86,2023-08-15 13:18:48
+Shadow Archfey,Fey,6,Rank 0,6d2,11.15,12.3,11.08,2023-08-15 13:18:48
+Pit Lord,Devilkin,8,Rank 0,8d2,15.48,16.67,16.53,2023-08-15 13:18:48
+Smoke Mephit,Elemental,2,Rank 0,2d2+2,3.9,4.41,4.52,2023-08-15 13:18:48
+Green Wyrmling,Dragon,6,Rank 0,6d2,12.87,12.65,12.45,2023-08-15 13:18:48
+Mud Spirit,Fey,3,Rank 1,3d4+1,12.12,12.78,10.08,2023-08-15 13:18:48
+Kobold Archer,Devilkin,8,Rank 1,8d4,32.66,31.3,30.65,2023-08-15 13:18:48
+Revenant,Undead,3,Rank 2,3d6,17.19,19.94,15.61,2023-08-15 13:18:48
+Nightmare,Demonic,10,Rank 0,10d2,19.3,19.82,19.5,2023-08-15 13:18:48
+Succubus,Devilkin,7,Rank 0,7d2,14.45,13.54,13.92,2023-08-15 13:18:48
+Banshee,Undead,8,Rank 3,8d8+1,66.96,60.31,65.01,2023-08-15 13:18:48
+Hook Horror,Demonic,17,Rank 2,17d6,99.58,100.74,100.54,2023-08-15 13:18:48
+Spore Elemental,Elemental,13,Rank 1,13d4+1,52.75,52.71,53.67,2023-08-15 13:18:48
+Wyvern,Dragon,17,Rank 0,17d2+2,34.52,33.76,34.5,2023-08-15 13:18:48
+Kobold Knight,Devilkin,9,Rank 1,9d4,34.47,36.26,34.52,2023-08-15 13:18:48
+Shadow Elemental,Elemental,4,Rank 0,4d2,8.54,7.4,8.37,2023-08-15 13:18:48
+Gold Dragon,Dragon,5,Rank 0,5d2+5,10.48,9.52,9.83,2023-08-15 13:18:48
+Nightmare,Demonic,5,Rank 5,5d12+1,58.18,56.94,58.83,2023-08-15 13:18:48
+Succubus,Devilkin,5,Rank 0,5d2+2,10.43,9.21,10.58,2023-08-15 13:18:48
+Djinni,Elemental,13,Rank 1,13d4,53.14,51.12,52.22,2023-08-15 13:18:48
+Wyvern,Dragon,3,Rank 0,3d2+2,6.77,5.78,6.73,2023-08-15 13:18:48
+Smoke Spirit,Fey,6,Rank 0,6d2+3,11.4,12.48,12.46,2023-08-15 13:18:48
+Vampire,Undead,15,Rank 0,15d2+3,30.75,30.82,30.23,2023-08-15 13:18:48
+Hell Hound,Demonic,3,Rank 1,3d4,11.36,12.83,11.57,2023-08-15 13:18:48
+Djinni,Elemental,12,Rank 1,12d4+2,48.24,46.83,48.88,2023-08-15 13:18:48
+Wight,Undead,11,Rank 3,11d8+1,90.05,91.05,90.61,2023-08-15 13:18:48
+Hell Hound,Demonic,5,Rank 1,5d4+2,18.73,19.69,21.29,2023-08-15 13:18:48
+Spore Spirit,Fey,6,Rank 2,6d6+1,35.51,38.0,34.02,2023-08-15 13:18:48
+Djinni,Elemental,2,Rank 3,2d8,16.14,19.91,13.95,2023-08-15 13:18:48
+Lich King,Undead,5,Rank 1,5d4+1,19.51,21.1,21.45,2023-08-15 13:18:48
+Wyvern,Dragon,10,Rank 4,10d10+2,97.92,102.5,102.65,2023-08-15 13:18:48
+Prismatic Archfey,Fey,7,Rank 0,7d2+1,14.09,13.0,14.15,2023-08-15 13:18:48
+Dust Elemental,Elemental,4,Rank 2,4d6+3,25.19,23.26,22.8,2023-08-15 13:18:48
+Brass Wyrmling,Dragon,4,Rank 1,4d4+1,17.4,16.79,16.38,2023-08-15 13:18:48
+Goblin Guard,Devilkin,5,Rank 0,5d2+4,9.54,10.38,10.69,2023-08-15 13:18:48
+Wight,Undead,18,Rank 4,18d10+3,175.31,178.46,183.6,2023-08-15 13:18:48
+Hell Hound,Demonic,5,Rank 3,5d8+1,39.69,42.09,38.33,2023-08-15 13:18:48
+Mud Mephit,Elemental,8,Rank 1,8d4+2,31.05,31.46,30.57,2023-08-15 13:18:48
+Faerie Dragon,Dragon,9,Rank 0,9d2+1,18.6,18.58,18.38,2023-08-15 13:18:48
+Quasit,Demonic,13,Rank 4,13d10+2,133.0,127.98,134.64,2023-08-15 13:18:48
+Djinni,Elemental,15,Rank 1,15d4+3,59.42,60.34,59.89,2023-08-15 13:18:48
+Skeletal Archer,Undead,5,Rank 0,5d2,10.41,10.72,9.43,2023-08-15 13:18:48
+Imp,Demonic,11,Rank 1,11d4,44.44,43.6,44.82,2023-08-15 13:18:48
+Prince of Fear,Devilkin,12,Rank 1,12d4+1,47.99,48.52,46.41,2023-08-15 13:18:48
+Revenant,Undead,9,Rank 2,9d6,53.96,53.46,51.4,2023-08-15 13:18:48
+Hell Hound,Demonic,2,Rank 0,2d2,3.01,3.62,3.55,2023-08-15 13:18:48
+Goblin Mage,Devilkin,11,Rank 0,11d2,22.22,21.02,22.68,2023-08-15 13:18:48
+Wraith,Undead,11,Rank 1,11d4+1,43.72,43.82,44.97,2023-08-15 13:18:48
+Night Hag,Demonic,7,Rank 3,7d8,56.82,52.52,58.13,2023-08-15 13:18:48
+Spore Mephit,Elemental,15,Rank 1,15d4,58.99,59.72,59.79,2023-08-15 13:18:48
+Lich,Undead,11,Rank 1,11d4+3,43.54,43.12,44.49,2023-08-15 13:18:48
+Hell Hound,Demonic,3,Rank 0,3d2+1,5.74,5.58,6.37,2023-08-15 13:18:48
+Green Faerie,Fey,4,Rank 0,4d2+2,7.79,8.99,7.11,2023-08-15 13:18:48
+Dust Elemental,Elemental,10,Rank 0,10d2+1,20.31,20.14,20.9,2023-08-15 13:18:48
+Pseudodragon,Dragon,6,Rank 0,6d2+5,12.56,12.46,12.47,2023-08-15 13:18:48
+Prince of Fear,Devilkin,2,Rank 0,2d2+5,4.93,3.09,3.12,2023-08-15 13:18:48
+Gold Dragon,Dragon,6,Rank 0,6d2,12.37,12.3,12.25,2023-08-15 13:18:48
+Mud Archfey,Fey,13,Rank 0,13d2,25.03,26.63,25.23,2023-08-15 13:18:48
+Pit Lord,Devilkin,5,Rank 3,5d8+2,41.72,38.73,41.68,2023-08-15 13:18:48
+Vampire,Undead,11,Rank 0,11d2+2,22.63,22.24,22.86,2023-08-15 13:18:48
+Quasit,Demonic,11,Rank 5,11d12,136.17,128.93,134.0,2023-08-15 13:18:48
+Kobold Guard,Devilkin,5,Rank 4,5d10+2,49.24,46.14,47.39,2023-08-15 13:18:48
+Demilich,Undead,4,Rank 0,4d2,7.31,8.9,7.95,2023-08-15 13:18:48
+Nightmare,Demonic,3,Rank 2,3d6+1,17.8,16.41,18.56,2023-08-15 13:18:48
+Succubus,Devilkin,3,Rank 2,3d6+1,17.66,17.57,19.86,2023-08-15 13:18:48
+Djinni,Elemental,9,Rank 0,9d2+3,17.62,17.54,17.34,2023-08-15 13:18:48
+Nightmare,Demonic,8,Rank 2,8d6+3,46.92,50.99,47.53,2023-08-15 13:18:48
+Copper Faerie,Fey,2,Rank 2,2d6+2,13.16,10.1,13.44,2023-08-15 13:18:48
+Efreeti,Elemental,14,Rank 1,14d4+2,55.15,56.99,56.73,2023-08-15 13:18:48
+Poltergeist,Undead,8,Rank 0,8d2+3,16.66,16.9,15.8,2023-08-15 13:18:48
+Diamond Faerie,Fey,2,Rank 1,2d4+1,7.46,8.35,8.96,2023-08-15 13:18:48
+Vampire,Undead,1,Rank 3,1d8+2,10.21,4.74,6.52,2023-08-15 13:18:48
+Onyx Archfey,Fey,13,Rank 0,13d2,26.41,26.59,25.54,2023-08-15 13:18:48
+Efreeti,Elemental,11,Rank 0,11d2+3,22.3,21.81,21.42,2023-08-15 13:18:48
+Vampire,Undead,3,Rank 0,3d2,6.48,5.53,6.69,2023-08-15 13:18:48
+Bronze Dragon,Dragon,9,Rank 0,9d2,18.07,17.91,18.63,2023-08-15 13:18:48
+Flame Archfey,Fey,2,Rank 3,2d8,14.08,12.1,17.81,2023-08-15 13:18:48
+Kobold Villager,Devilkin,7,Rank 0,7d2+3,13.08,14.25,13.45,2023-08-15 13:18:48
+Banshee,Undead,2,Rank 1,2d4+3,8.73,7.15,8.84,2023-08-15 13:18:48
+Hell Hound,Demonic,2,Rank 4,2d10,16.63,23.61,22.59,2023-08-15 13:18:48
+Prince of Fear,Devilkin,16,Rank 0,16d2+4,31.51,32.07,31.76,2023-08-15 13:18:48
+Ghostly Mage,Undead,14,Rank 0,14d2+4,28.58,28.4,27.33,2023-08-15 13:18:48
+Pit Lord,Devilkin,4,Rank 1,4d4+2,15.18,15.07,15.24,2023-08-15 13:23:04
+Prismatic Drake,Dragon,18,Rank 0,18d2+3,36.97,36.5,36.5,2023-08-15 13:23:04
+Efreeti,Elemental,18,Rank 3,18d8+3,145.46,144.51,146.38,2023-08-15 13:23:04
+Goblin Villager,Devilkin,10,Rank 2,10d6+2,59.98,62.13,57.3,2023-08-15 13:23:04
+Gold Drake,Dragon,3,Rank 0,3d2,5.58,6.06,6.96,2023-08-15 13:23:04
+Shadow Archfey,Fey,9,Rank 2,9d6+1,52.13,55.89,55.63,2023-08-15 13:23:04
+Goblin Mage,Devilkin,6,Rank 2,6d6+1,35.43,34.44,37.92,2023-08-15 13:23:04
+Copper Drake,Dragon,6,Rank 0,6d2+2,12.15,11.67,11.7,2023-08-15 13:23:04
+Imp,Demonic,13,Rank 1,13d4,52.12,52.36,50.5,2023-08-15 13:23:04
+Prince of Fear,Devilkin,10,Rank 3,10d8+3,80.59,77.78,80.56,2023-08-15 13:23:04
+Mummy,Undead,3,Rank 4,3d10+1,32.47,25.33,31.01,2023-08-15 13:23:04
+Flame Spirit,Fey,2,Rank 2,2d6+4,13.26,12.53,13.07,2023-08-15 13:23:04
+Nightmare,Demonic,18,Rank 2,18d6+1,105.51,108.39,106.19,2023-08-15 13:23:04
+Mummy,Undead,7,Rank 1,7d4,27.79,29.62,29.91,2023-08-15 13:23:04
+Emerald Faerie,Fey,3,Rank 1,3d4+4,12.57,12.64,11.98,2023-08-15 13:23:04
+Balor,Demonic,16,Rank 2,16d6+5,95.68,93.28,97.9,2023-08-15 13:23:04
+Revenant,Undead,13,Rank 2,13d6,76.79,75.1,77.32,2023-08-15 13:23:04
+Magma Mephit,Elemental,13,Rank 0,13d2+3,26.63,26.05,26.72,2023-08-15 13:23:04
+Nightmare,Demonic,7,Rank 3,7d8+1,55.73,57.15,56.26,2023-08-15 13:23:04
+Banshee,Undead,6,Rank 0,6d2+3,12.32,11.8,11.91,2023-08-15 13:23:04
+Shadow Spirit,Fey,13,Rank 0,13d2,26.0,25.02,26.28,2023-08-15 13:23:04
+Quasit,Demonic,3,Rank 4,3d10+1,31.52,27.24,27.01,2023-08-15 13:23:04
+Lich,Undead,3,Rank 2,3d6+4,18.3,17.16,16.96,2023-08-15 13:23:04
+Brass Archfey,Fey,6,Rank 1,6d4+4,22.15,24.96,23.95,2023-08-15 13:23:04
+Succubus,Devilkin,16,Rank 2,16d6+1,93.69,96.66,97.09,2023-08-15 13:23:04
+Pseudodragon,Dragon,7,Rank 2,7d6+2,42.58,42.14,43.04,2023-08-15 13:23:04
+Ice Archfey,Fey,16,Rank 0,16d2+3,32.56,31.7,32.25,2023-08-15 13:23:04
+Smoke Devil,Devilkin,1,Rank 3,1d8+3,9.09,10.08,7.15,2023-08-15 13:23:04
+Silver Archfey,Fey,8,Rank 1,8d4+2,31.4,33.13,32.48,2023-08-15 13:23:04
+Quasit,Demonic,6,Rank 1,6d4,24.39,22.29,22.57,2023-08-15 13:23:04
+Pit Lord,Devilkin,15,Rank 4,15d10,147.98,145.17,151.21,2023-08-15 13:23:04
+Pseudodragon,Dragon,9,Rank 3,9d8+3,73.01,71.16,73.03,2023-08-15 13:23:04
+Steam Spirit,Fey,8,Rank 4,8d10+1,78.23,76.04,81.75,2023-08-15 13:23:04
+Pit Lord,Devilkin,4,Rank 0,4d2,7.6,8.27,8.41,2023-08-15 13:23:04
+Mud Archfey,Fey,11,Rank 4,11d10+3,108.62,106.61,106.51,2023-08-15 13:23:04
+Lightning Mephit,Elemental,5,Rank 1,5d4,20.68,20.06,20.01,2023-08-15 13:23:04
+Pit Lord,Devilkin,1,Rank 0,1d2,2.3,2.82,2.35,2023-08-15 13:23:04
+Emerald Faerie,Fey,19,Rank 3,19d8,152.99,149.94,154.66,2023-08-15 13:23:04
+Hook Horror,Demonic,7,Rank 2,7d6,41.14,43.98,41.72,2023-08-15 13:23:04
+Mummy Lord,Undead,7,Rank 1,7d4+1,28.12,27.54,29.15,2023-08-15 13:23:04
+White Wyrmling,Dragon,14,Rank 2,14d6+2,83.08,83.82,84.16,2023-08-15 13:23:04
+Onyx Faerie,Fey,9,Rank 1,9d4+1,36.57,36.81,36.96,2023-08-15 13:23:04
+Nightmare,Demonic,4,Rank 2,4d6,24.33,22.93,25.49,2023-08-15 13:23:04
+Skeletal Archer,Undead,3,Rank 1,3d4+1,13.93,11.43,11.17,2023-08-15 13:23:04
+Pseudodragon,Dragon,2,Rank 1,2d4,6.38,7.31,7.99,2023-08-15 13:23:04
+Djinni,Elemental,4,Rank 2,4d6+3,22.26,22.1,21.5,2023-08-15 13:23:04
+Goblin Villager,Devilkin,18,Rank 3,18d8+2,147.13,143.54,145.83,2023-08-15 13:23:04
+Ghostly Mage,Undead,9,Rank 3,9d8,72.43,72.86,72.27,2023-08-15 13:23:04
+Black Faerie,Fey,3,Rank 3,3d8,21.3,23.96,26.11,2023-08-15 13:23:04
+Imp,Demonic,3,Rank 3,3d8+3,24.02,22.72,23.41,2023-08-15 13:23:04
+Prince of Fear,Devilkin,12,Rank 0,12d2,23.62,24.16,24.19,2023-08-15 13:23:04
+Gold Drake,Dragon,3,Rank 0,3d2+2,5.83,6.09,5.57,2023-08-15 13:23:04
+Shadow Mephit,Elemental,14,Rank 0,14d2+2,27.21,28.02,28.39,2023-08-15 13:23:04
+Mud Devil,Devilkin,6,Rank 0,6d2+1,12.7,11.87,11.14,2023-08-15 13:23:04
+Diamond Faerie,Fey,9,Rank 0,9d2+3,18.65,17.49,17.34,2023-08-15 13:23:04
+Quasit,Demonic,7,Rank 0,7d2+5,13.08,14.19,14.77,2023-08-15 13:23:04
+Platinum Wyrmling,Dragon,14,Rank 0,14d2,27.41,27.51,28.84,2023-08-15 13:23:04
+Djinni,Elemental,8,Rank 0,8d2+1,16.34,16.52,15.88,2023-08-15 13:23:04
+Prince of Fear,Devilkin,8,Rank 3,8d8+1,60.17,60.95,65.68,2023-08-15 13:23:04
+Faerie Dragon,Dragon,4,Rank 0,4d2+1,8.24,7.97,7.41,2023-08-15 13:23:04
+Imp,Demonic,14,Rank 0,14d2+1,28.83,28.12,27.1,2023-08-15 13:23:04
+Prismatic Dragon,Dragon,13,Rank 3,13d8+2,107.02,100.87,106.91,2023-08-15 13:23:04
+Ruby Faerie,Fey,14,Rank 0,14d2+2,27.17,27.21,28.45,2023-08-15 13:23:04
+Spore Mephit,Elemental,12,Rank 3,12d8+2,94.52,95.73,93.61,2023-08-15 13:23:04
+Goblin Archer,Devilkin,7,Rank 3,7d8+1,56.27,55.39,58.85,2023-08-15 13:23:04
+Faerie Dragon,Dragon,12,Rank 1,12d4+1,46.43,49.14,48.78,2023-08-15 13:23:04
+Emerald Archfey,Fey,10,Rank 1,10d4+4,40.95,38.16,40.36,2023-08-15 13:23:04
+Pit Lord,Devilkin,7,Rank 2,7d6+2,41.55,39.14,43.98,2023-08-15 13:23:04
+White Wyrmling,Dragon,14,Rank 2,14d6+3,86.17,82.27,84.27,2023-08-15 13:23:04
+Diamond Faerie,Fey,8,Rank 4,8d10+2,82.82,81.72,83.95,2023-08-15 13:23:04
+Hell Hound,Demonic,11,Rank 3,11d8+4,86.87,90.01,89.87,2023-08-15 13:23:04
+Wight,Undead,16,Rank 4,16d10+2,162.73,158.89,160.8,2023-08-15 13:23:04
+Shadow Elemental,Elemental,3,Rank 1,3d4+1,13.86,12.91,11.23,2023-08-15 13:23:04
+Lich King,Undead,7,Rank 1,7d4+2,26.52,28.73,27.53,2023-08-15 13:23:04
+Dust Spirit,Fey,2,Rank 0,2d2,3.22,4.7,3.9,2023-08-15 13:23:04
+Efreeti,Elemental,6,Rank 0,6d2,12.14,12.97,12.82,2023-08-15 13:23:04
+Succubus,Devilkin,2,Rank 2,2d6+4,10.61,14.95,10.45,2023-08-15 13:23:04
+Emerald Drake,Dragon,3,Rank 0,3d2,5.69,6.7,5.66,2023-08-15 13:23:04
+Magma Mephit,Elemental,12,Rank 2,12d6+2,71.51,72.92,72.64,2023-08-15 13:23:04
+Hook Horror,Demonic,2,Rank 1,2d4+1,8.09,8.46,8.74,2023-08-15 13:23:04
+Green Dragon,Dragon,2,Rank 4,2d10+5,23.99,19.2,22.1,2023-08-15 13:23:04
+Steam Mephit,Elemental,13,Rank 2,13d6,75.76,77.89,77.51,2023-08-15 13:23:04
+Incubus,Devilkin,6,Rank 1,6d4+3,24.34,25.11,23.03,2023-08-15 13:23:04
+Mud Spirit,Fey,3,Rank 1,3d4+1,11.28,11.69,10.35,2023-08-15 13:23:04
+Silver Demon,Demonic,12,Rank 1,12d4+1,47.15,47.94,47.35,2023-08-15 13:23:04
+Wraith,Undead,4,Rank 3,4d8,33.86,34.87,33.14,2023-08-15 13:23:04
+Copper Faerie,Fey,11,Rank 0,11d2+1,21.65,22.42,21.89,2023-08-15 13:23:04
+Efreeti,Elemental,10,Rank 2,10d6+3,57.09,58.72,58.27,2023-08-15 13:23:04
+Ghast,Undead,5,Rank 1,5d4+4,20.05,19.37,21.39,2023-08-15 13:23:04
+Shadow Archfey,Fey,7,Rank 2,7d6+1,43.84,44.15,43.64,2023-08-15 13:23:04
+Kobold Guard,Devilkin,11,Rank 2,11d6,68.23,66.98,65.89,2023-08-15 13:23:04
+Wyvern,Dragon,13,Rank 4,13d10+2,134.06,129.65,130.28,2023-08-15 13:23:04
+Flame Mephit,Elemental,4,Rank 0,4d2,8.84,8.52,7.17,2023-08-15 13:23:04
+Skeletal Knight,Undead,9,Rank 0,9d2,17.72,17.43,18.48,2023-08-15 13:23:04
+Emerald Archfey,Fey,4,Rank 2,4d6,26.52,21.52,21.58,2023-08-15 13:23:04
+Night Hag,Demonic,3,Rank 1,3d4+1,12.71,12.07,10.04,2023-08-15 13:23:04
+Dracolich,Undead,13,Rank 0,13d2+2,26.03,25.92,26.59,2023-08-15 13:23:04
+Magma Mephit,Elemental,10,Rank 0,10d2+3,20.61,19.86,20.75,2023-08-15 13:23:04
+Pit Lord,Devilkin,3,Rank 2,3d6+1,18.4,18.19,19.75,2023-08-15 13:23:04
+White Drake,Dragon,4,Rank 2,4d6+4,25.94,22.97,24.28,2023-08-15 13:23:04
+Djinni,Elemental,1,Rank 4,1d10,8.57,14.72,11.9,2023-08-15 13:23:04
+Goblin Villager,Devilkin,8,Rank 1,8d4+1,31.05,30.14,32.61,2023-08-15 13:23:04
+Diamond Drake,Dragon,17,Rank 1,17d4+2,69.72,69.27,66.95,2023-08-15 13:23:04
+Djinni,Elemental,5,Rank 3,5d8+1,41.59,40.02,38.74,2023-08-15 13:23:04
+Kobold Mage,Devilkin,9,Rank 2,9d6,56.44,54.07,52.8,2023-08-15 13:23:04
+Vampire,Undead,15,Rank 0,15d2+1,30.1,30.52,30.94,2023-08-15 13:23:04
+Shadow Spirit,Fey,20,Rank 1,20d4,80.63,78.43,79.78,2023-08-15 13:23:04
+Djinni,Elemental,4,Rank 0,4d2+5,7.11,8.93,8.29,2023-08-15 13:23:04
+Balor,Demonic,10,Rank 0,10d2+2,19.44,20.21,19.39,2023-08-15 13:23:04
+Pseudodragon,Dragon,7,Rank 1,7d4+2,28.87,28.39,28.88,2023-08-15 13:23:04
+Ice Spirit,Fey,17,Rank 1,17d4+1,67.0,68.55,67.56,2023-08-15 13:23:04
+Goblin Archer,Devilkin,18,Rank 0,18d2,35.91,36.51,36.01,2023-08-15 13:23:04
+Banshee,Undead,6,Rank 1,6d4,22.62,23.55,23.79,2023-08-15 13:23:04
+Flame Mephit,Elemental,1,Rank 1,1d4,3.54,3.94,4.06,2023-08-15 13:23:04
+Pit Fiend,Demonic,4,Rank 1,4d4+2,17.75,16.02,14.88,2023-08-15 13:23:04
+Dracolich,Undead,17,Rank 2,17d6+4,100.58,103.16,101.76,2023-08-15 13:23:04
+Efreeti,Elemental,8,Rank 3,8d8+1,65.86,66.95,63.25,2023-08-15 13:23:04
+Magma Devil,Devilkin,1,Rank 1,1d4+1,3.81,4.23,2.46,2023-08-15 13:23:04
+Black Dragon,Dragon,4,Rank 1,4d4+3,16.77,16.03,15.56,2023-08-15 13:23:04
+Efreeti,Elemental,14,Rank 2,14d6,83.02,81.35,85.8,2023-08-15 13:23:04
+Prince of Fear,Devilkin,14,Rank 2,14d6+1,85.98,85.85,85.95,2023-08-15 13:23:04
+Faerie Dragon,Dragon,2,Rank 0,2d2,3.12,4.76,3.47,2023-08-15 13:23:04
+Shadow Elemental,Elemental,6,Rank 0,6d2+2,11.01,12.58,11.16,2023-08-15 13:23:04
+Mummy,Undead,15,Rank 0,15d2+3,30.63,29.95,30.93,2023-08-15 13:23:04
+Flame Archfey,Fey,10,Rank 2,10d6+2,59.97,60.76,59.39,2023-08-15 13:23:04
+Red Demon,Demonic,12,Rank 0,12d2+2,23.62,24.23,24.1,2023-08-15 13:23:04
+Death Knight,Undead,5,Rank 1,5d4,19.8,19.48,19.43,2023-08-15 13:23:04
+Spore Spirit,Fey,2,Rank 0,2d2+1,3.06,4.01,3.17,2023-08-15 13:23:04
+Quasit,Demonic,12,Rank 0,12d2+1,23.66,24.71,23.68,2023-08-15 13:23:04
+Death Knight,Undead,8,Rank 3,8d8,62.08,60.66,61.74,2023-08-15 13:23:04
+Onyx Faerie,Fey,3,Rank 1,3d4+2,11.38,12.96,11.49,2023-08-15 13:23:04
+Imp,Demonic,16,Rank 0,16d2+1,31.02,32.42,32.32,2023-08-15 13:23:04
+Prince of Fear,Devilkin,5,Rank 1,5d4,19.98,18.79,20.91,2023-08-15 13:23:04
+Brass Dragon,Dragon,9,Rank 0,9d2,17.18,18.09,18.9,2023-08-15 13:23:04
+Steam Elemental,Elemental,9,Rank 1,9d4+4,37.65,36.79,37.61,2023-08-15 13:23:04
+Balor,Demonic,5,Rank 2,5d6,28.2,30.87,29.29,2023-08-15 13:23:04
+Succubus,Devilkin,7,Rank 1,7d4+5,27.84,28.6,28.63,2023-08-15 13:23:04
+Wight,Undead,8,Rank 1,8d4+2,31.08,30.52,32.14,2023-08-15 13:23:04
+Bronze Drake,Dragon,11,Rank 1,11d4+3,44.77,45.78,44.55,2023-08-15 13:23:04
+Flame Elemental,Elemental,2,Rank 0,2d2,3.03,4.29,4.32,2023-08-15 13:23:04
+Prince of Fear,Devilkin,5,Rank 1,5d4,20.0,20.88,18.21,2023-08-15 13:23:04
+Silver Wyrmling,Dragon,9,Rank 2,9d6+1,53.38,53.12,51.81,2023-08-15 13:23:04
+Spore Elemental,Elemental,10,Rank 2,10d6,59.44,61.9,60.6,2023-08-15 13:23:04
+Pit Lord,Devilkin,11,Rank 2,11d6+3,65.23,68.66,67.25,2023-08-15 13:23:04
+Wyvern,Dragon,5,Rank 1,5d4,18.84,21.53,20.14,2023-08-15 13:23:04
+Pit Fiend,Demonic,5,Rank 4,5d10+3,47.36,49.47,51.06,2023-08-15 13:23:04
+Succubus,Devilkin,18,Rank 1,18d4+1,73.42,71.74,72.95,2023-08-15 13:23:04
+Wight,Undead,12,Rank 3,12d8+3,94.05,96.71,94.69,2023-08-15 13:23:04
+Blue Faerie,Fey,2,Rank 3,2d8+1,13.17,17.34,17.52,2023-08-15 13:23:04
+Kobold Guard,Devilkin,1,Rank 0,1d2,2.19,2.49,1.36,2023-08-15 13:23:04
+Mummy,Undead,3,Rank 0,3d2+2,6.56,6.56,6.24,2023-08-15 13:23:04
+Lightning Spirit,Fey,2,Rank 0,2d2+3,4.63,3.76,3.42,2023-08-15 13:23:04
+Imp,Demonic,16,Rank 0,16d2+3,31.88,32.74,32.3,2023-08-15 13:23:04
+Revenant,Undead,4,Rank 3,4d8,31.69,35.65,33.44,2023-08-15 13:23:04
+Brass Archfey,Fey,4,Rank 1,4d4+5,17.09,14.87,14.9,2023-08-15 13:23:04
+Night Hag,Demonic,14,Rank 1,14d4,56.28,56.46,57.73,2023-08-15 13:23:04
+Lich,Undead,5,Rank 1,5d4+2,21.78,18.71,18.84,2023-08-15 13:23:04
+Silver Faerie,Fey,9,Rank 1,9d4,36.2,36.41,36.41,2023-08-15 13:23:04
+Kobold Knight,Devilkin,10,Rank 1,10d4+2,41.5,38.84,39.88,2023-08-15 13:23:04
+Ghostly Villager,Undead,5,Rank 2,5d6+1,30.55,32.68,29.0,2023-08-15 13:23:04
+Djinni,Elemental,18,Rank 0,18d2+3,35.42,36.8,35.01,2023-08-15 13:23:04
+Onyx Demon,Demonic,7,Rank 1,7d4+1,27.11,28.37,29.84,2023-08-15 13:23:04
+Ghast,Undead,5,Rank 1,5d4,21.99,18.82,20.28,2023-08-15 13:23:04
+Emerald Faerie,Fey,4,Rank 0,4d2+2,7.25,8.89,8.72,2023-08-15 13:23:04
+Hell Hound,Demonic,8,Rank 2,8d6+1,50.27,46.2,49.43,2023-08-15 13:23:04
+Vampire,Undead,4,Rank 2,4d6+1,23.73,23.55,24.96,2023-08-15 13:23:04
+White Faerie,Fey,3,Rank 1,3d4+1,10.03,12.57,12.34,2023-08-15 13:23:04
+Efreeti,Elemental,8,Rank 1,8d4+2,32.95,31.38,31.17,2023-08-15 13:23:04
+Ice Devil,Devilkin,3,Rank 0,3d2+1,5.7,5.17,5.5,2023-08-15 13:23:04
+Wyvern,Dragon,13,Rank 0,13d2+1,25.63,26.14,26.97,2023-08-15 13:23:04
+Djinni,Elemental,14,Rank 0,14d2+2,28.05,28.1,27.88,2023-08-15 13:23:04
+Kobold Mage,Devilkin,3,Rank 1,3d4+2,10.61,11.73,12.47,2023-08-15 13:23:04
+Red Wyrmling,Dragon,9,Rank 0,9d2+3,17.16,17.53,17.44,2023-08-15 13:23:04
+Smoke Elemental,Elemental,14,Rank 1,14d4,56.73,56.69,54.98,2023-08-15 13:23:04
+Goblin Archer,Devilkin,6,Rank 0,6d2+1,12.25,12.31,12.71,2023-08-15 13:23:04
+Pseudodragon,Dragon,1,Rank 3,1d8+1,5.35,5.22,8.54,2023-08-15 13:23:04
+Sapphire Faerie,Fey,6,Rank 0,6d2+3,12.82,12.44,11.73,2023-08-15 13:23:04
+Imp,Demonic,14,Rank 2,14d6+1,83.36,82.04,85.97,2023-08-15 13:23:04
+Mummy,Undead,4,Rank 4,4d10,39.58,39.14,38.38,2023-08-15 13:23:04
+Faerie Dragon,Dragon,2,Rank 2,2d6+2,11.3,13.59,10.71,2023-08-15 13:23:04
+Djinni,Elemental,14,Rank 0,14d2+3,28.31,27.7,27.43,2023-08-15 13:23:04
+Pit Lord,Devilkin,10,Rank 3,10d8,77.61,82.21,80.2,2023-08-15 13:23:04
+Wyvern,Dragon,9,Rank 0,9d2,17.85,18.74,18.31,2023-08-15 13:23:04
+Shadow Archfey,Fey,7,Rank 0,7d2+4,14.92,14.1,14.23,2023-08-15 13:23:04
+Night Hag,Demonic,13,Rank 0,13d2+3,26.63,26.65,25.63,2023-08-15 13:23:04
+Banshee,Undead,15,Rank 1,15d4,58.03,60.48,60.71,2023-08-15 13:23:04
+Efreeti,Elemental,8,Rank 4,8d10+3,75.8,78.88,79.48,2023-08-15 13:23:04
+Pit Lord,Devilkin,3,Rank 2,3d6+3,19.9,20.59,18.94,2023-08-15 13:23:04
+Lich,Undead,5,Rank 0,5d2,10.22,9.2,9.29,2023-08-15 13:23:04
+Steam Elemental,Elemental,5,Rank 3,5d8+1,40.42,40.62,40.67,2023-08-15 13:23:04
+Kobold Guard,Devilkin,3,Rank 1,3d4,12.06,11.32,12.59,2023-08-15 13:23:04
+Banshee,Undead,7,Rank 0,7d2+3,13.94,14.24,14.89,2023-08-15 13:23:04
+Brass Archfey,Fey,6,Rank 3,6d8+1,46.35,51.64,49.76,2023-08-15 13:23:04
+Balor,Demonic,4,Rank 2,4d6+1,22.38,24.58,26.04,2023-08-15 13:23:04
+Ghast,Undead,3,Rank 5,3d12,31.27,40.13,39.74,2023-08-15 13:23:04
+Smoke Archfey,Fey,15,Rank 3,15d8+4,122.77,118.1,121.24,2023-08-15 13:23:04
+Djinni,Elemental,1,Rank 5,1d12+2,13.04,14.95,16.43,2023-08-15 13:23:04
+Kobold Knight,Devilkin,17,Rank 4,17d10+3,167.18,171.66,172.54,2023-08-15 13:23:04
+Silver Drake,Dragon,7,Rank 4,7d10+1,66.46,66.52,69.59,2023-08-15 13:23:04
+Djinni,Elemental,7,Rank 0,7d2+1,13.45,13.74,13.9,2023-08-15 13:23:04
+Incubus,Devilkin,12,Rank 1,12d4+2,47.16,48.01,49.46,2023-08-15 13:23:04
+Faerie Dragon,Dragon,4,Rank 0,4d2,7.58,8.04,7.39,2023-08-15 13:23:04
+Efreeti,Elemental,8,Rank 2,8d6+1,48.1,48.29,46.52,2023-08-15 13:23:04
+Demilich,Undead,3,Rank 0,3d2+1,6.71,5.87,6.42,2023-08-15 13:23:04
+Steam Spirit,Fey,2,Rank 2,2d6+2,14.12,12.9,14.42,2023-08-15 13:23:04
+Djinni,Elemental,6,Rank 1,6d4+1,25.77,24.47,24.89,2023-08-15 13:23:04
+Dust Devil,Devilkin,7,Rank 0,7d2+3,13.03,13.05,13.19,2023-08-15 13:23:04
+Emerald Archfey,Fey,4,Rank 0,4d2,7.5,7.93,8.14,2023-08-15 13:23:04
+Prince of Fear,Devilkin,7,Rank 1,7d4+1,27.21,27.36,29.89,2023-08-15 13:23:04
+White Wyrmling,Dragon,3,Rank 3,3d8,21.42,25.32,25.6,2023-08-15 13:23:04
+Djinni,Elemental,9,Rank 0,9d2+1,17.73,18.35,17.45,2023-08-15 13:23:04
+Succubus,Devilkin,14,Rank 2,14d6+1,82.28,84.12,84.05,2023-08-15 13:23:04
+Diamond Dragon,Dragon,3,Rank 2,3d6+1,17.1,18.25,19.99,2023-08-15 13:23:04
+Efreeti,Elemental,7,Rank 2,7d6,40.62,42.47,43.52,2023-08-15 13:23:04
+Prince of Fear,Devilkin,9,Rank 1,9d4,35.36,35.7,36.8,2023-08-15 13:23:04
+Platinum Dragon,Dragon,6,Rank 2,6d6+1,35.33,36.46,38.39,2023-08-15 13:23:04
+Red Demon,Demonic,2,Rank 3,2d8+2,13.17,19.08,14.81,2023-08-15 13:23:04
+Goblin Villager,Devilkin,1,Rank 2,1d6,7.28,4.09,8.14,2023-08-15 13:23:04
+Sapphire Dragon,Dragon,11,Rank 1,11d4+2,44.85,44.42,45.55,2023-08-15 13:23:04
+Efreeti,Elemental,1,Rank 0,1d2+1,2.71,2.78,2.73,2023-08-15 13:23:04
+Magma Devil,Devilkin,6,Rank 1,6d4+2,23.01,25.24,23.7,2023-08-15 13:23:04
+Ghast,Undead,3,Rank 1,3d4+2,12.09,12.46,11.91,2023-08-15 13:23:04
+Steam Spirit,Fey,11,Rank 2,11d6+1,65.4,64.62,63.32,2023-08-15 13:23:04
+Quasit,Demonic,11,Rank 4,11d10,105.52,110.04,112.25,2023-08-15 13:23:04
+Faerie Dragon,Dragon,6,Rank 2,6d6,35.31,35.55,34.49,2023-08-15 13:23:04
+Efreeti,Elemental,3,Rank 0,3d2+1,5.28,6.63,5.41,2023-08-15 13:23:04
+Mud Devil,Devilkin,10,Rank 0,10d2+1,19.55,19.13,20.92,2023-08-15 13:23:04
+Banshee,Undead,17,Rank 2,17d6,102.99,102.99,103.4,2023-08-15 13:23:04
+Magma Spirit,Fey,11,Rank 2,11d6+2,68.51,67.58,64.55,2023-08-15 13:23:04
+Incubus,Devilkin,6,Rank 2,6d6,35.95,38.76,33.32,2023-08-15 13:23:04
+Wyvern,Dragon,12,Rank 1,12d4,49.81,47.46,49.66,2023-08-15 13:23:04
+Shadow Elemental,Elemental,14,Rank 1,14d4+1,54.75,55.3,54.97,2023-08-15 13:23:04
+Goblin Mage,Devilkin,12,Rank 2,12d6+1,73.85,72.9,71.34,2023-08-15 13:23:04
+Faerie Dragon,Dragon,11,Rank 0,11d2+2,22.96,21.31,22.82,2023-08-15 13:23:04
+Ice Archfey,Fey,4,Rank 3,4d8+2,34.94,30.52,32.25,2023-08-15 13:23:04
+Pit Fiend,Demonic,12,Rank 1,12d4+2,49.02,47.51,47.98,2023-08-15 13:23:04
+Ghast,Undead,6,Rank 2,6d6+2,35.36,35.84,36.31,2023-08-15 13:23:04
+Brass Archfey,Fey,14,Rank 5,14d12+4,172.46,163.94,163.29,2023-08-15 13:23:04
+Flame Elemental,Elemental,2,Rank 0,2d2+2,3.86,4.8,4.92,2023-08-15 13:23:04
+Poltergeist,Undead,8,Rank 2,8d6+5,48.15,48.84,49.08,2023-08-15 13:23:04
+Gold Dragon,Dragon,7,Rank 0,7d2,14.33,14.94,14.03,2023-08-15 13:23:04
+Spore Elemental,Elemental,11,Rank 0,11d2+2,21.86,21.69,21.53,2023-08-15 13:23:04
+Goblin Knight,Devilkin,4,Rank 3,4d8+3,31.23,35.0,28.08,2023-08-15 13:23:04
+Faerie Dragon,Dragon,10,Rank 3,10d8+3,80.08,80.81,82.12,2023-08-15 13:23:04
+Imp,Demonic,3,Rank 0,3d2,5.72,6.15,6.16,2023-08-15 13:23:04
+Mummy Lord,Undead,5,Rank 1,5d4+3,20.29,19.83,20.1,2023-08-15 13:23:04
+Steam Spirit,Fey,10,Rank 3,10d8,76.39,79.55,79.36,2023-08-15 13:23:04
+Djinni,Elemental,3,Rank 2,3d6+1,20.43,17.03,15.02,2023-08-15 13:23:04
+Ruby Demon,Demonic,17,Rank 3,17d8+1,136.2,133.04,134.48,2023-08-15 13:23:04
+Pit Lord,Devilkin,5,Rank 0,5d2+3,10.21,9.81,9.77,2023-08-15 13:23:04
+Ghostly Villager,Undead,2,Rank 0,2d2,3.83,4.67,3.21,2023-08-15 13:23:04
+Djinni,Elemental,5,Rank 3,5d8,39.6,43.93,38.79,2023-08-15 13:23:04
+Pit Lord,Devilkin,4,Rank 0,4d2+1,7.23,7.06,7.04,2023-08-15 13:23:04
+Flame Archfey,Fey,7,Rank 2,7d6,44.07,39.44,43.86,2023-08-15 13:23:04
+Quasit,Demonic,9,Rank 1,9d4+3,37.36,35.31,35.73,2023-08-15 13:23:04
+Wight,Undead,7,Rank 4,7d10+3,69.61,66.74,73.12,2023-08-15 13:23:04
+Wyvern,Dragon,4,Rank 0,4d2+1,7.02,7.33,8.91,2023-08-15 13:23:04
+Onyx Faerie,Fey,13,Rank 1,13d4+2,52.04,52.1,53.17,2023-08-15 13:23:04
+Nightmare,Demonic,3,Rank 3,3d8+1,25.96,26.19,22.42,2023-08-15 13:23:04
+Death Knight,Undead,9,Rank 0,9d2,17.84,18.79,18.98,2023-08-15 13:23:04
+Brass Archfey,Fey,7,Rank 0,7d2,13.94,13.62,13.54,2023-08-15 13:23:04
+Pit Fiend,Demonic,9,Rank 2,9d6+2,55.48,52.1,55.83,2023-08-15 13:23:04
+Goblin Guard,Devilkin,10,Rank 2,10d6+3,58.26,61.67,58.36,2023-08-15 13:23:04
+Bronze Drake,Dragon,5,Rank 2,5d6+1,32.72,31.19,32.42,2023-08-15 13:23:04
+Spore Elemental,Elemental,13,Rank 1,13d4,51.97,52.71,53.29,2023-08-15 13:23:04
+Pit Lord,Devilkin,4,Rank 1,4d4,17.21,16.47,15.77,2023-08-15 13:23:04
+Wyvern,Dragon,1,Rank 2,1d6+1,7.8,6.61,7.57,2023-08-15 13:23:04
+Shadow Mephit,Elemental,11,Rank 1,11d4+5,43.31,44.98,44.52,2023-08-15 13:23:04
+Succubus,Devilkin,7,Rank 0,7d2+1,14.63,13.48,14.97,2023-08-15 13:23:04
+Red Wyrmling,Dragon,2,Rank 0,2d2,4.55,3.61,3.33,2023-08-15 13:23:04
+Diamond Faerie,Fey,13,Rank 2,13d6+1,79.1,79.65,78.82,2023-08-15 13:23:04
+Hell Hound,Demonic,8,Rank 1,8d4+2,31.41,32.16,32.87,2023-08-15 13:23:04
+Dracolich,Undead,11,Rank 2,11d6+1,65.2,66.6,64.07,2023-08-15 13:23:04
+Flame Archfey,Fey,10,Rank 0,10d2+1,19.07,19.29,19.39,2023-08-15 13:23:04
+Green Demon,Demonic,5,Rank 0,5d2,10.17,9.69,9.63,2023-08-15 13:23:04
+Vampire,Undead,3,Rank 2,3d6+2,16.79,16.81,19.66,2023-08-15 13:23:04
+Prismatic Faerie,Fey,4,Rank 2,4d6+1,22.65,22.61,24.35,2023-08-15 13:23:04
+Mud Elemental,Elemental,5,Rank 3,5d8+1,40.85,41.59,40.45,2023-08-15 13:23:04
+Shadow Devil,Devilkin,6,Rank 3,6d8+2,48.11,44.74,44.64,2023-08-15 13:23:04
+Copper Dragon,Dragon,2,Rank 4,2d10+2,20.63,17.25,16.8,2023-08-15 13:23:04
+Efreeti,Elemental,6,Rank 0,6d2,12.19,11.17,11.66,2023-08-15 13:23:04
+Kobold Knight,Devilkin,13,Rank 2,13d6+4,78.92,79.3,77.94,2023-08-15 13:23:04
+Emerald Faerie,Fey,14,Rank 1,14d4,55.45,54.85,56.54,2023-08-15 13:23:04
+Imp,Demonic,8,Rank 1,8d4+2,31.12,31.5,30.04,2023-08-15 13:23:04
+Poltergeist,Undead,11,Rank 0,11d2+2,21.22,22.7,22.45,2023-08-15 13:23:04
+Dust Spirit,Fey,1,Rank 0,1d2+2,1.57,1.78,2.4,2023-08-15 13:23:04
+Imp,Demonic,2,Rank 3,2d8+2,15.95,14.18,12.13,2023-08-15 13:23:04
+Prince of Fear,Devilkin,5,Rank 0,5d2,10.97,10.82,10.08,2023-08-15 13:23:04
+White Drake,Dragon,16,Rank 1,16d4+1,64.07,63.76,64.57,2023-08-15 13:23:04
+Smoke Elemental,Elemental,2,Rank 0,2d2,3.2,4.81,3.73,2023-08-15 13:23:04
+Goblin Villager,Devilkin,15,Rank 1,15d4+1,60.56,60.72,59.62,2023-08-15 13:23:04
+Death Knight,Undead,10,Rank 0,10d2+1,19.4,20.39,19.71,2023-08-15 13:23:04
+Djinni,Elemental,11,Rank 1,11d4+2,44.9,42.23,45.21,2023-08-15 13:23:04
+Revenant,Undead,4,Rank 0,4d2+3,7.64,8.03,8.15,2023-08-15 13:23:04
+Pseudodragon,Dragon,4,Rank 2,4d6+3,24.0,26.51,25.62,2023-08-15 13:23:04
+Djinni,Elemental,16,Rank 0,16d2+1,31.62,32.32,31.02,2023-08-15 13:23:04
+Goblin Mage,Devilkin,3,Rank 0,3d2+3,5.07,6.64,5.88,2023-08-15 13:23:04
+Wyvern,Dragon,11,Rank 0,11d2,21.91,21.47,21.52,2023-08-15 13:23:04
+Night Hag,Demonic,13,Rank 0,13d2+1,25.09,25.86,26.52,2023-08-15 13:23:04
+Onyx Drake,Dragon,4,Rank 1,4d4+1,17.75,16.24,15.48,2023-08-15 13:23:04
+Lightning Elemental,Elemental,2,Rank 0,2d2,3.9,4.45,4.8,2023-08-15 13:23:04
+Wraith,Undead,4,Rank 4,4d10+2,35.84,41.46,37.46,2023-08-15 13:23:04
+Emerald Faerie,Fey,7,Rank 2,7d6+1,42.93,41.48,41.83,2023-08-15 13:23:04
+Djinni,Elemental,8,Rank 3,8d8,62.42,62.68,62.54,2023-08-15 13:23:04
+Prince of Fear,Devilkin,17,Rank 1,17d4+2,69.31,68.86,67.94,2023-08-15 13:23:04
+Bronze Faerie,Fey,3,Rank 2,3d6,16.18,16.27,17.23,2023-08-15 13:23:04
+Djinni,Elemental,8,Rank 3,8d8+3,65.87,63.6,65.69,2023-08-15 13:23:04
+Pit Lord,Devilkin,5,Rank 1,5d4+1,18.43,21.22,18.76,2023-08-15 13:23:04
+Wyvern,Dragon,3,Rank 0,3d2+2,6.89,6.81,6.54,2023-08-15 13:23:04
+Dust Mephit,Elemental,9,Rank 2,9d6,52.98,56.93,53.09,2023-08-15 13:23:04
+Imp,Demonic,15,Rank 0,15d2+1,29.55,30.13,29.56,2023-08-15 13:23:04
+Goblin Archer,Devilkin,3,Rank 1,3d4+1,10.48,12.61,11.56,2023-08-15 13:23:04
+Pseudodragon,Dragon,14,Rank 4,14d10+3,137.13,138.6,142.6,2023-08-15 13:23:04
+Efreeti,Elemental,3,Rank 2,3d6+2,18.61,18.22,18.47,2023-08-15 13:23:04
+Prince of Fear,Devilkin,6,Rank 0,6d2,12.07,12.63,11.02,2023-08-15 13:23:04
+Faerie Dragon,Dragon,10,Rank 1,10d4+1,40.07,39.17,39.7,2023-08-15 13:23:04
+Djinni,Elemental,13,Rank 2,13d6+1,77.85,77.56,79.75,2023-08-15 13:23:04
+Death Knight,Undead,10,Rank 1,10d4,40.88,41.64,41.87,2023-08-15 13:23:04
+Silver Faerie,Fey,2,Rank 1,2d4+2,6.94,9.69,8.81,2023-08-15 13:23:04
+Night Hag,Demonic,9,Rank 0,9d2+1,18.3,18.14,17.94,2023-08-15 13:23:04
+Prince of Fear,Devilkin,4,Rank 1,4d4+2,16.69,16.92,16.93,2023-08-15 13:23:04
+Emerald Drake,Dragon,6,Rank 3,6d8+1,47.64,48.01,51.66,2023-08-15 13:23:04
+Djinni,Elemental,4,Rank 1,4d4+2,15.87,15.44,17.16,2023-08-15 13:23:04
+Lich,Undead,3,Rank 3,3d8+3,27.17,22.56,25.62,2023-08-15 13:23:04
+Green Archfey,Fey,12,Rank 1,12d4,47.93,49.27,46.17,2023-08-15 13:23:04
+Quasit,Demonic,8,Rank 2,8d6+1,49.89,46.09,48.38,2023-08-15 13:23:04
+Prince of Fear,Devilkin,6,Rank 1,6d4+1,24.56,24.79,22.46,2023-08-15 13:23:04
+Wyvern,Dragon,14,Rank 0,14d2+2,28.87,27.73,28.46,2023-08-15 13:23:04
+Spore Elemental,Elemental,7,Rank 4,7d10+1,67.38,66.69,70.9,2023-08-15 13:23:04
+Mummy Lord,Undead,3,Rank 0,3d2,5.86,5.31,5.11,2023-08-15 13:23:04
+Gold Faerie,Fey,14,Rank 4,14d10,137.65,136.52,140.11,2023-08-15 13:23:04
+Quasit,Demonic,7,Rank 0,7d2,14.51,13.66,14.33,2023-08-15 13:23:04
+Ghast,Undead,9,Rank 0,9d2+3,18.7,17.92,18.25,2023-08-15 13:23:04
+Faerie Dragon,Dragon,4,Rank 1,4d4+2,15.58,17.87,16.09,2023-08-15 13:23:04
+Blue Demon,Demonic,5,Rank 2,5d6+2,27.52,30.13,27.93,2023-08-15 13:23:04
+Lich,Undead,11,Rank 2,11d6+2,65.31,66.43,64.08,2023-08-15 13:23:04
+Prismatic Faerie,Fey,4,Rank 0,4d2+2,8.5,8.43,8.29,2023-08-15 13:23:04
+Prince of Fear,Devilkin,11,Rank 2,11d6,65.23,65.8,65.72,2023-08-15 13:23:04
+Death Knight,Undead,17,Rank 0,17d2+2,34.22,34.49,34.27,2023-08-15 13:23:04
+Dust Spirit,Fey,17,Rank 0,17d2+2,34.09,33.45,33.72,2023-08-15 13:23:04
+Kobold Guard,Devilkin,10,Rank 1,10d4,38.95,40.99,40.41,2023-08-15 13:23:04
+Faerie Dragon,Dragon,8,Rank 4,8d10+1,80.75,80.33,82.37,2023-08-15 13:23:04
+Djinni,Elemental,1,Rank 2,1d6,6.63,5.95,4.09,2023-08-15 13:23:04
+Ghast,Undead,2,Rank 3,2d8,13.81,16.35,14.01,2023-08-15 13:23:04
+Magma Spirit,Fey,4,Rank 4,4d10+2,35.37,36.3,40.24,2023-08-15 13:23:04
+Ice Elemental,Elemental,3,Rank 0,3d2+2,6.72,5.2,5.95,2023-08-15 13:23:04
+Wraith,Undead,11,Rank 1,11d4,44.55,45.43,43.97,2023-08-15 13:23:04
+Flame Archfey,Fey,18,Rank 1,18d4+3,71.34,73.04,72.16,2023-08-15 13:23:04
+Pit Fiend,Demonic,15,Rank 0,15d2+1,30.97,30.62,30.26,2023-08-15 13:23:04
+Succubus,Devilkin,11,Rank 3,11d8+2,90.83,84.86,91.7,2023-08-15 13:23:04
+Faerie Dragon,Dragon,8,Rank 2,8d6+3,48.32,49.05,50.56,2023-08-15 13:23:04
+Diamond Faerie,Fey,10,Rank 0,10d2+3,20.54,20.97,20.21,2023-08-15 13:23:04
+Night Hag,Demonic,6,Rank 1,6d4+3,22.75,24.16,22.36,2023-08-15 13:23:04
+Faerie Dragon,Dragon,8,Rank 1,8d4+3,32.17,32.23,32.95,2023-08-15 13:23:04
+Mud Mephit,Elemental,5,Rank 3,5d8+1,40.9,40.99,42.34,2023-08-15 13:23:04
+Goblin Knight,Devilkin,7,Rank 0,7d2,14.23,14.03,14.85,2023-08-15 13:23:04
+Emerald Drake,Dragon,5,Rank 2,5d6+2,29.09,28.74,31.36,2023-08-15 13:23:04
+Night Hag,Demonic,7,Rank 0,7d2+1,14.35,14.56,13.38,2023-08-15 13:23:04
+Demilich,Undead,6,Rank 2,6d6+2,33.78,38.73,34.77,2023-08-15 13:23:04
+Djinni,Elemental,8,Rank 0,8d2,15.73,16.71,16.98,2023-08-15 13:23:04
+Zombie Villager,Undead,3,Rank 5,3d12+1,40.41,40.04,38.86,2023-08-15 13:23:04
+Bronze Faerie,Fey,7,Rank 0,7d2+1,14.83,14.25,14.98,2023-08-15 13:23:04
+Copper Demon,Demonic,3,Rank 2,3d6+3,17.96,16.3,15.14,2023-08-15 13:23:04
+Prince of Fear,Devilkin,8,Rank 1,8d4+1,32.93,32.7,32.2,2023-08-15 13:23:04
+Death Knight,Undead,10,Rank 4,10d10+1,95.74,98.0,96.04,2023-08-15 13:23:04
+Emerald Archfey,Fey,9,Rank 2,9d6,56.05,54.14,54.65,2023-08-15 13:23:04
+Hell Hound,Demonic,1,Rank 5,1d12+4,16.11,16.45,6.04,2023-08-15 13:23:04
+Spore Devil,Devilkin,2,Rank 1,2d4+3,8.29,7.46,6.56,2023-08-15 13:23:04
+White Faerie,Fey,5,Rank 0,5d2+2,9.63,10.84,10.17,2023-08-15 13:23:04
+Quasit,Demonic,7,Rank 3,7d8+1,54.42,58.0,55.04,2023-08-15 13:23:04
+Vampire,Undead,9,Rank 0,9d2+1,18.66,18.47,18.86,2023-08-15 13:23:04
+Ice Spirit,Fey,6,Rank 1,6d4,24.68,24.33,24.86,2023-08-15 13:23:04
+Succubus,Devilkin,6,Rank 1,6d4,25.95,22.15,23.5,2023-08-15 13:23:04
+Poltergeist,Undead,15,Rank 1,15d4+1,59.76,60.46,61.06,2023-08-15 13:23:04
+Djinni,Elemental,14,Rank 1,14d4+4,56.84,56.22,57.93,2023-08-15 13:23:04
+Wight,Undead,13,Rank 1,13d4+1,53.31,51.91,52.53,2023-08-15 13:23:04
+Gold Faerie,Fey,6,Rank 3,6d8+4,47.16,45.6,49.35,2023-08-15 13:23:04
+Balor,Demonic,7,Rank 3,7d8,56.51,54.87,57.66,2023-08-15 13:23:04
+Blue Drake,Dragon,7,Rank 0,7d2+2,13.62,14.64,14.6,2023-08-15 13:23:04
+Quasit,Demonic,7,Rank 1,7d4+2,28.04,27.65,26.16,2023-08-15 13:23:04
+Pit Lord,Devilkin,15,Rank 0,15d2+2,29.58,30.49,30.66,2023-08-15 13:23:04
+Brass Dragon,Dragon,14,Rank 0,14d2,28.4,28.85,27.32,2023-08-15 13:23:04
+Efreeti,Elemental,2,Rank 1,2d4,7.22,8.99,8.05,2023-08-15 13:23:04
+Goblin Mage,Devilkin,4,Rank 2,4d6+4,25.94,26.81,25.37,2023-08-15 13:23:04
+Magma Archfey,Fey,7,Rank 1,7d4,26.4,29.63,27.78,2023-08-15 13:23:04
+Quasit,Demonic,6,Rank 1,6d4+2,24.72,23.48,23.0,2023-08-15 13:23:04
+Poltergeist,Undead,4,Rank 1,4d4+5,16.25,17.76,14.22,2023-08-15 13:23:04
+Ruby Archfey,Fey,4,Rank 1,4d4,15.75,16.66,16.45,2023-08-15 13:23:04
+Succubus,Devilkin,6,Rank 3,6d8,50.86,47.43,45.74,2023-08-15 13:23:04
+Emerald Dragon,Dragon,3,Rank 0,3d2+2,6.64,5.49,5.84,2023-08-15 13:23:04
+Steam Elemental,Elemental,2,Rank 0,2d2,3.86,4.2,3.33,2023-08-15 13:23:04
+Night Hag,Demonic,2,Rank 0,2d2,4.31,4.05,4.92,2023-08-15 13:23:04
+Revenant,Undead,13,Rank 1,13d4+5,51.04,51.99,50.56,2023-08-15 13:23:04
+Dust Spirit,Fey,10,Rank 0,10d2+2,19.32,19.54,20.8,2023-08-15 13:23:04
+Djinni,Elemental,6,Rank 0,6d2+3,11.36,12.2,11.4,2023-08-15 13:23:04
+Succubus,Devilkin,5,Rank 4,5d10+1,52.07,49.41,54.89,2023-08-15 13:23:04
+Faerie Dragon,Dragon,5,Rank 0,5d2+3,10.37,10.89,9.5,2023-08-15 13:23:04
+Hell Hound,Demonic,4,Rank 1,4d4+1,15.9,14.9,16.9,2023-08-15 13:23:04
+Revenant,Undead,11,Rank 2,11d6+3,66.66,64.91,64.94,2023-08-15 13:23:04
+Mud Elemental,Elemental,6,Rank 4,6d10+5,59.89,62.17,60.67,2023-08-15 13:23:04
+Prince of Fear,Devilkin,6,Rank 0,6d2+1,12.66,12.29,11.85,2023-08-15 13:23:04
+Bronze Dragon,Dragon,4,Rank 0,4d2,7.57,8.72,7.32,2023-08-15 13:23:04
+Efreeti,Elemental,3,Rank 3,3d8+1,23.19,22.0,24.07,2023-08-15 13:23:04
+Ghast,Undead,8,Rank 0,8d2+2,15.35,15.64,16.24,2023-08-15 13:23:04
+Shadow Archfey,Fey,9,Rank 4,9d10+2,88.28,92.3,91.91,2023-08-15 13:23:04
+Mud Devil,Devilkin,15,Rank 0,15d2+1,29.58,29.09,29.74,2023-08-15 13:23:04
+Ruby Faerie,Fey,3,Rank 3,3d8,24.24,24.62,21.12,2023-08-15 13:23:04
+Night Hag,Demonic,10,Rank 0,10d2+3,19.31,19.89,20.32,2023-08-15 13:23:04
+Succubus,Devilkin,11,Rank 1,11d4+1,42.77,43.49,44.06,2023-08-15 13:23:04
+Wyvern,Dragon,6,Rank 3,6d8+2,49.03,45.04,48.79,2023-08-15 13:23:04
+Smoke Mephit,Elemental,14,Rank 3,14d8+4,108.46,115.34,115.37,2023-08-15 13:23:04
+Incubus,Devilkin,3,Rank 1,3d4,13.62,10.11,11.42,2023-08-15 13:23:04
+Pseudodragon,Dragon,15,Rank 5,15d12+2,176.03,183.64,181.36,2023-08-15 13:23:04
+Steam Spirit,Fey,13,Rank 1,13d4+2,52.61,50.42,53.52,2023-08-15 13:23:04
+Succubus,Devilkin,7,Rank 0,7d2+1,14.88,14.08,13.18,2023-08-15 13:23:04
+Platinum Drake,Dragon,3,Rank 3,3d8+1,20.63,22.72,23.22,2023-08-15 13:23:04
+Efreeti,Elemental,13,Rank 3,13d8+3,106.95,107.27,107.95,2023-08-15 13:23:04
+Pit Lord,Devilkin,14,Rank 0,14d2,28.76,27.88,27.61,2023-08-15 13:23:04
+White Archfey,Fey,12,Rank 1,12d4,47.3,46.41,48.25,2023-08-15 13:23:04
+Efreeti,Elemental,11,Rank 4,11d10+2,109.22,105.45,109.74,2023-08-15 13:23:04
+Goblin Archer,Devilkin,9,Rank 3,9d8+1,69.21,70.9,70.2,2023-08-15 13:23:04
+Diamond Drake,Dragon,9,Rank 0,9d2+3,17.43,18.35,17.16,2023-08-15 13:23:04
+Dust Mephit,Elemental,15,Rank 0,15d2,30.37,30.82,30.17,2023-08-15 13:23:04
+Ghostly Villager,Undead,7,Rank 3,7d8+2,55.95,56.82,54.94,2023-08-15 13:23:04
+Flame Spirit,Fey,2,Rank 3,2d8,17.14,12.52,13.47,2023-08-15 13:23:04
+Imp,Demonic,4,Rank 1,4d4+3,14.7,14.25,15.18,2023-08-15 13:23:04
+Vampire,Undead,4,Rank 0,4d2+2,7.41,8.74,7.63,2023-08-15 13:23:04
+Spore Archfey,Fey,10,Rank 4,10d10+3,95.38,99.81,98.42,2023-08-15 13:23:04
+Hook Horror,Demonic,14,Rank 0,14d2+2,28.65,28.46,28.8,2023-08-15 13:23:04
+Death Knight,Undead,1,Rank 2,1d6+2,5.73,5.39,5.9,2023-08-15 13:23:04
+Platinum Archfey,Fey,18,Rank 2,18d6+2,110.07,106.44,106.2,2023-08-15 13:23:04
+Red Demon,Demonic,7,Rank 0,7d2+2,15.0,14.48,14.97,2023-08-15 13:23:04
+Ghostly Mage,Undead,10,Rank 1,10d4,39.17,40.03,38.2,2023-08-15 13:23:04
+Ice Spirit,Fey,7,Rank 0,7d2,13.33,13.53,13.69,2023-08-15 13:23:04
+Night Hag,Demonic,12,Rank 1,12d4+2,49.16,48.71,46.68,2023-08-15 13:23:04
+Goblin Archer,Devilkin,9,Rank 0,9d2+3,18.68,17.75,17.33,2023-08-15 13:23:04
+Faerie Dragon,Dragon,7,Rank 1,7d4+1,27.22,27.09,29.93,2023-08-15 13:23:04
+Smoke Spirit,Fey,3,Rank 0,3d2,6.36,6.2,5.84,2023-08-15 13:23:04
+Night Hag,Demonic,4,Rank 1,4d4+4,14.17,15.79,15.41,2023-08-15 13:23:04
+Wraith,Undead,3,Rank 0,3d2+1,6.35,5.44,6.97,2023-08-15 13:23:04
+Shadow Spirit,Fey,7,Rank 1,7d4+1,27.7,29.22,27.14,2023-08-15 13:23:04
+Copper Demon,Demonic,17,Rank 2,17d6+2,102.39,99.27,102.12,2023-08-15 13:23:04
+Death Knight,Undead,5,Rank 0,5d2+3,9.76,9.64,9.5,2023-08-15 13:23:04
+Ice Spirit,Fey,9,Rank 3,9d8+3,71.48,70.65,69.76,2023-08-15 13:23:04
+Kobold Guard,Devilkin,9,Rank 5,9d12+2,105.19,105.87,112.38,2023-08-15 13:23:04
+Platinum Wyrmling,Dragon,7,Rank 1,7d4,26.14,26.96,27.19,2023-08-15 13:23:04
+Smoke Mephit,Elemental,6,Rank 0,6d2+2,12.55,11.49,12.68,2023-08-15 13:23:04
+Prince of Fear,Devilkin,2,Rank 2,2d6+2,12.51,11.33,14.83,2023-08-15 13:23:04
+Wyvern,Dragon,6,Rank 3,6d8,47.59,48.91,44.04,2023-08-15 13:23:04
+Lightning Mephit,Elemental,4,Rank 1,4d4,16.52,16.06,16.37,2023-08-15 13:23:04
+Pit Lord,Devilkin,3,Rank 0,3d2+2,5.87,6.39,6.9,2023-08-15 13:23:04
+Dust Archfey,Fey,10,Rank 4,10d10+1,101.98,99.15,97.25,2023-08-15 13:23:04
+Goblin Knight,Devilkin,8,Rank 0,8d2+3,15.77,16.25,15.81,2023-08-15 13:23:04
+Bronze Drake,Dragon,12,Rank 4,12d10+2,122.36,120.59,124.0,2023-08-15 13:23:04
+Magma Mephit,Elemental,5,Rank 0,5d2+2,9.76,10.88,10.65,2023-08-15 13:23:04
+Shadow Devil,Devilkin,4,Rank 0,4d2+1,7.11,7.6,8.59,2023-08-15 13:23:04
+Mummy,Undead,7,Rank 3,7d8+2,55.97,55.31,53.59,2023-08-15 13:23:04
+Dust Spirit,Fey,7,Rank 3,7d8+3,58.03,55.0,56.65,2023-08-15 13:23:04
+Quasit,Demonic,14,Rank 0,14d2,27.29,28.83,28.69,2023-08-15 13:23:04
+Prince of Fear,Devilkin,7,Rank 0,7d2+3,13.04,13.67,14.93,2023-08-15 13:23:04
+Gold Drake,Dragon,4,Rank 5,4d12+2,47.05,45.25,45.57,2023-08-15 13:23:04
+Magma Spirit,Fey,13,Rank 1,13d4+2,53.65,51.5,51.5,2023-08-15 13:23:04
+Night Hag,Demonic,2,Rank 2,2d6+1,13.7,13.27,11.2,2023-08-15 13:23:04
+Ghostly Villager,Undead,1,Rank 3,1d8,8.04,10.65,6.37,2023-08-15 13:23:04
+Shadow Spirit,Fey,6,Rank 3,6d8+3,44.56,46.75,50.13,2023-08-15 13:23:04
+Efreeti,Elemental,7,Rank 0,7d2+3,14.68,13.94,14.56,2023-08-15 13:23:04
+Nightmare,Demonic,11,Rank 1,11d4+4,42.95,42.45,44.96,2023-08-15 13:23:04
+Ghoul,Undead,12,Rank 3,12d8,96.53,97.88,98.31,2023-08-15 13:23:04
+Flame Spirit,Fey,10,Rank 5,10d12+3,122.8,122.72,124.29,2023-08-15 13:23:04
+Diamond Demon,Demonic,5,Rank 3,5d8+4,37.12,42.59,37.22,2023-08-15 13:23:04
+Pit Lord,Devilkin,12,Rank 3,12d8,93.48,96.1,95.7,2023-08-15 13:23:04
+Emerald Drake,Dragon,4,Rank 3,4d8,33.1,29.8,29.85,2023-08-15 13:23:04
+Efreeti,Elemental,14,Rank 4,14d10,143.61,142.5,143.14,2023-08-15 13:23:04
+Smoke Devil,Devilkin,9,Rank 1,9d4+3,35.02,36.9,37.06,2023-08-15 13:23:04
+Faerie Dragon,Dragon,4,Rank 2,4d6+2,26.21,25.3,25.69,2023-08-15 13:23:04
+Spore Spirit,Fey,7,Rank 5,7d12+1,83.16,85.23,88.9,2023-08-15 13:23:04
+Nightmare,Demonic,15,Rank 2,15d6,89.39,90.25,90.99,2023-08-15 13:23:04
+Ghast,Undead,6,Rank 1,6d4+3,24.6,23.85,23.08,2023-08-15 13:23:04
+Bronze Archfey,Fey,7,Rank 0,7d2+1,13.23,13.98,14.28,2023-08-15 13:23:04
+Balor,Demonic,8,Rank 2,8d6+2,48.72,46.94,46.33,2023-08-15 13:23:04
+Faerie Dragon,Dragon,11,Rank 2,11d6+2,65.27,66.99,65.46,2023-08-15 13:23:04
+Ice Elemental,Elemental,2,Rank 2,2d6,10.79,11.72,14.06,2023-08-15 13:23:04
+Goblin Mage,Devilkin,3,Rank 0,3d2+1,5.47,5.1,5.86,2023-08-15 13:23:04
+Copper Wyrmling,Dragon,2,Rank 0,2d2+3,4.09,4.03,4.37,2023-08-15 13:23:04
+Djinni,Elemental,6,Rank 5,6d12+4,67.87,68.22,72.61,2023-08-15 13:23:04
+Goblin Archer,Devilkin,13,Rank 0,13d2+1,25.36,25.63,26.01,2023-08-15 13:23:04
+Flame Archfey,Fey,2,Rank 1,2d4,8.97,7.6,9.18,2023-08-15 13:23:04
+Balor,Demonic,14,Rank 1,14d4+2,57.38,56.65,56.19,2023-08-15 13:23:04
+Incubus,Devilkin,1,Rank 1,1d4+2,3.03,3.58,2.08,2023-08-15 13:23:04
+Faerie Dragon,Dragon,12,Rank 0,12d2+1,23.21,24.8,23.55,2023-08-15 13:23:04
+Blue Faerie,Fey,2,Rank 1,2d4+1,8.25,6.88,7.68,2023-08-15 13:23:04
+Efreeti,Elemental,7,Rank 2,7d6+2,43.73,41.68,44.4,2023-08-15 13:23:04
+Prince of Fear,Devilkin,11,Rank 0,11d2,21.52,22.92,21.05,2023-08-15 13:23:04
+Black Drake,Dragon,8,Rank 1,8d4,30.26,31.03,33.06,2023-08-15 13:23:04
+Mud Elemental,Elemental,7,Rank 1,7d4+5,28.08,27.33,28.75,2023-08-15 13:23:04
+Kobold Villager,Devilkin,7,Rank 2,7d6+3,42.61,41.58,43.55,2023-08-15 13:23:04
+Gold Wyrmling,Dragon,10,Rank 1,10d4+1,40.36,40.76,40.34,2023-08-15 13:23:04
+Lightning Elemental,Elemental,6,Rank 2,6d6+2,37.46,37.88,33.96,2023-08-15 13:23:04
+Goblin Guard,Devilkin,6,Rank 0,6d2+1,12.1,11.83,11.69,2023-08-15 13:23:04
+Sapphire Dragon,Dragon,5,Rank 2,5d6+2,30.1,32.84,28.4,2023-08-15 13:23:04
+Black Faerie,Fey,10,Rank 3,10d8+1,82.35,80.86,82.52,2023-08-15 13:23:04
+Hell Hound,Demonic,4,Rank 3,4d8+1,31.92,33.6,29.48,2023-08-15 13:23:04
+Prince of Fear,Devilkin,7,Rank 0,7d2+3,13.29,13.99,14.88,2023-08-15 13:23:04
+White Wyrmling,Dragon,4,Rank 0,4d2,8.68,8.49,8.66,2023-08-15 13:23:04
+Steam Elemental,Elemental,15,Rank 3,15d8,119.63,119.31,122.38,2023-08-15 13:23:04
+Goblin Knight,Devilkin,9,Rank 3,9d8+4,70.39,73.54,69.89,2023-08-15 13:23:04
+Faerie Dragon,Dragon,13,Rank 1,13d4+2,53.64,51.85,51.56,2023-08-15 13:23:04
+Ice Elemental,Elemental,3,Rank 0,3d2,5.78,5.15,5.13,2023-08-15 13:23:04
+Kobold Archer,Devilkin,11,Rank 1,11d4+2,43.3,44.39,43.49,2023-08-15 13:23:04
+Onyx Dragon,Dragon,4,Rank 1,4d4+2,16.93,17.12,16.23,2023-08-15 13:23:04
+Djinni,Elemental,7,Rank 1,7d4,28.39,27.18,29.56,2023-08-15 13:23:04
+Death Knight,Undead,8,Rank 3,8d8,64.06,61.47,67.48,2023-08-15 13:23:04
+Flame Spirit,Fey,2,Rank 3,2d8,12.82,16.8,18.74,2023-08-15 13:23:04
+Imp,Demonic,9,Rank 3,9d8+2,70.74,71.29,74.78,2023-08-15 13:23:04
+Goblin Guard,Devilkin,5,Rank 3,5d8+3,40.9,41.59,41.95,2023-08-15 13:23:04
+Faerie Dragon,Dragon,9,Rank 1,9d4+1,35.65,36.34,36.47,2023-08-15 13:23:04
+Brass Faerie,Fey,3,Rank 0,3d2+1,6.59,6.49,6.16,2023-08-15 13:23:04
+Incubus,Devilkin,8,Rank 4,8d10+3,79.47,77.58,78.5,2023-08-15 13:23:04
+Wyvern,Dragon,12,Rank 0,12d2+2,24.21,24.57,23.56,2023-08-15 13:23:04
+Gold Demon,Demonic,11,Rank 0,11d2,21.3,21.38,21.39,2023-08-15 13:23:04
+Wyvern,Dragon,15,Rank 0,15d2,30.3,30.98,29.2,2023-08-15 13:23:04
+Balor,Demonic,2,Rank 3,2d8,14.05,16.12,13.74,2023-08-15 13:23:04
+Skeletal Knight,Undead,9,Rank 3,9d8+1,70.6,73.65,74.89,2023-08-15 13:23:04
+Spore Spirit,Fey,17,Rank 3,17d8+1,134.74,137.47,137.38,2023-08-15 13:23:04
+Dust Mephit,Elemental,14,Rank 0,14d2,27.81,27.74,28.87,2023-08-15 13:23:04
+Quasit,Demonic,15,Rank 0,15d2+4,30.86,30.51,30.37,2023-08-15 13:23:04
+Mummy,Undead,4,Rank 0,4d2,8.04,8.47,7.11,2023-08-15 13:23:04
+Pseudodragon,Dragon,8,Rank 1,8d4+1,30.05,31.73,30.78,2023-08-15 13:23:04
+Smoke Elemental,Elemental,8,Rank 1,8d4+2,30.22,32.62,32.04,2023-08-15 13:23:04
+Ghostly Villager,Undead,9,Rank 2,9d6+2,55.93,53.43,51.12,2023-08-15 13:23:04
+Sapphire Archfey,Fey,14,Rank 1,14d4,54.74,55.08,57.16,2023-08-15 13:23:04
+Spore Mephit,Elemental,10,Rank 1,10d4+4,41.49,39.71,39.43,2023-08-15 13:23:04
+Balor,Demonic,4,Rank 2,4d6,22.84,22.18,23.23,2023-08-15 13:23:04
+Wraith,Undead,6,Rank 1,6d4,24.03,25.32,24.64,2023-08-15 13:23:04
+Bronze Faerie,Fey,6,Rank 3,6d8+1,49.32,49.51,50.4,2023-08-15 13:23:04
+Hell Hound,Demonic,3,Rank 0,3d2+3,5.28,6.26,6.82,2023-08-15 13:23:04
+Wight,Undead,2,Rank 2,2d6+2,11.12,9.86,13.69,2023-08-15 13:23:04
+Gold Wyrmling,Dragon,5,Rank 5,5d12+3,59.06,55.11,60.78,2023-08-15 13:23:04
+Ice Spirit,Fey,4,Rank 1,4d4+1,14.95,15.65,16.0,2023-08-15 13:23:04
+Hook Horror,Demonic,6,Rank 1,6d4+1,25.94,22.52,24.45,2023-08-15 13:23:04
+Faerie Dragon,Dragon,9,Rank 0,9d2,17.27,18.34,18.51,2023-08-15 13:23:04
+Ruby Faerie,Fey,12,Rank 0,12d2,24.8,23.54,23.7,2023-08-15 13:23:04
+Efreeti,Elemental,7,Rank 0,7d2+4,13.82,14.11,14.64,2023-08-15 13:23:04
+Prince of Fear,Devilkin,4,Rank 4,4d10+4,35.88,38.66,36.91,2023-08-15 13:23:04
+Faerie Dragon,Dragon,4,Rank 0,4d2+2,7.13,7.64,7.13,2023-08-15 13:23:04
+Blue Faerie,Fey,4,Rank 1,4d4+1,16.53,16.83,15.83,2023-08-15 13:23:04
+Goblin Mage,Devilkin,3,Rank 1,3d4+2,11.81,12.18,10.94,2023-08-15 13:23:04
+Wyvern,Dragon,2,Rank 1,2d4,9.12,7.49,7.01,2023-08-15 13:23:04
+Smoke Mephit,Elemental,6,Rank 4,6d10+1,61.87,60.9,60.81,2023-08-15 13:23:04
+Prince of Fear,Devilkin,3,Rank 2,3d6,15.19,20.35,18.44,2023-08-15 13:23:04
+Dracolich,Undead,10,Rank 5,10d12+5,118.81,120.54,114.83,2023-08-15 13:23:04
+Lightning Spirit,Fey,9,Rank 1,9d4,36.35,37.3,36.82,2023-08-15 13:23:04
+Kobold Archer,Devilkin,11,Rank 1,11d4+1,44.82,44.3,43.48,2023-08-15 13:23:04
+Wyvern,Dragon,9,Rank 2,9d6,54.93,54.56,55.92,2023-08-15 13:23:04
+Dust Spirit,Fey,4,Rank 5,4d12+3,45.31,53.06,48.66,2023-08-15 13:23:04
+Pit Lord,Devilkin,5,Rank 4,5d10,53.39,46.88,46.75,2023-08-15 13:23:04
+Green Drake,Dragon,17,Rank 2,17d6+1,103.84,102.28,99.08,2023-08-15 13:23:04
+Magma Elemental,Elemental,4,Rank 2,4d6+2,22.36,23.35,25.38,2023-08-15 13:23:04
+Wight,Undead,11,Rank 0,11d2+4,21.84,22.37,22.85,2023-08-15 13:23:04
+Lightning Spirit,Fey,11,Rank 3,11d8,90.68,91.55,90.79,2023-08-15 13:23:04
+Hell Hound,Demonic,17,Rank 0,17d2+2,34.3,33.94,34.88,2023-08-15 13:23:04
+Ghast,Undead,11,Rank 3,11d8+2,90.97,90.5,88.39,2023-08-15 13:23:04
+Efreeti,Elemental,10,Rank 3,10d8+3,81.71,80.3,80.75,2023-08-15 13:23:04
+Prince of Fear,Devilkin,4,Rank 1,4d4+4,16.79,16.15,15.5,2023-08-15 13:23:04
+Pseudodragon,Dragon,18,Rank 2,18d6+3,106.85,110.49,109.28,2023-08-15 13:23:04
+Ice Mephit,Elemental,2,Rank 2,2d6+4,11.66,12.35,11.47,2023-08-15 13:23:04
+Pit Fiend,Demonic,3,Rank 0,3d2+3,6.2,5.7,5.24,2023-08-15 13:23:04
+Poltergeist,Undead,3,Rank 3,3d8+1,23.31,23.84,21.25,2023-08-15 13:23:04
+Djinni,Elemental,14,Rank 0,14d2+1,27.51,28.27,27.69,2023-08-15 13:23:04
+Prince of Fear,Devilkin,3,Rank 0,3d2+3,6.01,5.71,6.94,2023-08-15 13:23:04
+Demilich,Undead,9,Rank 0,9d2+4,17.13,18.57,17.67,2023-08-15 13:23:04
+Dust Archfey,Fey,19,Rank 0,19d2+3,38.23,38.41,37.22,2023-08-15 13:23:04
+Night Hag,Demonic,1,Rank 1,1d4+1,3.96,4.46,3.68,2023-08-15 13:23:04
+Poltergeist,Undead,12,Rank 2,12d6,72.11,72.3,73.38,2023-08-15 13:23:04
+Mud Mephit,Elemental,3,Rank 3,3d8,23.85,23.82,20.93,2023-08-15 13:23:04
+Prince of Fear,Devilkin,3,Rank 2,3d6+1,17.6,17.83,20.21,2023-08-15 13:23:04
+Silver Drake,Dragon,6,Rank 4,6d10+4,61.46,55.67,57.53,2023-08-15 13:23:04
+Hook Horror,Demonic,6,Rank 1,6d4+1,22.23,25.73,23.14,2023-08-15 13:23:04
+Pseudodragon,Dragon,2,Rank 3,2d8+3,13.17,13.4,17.23,2023-08-15 13:23:04
+Efreeti,Elemental,4,Rank 3,4d8,31.62,32.06,33.27,2023-08-15 13:23:04
+Kobold Guard,Devilkin,14,Rank 3,14d8+1,114.46,114.28,112.79,2023-08-15 13:23:04
+Death Knight,Undead,6,Rank 2,6d6+1,35.87,35.17,33.44,2023-08-15 13:23:04
+Pseudodragon,Dragon,3,Rank 2,3d6+1,19.7,15.82,16.16,2023-08-15 13:23:04
+Nightmare,Demonic,8,Rank 1,8d4+3,30.68,32.6,32.12,2023-08-15 13:23:04
+Goblin Knight,Devilkin,7,Rank 3,7d8+4,56.12,58.94,54.12,2023-08-15 13:23:04
+Faerie Dragon,Dragon,12,Rank 2,12d6,73.94,70.52,69.09,2023-08-15 13:23:04
+Efreeti,Elemental,12,Rank 2,12d6,70.76,73.92,71.07,2023-08-15 13:23:04
+Kobold Villager,Devilkin,10,Rank 0,10d2+1,20.23,19.76,19.2,2023-08-15 13:23:04
+Pseudodragon,Dragon,12,Rank 0,12d2+3,24.82,23.38,23.17,2023-08-15 13:23:04
+Quasit,Demonic,5,Rank 3,5d8+2,43.19,42.33,40.94,2023-08-15 13:23:04
+Vampire,Undead,2,Rank 2,2d6,11.72,12.83,14.37,2023-08-15 13:23:04
+Efreeti,Elemental,5,Rank 1,5d4+2,19.67,19.74,19.19,2023-08-15 13:23:04
+Kobold Mage,Devilkin,13,Rank 3,13d8,104.51,107.02,105.32,2023-08-15 13:23:04
+Emerald Wyrmling,Dragon,6,Rank 1,6d4+2,23.46,24.19,25.39,2023-08-15 13:23:04
+Magma Elemental,Elemental,11,Rank 0,11d2,22.16,22.28,22.4,2023-08-15 13:23:04
+Vampire,Undead,9,Rank 0,9d2+1,18.85,17.12,18.97,2023-08-15 13:23:04
+Prismatic Drake,Dragon,7,Rank 0,7d2+2,14.08,14.55,13.98,2023-08-15 13:23:04
+Shadow Elemental,Elemental,9,Rank 4,9d10,92.85,90.64,87.11,2023-08-15 13:23:04
+Pit Fiend,Demonic,11,Rank 1,11d4,43.72,43.51,43.15,2023-08-15 13:23:04
+Banshee,Undead,13,Rank 1,13d4+2,51.93,51.35,50.16,2023-08-15 13:23:04
+Ruby Faerie,Fey,14,Rank 3,14d8+4,115.59,108.86,114.39,2023-08-15 13:23:04
+Ice Mephit,Elemental,6,Rank 0,6d2+3,11.82,12.67,12.39,2023-08-15 13:23:04
+Kobold Archer,Devilkin,7,Rank 2,7d6+4,42.4,40.47,41.58,2023-08-15 13:23:04
+Vampire,Undead,7,Rank 1,7d4,27.62,28.57,27.99,2023-08-15 13:23:04
+Smoke Spirit,Fey,3,Rank 3,3d8+1,26.71,24.5,21.0,2023-08-15 13:23:04
+Hook Horror,Demonic,15,Rank 0,15d2,30.85,29.38,29.7,2023-08-15 13:23:04
+Lich,Undead,13,Rank 2,13d6+1,80.1,77.51,78.47,2023-08-15 13:23:04
+Efreeti,Elemental,6,Rank 1,6d4,24.57,25.81,23.76,2023-08-15 13:23:04
+Prince of Fear,Devilkin,15,Rank 0,15d2,30.85,30.8,29.57,2023-08-15 13:23:04
+Lich,Undead,12,Rank 0,12d2,24.39,23.25,23.99,2023-08-15 13:23:04
+Shadow Mephit,Elemental,2,Rank 0,2d2,3.68,4.02,3.32,2023-08-15 13:23:04
+Succubus,Devilkin,3,Rank 0,3d2+1,5.38,5.38,5.79,2023-08-15 13:23:04
+Pseudodragon,Dragon,13,Rank 2,13d6,77.89,77.21,77.4,2023-08-15 13:23:04
+Djinni,Elemental,18,Rank 1,18d4+3,72.05,70.15,73.36,2023-08-15 13:23:04
+Kobold Guard,Devilkin,4,Rank 0,4d2+2,7.55,7.49,7.65,2023-08-15 13:23:04
+Emerald Drake,Dragon,15,Rank 1,15d4,60.62,61.98,59.75,2023-08-15 13:23:04
+Prismatic Archfey,Fey,18,Rank 2,18d6+3,109.16,105.22,107.86,2023-08-15 13:23:04
+Djinni,Elemental,1,Rank 2,1d6+1,4.01,5.81,6.34,2023-08-15 13:23:04
+Hell Hound,Demonic,6,Rank 2,6d6+4,35.19,35.89,38.06,2023-08-15 13:23:04
+Goblin Knight,Devilkin,5,Rank 2,5d6+2,29.42,31.07,32.72,2023-08-15 13:23:04
+Ruby Wyrmling,Dragon,5,Rank 1,5d4+2,18.46,19.45,19.11,2023-08-15 13:23:04
+Efreeti,Elemental,6,Rank 0,6d2,12.76,12.91,12.83,2023-08-15 13:23:04
+Death Knight,Undead,12,Rank 0,12d2+1,23.84,23.5,23.86,2023-08-15 13:23:04
+Mud Spirit,Fey,7,Rank 0,7d2+3,14.92,14.85,14.07,2023-08-15 13:23:04
+Balor,Demonic,10,Rank 2,10d6,60.42,60.7,58.19,2023-08-15 13:23:04
+Pseudodragon,Dragon,14,Rank 1,14d4+3,54.75,56.97,57.81,2023-08-15 13:23:04
+Lightning Spirit,Fey,2,Rank 2,2d6+2,12.71,11.15,13.42,2023-08-15 13:23:04
+Night Hag,Demonic,12,Rank 3,12d8+5,93.0,99.57,98.56,2023-08-15 13:23:04
+Ghoul,Undead,8,Rank 2,8d6,45.66,48.99,47.22,2023-08-15 13:23:04
+Diamond Faerie,Fey,6,Rank 1,6d4+1,22.46,23.8,24.43,2023-08-15 13:23:04
+Nightmare,Demonic,15,Rank 0,15d2+1,29.27,29.82,30.02,2023-08-15 13:23:04
+Kobold Villager,Devilkin,5,Rank 1,5d4+3,19.51,19.1,21.72,2023-08-15 13:23:04
+Pseudodragon,Dragon,8,Rank 0,8d2,16.84,16.96,16.97,2023-08-15 13:23:04
+Quasit,Demonic,5,Rank 3,5d8+1,42.74,42.51,42.27,2023-08-15 13:23:04
+Kobold Mage,Devilkin,8,Rank 2,8d6+1,49.04,45.28,48.5,2023-08-15 13:23:04
+Green Wyrmling,Dragon,8,Rank 1,8d4,30.21,32.29,32.86,2023-08-15 13:23:04
+Flame Elemental,Elemental,7,Rank 2,7d6+2,42.47,41.9,41.63,2023-08-15 13:23:04
+Magma Devil,Devilkin,6,Rank 4,6d10+1,56.39,59.6,56.75,2023-08-15 13:23:04
+Faerie Dragon,Dragon,1,Rank 1,1d4,4.99,3.02,3.13,2023-08-15 13:23:04
+Shadow Archfey,Fey,4,Rank 4,4d10,40.54,42.52,35.64,2023-08-15 13:23:04
+Balor,Demonic,10,Rank 0,10d2,19.6,19.35,19.73,2023-08-15 13:23:04
+Faerie Dragon,Dragon,2,Rank 0,2d2+2,4.41,3.99,4.02,2023-08-15 13:23:04
+Hell Hound,Demonic,7,Rank 0,7d2+4,13.04,13.69,13.38,2023-08-15 13:23:04
+Revenant,Undead,5,Rank 1,5d4,18.99,18.06,18.45,2023-08-15 13:23:04
+Steam Elemental,Elemental,2,Rank 2,2d6+4,9.77,14.37,10.47,2023-08-15 13:23:04
+Pit Lord,Devilkin,5,Rank 1,5d4+3,21.68,21.84,18.71,2023-08-15 13:23:04
+Faerie Dragon,Dragon,4,Rank 2,4d6+2,25.97,22.37,22.31,2023-08-15 13:23:04
+Silver Demon,Demonic,3,Rank 1,3d4+1,12.17,12.44,12.07,2023-08-15 13:23:04
+Zombie Archer,Undead,5,Rank 0,5d2+2,10.84,9.83,9.67,2023-08-15 13:23:04
+Emerald Faerie,Fey,11,Rank 3,11d8+5,90.72,89.84,86.0,2023-08-15 13:23:04
+Mud Devil,Devilkin,2,Rank 4,2d10+3,16.12,16.71,18.38,2023-08-15 13:23:04
+Pseudodragon,Dragon,2,Rank 0,2d2+1,4.66,4.32,4.64,2023-08-15 13:23:04
+Lightning Elemental,Elemental,15,Rank 2,15d6+2,92.59,91.95,90.99,2023-08-15 13:23:04
+Poltergeist,Undead,10,Rank 2,10d6+2,60.8,59.66,58.54,2023-08-15 13:23:04
+Brass Archfey,Fey,2,Rank 2,2d6,10.22,12.55,13.81,2023-08-15 13:23:04
+Pit Fiend,Demonic,4,Rank 0,4d2+1,8.31,7.49,7.35,2023-08-15 13:23:04
+Revenant,Undead,2,Rank 2,2d6+1,14.59,13.96,12.18,2023-08-15 13:23:04
+Dust Spirit,Fey,8,Rank 1,8d4+1,31.63,31.6,32.69,2023-08-15 13:23:04
+Succubus,Devilkin,8,Rank 2,8d6,47.71,47.71,48.92,2023-08-15 13:23:04
+Pseudodragon,Dragon,10,Rank 0,10d2+3,19.22,19.61,19.77,2023-08-15 13:23:04
+Magma Elemental,Elemental,12,Rank 1,12d4+1,48.35,49.21,48.96,2023-08-15 13:23:04
+Pit Fiend,Demonic,3,Rank 2,3d6,16.16,18.67,17.09,2023-08-15 13:23:04
+Mummy Lord,Undead,10,Rank 2,10d6+3,59.41,61.46,59.31,2023-08-15 13:23:04
+Steam Spirit,Fey,10,Rank 1,10d4,39.69,40.0,41.35,2023-08-15 13:23:04
+Balor,Demonic,2,Rank 1,2d4+1,9.62,7.58,7.26,2023-08-15 13:23:04
+Goblin Guard,Devilkin,7,Rank 1,7d4+1,28.48,28.03,29.05,2023-08-15 13:23:04
+Demilich,Undead,7,Rank 0,7d2,13.74,13.31,13.82,2023-08-15 13:23:04
+Ice Archfey,Fey,2,Rank 1,2d4+2,7.92,6.75,9.29,2023-08-15 13:23:04
+Imp,Demonic,3,Rank 0,3d2+2,6.84,6.81,6.95,2023-08-15 13:23:04
+Succubus,Devilkin,17,Rank 2,17d6+5,104.79,99.19,99.96,2023-08-15 13:23:04
+Magma Spirit,Fey,15,Rank 0,15d2+1,29.56,29.12,30.29,2023-08-15 13:23:04
+Balor,Demonic,13,Rank 1,13d4+1,53.51,52.58,50.42,2023-08-15 13:23:04
+Succubus,Devilkin,4,Rank 1,4d4,15.9,16.54,16.67,2023-08-15 13:23:04
+Red Dragon,Dragon,3,Rank 1,3d4,13.46,10.66,12.63,2023-08-15 13:23:04
+Quasit,Demonic,6,Rank 4,6d10,61.99,57.63,55.48,2023-08-15 13:23:04
+Dracolich,Undead,12,Rank 0,12d2+4,24.28,24.21,24.2,2023-08-15 13:23:04
+Shadow Elemental,Elemental,13,Rank 2,13d6+2,78.63,75.76,75.97,2023-08-15 13:23:04
+Hell Hound,Demonic,12,Rank 0,12d2,23.96,23.07,24.32,2023-08-15 13:23:04
+Skeletal Knight,Undead,17,Rank 1,17d4+1,69.56,67.85,66.77,2023-08-15 13:23:04
+Ice Spirit,Fey,11,Rank 1,11d4+2,43.44,44.93,43.51,2023-08-15 13:23:04
+Pit Lord,Devilkin,5,Rank 0,5d2+2,10.29,9.09,10.3,2023-08-15 13:23:04
+Sapphire Wyrmling,Dragon,2,Rank 1,2d4+3,6.07,7.62,8.44,2023-08-15 13:23:04
+Mud Mephit,Elemental,11,Rank 0,11d2+1,22.25,21.97,21.78,2023-08-15 13:23:04
+Lich,Undead,14,Rank 0,14d2+1,27.46,27.9,28.19,2023-08-15 13:23:04
+Platinum Dragon,Dragon,3,Rank 3,3d8+1,26.48,26.05,25.82,2023-08-15 13:23:04
+Efreeti,Elemental,5,Rank 3,5d8+2,40.88,42.38,38.97,2023-08-15 13:23:04
+Lightning Devil,Devilkin,9,Rank 1,9d4+3,34.38,35.97,34.13,2023-08-15 13:23:04
+White Archfey,Fey,12,Rank 1,12d4+1,46.63,46.92,47.65,2023-08-15 13:23:04
+Nightmare,Demonic,6,Rank 1,6d4+5,24.7,22.14,24.25,2023-08-15 13:23:04
+Lich,Undead,9,Rank 1,9d4+1,35.38,36.41,34.98,2023-08-15 13:23:04
+Ice Elemental,Elemental,18,Rank 2,18d6,110.18,107.1,105.55,2023-08-15 13:23:04
+Vampire,Undead,4,Rank 3,4d8+3,29.67,34.15,31.42,2023-08-15 13:23:04
+Pseudodragon,Dragon,17,Rank 1,17d4+3,69.59,68.92,67.84,2023-08-15 13:23:04
+Hook Horror,Demonic,8,Rank 2,8d6+3,48.93,49.12,47.09,2023-08-15 13:23:04
+Revenant,Undead,5,Rank 1,5d4,18.17,18.92,20.78,2023-08-15 13:23:04
+Mud Archfey,Fey,8,Rank 0,8d2,16.1,16.88,16.72,2023-08-15 13:23:04
+Imp,Demonic,11,Rank 1,11d4+2,44.06,43.69,43.42,2023-08-15 13:23:04
+Prince of Fear,Devilkin,12,Rank 4,12d10,119.97,117.63,118.85,2023-08-15 13:23:04
+Pseudodragon,Dragon,7,Rank 4,7d10+1,69.64,71.09,71.67,2023-08-15 13:23:04
+Lightning Elemental,Elemental,6,Rank 0,6d2+1,11.32,11.32,12.12,2023-08-15 13:23:04
+Skeletal Villager,Undead,17,Rank 0,17d2,33.91,34.6,34.74,2023-08-15 13:23:04
+Copper Faerie,Fey,13,Rank 2,13d6+4,75.26,78.11,79.75,2023-08-15 13:23:04
+Nightmare,Demonic,4,Rank 2,4d6,26.56,21.47,26.72,2023-08-15 13:23:04
+Wraith,Undead,9,Rank 4,9d10,90.85,89.76,86.32,2023-08-15 13:23:04
+Black Archfey,Fey,15,Rank 1,15d4+1,60.29,58.85,61.29,2023-08-15 13:23:04
+Hook Horror,Demonic,5,Rank 2,5d6+1,28.5,31.96,28.91,2023-08-15 13:23:04
+Banshee,Undead,4,Rank 3,4d8+5,29.77,34.57,33.82,2023-08-15 13:23:04
+Djinni,Elemental,12,Rank 1,12d4+2,46.31,49.48,48.95,2023-08-15 13:23:04
+Pit Lord,Devilkin,10,Rank 4,10d10+2,101.44,97.69,99.03,2023-08-15 13:23:04
+Dust Spirit,Fey,2,Rank 3,2d8+1,19.31,14.61,13.04,2023-08-15 13:23:04
+Imp,Demonic,7,Rank 3,7d8,58.96,56.03,53.05,2023-08-15 13:23:04
+Mummy,Undead,4,Rank 2,4d6+3,21.57,26.03,21.36,2023-08-15 13:23:04
+Magma Spirit,Fey,3,Rank 2,3d6+1,20.1,17.88,17.39,2023-08-15 13:23:04
+Imp,Demonic,5,Rank 2,5d6+2,27.54,31.98,28.38,2023-08-15 13:23:04
+Succubus,Devilkin,3,Rank 1,3d4,11.41,11.61,11.05,2023-08-15 13:23:04
+Wyvern,Dragon,19,Rank 0,19d2+1,38.62,37.18,38.47,2023-08-15 13:23:04
+Efreeti,Elemental,7,Rank 2,7d6,41.8,43.09,43.87,2023-08-15 13:23:04
+Imp,Demonic,12,Rank 0,12d2+4,23.02,24.88,23.83,2023-08-15 13:23:04
+Lightning Devil,Devilkin,8,Rank 0,8d2+4,15.96,16.46,16.16,2023-08-15 13:23:04
+Faerie Dragon,Dragon,13,Rank 1,13d4+2,51.01,50.98,51.74,2023-08-15 13:23:04
+Steam Spirit,Fey,5,Rank 1,5d4+4,18.38,19.24,20.05,2023-08-15 13:23:04
+Nightmare,Demonic,5,Rank 4,5d10+3,51.62,47.61,47.59,2023-08-15 13:23:04
+Poltergeist,Undead,5,Rank 1,5d4+2,19.33,19.94,20.96,2023-08-15 13:23:04
+Mud Elemental,Elemental,9,Rank 3,9d8+1,69.19,71.03,71.15,2023-08-15 13:23:04
+Goblin Mage,Devilkin,1,Rank 0,1d2+1,1.2,2.77,2.82,2023-08-15 13:23:04
+White Drake,Dragon,3,Rank 3,3d8+2,21.87,21.59,20.34,2023-08-15 13:23:04
+Night Hag,Demonic,4,Rank 2,4d6,24.99,23.03,26.05,2023-08-15 13:23:04
+Ghoul,Undead,8,Rank 2,8d6+1,50.06,47.26,46.79,2023-08-15 13:23:04
+Onyx Faerie,Fey,8,Rank 3,8d8+4,63.1,61.94,66.48,2023-08-15 13:23:04
+Nightmare,Demonic,8,Rank 0,8d2+1,16.43,15.53,16.69,2023-08-15 13:23:04
+Ghast,Undead,4,Rank 2,4d6+2,22.94,23.42,21.28,2023-08-15 13:23:04
+Djinni,Elemental,1,Rank 1,1d4+3,5.33,4.57,3.89,2023-08-15 13:23:04
+Mummy Lord,Undead,8,Rank 1,8d4+3,31.58,30.03,32.14,2023-08-15 13:23:04
+Efreeti,Elemental,9,Rank 2,9d6+3,55.78,51.67,53.36,2023-08-15 13:23:04
+Hell Hound,Demonic,15,Rank 0,15d2,29.67,29.52,30.53,2023-08-15 13:23:04
+Mummy,Undead,7,Rank 1,7d4+2,26.2,28.44,27.0,2023-08-15 13:23:04
+Smoke Spirit,Fey,9,Rank 4,9d10+2,90.65,90.9,88.7,2023-08-15 13:23:04
+Night Hag,Demonic,13,Rank 4,13d10,127.2,126.23,134.77,2023-08-15 13:23:04
+Black Drake,Dragon,7,Rank 1,7d4+3,27.12,28.75,26.72,2023-08-15 13:23:04
+Steam Elemental,Elemental,14,Rank 0,14d2+4,28.22,28.38,27.06,2023-08-15 13:23:04
+Hell Hound,Demonic,3,Rank 2,3d6+1,20.91,19.78,19.3,2023-08-15 13:23:04
+Prince of Fear,Devilkin,5,Rank 2,5d6+2,31.33,30.04,30.85,2023-08-15 13:23:04
+Faerie Dragon,Dragon,9,Rank 1,9d4+2,34.36,37.48,37.7,2023-08-15 13:23:04
+Djinni,Elemental,18,Rank 1,18d4,71.6,71.57,73.0,2023-08-15 13:23:04
+Wraith,Undead,6,Rank 1,6d4+1,22.69,22.81,24.48,2023-08-15 13:23:04
+Smoke Spirit,Fey,2,Rank 2,2d6+1,14.69,14.4,10.44,2023-08-15 13:23:04
+Shadow Mephit,Elemental,9,Rank 1,9d4+1,34.12,35.52,34.44,2023-08-15 13:23:04
+Skeletal Archer,Undead,8,Rank 2,8d6+1,47.18,50.87,47.62,2023-08-15 13:23:04
+Flame Archfey,Fey,18,Rank 2,18d6+2,105.67,107.54,109.39,2023-08-15 13:23:04
+Nightmare,Demonic,13,Rank 0,13d2,26.61,26.3,25.92,2023-08-15 13:23:04
+Skeletal Guard,Undead,5,Rank 0,5d2,9.91,10.74,9.27,2023-08-15 13:23:04
+Lightning Elemental,Elemental,5,Rank 0,5d2,10.1,9.43,10.74,2023-08-15 13:23:04
+Pit Lord,Devilkin,11,Rank 0,11d2+2,22.7,21.85,21.18,2023-08-15 13:23:04
+Ice Spirit,Fey,7,Rank 0,7d2+2,13.63,14.18,13.43,2023-08-15 13:23:04
+Pit Lord,Devilkin,12,Rank 2,12d6,70.2,70.77,74.39,2023-08-15 13:23:04
+Poltergeist,Undead,1,Rank 0,1d2,1.96,2.05,2.17,2023-08-15 13:23:04
+White Faerie,Fey,14,Rank 4,14d10+3,140.29,142.92,143.22,2023-08-15 13:23:04
+Nightmare,Demonic,12,Rank 2,12d6+1,73.58,70.28,70.25,2023-08-15 13:23:04
+Pseudodragon,Dragon,10,Rank 5,10d12,124.4,123.26,124.5,2023-08-15 13:23:04
+Smoke Elemental,Elemental,4,Rank 2,4d6+2,23.15,26.4,25.81,2023-08-15 13:23:04
+Prince of Fear,Devilkin,13,Rank 1,13d4+5,53.16,52.62,50.54,2023-08-15 13:23:04
+Copper Drake,Dragon,6,Rank 1,6d4+3,23.94,23.59,23.22,2023-08-15 13:23:04
+Shadow Mephit,Elemental,8,Rank 2,8d6+3,47.02,49.44,46.97,2023-08-15 13:23:04
+Incubus,Devilkin,9,Rank 2,9d6,53.6,51.26,54.56,2023-08-15 13:23:04
+Wyvern,Dragon,3,Rank 0,3d2,6.58,5.87,6.25,2023-08-15 13:23:04
+Efreeti,Elemental,5,Rank 0,5d2+2,9.8,9.19,9.2,2023-08-15 13:23:04
+Quasit,Demonic,14,Rank 4,14d10+4,136.91,135.21,142.66,2023-08-15 13:23:04
+Death Knight,Undead,2,Rank 2,2d6+2,11.39,10.3,11.49,2023-08-15 13:23:04
+Flame Elemental,Elemental,15,Rank 0,15d2+2,29.52,29.09,29.81,2023-08-15 13:23:04
+Hook Horror,Demonic,8,Rank 3,8d8+1,61.59,62.89,64.22,2023-08-15 13:23:04
+Wight,Undead,3,Rank 3,3d8,26.9,26.57,22.61,2023-08-15 13:23:04
+Mud Spirit,Fey,3,Rank 0,3d2+2,5.09,5.94,5.25,2023-08-15 13:23:04
+Spore Mephit,Elemental,14,Rank 0,14d2+2,27.24,28.25,28.19,2023-08-15 13:23:04
+Hook Horror,Demonic,2,Rank 2,2d6+2,12.86,10.56,10.94,2023-08-15 13:23:04
+Death Knight,Undead,12,Rank 2,12d6,73.92,73.54,73.68,2023-08-15 13:23:04
+Ice Elemental,Elemental,7,Rank 1,7d4,26.77,28.9,27.39,2023-08-15 13:23:04
+Pit Lord,Devilkin,9,Rank 1,9d4+4,34.03,36.52,36.41,2023-08-15 13:23:04
+Wyvern,Dragon,11,Rank 3,11d8+3,90.67,89.41,87.82,2023-08-15 13:23:04
+Mud Mephit,Elemental,5,Rank 1,5d4+1,21.44,19.26,20.49,2023-08-15 13:23:04
+Kobold Mage,Devilkin,1,Rank 2,1d6+4,8.61,4.22,8.19,2023-08-15 13:23:04
+Platinum Archfey,Fey,14,Rank 0,14d2,27.04,28.77,27.42,2023-08-15 13:23:04
+Kobold Archer,Devilkin,4,Rank 2,4d6+4,22.12,21.9,23.25,2023-08-15 13:23:04
+Wyvern,Dragon,5,Rank 2,5d6+2,28.64,29.23,28.72,2023-08-15 13:23:04
+Night Hag,Demonic,13,Rank 4,13d10+3,126.99,129.81,134.4,2023-08-15 13:23:04
+Lich,Undead,7,Rank 1,7d4+1,27.37,28.65,27.12,2023-08-15 13:23:04
+Lightning Archfey,Fey,15,Rank 1,15d4,60.23,60.75,59.45,2023-08-15 13:23:04
+Efreeti,Elemental,14,Rank 0,14d2,27.18,27.08,28.3,2023-08-15 13:23:04
+Ice Devil,Devilkin,10,Rank 0,10d2,20.45,20.13,20.65,2023-08-15 13:23:04
+Pseudodragon,Dragon,7,Rank 0,7d2,13.94,13.37,14.4,2023-08-15 13:23:04
+Imp,Demonic,11,Rank 2,11d6,63.93,66.47,66.35,2023-08-15 13:23:04
+Demilich,Undead,12,Rank 1,12d4+3,48.08,48.24,46.24,2023-08-15 13:23:04
+Smoke Elemental,Elemental,15,Rank 4,15d10,149.47,149.81,146.31,2023-08-15 13:23:04
+Imp,Demonic,12,Rank 1,12d4+3,47.68,48.87,47.07,2023-08-15 13:23:04
+Mummy Lord,Undead,8,Rank 1,8d4+1,31.85,32.99,31.22,2023-08-15 13:23:04
+Bronze Drake,Dragon,14,Rank 2,14d6,85.25,82.7,82.67,2023-08-15 13:23:04
+Efreeti,Elemental,5,Rank 3,5d8+3,43.28,39.84,42.93,2023-08-15 13:23:04
+Prince of Fear,Devilkin,16,Rank 3,16d8,130.4,124.11,130.83,2023-08-15 13:23:04
+Gold Archfey,Fey,6,Rank 3,6d8+1,48.17,47.72,49.53,2023-08-15 13:23:04
+Balor,Demonic,3,Rank 2,3d6+3,18.12,19.29,19.52,2023-08-15 13:23:04
+Onyx Drake,Dragon,3,Rank 2,3d6+3,16.85,17.45,19.42,2023-08-15 13:23:04
+Efreeti,Elemental,3,Rank 1,3d4,13.85,11.91,11.31,2023-08-15 13:23:04
+Lich,Undead,5,Rank 2,5d6,30.73,29.64,30.75,2023-08-15 13:23:04
+Green Faerie,Fey,7,Rank 0,7d2+3,14.46,13.19,14.83,2023-08-15 13:23:04
+Shadow Mephit,Elemental,6,Rank 1,6d4,24.15,24.27,24.62,2023-08-15 13:23:04
+Night Hag,Demonic,13,Rank 3,13d8+3,103.32,100.27,103.89,2023-08-15 13:23:04
+Zombie Guard,Undead,8,Rank 4,8d10+2,75.21,80.91,77.71,2023-08-15 13:23:04
+Flame Elemental,Elemental,3,Rank 0,3d2,6.44,6.59,5.2,2023-08-15 13:23:04
+Lich,Undead,2,Rank 1,2d4,7.41,8.93,8.48,2023-08-15 13:23:04
+Magma Spirit,Fey,12,Rank 1,12d4+1,47.64,48.77,49.18,2023-08-15 13:23:04
+Steam Devil,Devilkin,7,Rank 3,7d8+1,57.14,53.45,56.44,2023-08-15 13:23:04
+Pseudodragon,Dragon,5,Rank 0,5d2,10.45,9.22,9.5,2023-08-15 13:23:04
+Djinni,Elemental,5,Rank 1,5d4+3,21.46,20.34,18.79,2023-08-15 13:23:04
+Kobold Knight,Devilkin,8,Rank 3,8d8+1,65.57,62.68,65.77,2023-08-15 13:23:04
+Dust Archfey,Fey,6,Rank 4,6d10+2,63.91,60.62,55.51,2023-08-15 13:23:04
+Hook Horror,Demonic,6,Rank 2,6d6+2,38.81,33.54,38.72,2023-08-15 13:23:04
+Ghast,Undead,4,Rank 1,4d4+3,17.61,16.49,14.51,2023-08-15 13:23:04
+Faerie Dragon,Dragon,4,Rank 1,4d4+2,14.99,16.35,16.06,2023-08-15 13:23:04
+Djinni,Elemental,3,Rank 0,3d2+3,5.54,6.44,6.24,2023-08-15 13:23:04
+Kobold Villager,Devilkin,3,Rank 0,3d2+4,6.35,6.48,6.47,2023-08-15 13:23:04
+Pseudodragon,Dragon,5,Rank 2,5d6+1,29.73,31.74,28.75,2023-08-15 13:23:04
+Brass Faerie,Fey,1,Rank 1,1d4,5.11,4.54,4.74,2023-08-15 13:23:04
+Hell Hound,Demonic,14,Rank 2,14d6+1,85.37,85.74,81.32,2023-08-15 13:23:04
+Wyvern,Dragon,5,Rank 1,5d4+4,20.58,20.69,20.58,2023-08-15 13:23:04
+Flame Spirit,Fey,12,Rank 2,12d6,71.46,72.12,69.91,2023-08-15 13:23:04
+Magma Mephit,Elemental,16,Rank 3,16d8+2,129.54,127.44,130.48,2023-08-15 13:23:04
+Lich King,Undead,10,Rank 0,10d2,20.58,20.37,20.27,2023-08-15 13:23:04
+Shadow Elemental,Elemental,8,Rank 3,8d8,64.91,63.88,64.7,2023-08-15 13:23:04
+Pit Fiend,Demonic,9,Rank 3,9d8+1,70.12,73.14,71.16,2023-08-15 13:23:04
+Prismatic Drake,Dragon,12,Rank 0,12d2+2,23.98,24.88,23.64,2023-08-15 13:23:04
+Hell Hound,Demonic,3,Rank 0,3d2+3,6.21,5.78,6.97,2023-08-15 13:23:04
+Flame Devil,Devilkin,5,Rank 0,5d2+1,9.31,9.18,9.03,2023-08-15 13:23:04
+Pseudodragon,Dragon,7,Rank 0,7d2,14.78,14.15,13.05,2023-08-15 13:23:04
+Efreeti,Elemental,8,Rank 1,8d4+1,32.66,31.34,30.91,2023-08-15 13:23:04
+Kobold Mage,Devilkin,3,Rank 0,3d2,5.12,5.26,5.54,2023-08-15 13:23:04
+Lich King,Undead,6,Rank 0,6d2+4,12.62,11.27,11.41,2023-08-15 13:23:04
+Ruby Archfey,Fey,12,Rank 3,12d8,94.77,95.67,94.03,2023-08-15 13:23:04
+Night Hag,Demonic,4,Rank 0,4d2+2,8.52,8.95,7.86,2023-08-15 13:23:04
+Wraith,Undead,11,Rank 0,11d2,22.1,22.93,22.12,2023-08-15 13:23:04
+Efreeti,Elemental,11,Rank 0,11d2+1,21.48,22.6,21.11,2023-08-15 13:23:04
+Goblin Knight,Devilkin,2,Rank 0,2d2+4,3.98,3.83,3.09,2023-08-15 13:23:04
+Wyvern,Dragon,13,Rank 0,13d2+2,25.61,26.52,25.8,2023-08-15 13:23:04
+Lightning Spirit,Fey,4,Rank 4,4d10+1,39.71,37.3,41.85,2023-08-15 13:23:04
+Hell Hound,Demonic,10,Rank 0,10d2+4,20.31,19.46,19.72,2023-08-15 13:23:04
+Pseudodragon,Dragon,13,Rank 3,13d8+3,101.71,105.13,102.56,2023-08-15 13:23:04
+Platinum Faerie,Fey,9,Rank 2,9d6,54.22,56.83,53.19,2023-08-15 13:23:04
+Hell Hound,Demonic,2,Rank 0,2d2+5,3.71,4.02,4.21,2023-08-15 13:23:04
+Poltergeist,Undead,7,Rank 3,7d8,56.33,54.62,56.11,2023-08-15 13:23:04
+Steam Elemental,Elemental,6,Rank 2,6d6,37.62,38.31,36.05,2023-08-15 13:23:04
+Kobold Archer,Devilkin,9,Rank 0,9d2+2,18.64,17.26,18.98,2023-08-15 13:23:04
+Wight,Undead,4,Rank 1,4d4,16.93,17.96,16.24,2023-08-15 13:23:04
+Red Faerie,Fey,4,Rank 0,4d2+3,8.52,8.65,8.89,2023-08-15 13:23:04
+Imp,Demonic,8,Rank 1,8d4+1,32.04,33.15,32.57,2023-08-15 13:23:04
+Lich King,Undead,11,Rank 0,11d2,21.37,22.75,22.54,2023-08-15 13:23:04
+Pseudodragon,Dragon,5,Rank 3,5d8+1,40.45,43.95,40.46,2023-08-15 13:23:04
+Efreeti,Elemental,5,Rank 1,5d4,21.48,19.68,19.2,2023-08-15 13:23:04
+Ghostly Guard,Undead,6,Rank 4,6d10,59.91,55.05,60.54,2023-08-15 13:23:04
+Efreeti,Elemental,3,Rank 1,3d4,11.17,12.03,12.35,2023-08-15 13:23:04
+Pit Lord,Devilkin,18,Rank 1,18d4+1,71.07,70.23,72.71,2023-08-15 13:23:04
+Lich King,Undead,10,Rank 2,10d6+3,58.78,60.3,59.56,2023-08-15 13:23:04
+Diamond Faerie,Fey,13,Rank 2,13d6,75.17,78.85,77.91,2023-08-15 13:23:04
+Imp,Demonic,16,Rank 3,16d8+3,127.78,125.98,128.73,2023-08-15 13:23:04
+Kobold Knight,Devilkin,11,Rank 2,11d6,67.24,67.63,63.69,2023-08-15 13:23:04
+Faerie Dragon,Dragon,6,Rank 1,6d4,24.19,25.92,23.07,2023-08-15 13:23:04
+Balor,Demonic,17,Rank 1,17d4,68.44,69.64,69.07,2023-08-15 13:23:04
+Wraith,Undead,17,Rank 2,17d6+1,101.92,101.38,100.99,2023-08-15 13:23:04
+Emerald Faerie,Fey,11,Rank 0,11d2,22.96,21.68,21.83,2023-08-15 13:23:04
+Nightmare,Demonic,17,Rank 3,17d8+2,133.05,136.96,138.4,2023-08-15 13:23:04
+Smoke Devil,Devilkin,12,Rank 1,12d4+1,48.86,47.56,48.12,2023-08-15 13:23:04
+Wyvern,Dragon,11,Rank 1,11d4+4,43.01,45.72,44.0,2023-08-15 13:23:04
+Balor,Demonic,8,Rank 0,8d2+2,16.39,15.11,15.72,2023-08-15 13:23:04
+Demilich,Undead,9,Rank 3,9d8,73.88,68.59,72.85,2023-08-15 13:23:04
+Efreeti,Elemental,14,Rank 2,14d6+1,81.74,84.43,83.39,2023-08-15 13:23:04
+Succubus,Devilkin,12,Rank 3,12d8+2,95.76,93.57,96.76,2023-08-15 13:23:04
+Green Faerie,Fey,11,Rank 1,11d4,43.79,44.93,44.9,2023-08-15 13:23:04
+Imp,Demonic,4,Rank 1,4d4+1,14.85,15.26,14.7,2023-08-15 13:23:04
+Wight,Undead,3,Rank 2,3d6,19.31,19.57,17.72,2023-08-15 13:23:04
+Gold Faerie,Fey,9,Rank 1,9d4+1,36.44,37.86,35.5,2023-08-15 13:23:04
+Pit Fiend,Demonic,3,Rank 4,3d10,29.67,33.29,26.54,2023-08-15 13:23:04
+Copper Drake,Dragon,10,Rank 0,10d2+4,19.86,19.53,19.8,2023-08-15 13:23:04
+Spore Elemental,Elemental,6,Rank 3,6d8,49.96,46.82,45.48,2023-08-15 13:23:04
+Hell Hound,Demonic,15,Rank 1,15d4,60.07,61.88,58.62,2023-08-15 13:23:04
+Vampire,Undead,5,Rank 2,5d6,28.86,31.01,31.26,2023-08-15 13:23:04
+Ice Spirit,Fey,2,Rank 0,2d2+3,4.58,3.7,3.96,2023-08-15 13:23:04
+Succubus,Devilkin,18,Rank 2,18d6+3,110.56,109.64,108.72,2023-08-15 13:23:04
+Mummy Lord,Undead,6,Rank 0,6d2+2,12.98,12.12,12.33,2023-08-15 13:23:04
+Smoke Spirit,Fey,3,Rank 0,3d2+1,6.64,5.67,6.74,2023-08-15 13:23:04
+Shadow Mephit,Elemental,10,Rank 0,10d2+1,20.13,20.05,20.3,2023-08-15 13:23:04
+Mud Devil,Devilkin,8,Rank 4,8d10,80.75,83.59,81.22,2023-08-15 13:23:04
+Black Dragon,Dragon,7,Rank 3,7d8+2,55.73,54.44,55.1,2023-08-15 13:23:04
+Efreeti,Elemental,4,Rank 1,4d4,15.83,15.55,16.29,2023-08-15 13:23:04
+Pit Lord,Devilkin,12,Rank 1,12d4+1,47.63,46.41,47.46,2023-08-15 13:23:04
+Pseudodragon,Dragon,15,Rank 2,15d6+3,90.66,88.78,89.28,2023-08-15 13:23:04
+Pit Fiend,Demonic,8,Rank 1,8d4+2,30.52,32.7,31.79,2023-08-15 13:23:04
+Banshee,Undead,7,Rank 0,7d2+1,14.36,13.2,14.78,2023-08-15 13:23:04
+Efreeti,Elemental,8,Rank 2,8d6,48.41,47.05,49.41,2023-08-15 13:23:04
+Prince of Fear,Devilkin,13,Rank 4,13d10,133.07,130.18,133.51,2023-08-15 13:23:04
+Zombie Villager,Undead,10,Rank 5,10d12+3,117.34,123.79,124.38,2023-08-15 13:23:04
+Prismatic Faerie,Fey,8,Rank 0,8d2,16.75,16.39,15.39,2023-08-15 13:23:04
+Succubus,Devilkin,9,Rank 1,9d4,37.82,36.51,37.6,2023-08-15 13:23:04
+Copper Drake,Dragon,13,Rank 0,13d2,25.57,25.78,26.12,2023-08-15 13:23:04
+Magma Elemental,Elemental,3,Rank 1,3d4,11.14,10.5,12.47,2023-08-15 13:23:04
+Goblin Mage,Devilkin,8,Rank 0,8d2+3,16.06,15.04,16.31,2023-08-15 13:23:04
+Black Dragon,Dragon,4,Rank 0,4d2,8.58,8.32,7.8,2023-08-15 13:23:04
+Djinni,Elemental,14,Rank 2,14d6+3,83.96,85.03,81.0,2023-08-15 13:23:04
+Balor,Demonic,11,Rank 2,11d6+2,64.89,68.76,67.63,2023-08-15 13:23:04
+Steam Devil,Devilkin,5,Rank 2,5d6,30.07,29.23,31.35,2023-08-15 13:23:04
+Smoke Archfey,Fey,8,Rank 0,8d2+1,16.48,15.34,16.84,2023-08-15 13:23:04
+Pit Lord,Devilkin,17,Rank 1,17d4+3,67.42,67.75,69.9,2023-08-15 13:23:04
+Red Faerie,Fey,4,Rank 2,4d6+3,22.89,23.25,21.48,2023-08-15 13:23:04
+Nightmare,Demonic,14,Rank 0,14d2,27.04,27.92,27.75,2023-08-15 13:23:04
+Lich,Undead,2,Rank 1,2d4+1,9.22,7.04,9.59,2023-08-15 13:23:04
+Sapphire Dragon,Dragon,4,Rank 0,4d2+2,8.87,8.22,8.78,2023-08-15 13:23:04
+Platinum Faerie,Fey,8,Rank 0,8d2+5,15.11,16.27,15.97,2023-08-15 13:23:04
+Djinni,Elemental,18,Rank 0,18d2,36.13,36.89,35.16,2023-08-15 13:23:04
+Kobold Archer,Devilkin,7,Rank 3,7d8+3,57.08,59.7,54.25,2023-08-15 13:23:04
+Black Drake,Dragon,7,Rank 0,7d2+3,14.69,13.73,14.44,2023-08-15 13:23:04
+Efreeti,Elemental,16,Rank 0,16d2+2,31.98,32.93,31.25,2023-08-15 13:23:04
+Pit Lord,Devilkin,17,Rank 3,17d8+3,139.08,133.0,138.03,2023-08-15 13:23:04
+Faerie Dragon,Dragon,15,Rank 4,15d10,153.0,148.79,152.06,2023-08-15 13:23:04
+Shadow Elemental,Elemental,8,Rank 2,8d6+1,49.34,48.64,46.11,2023-08-15 13:23:04
+Skeletal Villager,Undead,14,Rank 0,14d2+4,28.52,27.65,28.87,2023-08-15 13:23:04
+Bronze Faerie,Fey,1,Rank 0,1d2+2,2.99,1.99,1.45,2023-08-15 13:23:04
+Dust Mephit,Elemental,3,Rank 2,3d6+2,18.7,19.58,17.9,2023-08-15 13:23:04
+Pit Lord,Devilkin,11,Rank 0,11d2,21.3,21.63,21.38,2023-08-15 13:23:04
+Faerie Dragon,Dragon,2,Rank 2,2d6+2,12.51,11.26,13.5,2023-08-15 13:23:04
+Spore Elemental,Elemental,2,Rank 2,2d6+3,11.41,13.43,11.01,2023-08-15 13:23:04
+Kobold Mage,Devilkin,17,Rank 3,17d8+4,139.19,138.09,138.97,2023-08-15 13:23:04
+Copper Wyrmling,Dragon,2,Rank 0,2d2,3.57,3.04,3.96,2023-08-15 13:23:04
+Steam Mephit,Elemental,12,Rank 1,12d4+3,46.33,47.19,47.39,2023-08-15 13:23:04
+Quasit,Demonic,4,Rank 2,4d6,25.36,22.86,25.45,2023-08-15 13:23:04
+Lich King,Undead,14,Rank 1,14d4+1,57.23,55.97,54.58,2023-08-15 13:23:04
+Efreeti,Elemental,13,Rank 0,13d2+1,25.93,25.87,26.72,2023-08-15 13:23:04
+Goblin Knight,Devilkin,4,Rank 2,4d6+3,25.32,25.31,24.85,2023-08-15 13:23:04
+Faerie Dragon,Dragon,17,Rank 0,17d2+3,34.18,34.89,34.91,2023-08-15 13:23:04
+Dust Mephit,Elemental,3,Rank 1,3d4,13.37,12.41,11.47,2023-08-15 13:23:04
+Flame Devil,Devilkin,3,Rank 0,3d2,5.09,6.74,5.41,2023-08-15 13:23:04
+Platinum Drake,Dragon,13,Rank 2,13d6,77.75,76.3,76.37,2023-08-15 13:23:04
+Magma Elemental,Elemental,3,Rank 2,3d6+2,18.77,17.11,17.37,2023-08-15 13:23:04
+Pit Lord,Devilkin,5,Rank 4,5d10,46.42,46.95,52.81,2023-08-15 13:23:04
+Faerie Dragon,Dragon,6,Rank 4,6d10+3,64.07,59.12,58.33,2023-08-15 13:23:04
+Lightning Elemental,Elemental,1,Rank 0,1d2+3,2.82,2.17,1.97,2023-08-15 13:23:04
+Prince of Fear,Devilkin,2,Rank 3,2d8+3,13.31,15.46,12.43,2023-08-15 13:23:04
+Pseudodragon,Dragon,3,Rank 1,3d4,12.05,10.34,13.83,2023-08-15 13:23:04
+Flame Mephit,Elemental,9,Rank 1,9d4+3,35.51,36.71,35.56,2023-08-15 13:23:04
+Prince of Fear,Devilkin,5,Rank 0,5d2+1,10.51,9.04,9.57,2023-08-15 13:23:04
+Zombie Villager,Undead,2,Rank 2,2d6,12.81,12.73,11.81,2023-08-15 13:23:04
+Lightning Spirit,Fey,8,Rank 2,8d6+4,47.92,46.07,49.95,2023-08-15 13:23:04
+Djinni,Elemental,5,Rank 1,5d4+4,20.06,20.31,18.16,2023-08-15 13:23:04
+Kobold Mage,Devilkin,14,Rank 2,14d6+1,84.23,83.15,84.61,2023-08-15 13:23:04
+Dust Spirit,Fey,18,Rank 1,18d4+3,71.09,70.85,70.97,2023-08-15 13:23:04
+Goblin Archer,Devilkin,9,Rank 2,9d6+5,55.72,54.23,56.0,2023-08-15 13:23:04
+Bronze Dragon,Dragon,2,Rank 0,2d2,3.46,3.08,4.61,2023-08-15 13:23:04
+Magma Elemental,Elemental,1,Rank 2,1d6+1,6.65,6.06,6.35,2023-08-15 13:23:04
+Succubus,Devilkin,8,Rank 0,8d2+1,16.02,16.35,16.69,2023-08-15 13:23:04
+Zombie Guard,Undead,3,Rank 0,3d2+2,5.96,6.77,5.92,2023-08-15 13:23:04
+White Archfey,Fey,11,Rank 1,11d4+1,44.98,44.06,44.09,2023-08-15 13:23:04
+Diamond Demon,Demonic,16,Rank 1,16d4+1,63.02,62.57,62.91,2023-08-15 13:23:04
+Kobold Mage,Devilkin,9,Rank 0,9d2+2,18.71,17.08,18.84,2023-08-15 13:23:04
+Death Knight,Undead,11,Rank 0,11d2+1,22.5,22.54,21.24,2023-08-15 13:23:04
+Faerie Dragon,Dragon,3,Rank 0,3d2+2,5.05,6.47,5.2,2023-08-15 13:23:04
+Shadow Mephit,Elemental,3,Rank 5,3d12+1,36.14,36.46,41.32,2023-08-15 13:23:04
+Flame Devil,Devilkin,16,Rank 4,16d10+1,163.92,157.43,160.66,2023-08-15 13:23:04
+Platinum Dragon,Dragon,17,Rank 1,17d4+2,68.15,68.01,68.81,2023-08-15 13:23:04
+Magma Elemental,Elemental,11,Rank 2,11d6+1,66.35,64.35,66.13,2023-08-15 13:23:04
+Succubus,Devilkin,10,Rank 0,10d2+1,19.82,20.74,20.75,2023-08-15 13:23:04
+Bronze Drake,Dragon,12,Rank 2,12d6,70.82,74.47,70.03,2023-08-15 13:23:04
+Ice Mephit,Elemental,16,Rank 2,16d6+4,95.99,94.77,95.23,2023-08-15 13:23:04
+Incubus,Devilkin,9,Rank 0,9d2+3,18.19,18.79,18.07,2023-08-15 13:23:04
+Mud Archfey,Fey,3,Rank 3,3d8,25.17,22.84,20.53,2023-08-15 13:23:04
+Shadow Elemental,Elemental,6,Rank 3,6d8+1,46.68,49.29,48.0,2023-08-15 13:23:04
+Succubus,Devilkin,8,Rank 1,8d4+2,31.79,32.81,30.54,2023-08-15 13:23:04
+Gold Wyrmling,Dragon,18,Rank 0,18d2+2,36.59,36.89,36.67,2023-08-15 13:23:04
+Efreeti,Elemental,3,Rank 4,3d10+1,28.27,32.48,25.23,2023-08-15 13:23:04
+Imp,Demonic,14,Rank 1,14d4+2,56.42,56.27,55.97,2023-08-15 13:23:04
+Wraith,Undead,2,Rank 0,2d2+4,4.48,3.51,4.62,2023-08-15 13:23:04
+Ruby Archfey,Fey,2,Rank 2,2d6+2,12.72,10.6,11.84,2023-08-15 13:23:04
+Nightmare,Demonic,7,Rank 2,7d6,42.68,43.33,43.02,2023-08-15 13:23:04
+Ghast,Undead,3,Rank 4,3d10+2,30.31,30.19,32.79,2023-08-15 13:23:04
+Dust Spirit,Fey,18,Rank 2,18d6+1,109.07,109.12,108.22,2023-08-15 13:23:04
+Pit Fiend,Demonic,5,Rank 1,5d4+1,19.57,19.26,20.07,2023-08-15 13:23:04
+Sapphire Dragon,Dragon,15,Rank 2,15d6+3,89.03,92.32,88.18,2023-08-15 13:23:04
+Smoke Elemental,Elemental,7,Rank 4,7d10+2,70.3,65.11,66.94,2023-08-15 13:23:04
+Quasit,Demonic,11,Rank 1,11d4,43.25,43.0,43.91,2023-08-15 13:23:04
+Lich,Undead,9,Rank 2,9d6+1,53.15,51.99,54.89,2023-08-15 13:23:04
+Shadow Spirit,Fey,14,Rank 2,14d6+2,83.35,84.55,82.03,2023-08-15 13:23:04
+Nightmare,Demonic,6,Rank 0,6d2+3,11.19,12.96,12.38,2023-08-15 13:23:04
+Pseudodragon,Dragon,13,Rank 0,13d2+2,26.45,25.7,25.23,2023-08-15 13:23:04
+Dust Mephit,Elemental,9,Rank 0,9d2+4,17.24,18.83,17.87,2023-08-15 13:23:04
+Kobold Knight,Devilkin,3,Rank 2,3d6,15.82,17.84,20.2,2023-08-15 13:23:04
+Wyvern,Dragon,12,Rank 1,12d4+1,48.47,48.13,48.03,2023-08-15 13:23:04
+Magma Spirit,Fey,7,Rank 0,7d2+3,13.31,14.81,13.76,2023-08-15 13:23:04
+Night Hag,Demonic,13,Rank 1,13d4+1,51.51,51.03,53.64,2023-08-15 13:23:04
+Kobold Villager,Devilkin,3,Rank 3,3d8+1,24.87,21.81,21.85,2023-08-15 13:23:04
+Brass Drake,Dragon,6,Rank 5,6d12+1,72.54,72.39,67.18,2023-08-15 13:23:04
+Djinni,Elemental,6,Rank 0,6d2,12.35,12.65,11.01,2023-08-15 13:23:04
+Ghast,Undead,13,Rank 0,13d2+3,26.13,26.25,26.18,2023-08-15 13:23:04
+Red Faerie,Fey,1,Rank 3,1d8+3,7.12,10.38,7.84,2023-08-15 13:23:04
+Prince of Fear,Devilkin,11,Rank 2,11d6,65.22,67.61,65.85,2023-08-15 13:23:04
+Pseudodragon,Dragon,13,Rank 0,13d2+2,25.94,26.92,25.6,2023-08-15 13:23:04
+Efreeti,Elemental,11,Rank 1,11d4+1,43.01,43.34,43.29,2023-08-15 13:23:04
+Kobold Archer,Devilkin,5,Rank 1,5d4,20.6,20.7,21.25,2023-08-15 13:27:41
+Wight,Undead,5,Rank 0,5d2+1,10.94,9.31,10.6,2023-08-15 13:27:41
+Wyvern,Dragon,4,Rank 4,4d10+1,37.03,41.84,40.47,2023-08-15 13:27:41
+Incubus,Devilkin,6,Rank 2,6d6+3,34.77,35.82,35.09,2023-08-15 13:27:41
+Ghast,Undead,8,Rank 0,8d2+4,15.68,15.47,15.73,2023-08-15 13:27:41
+Magma Spirit,Fey,16,Rank 0,16d2+5,32.49,32.78,31.67,2023-08-15 13:27:41
+Platinum Demon,Demonic,9,Rank 3,9d8+5,74.24,69.56,73.44,2023-08-15 13:27:41
+Steam Elemental,Elemental,10,Rank 2,10d6+2,59.9,61.13,58.88,2023-08-15 13:27:41
+Flame Spirit,Fey,3,Rank 1,3d4+5,10.14,12.17,13.97,2023-08-15 13:27:41
+Balor,Demonic,16,Rank 2,16d6+2,95.15,95.87,93.92,2023-08-15 13:27:41
+Prince of Fear,Devilkin,9,Rank 1,9d4+1,37.38,36.48,36.22,2023-08-15 13:27:41
+Skeletal Guard,Undead,10,Rank 0,10d2,20.0,19.43,20.72,2023-08-15 13:27:41
+Ruby Drake,Dragon,3,Rank 1,3d4+1,11.08,11.4,11.31,2023-08-15 13:27:41
+Goblin Villager,Devilkin,11,Rank 4,11d10+1,106.42,112.45,113.37,2023-08-15 13:27:41
+Ghostly Archer,Undead,4,Rank 1,4d4+3,16.27,15.94,16.74,2023-08-15 13:27:41
+Wyvern,Dragon,4,Rank 1,4d4,14.05,15.95,15.12,2023-08-15 13:27:41
+Magma Mephit,Elemental,10,Rank 3,10d8,78.62,80.8,83.43,2023-08-15 13:27:41
+Smoke Spirit,Fey,13,Rank 2,13d6+3,76.73,80.19,75.86,2023-08-15 13:27:41
+Hell Hound,Demonic,9,Rank 0,9d2,17.36,17.13,17.41,2023-08-15 13:27:41
+Mummy Lord,Undead,8,Rank 2,8d6+1,50.31,49.22,48.41,2023-08-15 13:27:41
+Ice Spirit,Fey,6,Rank 1,6d4+1,24.54,23.95,23.06,2023-08-15 13:27:41
+Incubus,Devilkin,8,Rank 3,8d8,63.43,63.23,65.43,2023-08-15 13:27:41
+Revenant,Undead,12,Rank 0,12d2+1,24.83,23.86,24.72,2023-08-15 13:27:41
+Silver Drake,Dragon,16,Rank 1,16d4+2,64.02,65.7,63.38,2023-08-15 13:27:41
+Kobold Guard,Devilkin,5,Rank 0,5d2,11.0,9.53,10.78,2023-08-15 13:27:41
+Demilich,Undead,13,Rank 3,13d8,102.09,103.49,102.84,2023-08-15 13:27:41
+White Dragon,Dragon,3,Rank 0,3d2+2,5.96,6.58,6.15,2023-08-15 13:27:41
+Goblin Mage,Devilkin,12,Rank 1,12d4,46.61,48.78,46.73,2023-08-15 13:27:41
+Sapphire Faerie,Fey,6,Rank 2,6d6+2,36.88,34.58,36.07,2023-08-15 13:27:41
+Ruby Demon,Demonic,8,Rank 0,8d2,15.4,16.61,15.84,2023-08-15 13:27:41
+Djinni,Elemental,5,Rank 3,5d8+4,39.81,42.71,37.7,2023-08-15 13:27:41
+Copper Archfey,Fey,17,Rank 1,17d4+4,68.84,66.26,67.08,2023-08-15 13:27:41
+Lightning Devil,Devilkin,8,Rank 1,8d4+2,30.27,33.98,30.68,2023-08-15 13:27:41
+Ghoul,Undead,2,Rank 5,2d12+1,26.94,28.39,22.03,2023-08-15 13:27:41
+Smoke Archfey,Fey,14,Rank 0,14d2+1,28.6,28.49,28.97,2023-08-15 13:27:41
+Pit Lord,Devilkin,5,Rank 2,5d6+5,30.02,29.44,27.56,2023-08-15 13:27:41
+Poltergeist,Undead,5,Rank 3,5d8+1,37.82,37.45,39.21,2023-08-15 13:27:41
+Brass Wyrmling,Dragon,17,Rank 1,17d4,66.55,68.82,68.18,2023-08-15 13:27:41
+Efreeti,Elemental,3,Rank 0,3d2,6.55,5.76,6.05,2023-08-15 13:27:41
+Green Archfey,Fey,11,Rank 2,11d6+3,64.39,65.41,63.07,2023-08-15 13:27:41
+Hook Horror,Demonic,8,Rank 2,8d6,47.39,48.3,49.53,2023-08-15 13:27:41
+Mummy,Undead,6,Rank 1,6d4,25.63,24.79,24.38,2023-08-15 13:27:41
+Black Drake,Dragon,11,Rank 5,11d12+3,137.89,134.53,128.62,2023-08-15 13:27:41
+Brass Demon,Demonic,5,Rank 1,5d4+1,19.76,19.4,18.84,2023-08-15 13:27:41
+Efreeti,Elemental,3,Rank 1,3d4+1,10.62,13.72,12.34,2023-08-15 13:27:41
+Mummy,Undead,12,Rank 0,12d2+1,24.79,23.37,24.58,2023-08-15 13:27:41
+Blue Wyrmling,Dragon,3,Rank 2,3d6+3,18.01,17.95,16.68,2023-08-15 13:27:41
+Kobold Knight,Devilkin,6,Rank 0,6d2+4,11.33,11.58,11.15,2023-08-15 13:27:41
+Ice Spirit,Fey,12,Rank 1,12d4,48.78,46.38,47.33,2023-08-15 13:27:41
+Kobold Villager,Devilkin,5,Rank 1,5d4+3,19.91,21.13,18.9,2023-08-15 13:27:41
+Banshee,Undead,16,Rank 1,16d4,63.29,63.27,63.64,2023-08-15 13:27:41
+Pseudodragon,Dragon,4,Rank 1,4d4+1,17.97,15.8,16.83,2023-08-15 13:27:41
+Pit Lord,Devilkin,2,Rank 1,2d4,8.49,7.27,7.66,2023-08-15 13:27:41
+Wight,Undead,8,Rank 3,8d8+3,66.11,65.12,63.69,2023-08-15 13:27:41
+Wyvern,Dragon,2,Rank 2,2d6+5,12.58,11.91,13.1,2023-08-15 13:27:41
+Steam Devil,Devilkin,5,Rank 1,5d4+4,18.13,18.47,20.89,2023-08-15 13:27:41
+Demilich,Undead,6,Rank 1,6d4,24.55,24.64,23.57,2023-08-15 13:27:41
+Platinum Faerie,Fey,5,Rank 2,5d6+4,28.74,28.61,30.4,2023-08-15 13:27:41
+Brass Demon,Demonic,3,Rank 2,3d6+4,19.89,20.48,18.59,2023-08-15 13:27:41
+Efreeti,Elemental,3,Rank 3,3d8+1,21.17,26.31,23.64,2023-08-15 13:27:41
+Dust Archfey,Fey,9,Rank 3,9d8+1,69.36,69.6,71.3,2023-08-15 13:27:41
+Pit Fiend,Demonic,3,Rank 1,3d4+3,12.35,12.4,11.7,2023-08-15 13:27:41
+Djinni,Elemental,4,Rank 2,4d6+1,25.39,22.03,21.12,2023-08-15 13:27:41
+Gold Faerie,Fey,10,Rank 2,10d6,60.72,58.69,62.65,2023-08-15 13:27:41
+Pit Fiend,Demonic,5,Rank 4,5d10+3,53.49,47.3,50.8,2023-08-15 13:27:41
+Efreeti,Elemental,9,Rank 0,9d2+2,18.83,18.67,17.03,2023-08-15 13:27:41
+Demilich,Undead,8,Rank 0,8d2,15.41,16.84,15.57,2023-08-15 13:27:41
+Wyvern,Dragon,2,Rank 0,2d2+1,4.31,4.91,3.79,2023-08-15 13:27:41
+Goblin Archer,Devilkin,10,Rank 0,10d2+5,19.57,19.29,19.61,2023-08-15 13:27:41
+Blue Faerie,Fey,1,Rank 0,1d2+2,1.25,2.58,1.72,2023-08-15 13:27:41
+Red Demon,Demonic,14,Rank 1,14d4+5,57.53,55.22,55.58,2023-08-15 13:27:41
+Prince of Fear,Devilkin,7,Rank 1,7d4+1,28.81,29.07,27.73,2023-08-15 13:27:41
+Lightning Elemental,Elemental,5,Rank 0,5d2+4,10.09,10.52,10.99,2023-08-15 13:27:41
+Pseudodragon,Dragon,2,Rank 0,2d2+1,4.44,3.79,4.45,2023-08-15 13:27:41
+Hell Hound,Demonic,2,Rank 0,2d2,3.37,3.18,4.19,2023-08-15 13:27:41
+Smoke Elemental,Elemental,14,Rank 4,14d10+1,138.72,137.69,141.52,2023-08-15 13:27:41
+Lich King,Undead,12,Rank 0,12d2+3,23.74,24.45,24.63,2023-08-15 13:27:41
+Onyx Dragon,Dragon,15,Rank 1,15d4+1,61.58,59.0,59.17,2023-08-15 13:27:41
+Prince of Fear,Devilkin,15,Rank 3,15d8+2,121.58,121.63,117.52,2023-08-15 13:27:41
+Shadow Elemental,Elemental,11,Rank 2,11d6+1,65.39,67.41,63.41,2023-08-15 13:27:41
+Wraith,Undead,3,Rank 4,3d10,25.86,29.74,26.77,2023-08-15 13:27:41
+Bronze Wyrmling,Dragon,12,Rank 0,12d2,24.14,23.4,24.13,2023-08-15 13:27:41
+Spore Mephit,Elemental,14,Rank 1,14d4+1,57.87,56.8,57.87,2023-08-15 13:27:41
+Poltergeist,Undead,11,Rank 1,11d4,45.34,42.13,45.48,2023-08-15 13:27:41
+Smoke Spirit,Fey,13,Rank 4,13d10,133.43,128.98,129.71,2023-08-15 13:27:41
+Pit Fiend,Demonic,4,Rank 3,4d8+5,32.67,31.27,29.11,2023-08-15 13:27:41
+Goblin Knight,Devilkin,10,Rank 0,10d2,19.01,19.92,19.58,2023-08-15 13:27:41
+Mummy,Undead,8,Rank 1,8d4+1,32.94,31.48,32.52,2023-08-15 13:27:41
+Prismatic Demon,Demonic,9,Rank 4,9d10,87.68,91.39,93.85,2023-08-15 13:27:41
+Mummy,Undead,3,Rank 1,3d4+5,12.42,13.48,10.13,2023-08-15 13:27:41
+Night Hag,Demonic,6,Rank 0,6d2,12.26,12.89,11.74,2023-08-15 13:27:41
+Wraith,Undead,3,Rank 1,3d4,13.81,13.59,10.65,2023-08-15 13:27:41
+Wyvern,Dragon,17,Rank 4,17d10+1,167.73,166.07,171.17,2023-08-15 13:27:41
+Prince of Fear,Devilkin,5,Rank 2,5d6,29.85,32.77,28.59,2023-08-15 13:27:41
+Efreeti,Elemental,2,Rank 1,2d4,6.66,7.02,8.94,2023-08-15 13:27:41
+Mummy Lord,Undead,7,Rank 2,7d6+1,40.79,42.85,43.83,2023-08-15 13:27:41
+Copper Wyrmling,Dragon,8,Rank 1,8d4+1,33.81,31.62,32.37,2023-08-15 13:27:41
+Prince of Fear,Devilkin,5,Rank 4,5d10+5,53.8,50.83,53.71,2023-08-15 13:27:41
+Skeletal Guard,Undead,2,Rank 1,2d4+1,9.45,9.19,7.92,2023-08-15 13:27:41
+Faerie Dragon,Dragon,9,Rank 2,9d6+1,52.98,55.39,54.56,2023-08-15 13:27:41
+Goblin Mage,Devilkin,4,Rank 1,4d4+1,16.02,16.85,14.73,2023-08-15 13:27:41
+Revenant,Undead,6,Rank 5,6d12+1,74.58,70.17,72.38,2023-08-15 13:27:41
+Quasit,Demonic,3,Rank 4,3d10+1,30.77,30.21,28.68,2023-08-15 13:27:41
+Ice Mephit,Elemental,8,Rank 0,8d2,16.72,15.64,15.06,2023-08-15 13:27:41
+Platinum Faerie,Fey,9,Rank 4,9d10+1,86.27,92.25,89.85,2023-08-15 13:27:41
+Prince of Fear,Devilkin,8,Rank 1,8d4+3,31.21,33.17,31.35,2023-08-15 13:27:41
+Ruby Archfey,Fey,9,Rank 4,9d10+4,88.28,86.01,90.51,2023-08-15 13:27:41
+Wyvern,Dragon,11,Rank 0,11d2,22.82,22.54,21.13,2023-08-15 13:27:41
+Djinni,Elemental,11,Rank 4,11d10+2,107.13,111.65,107.02,2023-08-15 13:27:41
+Steam Spirit,Fey,14,Rank 0,14d2+1,27.26,28.6,28.05,2023-08-15 13:27:41
+Balor,Demonic,16,Rank 0,16d2+1,31.12,32.19,31.66,2023-08-15 13:27:41
+Efreeti,Elemental,13,Rank 0,13d2+2,25.2,25.13,25.39,2023-08-15 13:27:41
+Copper Faerie,Fey,4,Rank 0,4d2+1,7.86,8.43,7.45,2023-08-15 13:27:41
+Wyvern,Dragon,13,Rank 4,13d10,128.34,127.13,128.14,2023-08-15 13:27:41
+Pit Lord,Devilkin,12,Rank 1,12d4+1,47.43,48.09,47.99,2023-08-15 13:27:41
+Shadow Spirit,Fey,15,Rank 1,15d4,58.51,59.56,60.46,2023-08-15 13:27:41
+Prince of Fear,Devilkin,8,Rank 0,8d2+2,16.14,15.58,15.81,2023-08-15 13:27:41
+Magma Spirit,Fey,8,Rank 0,8d2+1,15.11,16.55,16.31,2023-08-15 13:27:41
+Balor,Demonic,3,Rank 0,3d2+3,6.81,6.87,5.15,2023-08-15 13:27:41
+Pit Lord,Devilkin,2,Rank 3,2d8,14.9,12.45,16.51,2023-08-15 13:27:41
+Mummy Lord,Undead,5,Rank 2,5d6+1,32.97,28.7,28.7,2023-08-15 13:27:41
+Pseudodragon,Dragon,6,Rank 4,6d10+3,59.59,58.78,64.81,2023-08-15 13:27:41
+Djinni,Elemental,4,Rank 1,4d4,16.86,16.1,17.43,2023-08-15 13:27:41
+Mud Spirit,Fey,1,Rank 3,1d8+4,9.7,5.53,6.0,2023-08-15 13:27:41
+Balor,Demonic,4,Rank 1,4d4+4,14.97,16.07,15.78,2023-08-15 13:27:41
+Dust Elemental,Elemental,5,Rank 1,5d4+2,21.81,19.4,19.05,2023-08-15 13:27:41
+Mummy Lord,Undead,6,Rank 1,6d4+2,23.19,23.84,23.4,2023-08-15 13:27:41
+Balor,Demonic,4,Rank 3,4d8+2,28.44,30.22,30.02,2023-08-15 13:27:41
+Lightning Elemental,Elemental,8,Rank 0,8d2+1,16.62,16.31,16.88,2023-08-15 13:27:41
+Vampire,Undead,3,Rank 3,3d8,25.05,23.54,21.18,2023-08-15 13:27:41
+Sapphire Drake,Dragon,7,Rank 3,7d8+2,56.31,53.32,52.9,2023-08-15 13:27:41
+Kobold Knight,Devilkin,8,Rank 2,8d6+1,49.22,50.6,50.58,2023-08-15 13:27:41
+Vampire,Undead,17,Rank 3,17d8+1,135.96,138.26,132.88,2023-08-15 13:27:41
+Ruby Dragon,Dragon,11,Rank 0,11d2+1,22.68,21.65,22.93,2023-08-15 13:27:41
+Copper Demon,Demonic,13,Rank 0,13d2+2,25.4,25.14,26.9,2023-08-15 13:27:41
+Pit Lord,Devilkin,18,Rank 3,18d8,146.75,140.66,143.41,2023-08-15 13:27:41
+Steam Archfey,Fey,3,Rank 1,3d4,11.09,13.93,10.36,2023-08-15 13:27:41
+Goblin Villager,Devilkin,14,Rank 1,14d4+1,55.84,56.79,55.05,2023-08-15 13:27:41
+Death Knight,Undead,2,Rank 2,2d6+2,11.48,11.76,12.34,2023-08-15 13:27:41
+Quasit,Demonic,9,Rank 1,9d4+1,36.96,36.85,34.82,2023-08-15 13:27:41
+Dust Elemental,Elemental,16,Rank 0,16d2+2,32.55,32.88,32.06,2023-08-15 13:27:41
+Onyx Archfey,Fey,14,Rank 3,14d8+1,110.02,108.16,112.63,2023-08-15 13:27:41
+Goblin Archer,Devilkin,8,Rank 1,8d4+1,31.65,32.87,33.11,2023-08-15 13:27:41
+Wight,Undead,5,Rank 0,5d2+1,9.01,9.17,10.32,2023-08-15 13:27:41
+Pseudodragon,Dragon,9,Rank 0,9d2+2,17.08,18.49,18.14,2023-08-15 13:27:41
+Pit Lord,Devilkin,3,Rank 1,3d4+4,11.56,12.23,12.14,2023-08-15 13:27:41
+Revenant,Undead,4,Rank 0,4d2+2,8.18,8.0,7.23,2023-08-15 13:27:41
+Pseudodragon,Dragon,12,Rank 0,12d2+4,24.21,23.04,24.95,2023-08-15 13:27:41
+Quasit,Demonic,9,Rank 1,9d4+2,34.96,37.46,36.96,2023-08-15 13:27:41
+Efreeti,Elemental,3,Rank 5,3d12+1,30.48,39.44,38.3,2023-08-15 13:27:41
+Lightning Spirit,Fey,8,Rank 1,8d4,30.27,32.93,32.98,2023-08-15 13:27:41
+Ruby Drake,Dragon,8,Rank 0,8d2,15.17,15.18,16.38,2023-08-15 13:27:41
+Nightmare,Demonic,2,Rank 0,2d2+5,4.25,3.8,4.57,2023-08-15 13:27:41
+Djinni,Elemental,14,Rank 1,14d4+3,56.84,56.48,56.63,2023-08-15 13:27:41
+Flame Spirit,Fey,16,Rank 1,16d4+1,64.97,64.76,62.67,2023-08-15 13:27:41
+Lightning Devil,Devilkin,3,Rank 0,3d2+2,6.2,6.8,5.02,2023-08-15 13:27:41
+Flame Archfey,Fey,13,Rank 2,13d6+5,76.8,78.73,78.15,2023-08-15 13:27:41
+Hook Horror,Demonic,8,Rank 2,8d6,47.76,49.29,48.0,2023-08-15 13:27:41
+Ice Elemental,Elemental,3,Rank 0,3d2+3,5.25,6.69,6.15,2023-08-15 13:27:41
+Blue Faerie,Fey,4,Rank 0,4d2+2,8.14,7.28,8.22,2023-08-15 13:27:41
+Black Drake,Dragon,10,Rank 0,10d2+3,20.37,20.48,20.93,2023-08-15 13:27:41
+Kobold Guard,Devilkin,8,Rank 4,8d10+1,80.54,81.2,82.54,2023-08-15 13:27:41
+Dracolich,Undead,10,Rank 3,10d8,77.11,81.95,82.18,2023-08-15 13:27:41
+Emerald Faerie,Fey,15,Rank 0,15d2,30.78,29.03,31.0,2023-08-15 13:27:41
+Quasit,Demonic,5,Rank 4,5d10,51.76,54.67,45.28,2023-08-15 13:27:41
+Skeletal Mage,Undead,10,Rank 4,10d10+4,101.9,99.0,99.26,2023-08-15 13:27:41
+Diamond Wyrmling,Dragon,6,Rank 0,6d2+3,12.85,12.14,12.62,2023-08-15 13:27:41
+Spore Devil,Devilkin,5,Rank 3,5d8,41.47,41.13,39.96,2023-08-15 13:27:41
+Black Faerie,Fey,5,Rank 0,5d2,9.24,9.61,10.47,2023-08-15 13:27:41
+Night Hag,Demonic,10,Rank 2,10d6+2,61.5,58.33,59.45,2023-08-15 13:27:41
+Smoke Mephit,Elemental,16,Rank 0,16d2+3,32.87,31.97,32.49,2023-08-15 13:27:41
+Emerald Faerie,Fey,9,Rank 0,9d2+3,18.49,18.83,17.76,2023-08-15 13:27:41
+Pit Fiend,Demonic,7,Rank 2,7d6,41.05,39.57,41.81,2023-08-15 13:27:41
+Shadow Mephit,Elemental,13,Rank 1,13d4+1,51.4,51.39,52.13,2023-08-15 13:27:41
+Vampire,Undead,1,Rank 2,1d6,7.95,5.11,5.32,2023-08-15 13:27:41
+Night Hag,Demonic,9,Rank 0,9d2,18.51,17.11,17.59,2023-08-15 13:27:41
+Revenant,Undead,3,Rank 1,3d4,11.66,12.54,11.13,2023-08-15 13:27:41
+Faerie Dragon,Dragon,11,Rank 1,11d4+2,44.17,45.04,43.31,2023-08-15 13:27:41
+Spore Elemental,Elemental,5,Rank 2,5d6,28.86,29.0,28.84,2023-08-15 13:27:41
+Flame Spirit,Fey,3,Rank 0,3d2+1,6.22,5.9,6.06,2023-08-15 13:27:41
+Prince of Fear,Devilkin,2,Rank 0,2d2,4.31,4.51,3.63,2023-08-15 13:27:41
+Lich,Undead,1,Rank 1,1d4+5,3.17,4.26,2.78,2023-08-15 13:27:41
+Nightmare,Demonic,7,Rank 0,7d2+2,14.53,13.2,13.23,2023-08-15 13:27:41
+Ice Elemental,Elemental,9,Rank 3,9d8+1,69.18,70.08,71.09,2023-08-15 13:27:41
+Mud Spirit,Fey,7,Rank 2,7d6,43.57,41.66,42.8,2023-08-15 13:27:41
+Quasit,Demonic,2,Rank 1,2d4,8.85,6.28,7.52,2023-08-15 13:27:41
+Efreeti,Elemental,2,Rank 0,2d2+4,4.12,4.48,4.34,2023-08-15 13:27:41
+Blue Faerie,Fey,17,Rank 0,17d2+1,34.94,33.32,34.36,2023-08-15 13:27:41
+Goblin Knight,Devilkin,14,Rank 4,14d10+2,143.6,137.3,136.09,2023-08-15 13:27:41
+Vampire,Undead,4,Rank 1,4d4+4,17.27,16.75,15.75,2023-08-15 13:27:41
+Faerie Dragon,Dragon,5,Rank 4,5d10+2,46.01,47.7,45.78,2023-08-15 13:27:41
+Efreeti,Elemental,6,Rank 1,6d4,22.28,23.39,24.67,2023-08-15 13:27:41
+Faerie Dragon,Dragon,5,Rank 1,5d4,19.79,18.93,18.4,2023-08-15 13:27:41
+Dust Devil,Devilkin,18,Rank 4,18d10+3,177.89,176.13,177.55,2023-08-15 13:27:41
+Death Knight,Undead,5,Rank 2,5d6+4,31.09,32.01,29.32,2023-08-15 13:27:41
+Wyvern,Dragon,5,Rank 3,5d8+3,40.74,36.82,42.87,2023-08-15 13:27:41
+Kobold Villager,Devilkin,13,Rank 4,13d10+2,130.43,128.1,134.3,2023-08-15 13:27:41
+Skeletal Archer,Undead,9,Rank 0,9d2,17.79,18.25,17.03,2023-08-15 13:27:41
+Black Dragon,Dragon,12,Rank 1,12d4+2,48.8,48.56,46.57,2023-08-15 13:27:41
+Emerald Demon,Demonic,13,Rank 2,13d6+2,79.67,77.91,77.21,2023-08-15 13:27:41
+Lightning Devil,Devilkin,8,Rank 3,8d8+1,61.82,67.53,62.91,2023-08-15 13:27:41
+Lich King,Undead,8,Rank 3,8d8+2,61.22,62.75,66.8,2023-08-15 13:27:41
+Diamond Archfey,Fey,9,Rank 4,9d10,88.36,90.43,87.02,2023-08-15 13:27:41
+Pit Fiend,Demonic,7,Rank 4,7d10,71.46,73.49,71.17,2023-08-15 13:27:41
+Succubus,Devilkin,4,Rank 3,4d8,35.99,29.38,29.29,2023-08-15 13:27:41
+Dracolich,Undead,6,Rank 0,6d2+1,12.09,11.74,11.86,2023-08-15 13:27:41
+Imp,Demonic,2,Rank 1,2d4+3,6.51,9.88,7.9,2023-08-15 13:27:41
+Kobold Guard,Devilkin,2,Rank 4,2d10+1,17.32,22.49,23.16,2023-08-15 13:27:41
+Lich,Undead,18,Rank 2,18d6,110.85,107.04,106.15,2023-08-15 13:27:41
+Wyvern,Dragon,3,Rank 5,3d12,37.23,35.1,35.52,2023-08-15 13:27:41
+Succubus,Devilkin,15,Rank 0,15d2,29.25,29.19,29.1,2023-08-15 13:27:41
+Poltergeist,Undead,4,Rank 3,4d8+2,34.79,33.09,34.91,2023-08-15 13:27:41
+Onyx Drake,Dragon,5,Rank 2,5d6,28.79,28.11,32.1,2023-08-15 13:27:41
+Flame Mephit,Elemental,11,Rank 0,11d2,22.2,22.1,21.59,2023-08-15 13:27:41
+Pseudodragon,Dragon,13,Rank 3,13d8+1,104.72,102.35,100.88,2023-08-15 13:27:41
+Pit Lord,Devilkin,3,Rank 1,3d4+1,11.7,11.28,11.6,2023-08-15 13:27:41
+Efreeti,Elemental,6,Rank 2,6d6+5,33.24,37.3,35.22,2023-08-15 13:27:41
+Gold Faerie,Fey,9,Rank 3,9d8,74.11,73.43,74.16,2023-08-15 13:27:41
+Black Demon,Demonic,3,Rank 0,3d2+2,6.54,5.12,6.18,2023-08-15 13:27:41
+Magma Elemental,Elemental,3,Rank 3,3d8+1,20.29,25.39,21.98,2023-08-15 13:27:41
+Emerald Faerie,Fey,2,Rank 3,2d8+3,14.78,16.53,14.58,2023-08-15 13:27:41
+Pit Lord,Devilkin,13,Rank 2,13d6,76.31,77.78,79.93,2023-08-15 13:27:41
+Efreeti,Elemental,11,Rank 5,11d12,126.52,132.71,128.95,2023-08-15 13:27:41
+Demilich,Undead,11,Rank 1,11d4+4,43.39,42.02,43.34,2023-08-15 13:27:41
+Silver Drake,Dragon,10,Rank 0,10d2,19.32,20.0,20.8,2023-08-15 13:27:41
+Djinni,Elemental,10,Rank 3,10d8+1,79.01,78.58,79.16,2023-08-15 13:27:41
+Ghast,Undead,8,Rank 1,8d4+2,33.82,30.95,33.37,2023-08-15 13:27:41
+Imp,Demonic,8,Rank 5,8d12+3,98.04,98.79,95.45,2023-08-15 13:27:41
+Wraith,Undead,3,Rank 3,3d8,25.19,23.62,23.42,2023-08-15 13:27:41
+Steam Archfey,Fey,9,Rank 1,9d4+1,36.81,37.62,37.65,2023-08-15 13:27:41
+Prince of Fear,Devilkin,4,Rank 0,4d2+1,8.04,7.66,8.32,2023-08-15 13:27:41
+Djinni,Elemental,4,Rank 2,4d6+1,24.98,24.94,24.51,2023-08-15 13:27:41
+Sapphire Faerie,Fey,3,Rank 1,3d4+4,12.7,12.49,13.76,2023-08-15 13:27:41
+Pit Fiend,Demonic,17,Rank 3,17d8+4,138.95,135.02,135.87,2023-08-15 13:27:41
+Prince of Fear,Devilkin,12,Rank 4,12d10+1,119.78,118.37,124.75,2023-08-15 13:27:41
+Mummy Lord,Undead,3,Rank 1,3d4+2,11.05,13.87,11.28,2023-08-15 13:27:41
+Bronze Drake,Dragon,3,Rank 0,3d2,5.75,5.81,5.28,2023-08-15 13:27:41
+Flame Devil,Devilkin,2,Rank 0,2d2,3.59,4.82,3.4,2023-08-15 13:27:41
+Mummy Lord,Undead,8,Rank 4,8d10,75.31,76.47,82.61,2023-08-15 13:27:41
+Prismatic Wyrmling,Dragon,13,Rank 1,13d4+2,51.23,52.81,53.23,2023-08-15 13:27:41
+Pit Lord,Devilkin,13,Rank 3,13d8+4,106.45,101.47,106.11,2023-08-15 13:27:41
+Efreeti,Elemental,5,Rank 1,5d4+2,18.47,19.2,18.7,2023-08-15 13:27:41
+Silver Faerie,Fey,3,Rank 3,3d8+4,21.0,25.22,22.18,2023-08-15 13:27:41
+Hell Hound,Demonic,6,Rank 2,6d6+2,36.91,36.48,37.6,2023-08-15 13:27:41
+Djinni,Elemental,2,Rank 0,2d2,3.56,3.18,3.21,2023-08-15 13:27:41
+Copper Archfey,Fey,4,Rank 0,4d2,8.86,7.54,7.46,2023-08-15 13:27:41
+Faerie Dragon,Dragon,3,Rank 4,3d10+1,34.07,30.09,25.01,2023-08-15 13:27:41
+Efreeti,Elemental,13,Rank 2,13d6,78.61,79.87,80.61,2023-08-15 13:27:41
+Platinum Faerie,Fey,10,Rank 2,10d6+1,61.13,61.9,60.9,2023-08-15 13:27:41
+Night Hag,Demonic,13,Rank 3,13d8+1,100.81,104.09,106.37,2023-08-15 13:27:41
+Ice Elemental,Elemental,3,Rank 3,3d8,24.38,21.21,22.23,2023-08-15 13:27:41
+Spore Archfey,Fey,6,Rank 0,6d2+3,11.96,12.23,11.89,2023-08-15 13:27:41
+Pseudodragon,Dragon,7,Rank 2,7d6+2,44.29,41.59,43.82,2023-08-15 13:27:41
+Balor,Demonic,16,Rank 1,16d4+5,63.46,63.33,63.4,2023-08-15 13:27:41
+Djinni,Elemental,9,Rank 4,9d10,93.78,86.16,87.1,2023-08-15 13:27:41
+Brass Archfey,Fey,7,Rank 0,7d2+2,14.42,14.44,14.42,2023-08-15 13:27:41
+Smoke Devil,Devilkin,14,Rank 3,14d8+3,110.28,110.3,114.19,2023-08-15 13:27:41
+Ice Mephit,Elemental,4,Rank 2,4d6+2,24.57,25.51,22.15,2023-08-15 13:27:41
+Emerald Faerie,Fey,8,Rank 0,8d2+1,15.71,16.33,15.53,2023-08-15 13:27:41
+Kobold Mage,Devilkin,8,Rank 4,8d10+3,82.99,76.58,78.42,2023-08-15 13:27:41
+Wraith,Undead,12,Rank 0,12d2+3,23.2,24.74,24.61,2023-08-15 13:27:41
+Quasit,Demonic,5,Rank 0,5d2+2,9.22,10.82,10.7,2023-08-15 13:27:41
+Succubus,Devilkin,9,Rank 4,9d10,94.91,91.94,87.78,2023-08-15 13:27:41
+Djinni,Elemental,6,Rank 1,6d4+1,24.35,24.44,25.42,2023-08-15 13:27:41
+Wyvern,Dragon,9,Rank 0,9d2,18.75,17.26,17.81,2023-08-15 13:27:41
+Nightmare,Demonic,9,Rank 4,9d10+1,87.12,89.71,90.39,2023-08-15 13:27:41
+Efreeti,Elemental,18,Rank 2,18d6+2,105.78,107.49,107.13,2023-08-15 13:27:41
+Lightning Spirit,Fey,3,Rank 1,3d4,11.69,10.49,12.47,2023-08-15 13:27:41
+Nightmare,Demonic,9,Rank 2,9d6+2,51.83,53.37,54.95,2023-08-15 13:27:41
+Efreeti,Elemental,12,Rank 0,12d2+3,24.41,23.14,23.75,2023-08-15 13:27:41
+Faerie Dragon,Dragon,14,Rank 3,14d8+1,115.88,111.53,110.45,2023-08-15 13:27:41
+Smoke Devil,Devilkin,14,Rank 0,14d2,28.63,28.79,28.69,2023-08-15 13:27:41
+Mummy,Undead,5,Rank 0,5d2+2,10.65,10.62,10.89,2023-08-15 13:27:41
+Blue Drake,Dragon,11,Rank 0,11d2+1,21.26,21.83,21.55,2023-08-15 13:27:41
+Shadow Mephit,Elemental,19,Rank 0,19d2,37.93,38.84,38.44,2023-08-15 13:27:41
+Lightning Archfey,Fey,7,Rank 3,7d8+4,56.71,55.8,54.26,2023-08-15 13:27:41
+Goblin Archer,Devilkin,4,Rank 0,4d2+4,7.95,7.45,7.99,2023-08-15 13:27:41
+Revenant,Undead,6,Rank 1,6d4+2,23.39,23.2,22.28,2023-08-15 13:27:41
+Black Faerie,Fey,3,Rank 1,3d4+1,11.39,12.09,11.79,2023-08-15 13:27:41
+Balor,Demonic,10,Rank 2,10d6+4,61.12,59.32,59.62,2023-08-15 13:27:41
+Smoke Mephit,Elemental,4,Rank 0,4d2+2,7.24,8.93,7.22,2023-08-15 13:27:41
+Bronze Archfey,Fey,2,Rank 3,2d8+1,15.79,13.04,14.48,2023-08-15 13:27:41
+Blue Wyrmling,Dragon,2,Rank 0,2d2,4.85,4.41,4.37,2023-08-15 13:27:41
+Ice Mephit,Elemental,8,Rank 1,8d4+3,30.85,30.25,33.72,2023-08-15 13:27:41
+Platinum Faerie,Fey,7,Rank 1,7d4,29.92,27.82,28.73,2023-08-15 13:27:41
+Hell Hound,Demonic,6,Rank 2,6d6,34.47,34.21,37.24,2023-08-15 13:27:41
+Efreeti,Elemental,5,Rank 2,5d6+1,31.77,27.31,30.27,2023-08-15 13:27:41
+Ghostly Guard,Undead,3,Rank 2,3d6+2,18.86,17.06,16.02,2023-08-15 13:27:41
+Hook Horror,Demonic,4,Rank 1,4d4+2,15.52,16.44,15.68,2023-08-15 13:27:41
+Pit Lord,Devilkin,10,Rank 0,10d2+1,20.82,19.55,19.85,2023-08-15 13:27:41
+Spore Mephit,Elemental,4,Rank 3,4d8,31.27,32.02,29.21,2023-08-15 13:27:41
+Emerald Faerie,Fey,3,Rank 1,3d4,11.91,12.28,10.64,2023-08-15 13:27:41
+Nightmare,Demonic,6,Rank 0,6d2+1,11.88,12.61,11.46,2023-08-15 13:27:41
+Flame Elemental,Elemental,6,Rank 2,6d6,35.74,33.92,35.9,2023-08-15 13:27:41
+Faerie Dragon,Dragon,8,Rank 2,8d6,49.36,49.08,47.92,2023-08-15 13:27:41
+Succubus,Devilkin,18,Rank 0,18d2+1,36.97,35.69,35.44,2023-08-15 13:27:41
+Skeletal Mage,Undead,3,Rank 1,3d4,13.54,12.6,12.0,2023-08-15 13:27:41
+Diamond Wyrmling,Dragon,3,Rank 2,3d6+2,16.31,16.59,15.65,2023-08-15 13:27:41
+Lightning Mephit,Elemental,3,Rank 2,3d6+2,19.4,18.49,20.55,2023-08-15 13:27:41
+Skeletal Knight,Undead,7,Rank 2,7d6,43.11,43.45,40.89,2023-08-15 13:27:41
+Black Dragon,Dragon,6,Rank 0,6d2+1,12.18,12.18,11.1,2023-08-15 13:27:41
+Balor,Demonic,12,Rank 1,12d4+2,47.89,49.61,49.32,2023-08-15 13:27:41
+Djinni,Elemental,18,Rank 3,18d8+4,141.21,144.74,141.97,2023-08-15 13:27:41
+Flame Spirit,Fey,2,Rank 3,2d8+4,19.75,16.98,14.06,2023-08-15 13:27:41
+Prince of Fear,Devilkin,4,Rank 2,4d6+4,22.09,22.21,26.65,2023-08-15 13:27:41
+Lich,Undead,16,Rank 0,16d2,31.77,31.22,32.82,2023-08-15 13:27:41
+Brass Drake,Dragon,12,Rank 0,12d2+1,24.75,23.68,24.24,2023-08-15 13:27:41
+Balor,Demonic,3,Rank 0,3d2,5.16,5.52,5.36,2023-08-15 13:27:41
+Djinni,Elemental,7,Rank 3,7d8+4,57.66,53.98,58.26,2023-08-15 13:27:41
+Pseudodragon,Dragon,17,Rank 0,17d2+2,33.25,34.72,33.69,2023-08-15 13:27:41
+Night Hag,Demonic,14,Rank 2,14d6+1,85.26,85.64,85.37,2023-08-15 13:27:41
+Shadow Mephit,Elemental,5,Rank 2,5d6+3,31.81,30.09,31.38,2023-08-15 13:27:41
+Pseudodragon,Dragon,1,Rank 0,1d2+1,1.62,2.28,1.55,2023-08-15 13:27:41
+Kobold Villager,Devilkin,12,Rank 4,12d10+2,119.02,118.89,121.18,2023-08-15 13:27:41
+Death Knight,Undead,5,Rank 0,5d2+1,10.95,9.99,9.28,2023-08-15 13:27:41
+Imp,Demonic,11,Rank 0,11d2+2,22.36,21.18,22.9,2023-08-15 13:27:41
+Revenant,Undead,14,Rank 1,14d4,56.87,55.86,54.26,2023-08-15 13:27:41
+Night Hag,Demonic,7,Rank 0,7d2+3,14.34,14.23,13.79,2023-08-15 13:27:41
+Spore Mephit,Elemental,11,Rank 4,11d10,113.64,109.4,105.38,2023-08-15 13:27:41
+Dust Spirit,Fey,16,Rank 2,16d6,97.91,94.43,94.89,2023-08-15 13:27:41
+Night Hag,Demonic,5,Rank 1,5d4+2,19.17,21.49,18.69,2023-08-15 13:27:41
+Prince of Fear,Devilkin,16,Rank 4,16d10,161.79,160.34,160.55,2023-08-15 13:27:41
+Death Knight,Undead,2,Rank 3,2d8,12.13,16.9,13.41,2023-08-15 13:27:41
+Prismatic Wyrmling,Dragon,14,Rank 1,14d4+1,57.48,56.33,55.63,2023-08-15 13:27:41
+Balor,Demonic,4,Rank 0,4d2+1,8.67,8.63,8.95,2023-08-15 13:27:41
+Magma Elemental,Elemental,2,Rank 3,2d8+2,16.95,18.81,13.31,2023-08-15 13:27:41
+Faerie Dragon,Dragon,11,Rank 1,11d4,44.54,44.13,44.32,2023-08-15 13:27:41
+Pit Lord,Devilkin,3,Rank 3,3d8+3,27.13,24.12,27.7,2023-08-15 13:27:41
+Steam Spirit,Fey,5,Rank 2,5d6+1,29.75,30.03,29.18,2023-08-15 13:27:41
+Hell Hound,Demonic,6,Rank 4,6d10,63.56,58.66,60.68,2023-08-15 13:27:41
+Lich King,Undead,9,Rank 1,9d4+2,34.14,35.29,35.5,2023-08-15 13:27:41
+Red Wyrmling,Dragon,19,Rank 1,19d4+3,76.66,74.35,76.86,2023-08-15 13:27:41
+Pit Lord,Devilkin,5,Rank 2,5d6+3,30.46,32.57,31.44,2023-08-15 13:27:41
+Flame Mephit,Elemental,6,Rank 1,6d4+3,23.74,22.98,22.78,2023-08-15 13:27:41
+Magma Spirit,Fey,3,Rank 1,3d4+3,13.61,11.36,13.68,2023-08-15 13:27:41
+Platinum Demon,Demonic,3,Rank 0,3d2+1,5.01,5.93,6.93,2023-08-15 13:27:41
+Mud Elemental,Elemental,6,Rank 0,6d2,11.65,12.42,11.44,2023-08-15 13:27:41
+Onyx Faerie,Fey,2,Rank 2,2d6+1,12.46,14.24,12.97,2023-08-15 13:27:41
+Balor,Demonic,14,Rank 1,14d4+2,54.88,55.99,55.36,2023-08-15 13:27:41
+Shadow Mephit,Elemental,16,Rank 2,16d6+1,96.79,94.72,98.36,2023-08-15 13:27:41
+Wyvern,Dragon,4,Rank 4,4d10+3,37.39,43.96,44.36,2023-08-15 13:27:41
+Night Hag,Demonic,8,Rank 0,8d2+2,15.09,15.63,16.17,2023-08-15 13:27:41
+Lightning Elemental,Elemental,19,Rank 3,19d8,151.52,152.75,151.29,2023-08-15 13:27:41
+Green Faerie,Fey,1,Rank 0,1d2+1,2.16,2.44,1.52,2023-08-15 13:27:41
+Pit Fiend,Demonic,14,Rank 1,14d4+2,56.16,55.95,56.21,2023-08-15 13:27:41
+Wight,Undead,6,Rank 0,6d2+2,12.46,12.16,12.44,2023-08-15 13:27:41
+Steam Spirit,Fey,3,Rank 1,3d4+1,11.94,11.48,13.62,2023-08-15 13:27:41
+Nightmare,Demonic,11,Rank 4,11d10+2,111.34,111.14,105.95,2023-08-15 13:27:41
+Dust Elemental,Elemental,2,Rank 3,2d8+1,17.43,13.45,18.89,2023-08-15 13:27:41
+Lightning Archfey,Fey,14,Rank 1,14d4+1,56.41,57.91,54.03,2023-08-15 13:27:41
+Hook Horror,Demonic,5,Rank 3,5d8+2,41.39,40.04,39.11,2023-08-15 13:27:41
+Ghoul,Undead,12,Rank 3,12d8+4,98.91,92.94,97.15,2023-08-15 13:27:41
+Wyvern,Dragon,10,Rank 0,10d2,20.89,20.0,20.6,2023-08-15 13:27:41
+Mud Devil,Devilkin,3,Rank 0,3d2+2,5.26,6.33,5.1,2023-08-15 13:27:41
+Zombie Mage,Undead,2,Rank 4,2d10+2,22.5,22.67,17.57,2023-08-15 13:27:41
+Silver Wyrmling,Dragon,10,Rank 0,10d2,19.33,20.3,20.94,2023-08-15 13:27:41
+Shadow Devil,Devilkin,1,Rank 1,1d4+1,3.48,4.07,4.44,2023-08-15 13:27:41
+Djinni,Elemental,15,Rank 2,15d6+2,90.01,91.17,91.42,2023-08-15 13:27:41
+White Faerie,Fey,5,Rank 2,5d6,31.47,32.59,30.16,2023-08-15 13:27:41
+Hook Horror,Demonic,13,Rank 0,13d2+5,26.71,26.67,26.69,2023-08-15 13:27:41
+Pit Lord,Devilkin,10,Rank 0,10d2+1,20.21,20.28,20.29,2023-08-15 13:27:41
+Lich King,Undead,11,Rank 4,11d10,111.27,109.55,107.42,2023-08-15 13:27:41
+Prismatic Faerie,Fey,8,Rank 0,8d2+2,16.15,15.2,15.53,2023-08-15 13:27:41
+Pit Fiend,Demonic,12,Rank 3,12d8+3,96.3,95.38,92.69,2023-08-15 13:27:41
+Efreeti,Elemental,10,Rank 3,10d8,78.84,78.54,77.86,2023-08-15 13:27:41
+Red Faerie,Fey,11,Rank 1,11d4+1,45.46,42.16,45.91,2023-08-15 13:27:41
+Balor,Demonic,13,Rank 0,13d2+2,25.69,25.59,26.24,2023-08-15 13:27:41
+Kobold Knight,Devilkin,8,Rank 1,8d4+3,32.1,32.06,31.05,2023-08-15 13:27:41
+Mummy,Undead,7,Rank 1,7d4+2,27.49,28.6,28.19,2023-08-15 13:27:41
+Spore Spirit,Fey,17,Rank 2,17d6+1,103.96,101.63,99.86,2023-08-15 13:27:41
+Hook Horror,Demonic,17,Rank 0,17d2,33.87,34.21,34.32,2023-08-15 13:27:41
+Skeletal Guard,Undead,12,Rank 5,12d12+3,138.41,144.89,141.27,2023-08-15 13:27:41
+Sapphire Wyrmling,Dragon,10,Rank 2,10d6+1,59.36,59.95,59.78,2023-08-15 13:27:41
+Kobold Mage,Devilkin,8,Rank 1,8d4+1,33.18,32.12,30.84,2023-08-15 13:27:41
+Ghast,Undead,2,Rank 0,2d2+1,3.58,3.41,4.62,2023-08-15 13:27:41
+Pseudodragon,Dragon,6,Rank 3,6d8+2,46.2,49.87,47.42,2023-08-15 13:27:41
+Pit Fiend,Demonic,4,Rank 0,4d2,8.07,8.78,8.19,2023-08-15 13:27:41
+Flame Mephit,Elemental,5,Rank 4,5d10+2,46.91,50.44,47.17,2023-08-15 13:27:41
+Gold Drake,Dragon,11,Rank 0,11d2+1,21.38,22.64,21.03,2023-08-15 13:27:41
+Incubus,Devilkin,12,Rank 1,12d4,48.91,47.62,48.99,2023-08-15 13:27:41
+Revenant,Undead,14,Rank 2,14d6+1,81.95,85.64,82.78,2023-08-15 13:27:41
+Pseudodragon,Dragon,2,Rank 2,2d6+3,10.15,13.27,11.59,2023-08-15 13:27:41
+Succubus,Devilkin,6,Rank 3,6d8,45.87,48.01,45.39,2023-08-15 13:27:41
+Wight,Undead,1,Rank 0,1d2+2,2.13,1.16,2.79,2023-08-15 13:27:41
+Wyvern,Dragon,4,Rank 0,4d2+1,7.67,8.27,7.09,2023-08-15 13:27:41
+Ice Elemental,Elemental,2,Rank 1,2d4+1,7.88,7.07,7.85,2023-08-15 13:27:41
+Black Faerie,Fey,5,Rank 3,5d8+2,36.7,39.2,43.55,2023-08-15 13:27:41
+Emerald Demon,Demonic,19,Rank 0,19d2,38.07,37.59,37.36,2023-08-15 13:27:41
+Steam Elemental,Elemental,15,Rank 1,15d4,60.55,60.41,61.59,2023-08-15 13:27:41
+Dust Spirit,Fey,9,Rank 0,9d2,18.44,17.86,18.25,2023-08-15 13:27:41
+Pit Lord,Devilkin,8,Rank 1,8d4,30.73,31.1,31.42,2023-08-15 13:27:41
+Green Faerie,Fey,6,Rank 2,6d6+3,35.43,35.98,35.81,2023-08-15 13:27:41
+Nightmare,Demonic,7,Rank 3,7d8,58.57,55.58,57.18,2023-08-15 13:27:41
+Zombie Knight,Undead,16,Rank 2,16d6+1,96.64,95.22,97.02,2023-08-15 13:27:41
+Silver Archfey,Fey,7,Rank 0,7d2+2,14.42,13.32,13.27,2023-08-15 13:27:41
+Hook Horror,Demonic,7,Rank 2,7d6+5,42.52,39.55,43.87,2023-08-15 13:27:41
+Demilich,Undead,7,Rank 0,7d2+1,13.66,13.87,14.95,2023-08-15 13:27:41
+Faerie Dragon,Dragon,10,Rank 0,10d2,19.83,19.83,20.1,2023-08-15 13:27:41
+Ice Devil,Devilkin,5,Rank 3,5d8,37.09,41.07,40.81,2023-08-15 13:27:41
+Spore Spirit,Fey,1,Rank 2,1d6,6.69,5.5,7.51,2023-08-15 13:27:41
+Succubus,Devilkin,10,Rank 0,10d2+2,20.73,20.78,19.36,2023-08-15 13:27:41
+Wight,Undead,8,Rank 1,8d4+2,32.36,31.59,32.24,2023-08-15 13:27:41
+Sapphire Faerie,Fey,14,Rank 0,14d2+2,28.07,27.75,27.95,2023-08-15 13:27:41
+Goblin Villager,Devilkin,3,Rank 0,3d2+3,6.39,5.54,6.52,2023-08-15 13:27:41
+Skeletal Archer,Undead,3,Rank 2,3d6+4,17.94,15.57,16.71,2023-08-15 13:27:41
+Prismatic Drake,Dragon,11,Rank 2,11d6,68.59,66.85,66.73,2023-08-15 13:27:41
+Prince of Fear,Devilkin,3,Rank 0,3d2+3,5.43,5.67,6.72,2023-08-15 13:27:41
+Revenant,Undead,3,Rank 1,3d4,12.75,12.2,13.1,2023-08-15 13:27:41
+Faerie Dragon,Dragon,10,Rank 4,10d10,102.1,96.3,103.62,2023-08-15 13:27:41
+Succubus,Devilkin,15,Rank 4,15d10+1,152.37,147.15,151.68,2023-08-15 13:27:41
+Djinni,Elemental,4,Rank 3,4d8+3,30.48,31.31,32.42,2023-08-15 13:27:41
+Mummy,Undead,10,Rank 2,10d6+1,62.01,59.17,60.69,2023-08-15 13:27:41
+Red Faerie,Fey,9,Rank 2,9d6+1,52.87,52.69,53.91,2023-08-15 13:27:41
+Brass Drake,Dragon,14,Rank 2,14d6,82.31,86.2,82.19,2023-08-15 13:27:41
+Green Demon,Demonic,4,Rank 1,4d4+2,17.81,15.82,17.93,2023-08-15 13:27:41
+Efreeti,Elemental,19,Rank 3,19d8+3,149.29,153.15,150.44,2023-08-15 13:27:41
+Smoke Spirit,Fey,7,Rank 3,7d8,54.58,54.66,58.66,2023-08-15 13:27:41
+Imp,Demonic,7,Rank 1,7d4+1,29.46,26.16,26.47,2023-08-15 13:27:41
+Shadow Mephit,Elemental,13,Rank 1,13d4+2,51.02,50.04,52.74,2023-08-15 13:27:41
+Lightning Spirit,Fey,6,Rank 0,6d2+2,11.66,12.98,11.47,2023-08-15 13:27:41
+Pit Fiend,Demonic,15,Rank 0,15d2,29.35,29.88,29.96,2023-08-15 13:27:41
+Vampire,Undead,13,Rank 4,13d10,132.57,133.71,133.76,2023-08-15 13:27:41
+Black Wyrmling,Dragon,5,Rank 2,5d6+3,30.13,27.15,28.04,2023-08-15 13:27:41
+Pit Fiend,Demonic,17,Rank 0,17d2+3,34.86,34.22,34.85,2023-08-15 13:27:41
+Smoke Mephit,Elemental,11,Rank 2,11d6+2,66.43,64.09,67.75,2023-08-15 13:27:41
+Emerald Faerie,Fey,10,Rank 4,10d10+1,101.77,98.79,104.34,2023-08-15 13:27:41
+Diamond Drake,Dragon,3,Rank 4,3d10+2,29.17,31.97,27.26,2023-08-15 13:27:41
+Djinni,Elemental,15,Rank 2,15d6+1,91.18,92.57,88.05,2023-08-15 13:27:41
+Black Dragon,Dragon,3,Rank 2,3d6+1,20.2,18.0,17.54,2023-08-15 13:27:41
+Bronze Demon,Demonic,7,Rank 2,7d6,41.18,42.9,41.22,2023-08-15 13:27:41
+Mummy Lord,Undead,5,Rank 1,5d4,18.78,19.56,21.21,2023-08-15 13:27:41
+Silver Faerie,Fey,1,Rank 1,1d4+3,4.89,4.57,4.79,2023-08-15 13:27:41
+Quasit,Demonic,8,Rank 4,8d10,75.36,77.97,81.6,2023-08-15 13:27:41
+Djinni,Elemental,13,Rank 1,13d4,52.89,52.98,52.1,2023-08-15 13:27:41
+Ice Archfey,Fey,6,Rank 1,6d4,23.02,23.34,22.71,2023-08-15 13:27:41
+Faerie Dragon,Dragon,3,Rank 1,3d4,12.36,11.95,11.81,2023-08-15 13:27:41
+Kobold Guard,Devilkin,6,Rank 3,6d8,48.4,51.68,49.76,2023-08-15 13:27:41
+Spore Spirit,Fey,16,Rank 3,16d8+1,125.88,128.74,126.51,2023-08-15 13:27:41
+Balor,Demonic,3,Rank 2,3d6+4,15.94,17.94,19.26,2023-08-15 13:27:41
+Goblin Mage,Devilkin,2,Rank 1,2d4,6.07,6.51,9.86,2023-08-15 13:27:41
+Mummy,Undead,8,Rank 0,8d2+1,16.59,16.34,15.44,2023-08-15 13:27:41
+Wyvern,Dragon,3,Rank 1,3d4+3,13.02,13.39,12.55,2023-08-15 13:27:41
+Goblin Knight,Devilkin,13,Rank 2,13d6,76.8,76.54,80.74,2023-08-15 13:27:41
+Smoke Spirit,Fey,7,Rank 3,7d8+1,53.34,58.22,54.95,2023-08-15 13:27:41
+Hell Hound,Demonic,17,Rank 4,17d10,172.58,173.21,167.03,2023-08-15 13:27:41
+Banshee,Undead,17,Rank 2,17d6+3,103.51,104.53,104.27,2023-08-15 13:27:41
+Hook Horror,Demonic,17,Rank 0,17d2+4,34.08,33.35,34.39,2023-08-15 13:27:41
+Efreeti,Elemental,6,Rank 0,6d2+1,11.88,12.56,12.63,2023-08-15 13:27:41
+Sapphire Archfey,Fey,8,Rank 4,8d10+4,79.72,80.69,76.93,2023-08-15 13:27:41
+Night Hag,Demonic,13,Rank 2,13d6+1,76.63,79.28,79.76,2023-08-15 13:27:41
+Shadow Mephit,Elemental,2,Rank 2,2d6+4,11.8,12.55,9.95,2023-08-15 13:27:41
+Ghoul,Undead,11,Rank 4,11d10,110.83,113.9,112.15,2023-08-15 13:27:41
+Balor,Demonic,7,Rank 0,7d2,13.12,13.6,14.73,2023-08-15 13:27:41
+Djinni,Elemental,1,Rank 1,1d4+4,3.72,2.46,4.6,2023-08-15 13:27:41
+Pseudodragon,Dragon,14,Rank 0,14d2,28.27,28.6,28.34,2023-08-15 13:27:41
+Spore Mephit,Elemental,6,Rank 4,6d10+4,56.4,63.41,56.95,2023-08-15 13:27:41
+Flame Spirit,Fey,7,Rank 0,7d2+2,13.19,13.76,13.77,2023-08-15 13:27:41
+Ruby Dragon,Dragon,8,Rank 3,8d8,63.06,62.88,61.47,2023-08-15 13:27:41
+Succubus,Devilkin,15,Rank 2,15d6,91.28,90.8,90.01,2023-08-15 13:27:41
+Lich,Undead,5,Rank 0,5d2+1,9.35,9.77,9.51,2023-08-15 13:27:41
+Quasit,Demonic,19,Rank 0,19d2+4,38.48,38.99,38.24,2023-08-15 13:27:41
+Djinni,Elemental,7,Rank 1,7d4,29.34,29.98,27.6,2023-08-15 13:27:41
+Diamond Faerie,Fey,2,Rank 1,2d4+3,6.81,6.39,9.57,2023-08-15 13:27:41
+White Drake,Dragon,17,Rank 3,17d8,138.25,138.94,138.01,2023-08-15 13:27:41
+Pit Lord,Devilkin,15,Rank 4,15d10,150.08,147.47,150.88,2023-08-15 13:27:41
+Lich,Undead,5,Rank 5,5d12+1,63.51,61.18,63.04,2023-08-15 13:27:41
+Magma Archfey,Fey,10,Rank 0,10d2,19.81,19.03,20.73,2023-08-15 13:27:41
+Incubus,Devilkin,14,Rank 0,14d2+5,27.3,27.72,27.22,2023-08-15 13:27:41
+Mummy,Undead,5,Rank 1,5d4+2,20.9,19.45,20.23,2023-08-15 13:27:41
+Pseudodragon,Dragon,3,Rank 5,3d12+1,34.03,39.98,31.59,2023-08-15 13:27:41
+Pit Lord,Devilkin,10,Rank 1,10d4+1,39.84,40.31,38.51,2023-08-15 13:27:41
+Onyx Faerie,Fey,14,Rank 0,14d2,28.53,28.73,28.52,2023-08-15 13:27:41
+Prince of Fear,Devilkin,6,Rank 0,6d2,11.29,12.9,12.3,2023-08-15 13:27:41
+Banshee,Undead,6,Rank 1,6d4+1,23.42,23.57,24.63,2023-08-15 13:27:41
+Green Archfey,Fey,2,Rank 3,2d8+3,15.69,15.35,14.3,2023-08-15 13:27:41
+Imp,Demonic,5,Rank 4,5d10+4,46.47,49.8,48.18,2023-08-15 13:27:41
+Wight,Undead,9,Rank 0,9d2+3,18.46,17.44,17.53,2023-08-15 13:27:41
+Mud Archfey,Fey,11,Rank 2,11d6,66.36,68.67,68.53,2023-08-15 13:27:41
+Black Drake,Dragon,6,Rank 1,6d4,25.28,25.1,22.03,2023-08-15 13:27:41
+Succubus,Devilkin,12,Rank 0,12d2+2,24.48,24.86,23.08,2023-08-15 13:27:41
+Shadow Mephit,Elemental,9,Rank 0,9d2+2,17.07,18.23,17.01,2023-08-15 13:27:41
+Poltergeist,Undead,1,Rank 4,1d10+2,12.83,12.34,6.98,2023-08-15 13:27:41
+Emerald Wyrmling,Dragon,12,Rank 0,12d2+4,23.71,24.66,24.04,2023-08-15 13:27:41
+Djinni,Elemental,7,Rank 0,7d2+1,13.2,13.06,14.91,2023-08-15 13:27:41
+Diamond Faerie,Fey,2,Rank 2,2d6+1,14.76,9.53,10.35,2023-08-15 13:27:41
+Wyvern,Dragon,9,Rank 1,9d4,35.79,37.36,34.04,2023-08-15 13:27:41
+Succubus,Devilkin,13,Rank 5,13d12,157.95,151.6,153.61,2023-08-15 13:27:41
+Lightning Elemental,Elemental,13,Rank 4,13d10+1,130.42,133.65,131.52,2023-08-15 13:27:41
+Skeletal Villager,Undead,11,Rank 4,11d10+2,108.16,107.38,107.5,2023-08-15 13:27:41
+White Drake,Dragon,13,Rank 3,13d8,106.97,104.2,101.56,2023-08-15 13:27:41
+Pit Lord,Devilkin,1,Rank 0,1d2,1.01,1.87,2.93,2023-08-15 13:27:41
+Smoke Elemental,Elemental,8,Rank 0,8d2+4,16.94,15.44,16.32,2023-08-15 13:27:41
+Ghostly Mage,Undead,6,Rank 0,6d2+1,12.51,11.08,11.48,2023-08-15 13:27:41
+Hell Hound,Demonic,7,Rank 0,7d2+1,14.05,13.06,14.76,2023-08-15 13:27:41
+Dust Mephit,Elemental,13,Rank 4,13d10+4,130.2,126.02,132.64,2023-08-15 13:27:41
+Onyx Faerie,Fey,10,Rank 4,10d10+5,96.34,103.69,102.81,2023-08-15 13:27:41
+Pit Fiend,Demonic,6,Rank 2,6d6+2,34.99,37.51,38.1,2023-08-15 13:27:41
+Spore Mephit,Elemental,7,Rank 0,7d2+3,14.33,13.79,13.9,2023-08-15 13:27:41
+Smoke Spirit,Fey,4,Rank 0,4d2,8.16,8.27,8.44,2023-08-15 13:27:41
+Pit Lord,Devilkin,2,Rank 1,2d4,6.51,7.21,7.04,2023-08-15 13:27:41
+Bronze Faerie,Fey,5,Rank 1,5d4+4,20.8,19.99,21.87,2023-08-15 13:27:41
+Blue Drake,Dragon,3,Rank 0,3d2+2,5.85,5.66,5.12,2023-08-15 13:27:41
+Shadow Devil,Devilkin,12,Rank 0,12d2+2,23.29,23.98,23.2,2023-08-15 13:27:41
+Black Faerie,Fey,7,Rank 0,7d2+4,13.34,13.7,14.15,2023-08-15 13:27:41
+Balor,Demonic,1,Rank 2,1d6+3,7.38,6.1,7.43,2023-08-15 13:27:41
+Pit Lord,Devilkin,7,Rank 0,7d2+1,14.27,13.81,13.51,2023-08-15 13:27:41
+Emerald Faerie,Fey,4,Rank 1,4d4+3,16.57,15.42,15.46,2023-08-15 13:27:41
+Pit Fiend,Demonic,6,Rank 2,6d6,33.97,35.8,33.04,2023-08-15 13:27:41
+Succubus,Devilkin,7,Rank 2,7d6+3,43.46,42.24,39.43,2023-08-15 13:27:41
+Demilich,Undead,4,Rank 1,4d4+5,16.06,15.9,14.54,2023-08-15 13:27:41
+Pseudodragon,Dragon,6,Rank 3,6d8,47.19,46.4,46.99,2023-08-15 13:27:41
+Goblin Knight,Devilkin,11,Rank 0,11d2+4,22.42,22.36,22.31,2023-08-15 13:27:41
+Death Knight,Undead,12,Rank 3,12d8+3,97.85,98.52,92.69,2023-08-15 13:27:41
+Wyvern,Dragon,6,Rank 4,6d10,62.6,61.01,63.47,2023-08-15 13:27:41
+Spore Mephit,Elemental,17,Rank 0,17d2,33.25,33.28,34.45,2023-08-15 13:27:41
+Gold Archfey,Fey,5,Rank 0,5d2+5,9.55,9.43,10.54,2023-08-15 13:27:41
+Balor,Demonic,3,Rank 1,3d4,12.6,12.24,11.88,2023-08-15 13:27:41
+Flame Elemental,Elemental,3,Rank 0,3d2+2,6.69,6.36,5.44,2023-08-15 13:27:41
+Skeletal Guard,Undead,4,Rank 0,4d2+2,7.89,7.02,8.87,2023-08-15 13:27:41
+Magma Spirit,Fey,11,Rank 4,11d10+3,106.34,111.7,110.87,2023-08-15 13:27:41
+Hook Horror,Demonic,2,Rank 1,2d4+2,9.53,8.65,7.74,2023-08-15 13:27:41
+Djinni,Elemental,3,Rank 0,3d2+1,6.83,6.38,5.27,2023-08-15 13:27:41
+Blue Faerie,Fey,7,Rank 0,7d2+2,13.65,14.0,14.04,2023-08-15 13:27:41
+Night Hag,Demonic,8,Rank 4,8d10,79.64,84.87,82.08,2023-08-15 13:27:41
+Pit Lord,Devilkin,2,Rank 1,2d4+2,8.32,8.58,7.11,2023-08-15 13:27:41
+Vampire,Undead,10,Rank 3,10d8+3,76.75,79.12,80.61,2023-08-15 13:27:41
+Balor,Demonic,8,Rank 0,8d2+1,15.65,15.02,16.62,2023-08-15 13:27:41
+Djinni,Elemental,1,Rank 1,1d4+1,5.1,5.75,4.96,2023-08-15 13:27:41
+Ghast,Undead,4,Rank 1,4d4+1,16.81,16.91,16.78,2023-08-15 13:27:41
+Mud Spirit,Fey,3,Rank 0,3d2+4,6.93,5.55,6.58,2023-08-15 13:27:41
+Black Demon,Demonic,2,Rank 0,2d2+1,3.73,4.92,4.83,2023-08-15 13:27:41
+Dust Elemental,Elemental,7,Rank 2,7d6+3,41.29,43.63,40.52,2023-08-15 13:27:41
+Lightning Spirit,Fey,10,Rank 3,10d8+2,77.05,82.8,79.79,2023-08-15 13:27:41
+Kobold Mage,Devilkin,4,Rank 2,4d6,24.51,26.44,23.87,2023-08-15 13:27:41
+Vampire,Undead,7,Rank 0,7d2,14.69,13.57,14.67,2023-08-15 13:27:41
+Smoke Archfey,Fey,3,Rank 0,3d2,5.27,5.46,6.61,2023-08-15 13:27:41
+Night Hag,Demonic,6,Rank 1,6d4,22.27,24.58,24.9,2023-08-15 13:27:41
+Kobold Knight,Devilkin,5,Rank 2,5d6+1,32.29,29.37,27.49,2023-08-15 13:27:41
+Efreeti,Elemental,3,Rank 3,3d8+2,20.31,20.09,26.59,2023-08-15 13:27:41
+Brass Wyrmling,Dragon,8,Rank 3,8d8,67.7,65.26,61.2,2023-08-15 13:27:41
+Pit Fiend,Demonic,6,Rank 2,6d6+1,34.53,37.13,38.97,2023-08-15 13:27:41
+Efreeti,Elemental,17,Rank 1,17d4,67.34,67.85,67.52,2023-08-15 13:27:41
+Wyvern,Dragon,6,Rank 1,6d4+1,24.05,25.83,23.3,2023-08-15 13:27:41
+Flame Mephit,Elemental,12,Rank 0,12d2+4,24.42,23.83,24.54,2023-08-15 13:27:41
+Lich King,Undead,4,Rank 1,4d4+1,16.7,15.84,14.13,2023-08-15 13:27:41
+Gold Drake,Dragon,2,Rank 0,2d2,4.09,4.69,4.68,2023-08-15 13:27:41
+Succubus,Devilkin,10,Rank 0,10d2+2,20.38,19.95,19.91,2023-08-15 13:27:41
+Mummy Lord,Undead,18,Rank 3,18d8,143.88,146.83,144.59,2023-08-15 13:27:41
+Faerie Dragon,Dragon,8,Rank 0,8d2+1,16.31,16.13,16.51,2023-08-15 13:27:41
+Goblin Guard,Devilkin,6,Rank 2,6d6,33.72,36.83,34.91,2023-08-15 13:27:41
+Skeletal Mage,Undead,8,Rank 2,8d6+2,46.84,49.89,47.04,2023-08-15 13:27:41
+Red Dragon,Dragon,8,Rank 0,8d2+2,16.63,15.9,16.74,2023-08-15 13:27:41
+Djinni,Elemental,10,Rank 1,10d4+1,40.28,40.37,39.3,2023-08-15 13:27:41
+Onyx Wyrmling,Dragon,8,Rank 0,8d2,16.86,16.99,16.44,2023-08-15 13:27:41
+Kobold Knight,Devilkin,17,Rank 0,17d2+3,34.57,34.41,34.16,2023-08-15 13:27:41
+Efreeti,Elemental,3,Rank 4,3d10+2,33.78,29.76,33.13,2023-08-15 13:27:41
+Vampire,Undead,11,Rank 0,11d2+1,21.21,23.0,22.31,2023-08-15 13:27:41
+Green Archfey,Fey,9,Rank 2,9d6,56.41,55.38,54.77,2023-08-15 13:27:41
+Quasit,Demonic,7,Rank 3,7d8,52.7,58.26,56.16,2023-08-15 13:27:41
+Djinni,Elemental,11,Rank 0,11d2+2,21.23,21.7,21.13,2023-08-15 13:27:41
+Platinum Faerie,Fey,11,Rank 1,11d4,43.38,43.96,46.0,2023-08-15 13:27:41
+Nightmare,Demonic,7,Rank 3,7d8,57.32,55.89,54.45,2023-08-15 13:27:41
+Ice Elemental,Elemental,2,Rank 2,2d6,12.66,10.82,13.75,2023-08-15 13:27:41
+Sapphire Dragon,Dragon,17,Rank 1,17d4+2,66.84,68.93,68.04,2023-08-15 13:27:41
+Kobold Villager,Devilkin,8,Rank 0,8d2+1,15.89,16.71,15.01,2023-08-15 13:27:41
+Wight,Undead,8,Rank 2,8d6,47.08,50.2,49.91,2023-08-15 13:27:41
+Ruby Drake,Dragon,6,Rank 1,6d4,23.48,24.23,23.94,2023-08-15 13:27:41
+Balor,Demonic,14,Rank 3,14d8+2,112.49,111.11,111.3,2023-08-15 13:27:41
+Mud Elemental,Elemental,17,Rank 0,17d2,33.34,34.24,33.72,2023-08-15 13:27:41
+Shadow Archfey,Fey,15,Rank 2,15d6,91.86,90.21,92.07,2023-08-15 13:27:41
+Diamond Wyrmling,Dragon,5,Rank 1,5d4+4,21.22,20.2,19.67,2023-08-15 13:27:41
+Hook Horror,Demonic,1,Rank 1,1d4+1,2.06,4.13,5.89,2023-08-15 13:27:41
+Mummy Lord,Undead,4,Rank 1,4d4+1,17.26,16.44,15.73,2023-08-15 13:27:41
+Quasit,Demonic,13,Rank 0,13d2,25.76,26.97,26.05,2023-08-15 13:27:41
+Djinni,Elemental,1,Rank 1,1d4+1,5.71,4.08,4.44,2023-08-15 13:27:41
+Ghostly Archer,Undead,6,Rank 2,6d6+1,35.48,36.45,35.77,2023-08-15 13:27:41
+Sapphire Dragon,Dragon,16,Rank 3,16d8+1,129.09,129.18,130.84,2023-08-15 13:27:41
+Magma Elemental,Elemental,7,Rank 0,7d2+3,14.17,13.43,14.46,2023-08-15 13:27:41
+Poltergeist,Undead,1,Rank 3,1d8+2,9.03,9.24,9.0,2023-08-15 13:27:41
+Faerie Dragon,Dragon,4,Rank 2,4d6,21.4,24.14,26.32,2023-08-15 13:27:41
+Efreeti,Elemental,3,Rank 4,3d10,30.47,29.42,32.12,2023-08-15 13:27:41
+Prismatic Archfey,Fey,3,Rank 2,3d6,17.96,19.65,20.09,2023-08-15 13:27:41
+Balor,Demonic,13,Rank 2,13d6+2,80.68,77.87,75.17,2023-08-15 13:27:41
+Djinni,Elemental,16,Rank 0,16d2+4,32.9,32.57,32.7,2023-08-15 13:27:41
+Steam Spirit,Fey,3,Rank 3,3d8,26.25,26.55,22.21,2023-08-15 13:27:41
+Balor,Demonic,9,Rank 4,9d10+1,92.79,88.78,88.1,2023-08-15 13:27:41
+Smoke Elemental,Elemental,13,Rank 0,13d2+2,25.28,26.86,25.54,2023-08-15 13:27:41
+Faerie Dragon,Dragon,8,Rank 1,8d4+1,31.56,31.29,31.08,2023-08-15 13:27:41
+Goblin Guard,Devilkin,3,Rank 2,3d6,15.54,18.78,20.4,2023-08-15 13:27:41
+Mummy Lord,Undead,1,Rank 3,1d8+2,5.17,10.78,8.47,2023-08-15 13:27:41
+Faerie Dragon,Dragon,3,Rank 2,3d6+1,19.41,20.16,20.37,2023-08-15 13:27:41
+Efreeti,Elemental,18,Rank 1,18d4+1,71.93,71.88,70.47,2023-08-15 13:27:41
+Diamond Dragon,Dragon,9,Rank 4,9d10+2,91.55,94.28,91.33,2023-08-15 13:27:41
+Pit Lord,Devilkin,6,Rank 1,6d4+1,25.34,23.4,25.65,2023-08-15 13:27:41
+Poltergeist,Undead,5,Rank 0,5d2+2,10.8,9.77,9.74,2023-08-15 13:27:41
+White Faerie,Fey,7,Rank 5,7d12,78.53,89.74,81.25,2023-08-15 13:27:41
+Nightmare,Demonic,14,Rank 2,14d6+3,83.22,82.23,85.3,2023-08-15 13:27:41
+Djinni,Elemental,17,Rank 1,17d4+1,68.81,67.36,68.51,2023-08-15 13:27:41
+Pseudodragon,Dragon,11,Rank 0,11d2+1,22.04,21.84,22.93,2023-08-15 13:27:41
+Goblin Mage,Devilkin,4,Rank 1,4d4+1,15.7,14.62,15.63,2023-08-15 13:27:41
+Dracolich,Undead,7,Rank 0,7d2+4,13.01,14.09,14.05,2023-08-15 13:27:41
+Pseudodragon,Dragon,5,Rank 0,5d2,9.37,10.91,9.58,2023-08-15 13:27:41
+Night Hag,Demonic,9,Rank 0,9d2,18.35,19.0,17.92,2023-08-15 13:27:41
+Efreeti,Elemental,3,Rank 0,3d2+4,6.81,6.0,5.82,2023-08-15 13:27:41
+Wraith,Undead,1,Rank 1,1d4+1,2.72,3.02,3.3,2023-08-15 13:27:41
+Wyvern,Dragon,5,Rank 1,5d4+1,19.64,21.91,19.1,2023-08-15 13:27:41
+Magma Devil,Devilkin,8,Rank 0,8d2+1,16.37,16.94,15.38,2023-08-15 13:27:41
+Lich King,Undead,9,Rank 3,9d8+2,71.78,72.25,71.12,2023-08-15 13:27:41
+Emerald Drake,Dragon,4,Rank 0,4d2+1,7.59,7.01,8.99,2023-08-15 13:27:41
+Smoke Mephit,Elemental,2,Rank 4,2d10+3,15.28,19.62,20.01,2023-08-15 13:27:41
+Ice Spirit,Fey,5,Rank 2,5d6+2,28.08,28.55,27.82,2023-08-15 13:27:41
+Balor,Demonic,10,Rank 1,10d4+1,38.38,41.86,38.4,2023-08-15 13:27:41
+Magma Mephit,Elemental,6,Rank 0,6d2+4,11.62,11.11,12.52,2023-08-15 13:27:41
+Faerie Dragon,Dragon,5,Rank 0,5d2+1,9.29,10.24,10.75,2023-08-15 13:27:41
+Efreeti,Elemental,14,Rank 0,14d2+3,28.98,28.92,27.21,2023-08-15 13:27:41
+Mud Spirit,Fey,5,Rank 1,5d4+3,18.59,20.66,21.77,2023-08-15 13:27:41
+Balor,Demonic,6,Rank 1,6d4+1,22.73,24.41,23.45,2023-08-15 13:27:41
+Wight,Undead,15,Rank 1,15d4+2,61.47,58.13,60.57,2023-08-15 13:27:41
+Pit Fiend,Demonic,1,Rank 2,1d6+2,6.56,5.61,5.04,2023-08-15 13:27:41
+Vampire,Undead,9,Rank 0,9d2+1,18.7,17.84,17.6,2023-08-15 13:27:41
+Silver Dragon,Dragon,4,Rank 0,4d2+4,7.35,7.85,7.02,2023-08-15 13:27:41
+Pit Fiend,Demonic,7,Rank 0,7d2+1,14.94,14.41,14.78,2023-08-15 13:27:41
+Succubus,Devilkin,9,Rank 1,9d4,36.17,35.5,35.03,2023-08-15 13:27:41
+Banshee,Undead,2,Rank 0,2d2+4,4.24,3.48,3.44,2023-08-15 13:27:41
+Black Wyrmling,Dragon,5,Rank 3,5d8+1,38.84,36.94,41.81,2023-08-15 13:27:41
+Prince of Fear,Devilkin,12,Rank 1,12d4,46.67,47.02,47.73,2023-08-15 13:27:41
+Flame Spirit,Fey,7,Rank 3,7d8,57.52,58.37,52.27,2023-08-15 13:27:41
+Night Hag,Demonic,2,Rank 3,2d8,16.6,14.76,19.73,2023-08-15 13:27:41
+Efreeti,Elemental,7,Rank 3,7d8,55.11,58.84,55.44,2023-08-15 13:27:41
+Ghoul,Undead,4,Rank 4,4d10,42.11,42.49,38.35,2023-08-15 13:27:41
+Balor,Demonic,11,Rank 2,11d6,64.75,63.45,66.17,2023-08-15 13:27:41
+Magma Elemental,Elemental,2,Rank 2,2d6+2,12.98,12.56,11.55,2023-08-15 13:27:41
+Vampire,Undead,2,Rank 0,2d2,3.35,3.8,4.22,2023-08-15 13:27:41
+Pseudodragon,Dragon,17,Rank 2,17d6+3,101.84,100.01,104.27,2023-08-15 13:27:41
+Smoke Devil,Devilkin,3,Rank 0,3d2+3,6.76,6.84,6.13,2023-08-15 13:27:41
+Vampire,Undead,10,Rank 1,10d4,40.85,39.29,41.44,2023-08-15 13:27:41
+Emerald Drake,Dragon,8,Rank 0,8d2+2,15.04,16.17,15.22,2023-08-15 13:27:41
+Kobold Knight,Devilkin,3,Rank 0,3d2+2,5.27,5.39,5.42,2023-08-15 13:27:41
+Lich,Undead,14,Rank 1,14d4,57.77,57.29,57.6,2023-08-15 13:27:41
+Wyvern,Dragon,4,Rank 4,4d10+3,36.16,39.76,37.46,2023-08-15 13:27:41
+Dust Devil,Devilkin,12,Rank 2,12d6+1,71.81,71.55,71.59,2023-08-15 13:27:41
+Banshee,Undead,11,Rank 1,11d4+3,44.07,44.2,42.59,2023-08-15 13:27:41
+Faerie Dragon,Dragon,9,Rank 2,9d6+4,52.99,54.1,54.22,2023-08-15 13:27:41
+Pit Lord,Devilkin,1,Rank 1,1d4+3,4.26,4.31,3.23,2023-08-15 13:27:41
+Lich,Undead,12,Rank 1,12d4+5,47.9,47.53,47.19,2023-08-15 13:27:41
+Pseudodragon,Dragon,9,Rank 1,9d4+1,36.08,35.48,35.69,2023-08-15 13:27:41
+Pit Lord,Devilkin,5,Rank 2,5d6,28.48,28.05,28.83,2023-08-15 13:27:41
+Lightning Mephit,Elemental,2,Rank 0,2d2,3.71,3.14,4.79,2023-08-15 13:27:41
+Ruby Faerie,Fey,5,Rank 2,5d6+4,32.54,31.74,28.05,2023-08-15 13:27:41
+Imp,Demonic,7,Rank 2,7d6,43.57,41.59,40.16,2023-08-15 13:27:41
+Mummy Lord,Undead,8,Rank 2,8d6+5,48.09,50.71,46.23,2023-08-15 13:27:41
+Faerie Dragon,Dragon,10,Rank 5,10d12+2,114.9,124.29,115.67,2023-08-15 13:27:41
+Flame Mephit,Elemental,2,Rank 2,2d6,14.06,11.8,11.09,2023-08-15 13:27:41
+Magma Archfey,Fey,9,Rank 2,9d6+3,54.54,53.81,53.6,2023-08-15 13:27:41
+Hook Horror,Demonic,5,Rank 1,5d4+3,18.18,21.7,20.74,2023-08-15 13:27:41
+Revenant,Undead,5,Rank 0,5d2,10.04,9.36,9.33,2023-08-15 13:27:41
+Night Hag,Demonic,14,Rank 1,14d4+3,56.19,56.06,55.56,2023-08-15 13:27:41
+Steam Devil,Devilkin,2,Rank 1,2d4+3,6.91,7.8,7.8,2023-08-15 13:27:41
+Dust Elemental,Elemental,8,Rank 4,8d10+4,81.53,81.54,77.83,2023-08-15 13:27:41
+Diamond Faerie,Fey,11,Rank 2,11d6,64.95,64.92,63.04,2023-08-15 13:27:41
+Pit Fiend,Demonic,2,Rank 1,2d4,6.93,7.65,8.41,2023-08-15 13:27:41
+Magma Elemental,Elemental,6,Rank 3,6d8+1,50.58,47.83,50.97,2023-08-15 13:27:41
+Onyx Faerie,Fey,2,Rank 0,2d2+3,3.09,4.66,3.48,2023-08-15 13:27:41
+Goblin Villager,Devilkin,16,Rank 1,16d4,64.52,62.71,64.16,2023-08-15 13:27:41
+Mummy,Undead,10,Rank 5,10d12,119.74,123.61,119.73,2023-08-15 13:27:41
+Mud Spirit,Fey,6,Rank 1,6d4+1,24.69,25.82,24.86,2023-08-15 13:27:41
+Bronze Drake,Dragon,2,Rank 3,2d8+2,16.59,14.16,13.9,2023-08-15 13:27:41
+Shadow Mephit,Elemental,4,Rank 0,4d2+2,7.96,8.25,7.03,2023-08-15 13:27:41
+Silver Archfey,Fey,14,Rank 5,14d12+4,173.02,169.45,167.87,2023-08-15 13:27:41
+Quasit,Demonic,9,Rank 4,9d10+1,91.62,87.16,90.64,2023-08-15 13:27:41
+Goblin Archer,Devilkin,15,Rank 2,15d6,88.46,92.45,90.63,2023-08-15 13:27:41
+Ghast,Undead,5,Rank 2,5d6+5,29.13,27.36,32.78,2023-08-15 13:27:41
+White Wyrmling,Dragon,13,Rank 2,13d6+5,79.65,75.51,77.66,2023-08-15 13:27:41
+Spore Devil,Devilkin,12,Rank 2,12d6+2,74.05,69.23,70.97,2023-08-15 13:27:41
+Revenant,Undead,5,Rank 2,5d6,29.68,31.9,31.34,2023-08-15 13:27:41
+Nightmare,Demonic,12,Rank 2,12d6,71.57,74.18,70.88,2023-08-15 13:27:41
+Pit Lord,Devilkin,3,Rank 1,3d4+2,12.87,10.35,12.66,2023-08-15 13:27:41
+Flame Spirit,Fey,14,Rank 0,14d2+2,28.54,27.06,27.31,2023-08-15 13:27:41
+Hook Horror,Demonic,6,Rank 1,6d4+1,22.26,23.98,24.17,2023-08-15 13:27:41
+Lightning Mephit,Elemental,7,Rank 1,7d4+1,27.09,26.46,28.79,2023-08-15 13:27:41
+Ghoul,Undead,16,Rank 2,16d6+4,95.66,97.1,96.64,2023-08-15 13:27:41
+Pseudodragon,Dragon,13,Rank 0,13d2+1,25.0,26.49,25.18,2023-08-15 13:27:41
+Hell Hound,Demonic,3,Rank 0,3d2+1,6.34,5.78,6.42,2023-08-15 13:27:41
+Djinni,Elemental,6,Rank 4,6d10+1,61.58,55.7,59.7,2023-08-15 13:27:41
+Smoke Archfey,Fey,5,Rank 0,5d2+1,9.43,10.63,10.83,2023-08-15 13:27:41
+Brass Demon,Demonic,3,Rank 0,3d2+1,6.31,5.27,6.73,2023-08-15 13:27:41
+Shadow Elemental,Elemental,8,Rank 3,8d8,64.48,66.01,61.39,2023-08-15 13:27:41
+Green Faerie,Fey,10,Rank 0,10d2+2,20.85,19.94,20.87,2023-08-15 13:27:41
+Hell Hound,Demonic,3,Rank 1,3d4,11.77,11.71,11.73,2023-08-15 13:27:41
+Efreeti,Elemental,5,Rank 0,5d2+2,10.96,9.65,10.39,2023-08-15 13:27:41
+Lightning Spirit,Fey,15,Rank 0,15d2,30.26,29.42,30.91,2023-08-15 13:27:41
+Prince of Fear,Devilkin,8,Rank 0,8d2,16.88,15.71,15.69,2023-08-15 13:27:41
+Lich,Undead,2,Rank 1,2d4+2,7.14,9.24,8.52,2023-08-15 13:27:41
+Pseudodragon,Dragon,6,Rank 0,6d2,12.8,11.79,11.43,2023-08-15 13:27:41
+Prince of Fear,Devilkin,12,Rank 1,12d4+3,46.3,48.72,49.8,2023-08-15 13:27:41
+Wight,Undead,6,Rank 2,6d6+4,39.0,34.69,37.35,2023-08-15 13:27:41
+Balor,Demonic,7,Rank 4,7d10+5,66.55,69.04,71.67,2023-08-15 13:27:41
+Efreeti,Elemental,11,Rank 0,11d2+1,22.38,22.99,21.64,2023-08-15 13:27:41
+Red Faerie,Fey,10,Rank 3,10d8+3,77.95,81.02,79.3,2023-08-15 13:27:41
+Pseudodragon,Dragon,7,Rank 2,7d6+2,39.04,41.43,44.49,2023-08-15 13:27:41
+Quasit,Demonic,8,Rank 1,8d4,32.24,32.86,31.02,2023-08-15 13:27:41
+Djinni,Elemental,4,Rank 4,4d10,44.11,36.5,42.99,2023-08-15 13:27:41
+Wyvern,Dragon,6,Rank 3,6d8+2,49.15,47.05,50.89,2023-08-15 13:27:41
+Steam Mephit,Elemental,3,Rank 0,3d2+1,6.49,5.38,5.86,2023-08-15 13:27:41
+Smoke Spirit,Fey,11,Rank 0,11d2,22.66,22.38,22.08,2023-08-15 13:27:41
+Night Hag,Demonic,12,Rank 1,12d4,47.54,49.46,48.07,2023-08-15 13:27:41
+Efreeti,Elemental,2,Rank 0,2d2+1,4.09,4.87,3.81,2023-08-15 13:27:41
+Ice Spirit,Fey,12,Rank 0,12d2+1,24.69,24.09,24.43,2023-08-15 13:27:41
+Nightmare,Demonic,7,Rank 4,7d10,72.81,67.82,70.1,2023-08-15 13:27:41
+Ghostly Guard,Undead,1,Rank 4,1d10,7.2,13.63,8.96,2023-08-15 13:27:41
+Sapphire Drake,Dragon,7,Rank 1,7d4+1,26.65,28.56,27.3,2023-08-15 13:27:41
+Mud Devil,Devilkin,12,Rank 3,12d8,99.97,98.16,96.34,2023-08-15 13:27:41
+Ruby Archfey,Fey,10,Rank 1,10d4+1,38.45,38.49,39.67,2023-08-15 13:27:41
+Faerie Dragon,Dragon,7,Rank 2,7d6+4,41.64,39.53,40.72,2023-08-15 13:27:41
+Prince of Fear,Devilkin,11,Rank 1,11d4+2,43.1,44.38,45.9,2023-08-15 13:27:41
+Ghoul,Undead,3,Rank 4,3d10,26.95,29.16,33.04,2023-08-15 13:27:41
+Silver Wyrmling,Dragon,14,Rank 1,14d4,57.44,54.01,54.92,2023-08-15 13:27:41
+Shadow Mephit,Elemental,3,Rank 5,3d12+2,41.36,41.56,33.22,2023-08-15 13:27:41
+Pseudodragon,Dragon,4,Rank 0,4d2,8.29,7.74,7.33,2023-08-15 13:27:41
+Steam Elemental,Elemental,10,Rank 0,10d2,21.0,20.09,19.14,2023-08-15 13:27:41
+Wyvern,Dragon,3,Rank 1,3d4+3,11.59,11.4,12.8,2023-08-15 13:27:41
+Smoke Devil,Devilkin,11,Rank 5,11d12,133.88,127.56,135.98,2023-08-15 13:27:41
+Lich King,Undead,9,Rank 3,9d8,72.75,69.38,69.94,2023-08-15 13:27:41
+Black Faerie,Fey,3,Rank 3,3d8+1,23.29,24.14,21.65,2023-08-15 13:27:41
+Night Hag,Demonic,11,Rank 2,11d6+1,67.64,65.72,65.83,2023-08-15 13:27:41
+Dracolich,Undead,6,Rank 0,6d2+1,11.68,11.58,12.27,2023-08-15 13:27:41
+Emerald Faerie,Fey,2,Rank 1,2d4+2,8.85,6.65,6.5,2023-08-15 13:27:41
+Hell Hound,Demonic,11,Rank 1,11d4,44.45,43.79,43.11,2023-08-15 13:27:41
+Magma Mephit,Elemental,6,Rank 3,6d8+2,48.25,45.52,46.25,2023-08-15 13:27:41
+Mud Spirit,Fey,4,Rank 0,4d2,8.76,7.95,8.71,2023-08-15 13:27:41
+Diamond Wyrmling,Dragon,12,Rank 2,12d6+2,73.32,72.62,70.37,2023-08-15 13:27:41
+Pit Fiend,Demonic,8,Rank 1,8d4,30.98,32.23,31.52,2023-08-15 13:27:41
+Djinni,Elemental,10,Rank 0,10d2+2,20.12,19.88,20.52,2023-08-15 13:27:41
+Wyvern,Dragon,4,Rank 1,4d4,14.48,16.69,16.18,2023-08-15 13:27:41
+Shadow Devil,Devilkin,10,Rank 3,10d8,78.17,79.4,76.24,2023-08-15 13:27:41
+Djinni,Elemental,4,Rank 1,4d4+1,14.36,15.73,15.62,2023-08-15 13:27:41
+Lightning Archfey,Fey,5,Rank 2,5d6+2,31.5,30.15,31.44,2023-08-15 13:27:41
+White Drake,Dragon,4,Rank 1,4d4,16.55,15.8,17.63,2023-08-15 13:27:41
+Pit Lord,Devilkin,6,Rank 4,6d10+1,64.78,58.42,61.71,2023-08-15 13:27:41
+Banshee,Undead,2,Rank 2,2d6,14.32,12.0,11.52,2023-08-15 13:27:41
+Prismatic Archfey,Fey,12,Rank 0,12d2+3,24.96,23.33,23.46,2023-08-15 13:27:41
+Wyvern,Dragon,3,Rank 3,3d8+3,20.14,25.54,27.9,2023-08-15 13:27:41
+Mud Elemental,Elemental,16,Rank 2,16d6+1,94.84,97.42,94.72,2023-08-15 13:27:41
+Shadow Archfey,Fey,9,Rank 0,9d2+2,18.68,17.88,18.8,2023-08-15 13:27:41
+Night Hag,Demonic,6,Rank 0,6d2+1,12.18,11.64,11.1,2023-08-15 13:27:41
+Efreeti,Elemental,15,Rank 4,15d10+2,153.71,151.97,148.58,2023-08-15 13:27:41
+Pseudodragon,Dragon,8,Rank 2,8d6+2,50.65,48.79,49.69,2023-08-15 13:27:41
+Spore Mephit,Elemental,5,Rank 1,5d4+4,21.02,19.16,19.56,2023-08-15 13:27:41
+Wyvern,Dragon,7,Rank 0,7d2+2,14.95,13.14,14.65,2023-08-15 13:27:41
+Efreeti,Elemental,15,Rank 2,15d6+2,89.79,87.42,92.92,2023-08-15 13:27:41
+Blue Archfey,Fey,7,Rank 3,7d8,53.48,52.57,53.6,2023-08-15 13:27:41
+Imp,Demonic,14,Rank 2,14d6+1,85.94,82.95,84.81,2023-08-15 13:27:41
+Succubus,Devilkin,10,Rank 3,10d8,78.29,82.75,77.71,2023-08-15 13:27:41
+Ghoul,Undead,12,Rank 1,12d4+2,48.5,46.95,49.45,2023-08-15 13:27:41
+Platinum Dragon,Dragon,16,Rank 3,16d8+3,128.68,128.1,127.63,2023-08-15 13:27:41
+Flame Elemental,Elemental,3,Rank 1,3d4+3,11.21,10.48,11.87,2023-08-15 13:27:41
+Emerald Faerie,Fey,9,Rank 0,9d2+2,18.52,18.63,18.88,2023-08-15 13:27:41
+Quasit,Demonic,6,Rank 0,6d2,12.22,12.75,12.99,2023-08-15 13:27:41
+Djinni,Elemental,13,Rank 2,13d6+1,77.28,77.32,78.1,2023-08-15 13:27:41
+Prismatic Drake,Dragon,16,Rank 0,16d2+4,32.07,31.29,31.99,2023-08-15 13:27:41
+Succubus,Devilkin,10,Rank 0,10d2+2,20.37,19.36,19.55,2023-08-15 13:27:41
+Dracolich,Undead,4,Rank 3,4d8+1,32.44,29.25,34.06,2023-08-15 13:27:41
+Gold Drake,Dragon,5,Rank 2,5d6+4,30.62,31.8,30.85,2023-08-15 13:27:41
+Efreeti,Elemental,3,Rank 2,3d6,16.08,18.34,17.61,2023-08-15 13:27:41
+Ice Archfey,Fey,18,Rank 1,18d4+1,72.98,72.63,71.33,2023-08-15 13:27:41
+Pit Fiend,Demonic,11,Rank 1,11d4+1,43.73,44.1,44.41,2023-08-15 13:27:41
+Skeletal Mage,Undead,8,Rank 3,8d8+4,63.39,62.89,61.16,2023-08-15 13:27:41
+Imp,Demonic,13,Rank 4,13d10+2,127.84,132.54,126.4,2023-08-15 13:27:41
+Goblin Knight,Devilkin,10,Rank 2,10d6+1,59.19,57.31,59.6,2023-08-15 13:27:41
+Ghast,Undead,7,Rank 3,7d8+3,54.16,56.51,56.12,2023-08-15 13:27:41
+Red Drake,Dragon,17,Rank 0,17d2,33.53,34.35,33.92,2023-08-15 13:27:41
+Mud Devil,Devilkin,3,Rank 1,3d4+2,10.46,13.87,13.34,2023-08-15 13:27:41
+Zombie Villager,Undead,15,Rank 3,15d8+1,120.77,120.7,120.22,2023-08-15 13:27:41
+Pit Fiend,Demonic,9,Rank 1,9d4+1,34.01,35.79,36.41,2023-08-15 13:27:41
+Djinni,Elemental,5,Rank 1,5d4+1,20.41,18.57,19.33,2023-08-15 13:27:41
+Bronze Faerie,Fey,18,Rank 2,18d6,107.59,107.69,109.4,2023-08-15 13:27:41
+Pseudodragon,Dragon,6,Rank 1,6d4+1,24.17,22.67,22.62,2023-08-15 13:27:41
+Hell Hound,Demonic,7,Rank 1,7d4+5,28.23,27.85,27.84,2023-08-15 13:27:41
+Shadow Devil,Devilkin,2,Rank 0,2d2+2,4.58,4.39,3.57,2023-08-15 13:27:41
+Demilich,Undead,2,Rank 0,2d2+2,4.15,4.15,4.05,2023-08-15 13:27:41
+Faerie Dragon,Dragon,8,Rank 2,8d6+3,50.29,49.9,48.11,2023-08-15 13:27:41
+Pit Lord,Devilkin,5,Rank 0,5d2,9.96,10.81,10.54,2023-08-15 13:27:41
+Ghoul,Undead,5,Rank 2,5d6,28.77,32.38,28.97,2023-08-15 13:27:41
+Ruby Archfey,Fey,3,Rank 5,3d12+2,35.28,36.43,40.53,2023-08-15 13:27:41
+Night Hag,Demonic,15,Rank 0,15d2+2,30.78,29.07,30.42,2023-08-15 13:27:41
+Lightning Mephit,Elemental,9,Rank 3,9d8,74.74,72.1,69.95,2023-08-15 13:27:41
+Revenant,Undead,5,Rank 2,5d6+3,31.64,28.84,28.15,2023-08-15 13:27:41
+Diamond Faerie,Fey,1,Rank 3,1d8+1,9.9,10.51,7.38,2023-08-15 13:27:41
+Imp,Demonic,17,Rank 1,17d4,67.59,66.48,69.81,2023-08-15 13:27:41
+Lich,Undead,13,Rank 0,13d2+1,26.11,26.42,26.66,2023-08-15 13:27:41
+Hell Hound,Demonic,13,Rank 0,13d2,26.01,26.39,26.2,2023-08-15 13:27:41
+Demilich,Undead,11,Rank 2,11d6+1,66.22,65.28,64.9,2023-08-15 13:27:41
+Faerie Dragon,Dragon,10,Rank 1,10d4+2,39.28,40.63,40.31,2023-08-15 13:27:41
+Pit Fiend,Demonic,1,Rank 3,1d8,7.72,11.75,11.04,2023-08-15 13:27:41
+Smoke Mephit,Elemental,8,Rank 4,8d10+3,81.22,76.35,81.25,2023-08-15 13:27:41
+Magma Spirit,Fey,1,Rank 1,1d4+4,4.34,3.65,2.86,2023-08-15 13:27:41
+Onyx Dragon,Dragon,6,Rank 1,6d4,23.56,24.31,25.23,2023-08-15 13:27:41
+Mud Devil,Devilkin,15,Rank 3,15d8,118.57,117.0,120.98,2023-08-15 13:27:41
+Lich King,Undead,9,Rank 4,9d10,85.6,91.03,93.24,2023-08-15 13:27:41
+Green Wyrmling,Dragon,4,Rank 1,4d4+1,17.47,17.36,15.33,2023-08-15 13:27:41
+Incubus,Devilkin,5,Rank 0,5d2+2,10.19,9.61,9.99,2023-08-15 13:27:41
+Vampire,Undead,8,Rank 0,8d2+1,15.46,15.12,16.04,2023-08-15 13:27:41
+Flame Spirit,Fey,3,Rank 1,3d4+1,11.88,13.87,12.46,2023-08-15 13:27:41
+Nightmare,Demonic,8,Rank 2,8d6+4,50.63,48.85,47.29,2023-08-15 13:27:41
+Goblin Archer,Devilkin,3,Rank 2,3d6+2,15.11,16.09,18.81,2023-08-15 13:27:41
+Dracolich,Undead,6,Rank 1,6d4+2,22.79,24.65,24.19,2023-08-15 13:27:41
+Black Dragon,Dragon,8,Rank 0,8d2+1,16.1,15.49,16.78,2023-08-15 13:27:41
+Nightmare,Demonic,5,Rank 1,5d4+3,20.07,21.63,20.43,2023-08-15 13:27:41
+Efreeti,Elemental,6,Rank 1,6d4,24.64,23.27,23.56,2023-08-15 13:27:41
+Lightning Spirit,Fey,11,Rank 0,11d2+2,22.02,22.73,21.13,2023-08-15 13:27:41
+Pseudodragon,Dragon,7,Rank 4,7d10,71.2,69.89,71.51,2023-08-15 13:27:41
+Djinni,Elemental,7,Rank 1,7d4+1,27.5,28.99,29.19,2023-08-15 13:27:41
+Brass Faerie,Fey,10,Rank 2,10d6,61.34,58.2,60.19,2023-08-15 13:27:41
+Wyvern,Dragon,8,Rank 0,8d2,15.17,16.98,15.7,2023-08-15 13:27:41
+Prince of Fear,Devilkin,2,Rank 5,2d12,19.89,20.2,23.25,2023-08-15 13:27:41
+Vampire,Undead,2,Rank 2,2d6+1,14.53,9.77,13.97,2023-08-15 13:27:41
+Imp,Demonic,11,Rank 0,11d2+1,21.41,21.84,22.15,2023-08-15 13:27:41
+Mud Elemental,Elemental,5,Rank 0,5d2+1,9.32,9.62,10.5,2023-08-15 13:27:41
+Blue Drake,Dragon,12,Rank 0,12d2,23.78,23.11,24.54,2023-08-15 13:27:41
+Goblin Knight,Devilkin,15,Rank 2,15d6+2,88.99,90.23,89.73,2023-08-15 13:27:41
+Lich King,Undead,9,Rank 0,9d2+2,18.59,17.28,17.51,2023-08-15 13:27:41
+White Dragon,Dragon,19,Rank 2,19d6,114.82,113.25,114.93,2023-08-15 13:27:41
+Prince of Fear,Devilkin,5,Rank 3,5d8+1,40.84,42.27,39.63,2023-08-15 13:27:41
+Ghoul,Undead,4,Rank 4,4d10+2,38.35,37.39,41.69,2023-08-15 13:27:41
+Dust Spirit,Fey,3,Rank 0,3d2+3,5.96,5.58,6.32,2023-08-15 13:27:41
+Prince of Fear,Devilkin,7,Rank 0,7d2,13.43,13.94,13.49,2023-08-15 13:27:41
+Efreeti,Elemental,15,Rank 2,15d6+1,88.04,88.38,89.73,2023-08-15 13:27:41
+Ghast,Undead,3,Rank 3,3d8+4,21.52,26.31,25.03,2023-08-15 13:27:41
+Prismatic Dragon,Dragon,3,Rank 1,3d4+3,11.94,11.38,11.83,2023-08-15 13:27:41
+Pit Lord,Devilkin,12,Rank 3,12d8+2,93.2,96.91,93.97,2023-08-15 13:27:41
+Magma Archfey,Fey,14,Rank 2,14d6,84.04,85.57,85.0,2023-08-15 13:27:41
+Succubus,Devilkin,2,Rank 5,2d12+5,26.79,23.78,25.97,2023-08-15 13:27:41
+Zombie Villager,Undead,19,Rank 1,19d4+1,76.83,74.78,75.35,2023-08-15 13:27:41
+Wyvern,Dragon,6,Rank 2,6d6+1,35.46,36.19,35.36,2023-08-15 13:27:41
+Pit Lord,Devilkin,12,Rank 4,12d10+1,116.27,119.26,123.75,2023-08-15 13:27:41
+Revenant,Undead,4,Rank 3,4d8,29.82,28.45,33.57,2023-08-15 13:27:41
+Copper Faerie,Fey,12,Rank 2,12d6,71.93,70.64,73.43,2023-08-15 13:27:41
+Hell Hound,Demonic,3,Rank 3,3d8+4,27.27,20.53,26.18,2023-08-15 13:27:41
+Lightning Elemental,Elemental,4,Rank 5,4d12+5,51.92,50.29,47.97,2023-08-15 13:27:41
+Brass Faerie,Fey,8,Rank 4,8d10+2,77.72,77.11,84.12,2023-08-15 13:27:41
+Quasit,Demonic,2,Rank 1,2d4+1,6.31,6.1,7.82,2023-08-15 13:27:41
+Mud Devil,Devilkin,12,Rank 1,12d4+2,49.46,47.91,48.8,2023-08-15 13:27:41
+Death Knight,Undead,9,Rank 1,9d4+2,34.95,36.18,35.71,2023-08-15 13:27:41
+Dust Spirit,Fey,7,Rank 2,7d6+3,40.08,44.98,42.81,2023-08-15 13:27:41
+Pseudodragon,Dragon,4,Rank 1,4d4+1,16.04,16.67,15.88,2023-08-15 13:27:41
+Ice Devil,Devilkin,7,Rank 1,7d4,27.86,28.58,29.73,2023-08-15 13:27:41
+Vampire,Undead,3,Rank 3,3d8+3,25.58,21.25,23.49,2023-08-15 13:27:41
+Faerie Dragon,Dragon,3,Rank 0,3d2+4,5.59,6.94,5.2,2023-08-15 13:27:41
+Steam Devil,Devilkin,6,Rank 2,6d6,35.01,34.4,36.38,2023-08-15 13:27:41
+Lich,Undead,10,Rank 1,10d4,39.34,39.09,38.28,2023-08-15 13:27:41
+Prismatic Dragon,Dragon,3,Rank 3,3d8+2,24.64,25.5,26.07,2023-08-15 13:27:41
+Kobold Archer,Devilkin,10,Rank 3,10d8+2,76.3,80.92,80.2,2023-08-15 13:27:41
+Shadow Elemental,Elemental,5,Rank 0,5d2+1,9.21,10.44,10.32,2023-08-15 13:27:41
+Spore Spirit,Fey,15,Rank 0,15d2,30.75,29.24,30.91,2023-08-15 13:27:41
+Balor,Demonic,3,Rank 3,3d8+1,21.64,21.03,25.11,2023-08-15 13:27:41
+Smoke Mephit,Elemental,13,Rank 2,13d6+2,77.23,77.95,77.04,2023-08-15 13:27:41
+Green Faerie,Fey,20,Rank 0,20d2+2,39.46,39.99,39.43,2023-08-15 13:27:41
+Platinum Demon,Demonic,17,Rank 2,17d6,99.63,102.35,99.52,2023-08-15 13:27:41
+Shadow Mephit,Elemental,10,Rank 2,10d6+2,60.34,60.5,61.63,2023-08-15 13:27:41
+Revenant,Undead,9,Rank 5,9d12+1,107.77,110.1,105.35,2023-08-15 13:27:41
+Nightmare,Demonic,6,Rank 0,6d2+4,11.82,11.45,11.53,2023-08-15 13:27:41
+Efreeti,Elemental,10,Rank 0,10d2+4,20.76,20.01,19.59,2023-08-15 13:27:41
+Poltergeist,Undead,7,Rank 4,7d10+5,73.21,73.57,66.68,2023-08-15 13:27:41
+Ruby Wyrmling,Dragon,4,Rank 2,4d6,23.09,22.48,24.54,2023-08-15 13:27:41
+Kobold Knight,Devilkin,8,Rank 3,8d8,65.82,63.39,63.69,2023-08-15 13:27:41
+Lich,Undead,13,Rank 1,13d4+4,50.41,50.66,50.35,2023-08-15 13:27:41
+Pit Fiend,Demonic,4,Rank 0,4d2+1,7.13,7.2,8.42,2023-08-15 13:27:41
+Djinni,Elemental,1,Rank 1,1d4,4.36,5.36,3.29,2023-08-15 13:27:41
+Wyvern,Dragon,5,Rank 4,5d10+4,53.78,49.79,50.33,2023-08-15 13:27:41
+Pit Fiend,Demonic,10,Rank 1,10d4+3,40.1,40.74,40.41,2023-08-15 13:27:41
+Lightning Elemental,Elemental,16,Rank 0,16d2,32.09,32.51,31.8,2023-08-15 13:27:41
+Faerie Dragon,Dragon,9,Rank 1,9d4+1,35.44,36.43,35.91,2023-08-15 13:27:41
+Incubus,Devilkin,6,Rank 2,6d6+2,35.13,35.18,34.68,2023-08-15 13:27:41
+Ghostly Villager,Undead,8,Rank 0,8d2+1,15.45,15.23,15.55,2023-08-15 13:27:41
+Nightmare,Demonic,4,Rank 5,4d12,45.52,45.34,43.46,2023-08-15 13:27:41
+Kobold Archer,Devilkin,8,Rank 1,8d4+3,33.64,31.25,32.97,2023-08-15 13:27:41
+Poltergeist,Undead,3,Rank 4,3d10+1,33.15,27.6,32.01,2023-08-15 13:27:41
+Silver Archfey,Fey,8,Rank 0,8d2+2,15.46,16.4,15.77,2023-08-15 13:27:41
+Quasit,Demonic,4,Rank 0,4d2+2,7.96,7.32,7.12,2023-08-15 13:27:41
+Mud Mephit,Elemental,14,Rank 2,14d6+1,83.59,85.47,83.4,2023-08-15 13:27:41
+Platinum Faerie,Fey,1,Rank 2,1d6,5.57,6.67,7.37,2023-08-15 13:27:41
+Wyvern,Dragon,8,Rank 1,8d4+2,31.15,31.14,32.24,2023-08-15 13:27:41
+Djinni,Elemental,16,Rank 0,16d2+1,31.35,32.96,31.11,2023-08-15 13:27:41
+Dracolich,Undead,5,Rank 1,5d4+4,18.49,18.23,20.93,2023-08-15 13:27:41
+Faerie Dragon,Dragon,5,Rank 0,5d2+2,9.87,9.16,9.29,2023-08-15 13:27:41
+Kobold Guard,Devilkin,9,Rank 0,9d2+1,18.94,17.29,17.26,2023-08-15 13:27:41
+Ghostly Mage,Undead,4,Rank 1,4d4+1,17.11,16.21,15.82,2023-08-15 13:27:41
+Faerie Dragon,Dragon,13,Rank 4,13d10+1,126.98,132.19,127.3,2023-08-15 13:27:41
+Efreeti,Elemental,4,Rank 2,4d6+4,23.63,25.88,24.34,2023-08-15 13:27:41
+Flame Spirit,Fey,9,Rank 4,9d10+1,89.38,92.97,92.82,2023-08-15 13:27:41
+Quasit,Demonic,8,Rank 5,8d12+4,98.03,90.56,99.95,2023-08-15 13:27:41
+Efreeti,Elemental,8,Rank 2,8d6,48.24,48.28,49.18,2023-08-15 13:27:41
+Lich King,Undead,9,Rank 0,9d2+2,18.73,18.51,17.57,2023-08-15 13:27:41
+Quasit,Demonic,4,Rank 2,4d6+1,25.86,25.53,22.21,2023-08-15 13:27:41
+Djinni,Elemental,8,Rank 2,8d6+1,46.16,49.1,45.95,2023-08-15 13:27:41
+Sapphire Faerie,Fey,5,Rank 0,5d2+3,9.89,9.25,9.61,2023-08-15 13:27:41
+Imp,Demonic,8,Rank 1,8d4+2,33.3,30.09,33.85,2023-08-15 13:27:41
+Magma Mephit,Elemental,13,Rank 0,13d2,26.49,26.27,26.05,2023-08-15 13:27:41
+Demilich,Undead,1,Rank 0,1d2+4,2.01,2.22,2.85,2023-08-15 13:27:41
+Imp,Demonic,12,Rank 2,12d6,72.41,72.44,71.16,2023-08-15 13:27:41
+Prince of Fear,Devilkin,15,Rank 2,15d6,89.97,88.77,88.54,2023-08-15 13:27:41
+Wight,Undead,10,Rank 0,10d2+2,20.95,20.52,20.74,2023-08-15 13:27:41
+Imp,Demonic,9,Rank 1,9d4,35.85,37.69,36.29,2023-08-15 13:27:41
+Efreeti,Elemental,9,Rank 3,9d8+1,74.17,69.44,75.3,2023-08-15 13:27:41
+Mud Spirit,Fey,10,Rank 0,10d2+3,20.85,19.75,19.53,2023-08-15 13:27:41
+Imp,Demonic,7,Rank 1,7d4+1,28.34,26.71,29.69,2023-08-15 13:27:41
+Ghostly Archer,Undead,2,Rank 0,2d2+2,3.31,4.15,4.93,2023-08-15 13:27:41
+Emerald Dragon,Dragon,13,Rank 2,13d6+2,75.17,78.35,76.34,2023-08-15 13:27:41
+Goblin Guard,Devilkin,5,Rank 2,5d6+3,32.76,32.43,32.1,2023-08-15 13:27:41
+Mummy,Undead,4,Rank 0,4d2+1,8.87,8.65,8.58,2023-08-15 13:27:41
+Faerie Dragon,Dragon,6,Rank 3,6d8+3,48.35,47.2,48.22,2023-08-15 13:27:41
+Nightmare,Demonic,5,Rank 1,5d4+5,20.51,18.28,18.26,2023-08-15 13:27:41
+Flame Elemental,Elemental,7,Rank 0,7d2+1,13.66,14.61,13.02,2023-08-15 13:27:41
+Ice Spirit,Fey,5,Rank 3,5d8+2,43.58,40.68,40.73,2023-08-15 13:27:41
+Diamond Dragon,Dragon,6,Rank 2,6d6+1,33.07,37.23,38.82,2023-08-15 13:27:41
+Pit Lord,Devilkin,11,Rank 4,11d10+1,105.41,109.68,112.73,2023-08-15 13:27:41
+Lightning Spirit,Fey,17,Rank 1,17d4,68.99,68.25,68.44,2023-08-15 13:27:41
+Hook Horror,Demonic,3,Rank 3,3d8,21.99,24.06,22.92,2023-08-15 13:27:41
+Steam Mephit,Elemental,11,Rank 0,11d2,21.5,21.0,21.26,2023-08-15 13:27:41
+Lich King,Undead,16,Rank 2,16d6+1,97.22,93.88,97.99,2023-08-15 13:27:41
+Wyvern,Dragon,6,Rank 2,6d6,36.47,35.2,35.45,2023-08-15 13:27:41
+Quasit,Demonic,19,Rank 1,19d4,75.12,75.95,77.19,2023-08-15 13:27:41
+Dust Elemental,Elemental,8,Rank 3,8d8+4,61.92,63.12,66.71,2023-08-15 13:27:41
+Sapphire Dragon,Dragon,4,Rank 0,4d2+1,7.76,8.99,8.69,2023-08-15 13:27:41
+Djinni,Elemental,1,Rank 0,1d2+3,1.39,1.08,1.01,2023-08-15 13:27:41
+Ruby Drake,Dragon,3,Rank 0,3d2+2,6.89,5.56,5.07,2023-08-15 13:27:41
+Prince of Fear,Devilkin,4,Rank 1,4d4+2,16.38,16.4,16.26,2023-08-15 13:27:41
+Ghast,Undead,6,Rank 0,6d2+1,11.06,11.96,12.01,2023-08-15 13:27:41
+Diamond Dragon,Dragon,12,Rank 0,12d2+3,23.28,23.12,24.09,2023-08-15 13:27:41
+Quasit,Demonic,14,Rank 3,14d8+2,112.55,110.57,111.61,2023-08-15 13:27:41
+Efreeti,Elemental,18,Rank 2,18d6+5,108.72,110.99,109.66,2023-08-15 13:27:41
+Magma Spirit,Fey,10,Rank 2,10d6+3,59.82,60.46,58.5,2023-08-15 13:27:41
+Nightmare,Demonic,14,Rank 3,14d8+1,112.95,115.67,113.57,2023-08-15 13:27:41
+Spore Mephit,Elemental,7,Rank 3,7d8+3,57.13,54.18,52.62,2023-08-15 13:27:41
+Onyx Faerie,Fey,15,Rank 2,15d6+1,88.08,91.08,91.53,2023-08-15 13:27:41
+Pit Fiend,Demonic,3,Rank 3,3d8+4,23.74,23.9,22.56,2023-08-15 13:27:41
+Djinni,Elemental,9,Rank 1,9d4,36.24,35.68,36.41,2023-08-15 13:27:41
+Emerald Faerie,Fey,3,Rank 2,3d6+1,20.95,19.97,16.67,2023-08-15 13:27:41
+Hook Horror,Demonic,9,Rank 0,9d2+2,18.33,18.58,18.11,2023-08-15 13:27:41
+Efreeti,Elemental,2,Rank 4,2d10,16.77,16.32,21.59,2023-08-15 13:27:41
+Mummy,Undead,9,Rank 0,9d2+2,17.07,18.69,18.33,2023-08-15 13:27:41
+Prismatic Dragon,Dragon,5,Rank 1,5d4+4,20.67,21.07,19.24,2023-08-15 13:27:41
+Djinni,Elemental,5,Rank 4,5d10+3,48.08,51.16,47.93,2023-08-15 13:27:41
+Vampire,Undead,7,Rank 0,7d2+3,13.93,14.79,13.07,2023-08-15 13:27:41
+Balor,Demonic,5,Rank 4,5d10+2,51.78,48.85,54.15,2023-08-15 13:27:41
+Goblin Villager,Devilkin,4,Rank 0,4d2+2,7.54,7.31,8.52,2023-08-15 13:27:41
+Efreeti,Elemental,3,Rank 2,3d6,16.77,20.43,17.05,2023-08-15 13:27:41
+Flame Archfey,Fey,5,Rank 3,5d8,36.41,39.43,36.37,2023-08-15 13:27:41
+Copper Dragon,Dragon,15,Rank 2,15d6,87.25,90.23,88.63,2023-08-15 13:27:41
+Brass Demon,Demonic,3,Rank 1,3d4,13.76,11.57,13.17,2023-08-15 13:27:41
+Banshee,Undead,13,Rank 1,13d4+2,51.17,50.6,52.03,2023-08-15 13:27:41
+Green Drake,Dragon,3,Rank 0,3d2+2,5.86,5.27,5.23,2023-08-15 13:27:41
+Goblin Archer,Devilkin,3,Rank 3,3d8+3,21.99,25.73,21.25,2023-08-15 13:27:41
+Revenant,Undead,9,Rank 0,9d2+5,17.19,19.0,18.87,2023-08-15 13:27:41
+Copper Drake,Dragon,2,Rank 0,2d2+3,3.73,4.02,3.55,2023-08-15 13:27:41
+Goblin Knight,Devilkin,4,Rank 4,4d10+1,43.45,37.73,42.61,2023-08-15 13:27:41
+Dust Spirit,Fey,12,Rank 2,12d6,70.54,73.59,71.92,2023-08-15 13:27:41
+Onyx Wyrmling,Dragon,2,Rank 3,2d8,17.17,17.8,14.04,2023-08-15 13:27:41
+Goblin Guard,Devilkin,9,Rank 2,9d6+2,53.74,55.36,54.45,2023-08-15 13:27:41
+Green Archfey,Fey,8,Rank 0,8d2,15.8,16.77,15.54,2023-08-15 13:27:41
+Imp,Demonic,10,Rank 2,10d6,61.45,58.82,59.16,2023-08-15 13:27:41
+Magma Elemental,Elemental,10,Rank 1,10d4+1,41.92,40.27,41.7,2023-08-15 13:27:41
+Steam Spirit,Fey,13,Rank 2,13d6,77.13,76.76,77.76,2023-08-15 13:27:41
+Quasit,Demonic,4,Rank 0,4d2+5,7.97,8.41,7.91,2023-08-15 13:27:41
+Lich,Undead,14,Rank 0,14d2,28.51,27.43,27.1,2023-08-15 13:27:41
+Wyvern,Dragon,15,Rank 1,15d4+1,59.47,60.97,58.07,2023-08-15 13:27:41
+Prince of Fear,Devilkin,6,Rank 4,6d10,61.7,61.28,61.73,2023-08-15 13:27:41
+Red Faerie,Fey,3,Rank 2,3d6+2,17.74,17.66,19.83,2023-08-15 13:27:41
+Hell Hound,Demonic,7,Rank 1,7d4,26.25,27.35,27.33,2023-08-15 13:27:41
+Wight,Undead,12,Rank 0,12d2,23.59,23.08,23.73,2023-08-15 13:27:41
+Quasit,Demonic,7,Rank 0,7d2,13.3,13.34,14.47,2023-08-15 13:27:41
+Kobold Mage,Devilkin,16,Rank 0,16d2+2,32.08,31.69,31.93,2023-08-15 13:27:41
+Ghoul,Undead,9,Rank 1,9d4+1,36.66,36.17,36.29,2023-08-15 13:27:41
+Faerie Dragon,Dragon,7,Rank 3,7d8,53.19,58.3,59.95,2023-08-15 13:27:41
+Flame Elemental,Elemental,7,Rank 1,7d4+4,28.57,28.85,27.99,2023-08-15 13:27:41
+Shadow Archfey,Fey,11,Rank 1,11d4+2,43.27,42.67,43.39,2023-08-15 13:27:41
+Nightmare,Demonic,3,Rank 1,3d4,11.86,11.35,13.99,2023-08-15 13:27:41
+Efreeti,Elemental,3,Rank 3,3d8+2,20.55,22.83,20.61,2023-08-15 13:27:41
+Brass Drake,Dragon,12,Rank 1,12d4,47.67,48.0,47.07,2023-08-15 13:27:41
+Spore Devil,Devilkin,3,Rank 3,3d8,21.2,21.0,23.01,2023-08-15 13:27:41
+Demilich,Undead,1,Rank 3,1d8+1,6.68,11.39,11.75,2023-08-15 13:27:41
+Wyvern,Dragon,12,Rank 3,12d8,92.36,97.11,96.01,2023-08-15 13:27:41
+Steam Elemental,Elemental,6,Rank 1,6d4,22.09,23.74,24.62,2023-08-15 13:27:41
+Ghostly Archer,Undead,4,Rank 1,4d4+1,14.4,14.29,15.49,2023-08-15 13:27:41
+Blue Wyrmling,Dragon,7,Rank 3,7d8+1,59.14,54.04,57.32,2023-08-15 13:27:41
+Kobold Guard,Devilkin,5,Rank 0,5d2+1,10.19,10.16,9.56,2023-08-15 13:27:41
+Wraith,Undead,4,Rank 2,4d6+2,21.03,26.77,26.99,2023-08-15 13:27:41
+Copper Dragon,Dragon,7,Rank 3,7d8+2,53.35,54.37,52.93,2023-08-15 13:27:41
+Goblin Mage,Devilkin,12,Rank 4,12d10+1,118.93,120.92,116.35,2023-08-15 13:27:41
+Poltergeist,Undead,4,Rank 1,4d4+1,15.43,16.58,15.34,2023-08-15 13:27:41
+Onyx Dragon,Dragon,13,Rank 0,13d2+2,26.69,26.8,26.34,2023-08-15 13:27:41
+Efreeti,Elemental,12,Rank 1,12d4+1,47.47,47.59,48.82,2023-08-15 13:27:41
+Wyvern,Dragon,12,Rank 2,12d6,72.93,73.92,71.16,2023-08-15 13:27:41
+Succubus,Devilkin,5,Rank 0,5d2+3,9.96,10.61,9.84,2023-08-15 13:27:41
+Wight,Undead,6,Rank 2,6d6+1,35.54,35.6,36.2,2023-08-15 13:27:41
+Hell Hound,Demonic,11,Rank 0,11d2+2,22.56,21.34,21.0,2023-08-15 13:27:41
+Dracolich,Undead,11,Rank 0,11d2+4,22.91,21.79,22.7,2023-08-15 13:27:41
+Faerie Dragon,Dragon,5,Rank 0,5d2+1,10.01,9.13,9.11,2023-08-15 13:27:41
+Balor,Demonic,12,Rank 0,12d2+1,23.71,23.51,24.61,2023-08-15 13:27:41
+Djinni,Elemental,7,Rank 0,7d2+2,13.43,14.54,13.89,2023-08-15 13:27:41
diff --git a/tests/test_data_class.py b/tests/test_data_class.py
new file mode 100644
index 0000000..1225cc8
--- /dev/null
+++ b/tests/test_data_class.py
@@ -0,0 +1,297 @@
+import sys
+import pytest
+from pymongo import MongoClient
+from app.data import Database
+from os import getenv
+from dotenv import load_dotenv
+from certifi import where
+from MonsterLab import Monster
+
+print(sys.path)
+
+
+# Setup a fixture to provide a test database connection
+@pytest.fixture
+def test_db():
+ load_dotenv()
+
+ # client = MongoClient('localhost', 27017)
+ client = MongoClient(getenv("DB_URL"), tlsCAFile=where())
+
+ # Select the database
+ db = client['Database']
+
+ # Select the collection
+ # collection = db['Monsters']
+
+ yield db
+
+
+# Example test for the create_one function
+# def test_create_one(test_db):
+# collection = test_db['Monsters']
+# monster = {"name": "Test Monster", "type": "Dragon"}
+#
+# # Call the function to test
+# acknowledged = data.create_one(monster)
+#
+# # Check if the record was created
+# assert acknowledged == True
+#
+# # Additional check to confirm the record exists in the database
+# created_monster = collection.find_one({"name": "Test Monster"})
+# assert created_monster is not None
+# assert created_monster["name"] == "Test Monster"
+# assert created_monster["type"] == "Dragon"
+
+
+def test_create_one_example():
+ # Create an instance of the Database class
+ database = Database()
+
+ # Define a record to create
+ record = {'Name': 'Example Monster', 'Type': 'Dragon'}
+
+ # Call the create_one method
+ result = database.create_one(record)
+
+ # Assert something about the result (e.g., that it's True, or check the database to make sure the record was
+ # inserted)
+ assert result
+
+
+def test_create_one_random():
+ # Create an instance of the Database class
+ database = Database()
+
+ # Call the create_one method
+ result = database.create_one()
+
+ # Assert something about the result (e.g., that it's True, or check the database to make sure the record was
+ # inserted)
+ assert result
+
+
+def test_read_one_demonic():
+ # Create an instance of the Database class
+ database = Database()
+
+ # Query to find a record with "Type": "Demonic"
+ query = {"Type": "Demonic"}
+
+ # Use the read_one method to find the first such record
+ record = database.read_one(query)
+ print(record)
+
+ # Assert that the record is not None and has the expected "Type" field
+ assert record is not None
+ assert record['Type'] == 'Demonic'
+
+
+def test_read_one_random():
+ # Create an instance of the Database class
+ database = Database()
+
+ # Call the create_one method
+ result = database.read_one()
+ print(result)
+
+ # Assert something about the result (e.g., that it's True, or check the database to make sure the record was
+ # inserted)
+ assert result is not None
+
+
+# Updates a monster of name: 'Example Monster' to new info
+def test_update_one_example_monster():
+ # Create an instance of the Database class
+ database = Database()
+
+ # Update query
+ query = {'Name': 'Example Monster', 'Type': 'Dragon'}
+
+ # Update info
+ update = {
+ 'Name': 'Example Monster Updated',
+ 'Type': 'Copper Drake',
+ 'Level': 42,
+ 'Rarity': 'Rank 2',
+ 'Damage': '42d4+1',
+ 'Health': 89.72,
+ 'Energy': 130.03,
+ 'Sanity': 83.58
+ }
+
+ database.update_one(query, update)
+
+ # Assert that the correct record has been updated
+
+
+def test_delete_one_devilkin():
+ # Create an instance of the Database class
+ database = Database()
+
+ query = {'Type': 'Devilkin'}
+
+ database.delete_one(query)
+
+ # Assert deletion has happened
+
+
+def test_create_many_10():
+ # Create an instance of the Database class
+ database = Database()
+
+ # Create 10 monsters
+ monsters = [Monster().to_dict() for _ in range(10)]
+ print(monsters)
+
+ # for monster in monsters:
+ # database.create_one(monster)
+
+ database.create_many(monsters)
+
+ # Assert some things:
+ assert len(monsters) == 10
+ # Assert that 10 new monsters have been added to the database (the overall count has increased 10?)
+
+
+def test_read_many_random():
+ # Create an instance of the Database class
+ database = Database()
+
+ # Call the create_one method
+ query = {'Type': 'Dragon'}
+ result = database.read_many(query)
+ print(result)
+
+ # Assert something about the result (e.g., that it's True, or check the database to make sure the record was
+ # inserted)
+ assert result is not None
+ # assert result.length > 1
+
+
+def test_update_many_demonic_monsters():
+ # Create an instance of the Database class
+ database = Database()
+
+ # Update query
+ query = {'Type': 'Demonic'}
+
+ # Update info
+ update = {
+ 'Name': 'Demonic Monster Health 150',
+ 'Health': 150.00
+ }
+
+ database.update_one(query, update)
+
+ # Assert that the correct records have been updated
+ first_monster = database.read_one({'Name': 'Demonic Monster Health 150'})
+ print(first_monster)
+ health = first_monster['Health']
+ print(health)
+ assert health == 150
+
+
+def test_delete_many_undead():
+ # Create an instance of the Database class
+ database = Database()
+
+ query = {'Type': 'Undead'}
+
+ database.delete_many(query)
+
+ # Assert deletion has happened
+ assert database.read_one(query) is None
+
+
+def test_seed_100():
+ # Create an instance of the Database class
+ database = Database()
+
+ # Create 100 monsters
+ # monsters = [Monster().to_dict() for _ in range(100)]
+ # print(monsters)
+
+ # for monster in monsters:
+ # database.create_one(monster)
+
+ # database.create_many(monsters)
+ database.seed(100)
+
+ # Assert some things:
+ # assert len(monsters) == 100
+ # Assert that 10 new monsters have been added to the database (the overall count has increased 10?)
+
+def test_seed_1000():
+ # Create an instance of the Database class
+ database = Database()
+
+ # Create 1000 monsters
+ # monsters = [Monster().to_dict() for _ in range(100)]
+ # print(monsters)
+
+ # for monster in monsters:
+ # database.create_one(monster)
+
+ # database.create_many(monsters)
+ database.seed(1000)
+
+ # Assert some things:
+ # assert len(monsters) == 100
+ # Assert that 10 new monsters have been added to the database (the overall count has increased 10?)
+
+
+def test_reset_delete_all():
+ # Create an instance of the Database class
+ database = Database()
+
+ query = {}
+
+ database.reset()
+
+ # Assert deletion has happened
+ assert database.read_one(query) is None
+
+
+def test_count():
+ database = Database()
+
+ print(database.count())
+
+
+def test_dataframe():
+ database = Database()
+
+ df = database.dataframe()
+ # print(df[0])
+ print('First item in the dataframe object is: ', df.head(1))
+
+ # Assert dataframe object contains all objects in collection
+ assert df.shape[0] == database.count()
+
+
+def test_dataframe_export_csv():
+ database = Database()
+
+ df = database.dataframe()
+ # print(df[0])
+ print('First item in the dataframe object is: ', df.head(1))
+
+ # Save local csv file of Monsters
+ df.to_csv('monsters.csv', index=False)
+
+ # Assert dataframe object contains all objects in collection
+ assert df.shape[0] == database.count()
+
+
+def test_html_table():
+ database = Database()
+
+ table_string = database.html_table()
+
+ print(table_string[1:6])
+
+ print(table_string)
+
+ assert table_string[1:6] == 'table'
diff --git a/tests/test_graph.py b/tests/test_graph.py
new file mode 100644
index 0000000..a448ccd
--- /dev/null
+++ b/tests/test_graph.py
@@ -0,0 +1,82 @@
+import sys
+import pytest
+from pymongo import MongoClient
+from app.data import Database
+from os import getenv
+from dotenv import load_dotenv
+from certifi import where
+from MonsterLab import Monster
+from app.graph import chart
+from pandas import DataFrame
+import altair as alt
+
+print(sys.path)
+
+# Setup a fixture to provide a test database connection
+@pytest.fixture
+def test_db():
+ load_dotenv()
+
+ # client = MongoClient('localhost', 27017)
+ client = MongoClient(getenv("DB_URL"), tlsCAFile=where())
+
+ # Select the database
+ db = client['Database']
+
+ # Select the collection
+ # collection = db['Monsters']
+
+ yield db
+
+def test_graph_is_generated():
+ # Sample data for testing
+ data = {
+ 'A': [1, 2, 3],
+ 'B': [4, 5, 6],
+ 'C': ['p', 'q', 'r']
+ }
+ df = DataFrame(data)
+
+ # Generate the chart
+ generated_chart = chart(df, 'A', 'B', 'C')
+
+ # Check if the generated chart is an instance of altair.Chart
+ assert isinstance(generated_chart, alt.Chart)
+
+ # Check if the chart has the expected title
+ assert generated_chart.title == "B by A for C"
+
+def test_chart_serialization():
+ # Sample data for testing
+ data = {
+ 'A': [1, 2, 3],
+ 'B': [4, 5, 6],
+ 'C': ['p', 'q', 'r']
+ }
+ df = DataFrame(data)
+
+ # Generate the chart
+ original_chart = chart(df, 'A', 'B', 'C')
+
+ # Serialize the chart to JSON
+ serialized_chart = original_chart.to_json()
+
+ # Deserialize the JSON back into a chart
+ deserialized_chart = alt.Chart.from_json(serialized_chart)
+
+ print(original_chart.encoding)
+ print('#################################')
+ print(deserialized_chart.encoding)
+
+ # Compare properties of the original and deserialized charts
+ # assert original_chart.encoding == deserialized_chart.encoding
+
+ # Compare the serialized JSON strings
+ # This is more stringent as it checks for exact match
+ # assert original_chart.to_json() == deserialized_chart.to_json()
+
+ # Compare essential properties of the original and deserialized charts
+ # assert original_chart.encoding.x.shorthand == deserialized_chart.encoding.x.field
+ # assert original_chart.encoding.y.shorthand == deserialized_chart.encoding.y.field
+ # assert original_chart.encoding.color.shorthand == deserialized_chart.encoding.color.field
+
diff --git a/tests/test_machine.py b/tests/test_machine.py
new file mode 100644
index 0000000..9bda0fc
--- /dev/null
+++ b/tests/test_machine.py
@@ -0,0 +1,201 @@
+import sys
+import pytest
+from app.data import Database
+from app.machine import Machine
+from joblib import load, dump
+import os
+from flask import Flask, render_template, request
+from Fortuna import random_int, random_float
+from unittest.mock import Mock, patch
+import numpy as np
+from pandas import DataFrame
+
+
+print(sys.path)
+
+APP = Flask(__name__)
+
+
+@pytest.fixture
+def test_db():
+ db = Database()
+ yield db
+
+'''
+* Does the __init__ function properly initialize the machine learning
+model and store it as an attribute?
+* Does the class properly handle and store the target and feature data
+when initializing the model?
+'''
+def test_init(test_db):
+ df = test_db.dataframe()
+
+ # Make a Machine object with the dataframe
+ options = ["Level", "Health", "Energy", "Sanity", "Rarity"]
+ machine = Machine(df[options])
+
+ # Test Machine object outputs match expected
+ print("-----------------")
+ print("test_init checks: All the machine attributes:")
+ print(f"Machine name: {machine.name}")
+ print(f"Timestamp: {machine.timestamp}")
+ print(f"Target: {machine.target[:3]}")
+ print(f"Features: {machine.features[:3]}")
+ print(f"Model: {machine.model}")
+ print(f"Info(): {machine.info()}")
+ print("-----------------")
+
+
+'''
+* Does the __call__ function take in a DataFrame of feature data and
+return a prediction and the probability of the prediction?
+'''
+def test_call(test_db):
+ options = ["Level", "Health", "Energy", "Sanity", "Rarity"]
+ filepath = os.path.join("..", "app", "model.joblib")
+ print(options, filepath)
+ if not os.path.exists(filepath):
+ print("if not")
+ df = test_db.dataframe()
+ machine = Machine(df[options])
+ machine.save(filepath)
+ else:
+ print('else')
+ machine = Machine.open(filepath)
+ print(machine)
+ stats = [round(random_float(1, 250), 2) for _ in range(3)]
+ level = request.values.get("level", type=int) or random_int(1, 20)
+ health = request.values.get("health", type=float) or stats.pop()
+ energy = request.values.get("energy", type=float) or stats.pop()
+ sanity = request.values.get("sanity", type=float) or stats.pop()
+ print(stats, level, health, energy, sanity)
+ print(f"Stats: {stats}")
+ prediction, confidence = machine(DataFrame(
+ [dict(zip(options, (level, health, energy, sanity)))]
+ ))
+ print(f"Prediction {prediction}. Confidence {confidence}")
+ return 'Done'
+
+def test_call2(test_db):
+ df = test_db.dataframe()
+ options = ["Level", "Health", "Energy", "Sanity", "Rarity"]
+ machine = Machine(df[options])
+ level = random_int(1, 20)
+ stats = [round(random_float(1, 250), 2) for _ in range(3)]
+ health = stats.pop()
+ energy = stats.pop()
+ sanity = stats.pop()
+ print(level, health, energy, sanity)
+ prediction, confidence = machine(DataFrame([dict(zip(options, (level, health, energy, sanity)))]))
+ print(prediction, confidence)
+
+# Test function using pytest
+def test_machine_call():
+ # Mock model and its predict method
+ mock_model = Mock()
+ mock_model.predict.return_value = [np.array([1.0])]
+
+ # Create an instance of Machine with the mock model
+ machine = Machine(mock_model)
+
+ # Test input
+ feature_basis = np.array([0.5, 0.4, 0.1])
+
+ # Create a test client and request context
+ with APP.test_request_context('/?level=1'):
+ # Call the instance (tests the __call__ method)
+ prediction = machine(feature_basis)
+
+ # Assert that model.predict was called with the correct argument
+ mock_model.predict.assert_called_once_with([feature_basis])
+
+ # Assert the output is as expected
+ assert np.array_equal(prediction, np.array([1.0]))
+
+
+def test_model():
+ with APP.test_client() as client:
+ # Send a GET request to the route
+ response = client.get('/model?level=1')
+
+ # Check the response data/status code
+ assert response.status_code == 200
+ assert b'Expected response data' in response.data
+
+
+'''
+Does `save()` properly save the machine learning model to the specified
+filepath using joblib?
+'''
+def test_save_model(test_db):
+ machine = test_init(test_db)
+ model_path = os.path.abspath(os.path.join(cwd, '..', 'app', 'model.joblib'))
+ machine.save(model_path)
+
+
+'''
+Does `open()` properly load a saved machine learning model from the
+specified filepath using joblib?
+'''
+def test_open_model(test_db):
+ # Get the current working directory
+ cwd = os.getcwd()
+
+ # Get the absolute path to 'model.joblib'
+ model_path = os.path.abspath(os.path.join(cwd, '..', 'app', 'model.joblib'))
+
+ model = load(model_path)
+ print(model)
+
+ df = test_db.dataframe()
+ machine = Machine(df)
+ print(machine.model)
+
+ assert str(model) == 'RandomForestClassifier(random_state=42)'
+
+
+'''
+Does `info()` return a string with the name of the base model and
+the timestamp of when it was initialized? like this:
+Base Model: Random Forest Classifier
+Timestamp: 2023-09-08 9:29:50 PM
+'''
+def test_info_about_model(test_db):
+ # Are you connected ot the test_db fixture?
+ df = test_db.dataframe()
+ print(df.head(3))
+
+ # Make a Machine object with the dataframe
+ machine = Machine(df=df)
+ print(machine.info())
+
+ assert machine.name == 'Random Forest Classifier'
+
+
+def test_fortuna(test_db):
+ from Fortuna import random_int, random_float
+ stats = [round(random_float(1, 250), 2) for _ in range(3)]
+ print(stats)
+
+
+# def test_requests(test_db):
+# app = create_app()
+# with app.test_request_context('/example?key=value'):
+# options = ["Level", "Health", "Energy", "Sanity", "Rarity"]
+# stats = [round(random_float(1, 250), 2) for _ in range(3)]
+# level = request.values.get("level", type=int) or random_int(1, 20)
+# health = request.values.get("health", type=float) or stats.pop()
+# energy = request.values.get("energy", type=float) or stats.pop()
+# sanity = request.values.get("sanity", type=float) or stats.pop()
+
+
+@pytest.fixture
+def client():
+ APP.config['TESTING'] = True
+ with APP.test_client() as client:
+ yield client
+
+def test_home_page(client):
+ response = client.get('/')
+ print(response.data)
+ #assert response.data == b'Hello, Flask!'
diff --git a/tickets/firstTicket.md b/tickets/firstTicket.md
index 8f84048..855ab21 100644
--- a/tickets/firstTicket.md
+++ b/tickets/firstTicket.md
@@ -32,27 +32,27 @@ Once you have completed all prerequisites, you will need to create a database in
The `main.py` file has a global variable `SPRINT`. You should set this variable to an integer value that represents what sprint you're currently working on. When you first clone the project this is set to 0. This keeps unimplemented features that you haven't encountered yet from causing issues before you're ready for them. Set `SPRINT` to 1 before you begin coding, then increment it as you progress through the Sprints.
### 1. Database Setup
-- [ ] Signup for a MongoDB account: [MongoDB](https://account.mongodb.com)
-- [ ] Create a "Shared Cluster" (free tier)
-- [ ] Add your IP address to the allowed locales list
-- [ ] Copy the connection string into a `.env` file
+- [x] Signup for a MongoDB account: [MongoDB](https://account.mongodb.com)
+- [x] Create a "Shared Cluster" (free tier)
+- [x] Add your IP address to the allowed locales list
+- [x] Copy the connection string into a `.env` file
- `DB_URL=mongodb+srv://:@..mongodb.net`
### 2. Functionality
-- [ ] The seed() function correctly inserts the specified number of documents into the collection.
-- [ ] The reset() function correctly deletes all documents from the collection.
-- [ ] The count() function correctly returns the number of documents in the collection.
-- [ ] The dataframe() function correctly returns a DataFrame containing all documents in the collection.
-- [ ] The html_table() function correctly returns an HTML table representation of the DataFrame, or None if the collection is empty.
+- [x] The seed() function correctly inserts the specified number of documents into the collection.
+- [x] The reset() function correctly deletes all documents from the collection.
+- [x] The count() function correctly returns the number of documents in the collection.
+- [x] The dataframe() function correctly returns a DataFrame containing all documents in the collection.
+- [x] The html_table() function correctly returns an HTML table representation of the DataFrame, or None if the collection is empty.
### 3. Security
-- [ ] The database URL is stored in an environment variable and is not hardcoded into the component.
-- [ ] The TLS certificate authority file is properly configured and used to establish a secure connection to the database.
+- [x] The database URL is stored in an environment variable and is not hardcoded into the component.
+- [?] The TLS certificate authority file is properly configured and used to establish a secure connection to the database.
### 4. Documentation & Style
-- [ ] The code includes docstrings explaining the purpose and behavior of each component.
-- [ ] The code includes no extraneous comments and no inline print statements.
-- [ ] The code follows PEP style guide.
+- [x] The code includes docstrings explaining the purpose and behavior of each component.
+- [x] The code includes no extraneous comments and no inline print statements.
+- [x] The code follows PEP style guide.
#### Example Database Interface: CRUD Operations
```python
diff --git a/tickets/secondTicket.md b/tickets/secondTicket.md
index af44380..0d82130 100644
--- a/tickets/secondTicket.md
+++ b/tickets/secondTicket.md
@@ -31,25 +31,25 @@ Stuck? Post in `labs-ds` or open a support ticket in the Hub!
## Guidance
### A. Notebook Exploration
-- [ ] Create a notebook for visualization experimentation
-- [ ] Create some charts based on the data you generated in Sprint 1
-- [ ] Check the Altair documentation for ideas
+- [x] Create a notebook for visualization experimentation
+- [x] Create some charts based on the data you generated in Sprint 1
+- [x] Check the Altair documentation for ideas
### B. Implement Chart Function
- Starter File: `app/graph.py`
- Suggested Graphing Library: Altair
- Function Signature: `chart(df: DataFrame, x: str, y: str, target: str) -> Chart`
-- [ ] Is the function definition correct, including the correct parameters of a DataFrame, two strings for x and y, and a string for target?
-- [ ] Is the properties dictionary complete, including four keys and their corresponding values for width, height, background, and padding?
-- [ ] Is the Chart object created using the correct syntax and parameters, including the df, title, and mark_circle? Are the correct encodings used for x, y, color, and tooltip? Are the properties and configure dictionaries applied correctly using the correct syntax?
-- [ ] Does the function return the correct object, a Chart?
-- [ ] Does the code follow the PEP style guide?
+- [x] Is the function definition correct, including the correct parameters of a DataFrame, two strings for x and y, and a string for target?
+- [x] Is the properties dictionary complete, including four keys and their corresponding values for width, height, background, and padding?
+- [x] Is the Chart object created using the correct syntax and parameters, including the df, title, and mark_circle? Are the correct encodings used for x, y, color, and tooltip? Are the properties and configure dictionaries applied correctly using the correct syntax?
+- [x] Does the function return the correct object, a Chart?
+- [x] Does the code follow the PEP style guide?
### C. API Graph Integration
-- [ ] Make sure the graph is being serialized correctly using the `.to_json()` method
-- [ ] The display of the graph should be fairly automatic, double check by running the web app locally
-- [ ] Does the graph look good in the context of the Bandersnatch dark web theme?
+- [x] Make sure the graph is being serialized correctly using the `.to_json()` method
+- [x] The display of the graph should be fairly automatic, double check by running the web app locally
+- [x] Does the graph look good in the context of the Bandersnatch dark web theme?
#### Example Chart
```python
diff --git a/tickets/thirdTicket.md b/tickets/thirdTicket.md
index 7b33cad..26d0482 100644
--- a/tickets/thirdTicket.md
+++ b/tickets/thirdTicket.md
@@ -30,18 +30,18 @@ Submit the following in your course:
## Guidance
### A. Notebook Model Training & Tuning
-- [ ] Create a notebook for model testing and tuning
-- [ ] Train and tune at least 3 models using the data generated in an earlier Sprint
-- [ ] Measure the accuracy of the models and report info about your best model
-- [ ] Write a paragraph or two about your best model
+- [x] Create a notebook for model testing and tuning
+- [x] Train and tune at least 3 models using the data generated in an earlier Sprint
+- [x] Measure the accuracy of the models and report info about your best model
+- [x] Write a paragraph or two about your best model
### B. Machine Learning Interface Class
- Starter File: `app/machine`
- Suggested ML Library: Scikit-learn
-- [ ] Does the __init__ function properly initialize the machine learning model and store it as an attribute?
-- [ ] Does the class properly handle and store the target and feature data when initializing the model?
-- [ ] Does the __call__ function take in a DataFrame of feature data and return a prediction and the probability of the prediction?
+- [x] Does the __init__ function properly initialize the machine learning model and store it as an attribute?
+- [x] Does the class properly handle and store the target and feature data when initializing the model?
+- [x] Does the __call__ function take in a DataFrame of feature data and return a prediction and the probability of the prediction?
#### Example Machine Learning Interface
```python
@@ -65,8 +65,8 @@ class Machine:
```
### C. Model Serialization
-- [ ] Does `save()` properly save the machine learning model to the specified filepath using joblib?
-- [ ] Does `open()` properly load a saved machine learning model from the specified filepath using joblib?
+- [x] Does `save()` properly save the machine learning model to the specified filepath using joblib?
+- [x] Does `open()` properly load a saved machine learning model from the specified filepath using joblib?
### D. API Model Integration
-- [ ] Does `info()` return a string with the name of the base model and the timestamp of when it was initialized?
+- [x] Does `info()` return a string with the name of the base model and the timestamp of when it was initialized?