diff --git a/docs/source/api/metasynth.distribution.regex.rst b/docs/source/api/metasynth.distribution.regex.rst
deleted file mode 100644
index 15696efd..00000000
--- a/docs/source/api/metasynth.distribution.regex.rst
+++ /dev/null
@@ -1,37 +0,0 @@
-metasynth.distribution.regex package
-====================================
-
-Submodules
-----------
-
-metasynth.distribution.regex.base module
-----------------------------------------
-
-.. automodule:: metasynth.distribution.regex.base
- :members:
- :undoc-members:
- :show-inheritance:
-
-metasynth.distribution.regex.element module
--------------------------------------------
-
-.. automodule:: metasynth.distribution.regex.element
- :members:
- :undoc-members:
- :show-inheritance:
-
-metasynth.distribution.regex.optimizer module
----------------------------------------------
-
-.. automodule:: metasynth.distribution.regex.optimizer
- :members:
- :undoc-members:
- :show-inheritance:
-
-Module contents
----------------
-
-.. automodule:: metasynth.distribution.regex
- :members:
- :undoc-members:
- :show-inheritance:
diff --git a/docs/source/api/metasynth.distribution.rst b/docs/source/api/metasynth.distribution.rst
index 69b9e2f3..b5b5d567 100644
--- a/docs/source/api/metasynth.distribution.rst
+++ b/docs/source/api/metasynth.distribution.rst
@@ -1,14 +1,6 @@
metasynth.distribution package
==============================
-Subpackages
------------
-
-.. toctree::
- :maxdepth: 4
-
- metasynth.distribution.regex
-
Submodules
----------
@@ -60,6 +52,15 @@ metasynth.distribution.faker module
:undoc-members:
:show-inheritance:
+metasynth.distribution.regex module
+-----------------------------------
+
+.. automodule:: metasynth.distribution.regex
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
+
Module contents
---------------
diff --git a/examples/advanced_tutorial.ipynb b/examples/advanced_tutorial.ipynb
index b9d4fc78..51d850f5 100644
--- a/examples/advanced_tutorial.ipynb
+++ b/examples/advanced_tutorial.ipynb
@@ -12,13 +12,13 @@
},
{
"cell_type": "markdown",
- "source": [
- "## Step 0: Install the metasynth package and import required packages"
- ],
+ "id": "f5c6597b",
"metadata": {
"collapsed": false
},
- "id": "f5c6597b"
+ "source": [
+ "## Step 0: Install the metasynth package and import required packages"
+ ]
},
{
"cell_type": "code",
@@ -105,22 +105,22 @@
{
"cell_type": "code",
"execution_count": null,
- "outputs": [],
- "source": [
- "df.describe()"
- ],
+ "id": "c72c2acb55fca193",
"metadata": {
"collapsed": false
},
- "id": "c72c2acb55fca193"
+ "outputs": [],
+ "source": [
+ "df.describe()"
+ ]
},
{
"cell_type": "markdown",
- "source": [],
+ "id": "5df3f1e974e84da4",
"metadata": {
"collapsed": false
},
- "id": "5df3f1e974e84da4"
+ "source": []
},
{
"cell_type": "markdown",
@@ -162,26 +162,26 @@
},
{
"cell_type": "markdown",
- "source": [
- "Alternatively, we can preview the MetaFrame as it would be output to a file"
- ],
+ "id": "aeb3edae1eedf4b8",
"metadata": {
"collapsed": false
},
- "id": "aeb3edae1eedf4b8"
+ "source": [
+ "Alternatively, we can preview the MetaFrame as it would be output to a file"
+ ]
},
{
"cell_type": "code",
"execution_count": null,
+ "id": "cbb6f59f1d439189",
+ "metadata": {
+ "collapsed": false
+ },
"outputs": [],
"source": [
"json_preview = repr(mf)\n",
"print(json_preview)"
- ],
- "metadata": {
- "collapsed": false
- },
- "id": "cbb6f59f1d439189"
+ ]
},
{
"cell_type": "markdown",
@@ -226,25 +226,25 @@
{
"cell_type": "code",
"execution_count": null,
+ "id": "c5eac7eeb3326f03",
+ "metadata": {
+ "collapsed": false
+ },
"outputs": [],
"source": [
"#load previously exported MetaFrame (.json) file\n",
"mf = MetaFrame.from_json(file_path)"
- ],
- "metadata": {
- "collapsed": false
- },
- "id": "c5eac7eeb3326f03"
+ ]
},
{
"cell_type": "markdown",
- "source": [
- "Once a MetaFrame is loaded, synthetic data can be generated from it. The `synthesize` method takes the number of rows to be generated as parameter and returns a DataFrame with the synthetic data."
- ],
+ "id": "85201666a67a73fd",
"metadata": {
"collapsed": false
},
- "id": "85201666a67a73fd"
+ "source": [
+ "Once a MetaFrame is loaded, synthetic data can be generated from it. The `synthesize` method takes the number of rows to be generated as parameter and returns a DataFrame with the synthetic data."
+ ]
},
{
"cell_type": "code",
@@ -423,7 +423,7 @@
"# To create a regex distribution, you need a list of tuples, where each tuple is an element.\n",
"# The first part of the tuple is a string representation of the regex, while the second is the proportion of the\n",
"# time the regex element is used.\n",
- "cabin_distribution = RegexDistribution(r\"[ABCDEF]\\d{2,3}\") # Add the r so that it becomes a literal string.\n",
+ "cabin_distribution = RegexDistribution(r\"[ABCDEF][0-9]{2,3}\") # Add the r so that it becomes a literal string.\n",
"# just for completeness: data generated from this distribution will always match the regex [ABCDEF]?(\\d{2,3})?\n",
"\n",
"var_spec = {\n",
@@ -519,7 +519,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
- "version": "3.9.10"
+ "version": "3.11.1"
},
"vscode": {
"interpreter": {
diff --git a/examples/getting_started.ipynb b/examples/getting_started.ipynb
index c052c1c3..5a043969 100644
--- a/examples/getting_started.ipynb
+++ b/examples/getting_started.ipynb
@@ -12,14 +12,14 @@
},
{
"cell_type": "markdown",
- "source": [
- "## Step 0: Install the metasynth package and import required packages\n",
- "First, install the metasynth package in your session:"
- ],
+ "id": "f5c6597b",
"metadata": {
"collapsed": false
},
- "id": "f5c6597b"
+ "source": [
+ "## Step 0: Install the metasynth package and import required packages\n",
+ "First, install the metasynth package in your session:"
+ ]
},
{
"cell_type": "code",
@@ -152,26 +152,26 @@
},
{
"cell_type": "markdown",
- "source": [
- "Alternatively, we can preview the MetaFrame as it would be output to a file"
- ],
+ "id": "572128238aa26d67",
"metadata": {
"collapsed": false
},
- "id": "572128238aa26d67"
+ "source": [
+ "Alternatively, we can preview the MetaFrame as it would be output to a file"
+ ]
},
{
"cell_type": "code",
"execution_count": null,
+ "id": "42470906a0d25575",
+ "metadata": {
+ "collapsed": false
+ },
"outputs": [],
"source": [
"json_preview = repr(mf)\n",
"print(json_preview)"
- ],
- "metadata": {
- "collapsed": false
- },
- "id": "42470906a0d25575"
+ ]
},
{
"cell_type": "markdown",
@@ -226,26 +226,26 @@
},
{
"cell_type": "markdown",
- "source": [
- "Once a MetaFrame is loaded, synthetic data can be generated from it. The `synthesize` method takes the number of rows to be generated as parameter and returns a DataFrame with the synthetic data."
- ],
+ "id": "48bc803ba4e76a1c",
"metadata": {
"collapsed": false
},
- "id": "48bc803ba4e76a1c"
+ "source": [
+ "Once a MetaFrame is loaded, synthetic data can be generated from it. The `synthesize` method takes the number of rows to be generated as parameter and returns a DataFrame with the synthetic data."
+ ]
},
{
"cell_type": "code",
"execution_count": null,
+ "id": "4ccf451c",
+ "metadata": {
+ "collapsed": false
+ },
"outputs": [],
"source": [
"# generate synthetic data\n",
"mf.synthesize(5)"
- ],
- "metadata": {
- "collapsed": false
- },
- "id": "4ccf451c"
+ ]
},
{
"cell_type": "markdown",
@@ -275,7 +275,7 @@
" # Manually set a distribution for age \n",
" \"Age\": {\"distribution\": DiscreteUniformDistribution(20, 40)},\n",
" # Manually set a regex distribution for cabin\n",
- " \"Cabin\": {\"distribution\": RegexDistribution(r\"[ABCDEF]\\d{2,3}\")}\n",
+ " \"Cabin\": {\"distribution\": RegexDistribution(r\"[ABCDEF][0-9]{2,3}\")}\n",
"}\n",
"\n",
"# create the high-quality metadata\n",
@@ -313,6 +313,14 @@
"source": [
"syn_df.describe()"
]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "f1e2244c",
+ "metadata": {},
+ "outputs": [],
+ "source": []
}
],
"metadata": {
@@ -331,7 +339,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
- "version": "3.9.10"
+ "version": "3.11.1"
},
"vscode": {
"interpreter": {
diff --git a/examples/titanic.ipynb b/examples/titanic.ipynb
index adae4de7..fe4cec4f 100644
--- a/examples/titanic.ipynb
+++ b/examples/titanic.ipynb
@@ -1,6 +1,7 @@
{
"cells": [
{
+ "attachments": {},
"cell_type": "markdown",
"id": "ff21c5ce",
"metadata": {},
@@ -9,6 +10,7 @@
]
},
{
+ "attachments": {},
"cell_type": "markdown",
"id": "529373c2",
"metadata": {},
@@ -17,6 +19,7 @@
]
},
{
+ "attachments": {},
"cell_type": "markdown",
"id": "388d5eb5",
"metadata": {},
@@ -26,7 +29,7 @@
},
{
"cell_type": "code",
- "execution_count": 1,
+ "execution_count": null,
"id": "9ffe3c40",
"metadata": {},
"outputs": [],
@@ -41,6 +44,7 @@
]
},
{
+ "attachments": {},
"cell_type": "markdown",
"id": "872c6e15",
"metadata": {},
@@ -50,7 +54,7 @@
},
{
"cell_type": "code",
- "execution_count": 2,
+ "execution_count": null,
"id": "46ba6b89",
"metadata": {},
"outputs": [],
@@ -61,6 +65,7 @@
]
},
{
+ "attachments": {},
"cell_type": "markdown",
"id": "8b0ddc0a",
"metadata": {},
@@ -72,7 +77,7 @@
},
{
"cell_type": "code",
- "execution_count": 3,
+ "execution_count": null,
"id": "5e060a1d",
"metadata": {},
"outputs": [],
@@ -91,6 +96,7 @@
]
},
{
+ "attachments": {},
"cell_type": "markdown",
"id": "fa7cd2ce",
"metadata": {},
@@ -100,7 +106,7 @@
},
{
"cell_type": "code",
- "execution_count": 4,
+ "execution_count": null,
"id": "c319763e",
"metadata": {},
"outputs": [],
@@ -109,6 +115,7 @@
]
},
{
+ "attachments": {},
"cell_type": "markdown",
"id": "d7549f77",
"metadata": {},
@@ -120,28 +127,16 @@
},
{
"cell_type": "code",
- "execution_count": 5,
+ "execution_count": null,
"id": "e02c6c59",
"metadata": {},
- "outputs": [
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "/Users/qubix/Documents/work/metasynth/metasynth/metasynth/provider.py:328: UserWarning: \n",
- "Variable PassengerId seems unique, but not set to be unique.\n",
- "Set the variable to be either unique or not unique to remove this warning.\n",
- "\n",
- " warnings.warn(f\"\\nVariable {series.name} seems unique, but not set to be unique.\\n\"\n"
- ]
- }
- ],
+ "outputs": [],
"source": [
- "dataset = MetaFrame.fit_dataframe(df, spec={\"Cabin\": {\"distribution\": \"regex\", \"fit_kwargs\": {\"mode\": \"fast\"}}\n",
- " })"
+ "dataset = MetaFrame.fit_dataframe(df)"
]
},
{
+ "attachments": {},
"cell_type": "markdown",
"id": "a30a428e",
"metadata": {},
@@ -151,269 +146,16 @@
},
{
"cell_type": "code",
- "execution_count": 6,
+ "execution_count": null,
"id": "ef13c521",
"metadata": {},
- "outputs": [
- {
- "data": {
- "text/html": [
- "
\n",
- "\n",
- "
\n",
- " \n",
- " \n",
- " | \n",
- " PassengerId | \n",
- " Survived | \n",
- " Pclass | \n",
- " Name | \n",
- " Sex | \n",
- " Age | \n",
- " SibSp | \n",
- " Parch | \n",
- " Ticket | \n",
- " Fare | \n",
- " Cabin | \n",
- " Embarked | \n",
- "
\n",
- " \n",
- " \n",
- " \n",
- " 0 | \n",
- " 1 | \n",
- " 0 | \n",
- " 3 | \n",
- " Braund, Mr. Owen Harris | \n",
- " male | \n",
- " 22.0 | \n",
- " 1 | \n",
- " 0 | \n",
- " A/5 21171 | \n",
- " 7.2500 | \n",
- " <NA> | \n",
- " S | \n",
- "
\n",
- " \n",
- " 1 | \n",
- " 2 | \n",
- " 1 | \n",
- " 1 | \n",
- " Cumings, Mrs. John Bradley (Florence Briggs Th... | \n",
- " female | \n",
- " 38.0 | \n",
- " 1 | \n",
- " 0 | \n",
- " PC 17599 | \n",
- " 71.2833 | \n",
- " C85 | \n",
- " C | \n",
- "
\n",
- " \n",
- " 2 | \n",
- " 3 | \n",
- " 1 | \n",
- " 3 | \n",
- " Heikkinen, Miss. Laina | \n",
- " female | \n",
- " 26.0 | \n",
- " 0 | \n",
- " 0 | \n",
- " STON/O2. 3101282 | \n",
- " 7.9250 | \n",
- " <NA> | \n",
- " S | \n",
- "
\n",
- " \n",
- " 3 | \n",
- " 4 | \n",
- " 1 | \n",
- " 1 | \n",
- " Futrelle, Mrs. Jacques Heath (Lily May Peel) | \n",
- " female | \n",
- " 35.0 | \n",
- " 1 | \n",
- " 0 | \n",
- " 113803 | \n",
- " 53.1000 | \n",
- " C123 | \n",
- " S | \n",
- "
\n",
- " \n",
- " 4 | \n",
- " 5 | \n",
- " 0 | \n",
- " 3 | \n",
- " Allen, Mr. William Henry | \n",
- " male | \n",
- " 35.0 | \n",
- " 0 | \n",
- " 0 | \n",
- " 373450 | \n",
- " 8.0500 | \n",
- " <NA> | \n",
- " S | \n",
- "
\n",
- " \n",
- " ... | \n",
- " ... | \n",
- " ... | \n",
- " ... | \n",
- " ... | \n",
- " ... | \n",
- " ... | \n",
- " ... | \n",
- " ... | \n",
- " ... | \n",
- " ... | \n",
- " ... | \n",
- " ... | \n",
- "
\n",
- " \n",
- " 886 | \n",
- " 887 | \n",
- " 0 | \n",
- " 2 | \n",
- " Montvila, Rev. Juozas | \n",
- " male | \n",
- " 27.0 | \n",
- " 0 | \n",
- " 0 | \n",
- " 211536 | \n",
- " 13.0000 | \n",
- " <NA> | \n",
- " S | \n",
- "
\n",
- " \n",
- " 887 | \n",
- " 888 | \n",
- " 1 | \n",
- " 1 | \n",
- " Graham, Miss. Margaret Edith | \n",
- " female | \n",
- " 19.0 | \n",
- " 0 | \n",
- " 0 | \n",
- " 112053 | \n",
- " 30.0000 | \n",
- " B42 | \n",
- " S | \n",
- "
\n",
- " \n",
- " 888 | \n",
- " 889 | \n",
- " 0 | \n",
- " 3 | \n",
- " Johnston, Miss. Catherine Helen \"Carrie\" | \n",
- " female | \n",
- " NaN | \n",
- " 1 | \n",
- " 2 | \n",
- " W./C. 6607 | \n",
- " 23.4500 | \n",
- " <NA> | \n",
- " S | \n",
- "
\n",
- " \n",
- " 889 | \n",
- " 890 | \n",
- " 1 | \n",
- " 1 | \n",
- " Behr, Mr. Karl Howell | \n",
- " male | \n",
- " 26.0 | \n",
- " 0 | \n",
- " 0 | \n",
- " 111369 | \n",
- " 30.0000 | \n",
- " C148 | \n",
- " C | \n",
- "
\n",
- " \n",
- " 890 | \n",
- " 891 | \n",
- " 0 | \n",
- " 3 | \n",
- " Dooley, Mr. Patrick | \n",
- " male | \n",
- " 32.0 | \n",
- " 0 | \n",
- " 0 | \n",
- " 370376 | \n",
- " 7.7500 | \n",
- " <NA> | \n",
- " Q | \n",
- "
\n",
- " \n",
- "
\n",
- "
891 rows × 12 columns
\n",
- "
"
- ],
- "text/plain": [
- " PassengerId Survived Pclass \\\n",
- "0 1 0 3 \n",
- "1 2 1 1 \n",
- "2 3 1 3 \n",
- "3 4 1 1 \n",
- "4 5 0 3 \n",
- ".. ... ... ... \n",
- "886 887 0 2 \n",
- "887 888 1 1 \n",
- "888 889 0 3 \n",
- "889 890 1 1 \n",
- "890 891 0 3 \n",
- "\n",
- " Name Sex Age SibSp \\\n",
- "0 Braund, Mr. Owen Harris male 22.0 1 \n",
- "1 Cumings, Mrs. John Bradley (Florence Briggs Th... female 38.0 1 \n",
- "2 Heikkinen, Miss. Laina female 26.0 0 \n",
- "3 Futrelle, Mrs. Jacques Heath (Lily May Peel) female 35.0 1 \n",
- "4 Allen, Mr. William Henry male 35.0 0 \n",
- ".. ... ... ... ... \n",
- "886 Montvila, Rev. Juozas male 27.0 0 \n",
- "887 Graham, Miss. Margaret Edith female 19.0 0 \n",
- "888 Johnston, Miss. Catherine Helen \"Carrie\" female NaN 1 \n",
- "889 Behr, Mr. Karl Howell male 26.0 0 \n",
- "890 Dooley, Mr. Patrick male 32.0 0 \n",
- "\n",
- " Parch Ticket Fare Cabin Embarked \n",
- "0 0 A/5 21171 7.2500 S \n",
- "1 0 PC 17599 71.2833 C85 C \n",
- "2 0 STON/O2. 3101282 7.9250 S \n",
- "3 0 113803 53.1000 C123 S \n",
- "4 0 373450 8.0500 S \n",
- ".. ... ... ... ... ... \n",
- "886 0 211536 13.0000 S \n",
- "887 0 112053 30.0000 B42 S \n",
- "888 2 W./C. 6607 23.4500 S \n",
- "889 0 111369 30.0000 C148 C \n",
- "890 0 370376 7.7500 Q \n",
- "\n",
- "[891 rows x 12 columns]"
- ]
- },
- "execution_count": 6,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
+ "outputs": [],
"source": [
"df"
]
},
{
+ "attachments": {},
"cell_type": "markdown",
"id": "bf1a4329",
"metadata": {},
@@ -423,88 +165,16 @@
},
{
"cell_type": "code",
- "execution_count": 7,
+ "execution_count": null,
"id": "8ef27824",
"metadata": {},
- "outputs": [
- {
- "data": {
- "text/html": [
- "\n",
- "
shape: (1000, 12)PassengerId | Survived | Pclass | Name | Sex | Age | SibSp | Parch | Ticket | Fare | Cabin | Embarked |
---|
i64 | cat | cat | str | cat | f64 | cat | cat | str | f64 | str | cat |
798 | "0" | "1" | "[+{7:w_Itx@?K`… | "male" | 17.16656 | "0" | "1" | "803MAP1r;U=q" | 53.209594 | null | "S" |
297 | "0" | "3" | "s|HsmV!@l<y,Ze… | "male" | 24.613672 | "2" | "0" | "69/6\u000b",
- "" | 9.375509 | null | "S" |
640 | "1" | "3" | "Ee+#^fWeI*E$LG… | "male" | 20.442548 | "0" | "2" | "KZVVI2a91" )\u000b",
- "D… | 25.982487 | null | "C" |
621 | "1" | "3" | "|WyU5`!<T>%Fku… | "male" | null | "4" | "0" | "7/0 G\n",
- "V>\f",
- "j}5" | 5.386035 | null | "Q" |
458 | "0" | "3" | "C'T]er%0\\MfUh0… | "male" | 16.009053 | "0" | "0" | "/8 4K=" | 18.531972 | null | "S" |
505 | "0" | "3" | "(/>8[T"P\\zvLa … | "male" | 53.579375 | "1" | "0" | "6EIVF162;a\n",
- "" | 0.843087 | "D3(]I6&"$Z}" | "S" |
884 | "0" | "3" | "~p\f",
- "^c-6^"r|b@O… | "male" | null | "0" | "1" | "7. o-t\r",
- "S\t@y" | 56.420883 | "T?$z{{U]#3C!\r",
- "}… | "S" |
835 | "1" | "1" | "*J5 \\-w=2!(l1L… | "male" | null | "0" | "0" | "a720`3" | 58.159327 | null | "C" |
331 | "0" | "3" | "Q2$A,0(!W)?L#a… | "male" | null | "0" | "0" | "LVN9521hM:,{*)… | 36.759586 | null | "S" |
779 | "0" | "1" | "Qhd7\n",
- "Uec}Uri,z… | "female" | 36.511969 | "1" | "1" | "1./5X" | 14.283372 | null | "S" |
875 | "1" | "3" | "5vv]qz^Nqjn,>h… | "male" | 36.296695 | "1" | "0" | "4 966{&DxM}T" | 27.3266 | null | "S" |
248 | "1" | "3" | "?\\RD(r@\tbNu\r",
- ">\f",
- "… | "female" | 53.227981 | "0" | "0" | "89Z 0HDY(" | 7.190135 | null | "S" |
… | … | … | … | … | … | … | … | … | … | … | … |
613 | "0" | "2" | "r2k*ck# 2OwTU\t… | "female" | 37.969463 | "0" | "0" | "3779XQ)" | 22.816162 | "De*e,]x0~h>^H\f",
- "… | "S" |
868 | "1" | "2" | ");LCA"085y"\n",
- "Mp… | "male" | 39.765733 | "0" | "0" | "a 9:" | 45.927779 | null | "S" |
503 | "0" | "1" | ":+|3\r",
- "?PSFPYPFS… | "female" | 36.418579 | "3" | "2" | "/190e\\{S" | 50.865044 | null | "S" |
300 | "1" | "3" | "\n",
- "b8l @AqJ~=`w… | "female" | 5.713439 | "1" | "0" | "V/a850'/NR7" | 9.828171 | null | "S" |
118 | "0" | "1" | "[iq"M7Tjo*7q}~… | "female" | 23.881801 | "0" | "2" | ". 05RSKp4m" | 3.224306 | null | "S" |
142 | "0" | "2" | "vNe{@Pl57Q#FQ~… | "male" | null | "0" | "1" | "a134Lk=L|\u000b",
- "0" | 0.876164 | null | "S" |
451 | "0" | "3" | "tP:S}"ElIMm3oC… | "female" | 24.661045 | "1" | "0" | "3MPK558|QWUS=H… | 7.209182 | null | "S" |
516 | "0" | "1" | "LgNq\tkr55~$FQ$… | "female" | null | "1" | "0" | "..92\\I" | 16.236534 | null | "C" |
778 | "0" | "2" | "!U?w\tTbGLVfnNp… | "male" | null | "4" | "0" | "FIEM342 fgP&Gs… | 19.876701 | null | "S" |
570 | "1" | "2" | "N_P1QAm@x3|Udt… | "female" | 17.700218 | "0" | "0" | ".002HbE0@IK" | 1.871776 | null | "S" |
595 | "0" | "2" | "+jy@]Ji})6V*kn… | "male" | 18.002781 | "0" | "0" | "8.0.P4" | 11.329467 | null | "S" |
516 | "1" | "2" | "qYxYi0uf82E:%(… | "male" | 16.181177 | "0" | "1" | "4170n " | 44.620439 | null | "S" |
"
- ],
- "text/plain": [
- "shape: (1_000, 12)\n",
- "┌─────────────┬──────────┬────────┬──────────────┬───┬──────────────┬───────────┬───────┬──────────┐\n",
- "│ PassengerId ┆ Survived ┆ Pclass ┆ Name ┆ … ┆ Ticket ┆ Fare ┆ Cabin ┆ Embarked │\n",
- "│ --- ┆ --- ┆ --- ┆ --- ┆ ┆ --- ┆ --- ┆ --- ┆ --- │\n",
- "│ i64 ┆ cat ┆ cat ┆ str ┆ ┆ str ┆ f64 ┆ str ┆ cat │\n",
- "╞═════════════╪══════════╪════════╪══════════════╪═══╪══════════════╪═══════════╪═══════╪══════════╡\n",
- "│ 798 ┆ 0 ┆ 1 ┆ [+{7:w_Itx@? ┆ … ┆ 803MAP1r;U=q ┆ 53.209594 ┆ null ┆ S │\n",
- "│ ┆ ┆ ┆ K`|0A\n",
- "rB/;.C ┆ ┆ ┆ ┆ ┆ │\n",
- "│ ┆ ┆ ┆ Q|`C, ┆ ┆ ┆ ┆ ┆ │\n",
- "│ 297 ┆ 0 ┆ 3 ┆ s|HsmV!@l%F ┆ … ┆ 7/0 G ┆ 5.386035 ┆ null ┆ Q │\n",
- "│ ┆ ┆ ┆ ku{C $~M*j ┆ ┆ V>\n",
- "j}5 ┆ ┆ ┆ │\n",
- "│ ┆ ┆ ┆ X\n",
- "V(xz%-g… ┆ ┆ ┆ ┆ ┆ │\n",
- "│ … ┆ … ┆ … ┆ … ┆ … ┆ … ┆ … ┆ … ┆ … │\n",
- "│ 778 ┆ 0 ┆ 2 ┆ !U?w\tTbGLVfn ┆ … ┆ FIEM342 ┆ 19.876701 ┆ null ┆ S │\n",
- "│ ┆ ┆ ┆ NpLnm6?V\n",
- "&a( ┆ ┆ fgP&Gs ┆ ┆ ┆ │\n",
- "│ ┆ ┆ ┆ \"hK\\TUAb ┆ ┆ ┆ ┆ ┆ │\n",
- "│ 570 ┆ 1 ┆ 2 ┆ N_P1QAm@x3|U ┆ … ┆ .002HbE0@IK ┆ 1.871776 ┆ null ┆ S │\n",
- "│ ┆ ┆ ┆ dt'Bm_|,b`\n",
- "v ┆ ┆ ┆ ┆ ┆ │\n",
- "│ ┆ ┆ ┆ P$oW8;g ┆ ┆ ┆ ┆ ┆ │\n",
- "│ ┆ ┆ ┆ … ┆ ┆ ┆ ┆ ┆ │\n",
- "│ 595 ┆ 0 ┆ 2 ┆ +jy@]Ji})6V* ┆ … ┆ 8.0.P4 ┆ 11.329467 ┆ null ┆ S │\n",
- "│ ┆ ┆ ┆ knUq ┆ ┆ ┆ ┆ ┆ │\n",
- "│ 516 ┆ 1 ┆ 2 ┆ qYxYi0uf82E: ┆ … ┆ 4170n ┆ 44.620439 ┆ null ┆ S │\n",
- "│ ┆ ┆ ┆ %(g)zLc\"\tN ┆ ┆ ┆ ┆ ┆ │\n",
- "└─────────────┴──────────┴────────┴──────────────┴───┴──────────────┴───────────┴───────┴──────────┘"
- ]
- },
- "execution_count": 7,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
+ "outputs": [],
"source": [
"dataset.synthesize(1000)"
]
},
{
+ "attachments": {},
"cell_type": "markdown",
"id": "c8653894",
"metadata": {},
@@ -516,7 +186,7 @@
},
{
"cell_type": "code",
- "execution_count": 8,
+ "execution_count": null,
"id": "d6c88091",
"metadata": {},
"outputs": [],
@@ -525,6 +195,7 @@
]
},
{
+ "attachments": {},
"cell_type": "markdown",
"id": "4182930b",
"metadata": {},
@@ -534,49 +205,16 @@
},
{
"cell_type": "code",
- "execution_count": 9,
+ "execution_count": null,
"id": "22863b6b",
"metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "# Rows: 891\n",
- "# Columns: 12\n",
- "\n",
- "{'name': 'PassengerId', 'description': None, 'type': 'discrete', 'dtype': 'Int64', 'prop_missing': 0.0, 'distribution': \"{'implements': 'core.discrete_uniform', 'provenance': 'builtin', 'class_name': 'DiscreteUniformDistribution', 'parameters': {'low': 1, 'high': 892}}\"}\n",
- "\n",
- "{'name': 'Survived', 'description': None, 'type': 'categorical', 'dtype': 'Categorical', 'prop_missing': 0.0, 'distribution': \"{'implements': 'core.multinoulli', 'provenance': 'builtin', 'class_name': 'MultinoulliDistribution', 'parameters': {'labels': ['0', '1'], 'probs': [0.6161616161616161, 0.3838383838383838]}}\"}\n",
- "\n",
- "{'name': 'Pclass', 'description': None, 'type': 'categorical', 'dtype': 'Categorical', 'prop_missing': 0.0, 'distribution': \"{'implements': 'core.multinoulli', 'provenance': 'builtin', 'class_name': 'MultinoulliDistribution', 'parameters': {'labels': ['1', '2', '3'], 'probs': [0.24242424242424243, 0.20650953984287318, 0.5510662177328844]}}\"}\n",
- "\n",
- "{'name': 'Name', 'description': None, 'type': 'string', 'dtype': 'Utf8', 'prop_missing': 0.0, 'distribution': '.[]{12,82}'}\n",
- "\n",
- "{'name': 'Sex', 'description': None, 'type': 'categorical', 'dtype': 'Categorical', 'prop_missing': 0.0, 'distribution': \"{'implements': 'core.multinoulli', 'provenance': 'builtin', 'class_name': 'MultinoulliDistribution', 'parameters': {'labels': ['female', 'male'], 'probs': [0.35241301907968575, 0.6475869809203143]}}\"}\n",
- "\n",
- "{'name': 'Age', 'description': None, 'type': 'continuous', 'dtype': 'Float64', 'prop_missing': 0.19865319865319866, 'distribution': \"{'implements': 'core.truncated_normal', 'provenance': 'builtin', 'class_name': 'TruncatedNormalDistribution', 'parameters': {'lower_bound': 0.41999999, 'upper_bound': 80.00000001, 'mu': 28.286441105482094, 'sigma': 15.964614689648158}}\"}\n",
- "\n",
- "{'name': 'SibSp', 'description': None, 'type': 'categorical', 'dtype': 'Categorical', 'prop_missing': 0.0, 'distribution': \"{'implements': 'core.multinoulli', 'provenance': 'builtin', 'class_name': 'MultinoulliDistribution', 'parameters': {'labels': ['0', '1', '2', '3', '4', '5', '8'], 'probs': array([0.68237935, 0.2345679 , 0.03142536, 0.01795735, 0.02020202,\\n 0.00561167, 0.00785634])}}\"}\n",
- "\n",
- "{'name': 'Parch', 'description': None, 'type': 'categorical', 'dtype': 'Categorical', 'prop_missing': 0.0, 'distribution': \"{'implements': 'core.multinoulli', 'provenance': 'builtin', 'class_name': 'MultinoulliDistribution', 'parameters': {'labels': ['0', '1', '2', '3', '4', '5', '6'], 'probs': array([0.76094276, 0.13243547, 0.08978676, 0.00561167, 0.00448934,\\n 0.00561167, 0.00112233])}}\"}\n",
- "\n",
- "{'name': 'Ticket', 'description': None, 'type': 'string', 'dtype': 'Utf8', 'prop_missing': 0.0, 'distribution': '[A-Z]{1,5}[ ./123456789a][A-Z]{1,5}[ ./0123456789a][A-Z]{1,1}[a-z]{3,4}[ ./0123456789][A-Z]{1,5}[ .0123456789].[]{1,8}'}\n",
- "\n",
- "{'name': 'Fare', 'description': None, 'type': 'continuous', 'dtype': 'Float64', 'prop_missing': 0.0, 'distribution': \"{'implements': 'core.exponential', 'provenance': 'builtin', 'class_name': 'ExponentialDistribution', 'parameters': {'rate': 0.03052908440177665}}\"}\n",
- "\n",
- "{'name': 'Cabin', 'description': None, 'type': 'string', 'dtype': 'Utf8', 'prop_missing': 0.7710437710437711, 'distribution': '[ABCDEFGT].[]{1,14}'}\n",
- "\n",
- "{'name': 'Embarked', 'description': None, 'type': 'categorical', 'dtype': 'Categorical', 'prop_missing': 0.002244668911335578, 'distribution': \"{'implements': 'core.multinoulli', 'provenance': 'builtin', 'class_name': 'MultinoulliDistribution', 'parameters': {'labels': ['C', 'Q', 'S'], 'probs': [0.1889763779527559, 0.08661417322834646, 0.7244094488188977]}}\"}\n",
- "\n"
- ]
- }
- ],
+ "outputs": [],
"source": [
"print(MetaFrame.from_json(\"test.json\"))"
]
},
{
+ "attachments": {},
"cell_type": "markdown",
"id": "26e6ac69",
"metadata": {},
@@ -586,144 +224,12 @@
},
{
"cell_type": "code",
- "execution_count": 10,
+ "execution_count": null,
"id": "d76c6882",
"metadata": {
"scrolled": false
},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "{'n_rows': 891,\n",
- " 'n_columns': 12,\n",
- " 'provenance': {'created by': {'name': 'MetaSynth',\n",
- " 'version': '0.2.3.dev14+g19376b6.d20230418'},\n",
- " 'creation time': '2023-04-18T20:05:02.107155'},\n",
- " 'vars': [{'name': 'PassengerId',\n",
- " 'type': 'discrete',\n",
- " 'dtype': 'Int64',\n",
- " 'prop_missing': 0.0,\n",
- " 'distribution': {'implements': 'core.discrete_uniform',\n",
- " 'provenance': 'builtin',\n",
- " 'class_name': 'DiscreteUniformDistribution',\n",
- " 'parameters': {'low': 1, 'high': 892}}},\n",
- " {'name': 'Survived',\n",
- " 'type': 'categorical',\n",
- " 'dtype': 'Categorical',\n",
- " 'prop_missing': 0.0,\n",
- " 'distribution': {'implements': 'core.multinoulli',\n",
- " 'provenance': 'builtin',\n",
- " 'class_name': 'MultinoulliDistribution',\n",
- " 'parameters': {'labels': array(['0', '1'], dtype=' Path:
dframe["all_NA"] = [pd.NA for _ in range(len(dframe))]
# Remove some columns for brevity and write to a file.
- dframe = dframe.drop(["SibSp", "Pclass", "Ticket", "Survived"], axis=1)
+ dframe = dframe.drop(["SibSp", "Pclass", "Survived"], axis=1)
dframe.to_csv(output_fp, index=False)
return output_fp
diff --git a/metasynth/demo/demo_titanic.csv b/metasynth/demo/demo_titanic.csv
index e3fb9159..5bbed7da 100644
--- a/metasynth/demo/demo_titanic.csv
+++ b/metasynth/demo/demo_titanic.csv
@@ -1,892 +1,892 @@
-PassengerId,Name,Sex,Age,Parch,Fare,Cabin,Embarked,Birthday,Board time,Married since,all_NA
-1,"Braund, Mr. Owen Harris",male,22,0,7.25,,S,1937-10-28,15:53:04,2022-08-05 04:43:34,
-2,"Cumings, Mrs. John Bradley (Florence Briggs Thayer)",female,38,0,71.2833,C85,C,,12:26:00,2022-08-07 01:56:33,
-3,"Heikkinen, Miss. Laina",female,26,0,7.925,,S,1931-09-24,16:08:25,2022-08-04 20:27:37,
-4,"Futrelle, Mrs. Jacques Heath (Lily May Peel)",female,35,0,53.1,C123,S,1936-11-30,,2022-08-07 07:05:55,
-5,"Allen, Mr. William Henry",male,35,0,8.05,,S,1918-11-07,10:59:08,2022-08-02 15:13:34,
-6,"Moran, Mr. James",male,,0,8.4583,,Q,1923-06-02,16:28:33,2022-07-28 14:37:30,
-7,"McCarthy, Mr. Timothy J",male,54,0,51.8625,E46,S,1928-07-02,17:20:04,2022-07-18 20:20:09,
-8,"Palsson, Master. Gosta Leonard",male,2,1,21.075,,S,1918-03-12,17:56:40,2022-08-02 03:42:58,
-9,"Johnson, Mrs. Oscar W (Elisabeth Vilhelmina Berg)",female,27,2,11.1333,,S,1909-11-16,16:33:50,2022-08-07 04:06:24,
-10,"Nasser, Mrs. Nicholas (Adele Achem)",female,14,0,30.0708,,C,,17:28:21,2022-07-17 22:55:10,
-11,"Sandstrom, Miss. Marguerite Rut",female,4,1,16.7,G6,S,1903-10-30,16:41:34,2022-07-24 19:18:18,
-12,"Bonnell, Miss. Elizabeth",female,58,0,26.55,C103,S,1938-12-31,17:32:25,2022-07-23 03:46:49,
-13,"Saundercock, Mr. William Henry",male,20,0,8.05,,S,1932-05-01,11:09:30,2022-07-27 10:47:33,
-14,"Andersson, Mr. Anders Johan",male,39,5,31.275,,S,1933-03-06,14:16:15,2022-08-04 18:49:36,
-15,"Vestrom, Miss. Hulda Amanda Adolfina",female,14,0,7.8542,,S,1908-05-26,18:36:24,2022-08-10 22:17:32,
-16,"Hewlett, Mrs. (Mary D Kingcome) ",female,55,0,16.0,,S,1906-05-01,17:46:34,,
-17,"Rice, Master. Eugene",male,2,1,29.125,,Q,1909-05-19,15:39:25,2022-08-06 22:46:12,
-18,"Williams, Mr. Charles Eugene",male,,0,13.0,,S,1916-12-15,15:00:45,2022-07-24 10:54:46,
-19,"Vander Planke, Mrs. Julius (Emelia Maria Vandemoortele)",female,31,0,18.0,,S,1938-02-27,17:27:11,2022-08-15 03:39:59,
-20,"Masselmani, Mrs. Fatima",female,,0,7.225,,C,1921-08-01,13:01:05,2022-08-09 03:06:51,
-21,"Fynney, Mr. Joseph J",male,35,0,26.0,,S,1920-09-17,12:11:48,2022-07-31 12:30:35,
-22,"Beesley, Mr. Lawrence",male,34,0,13.0,D56,S,1928-09-03,18:30:54,2022-07-15 12:58:08,
-23,"McGowan, Miss. Anna ""Annie""",female,15,0,8.0292,,Q,1939-03-28,14:10:42,,
-24,"Sloper, Mr. William Thompson",male,28,0,35.5,A6,S,1926-03-20,12:19:12,2022-07-25 06:31:32,
-25,"Palsson, Miss. Torborg Danira",female,8,1,21.075,,S,1938-06-17,,2022-07-25 00:25:51,
-26,"Asplund, Mrs. Carl Oscar (Selma Augusta Emilia Johansson)",female,38,5,31.3875,,S,,18:15:57,2022-08-10 05:31:28,
-27,"Emir, Mr. Farred Chehab",male,,0,7.225,,C,1921-12-24,,2022-08-09 15:16:19,
-28,"Fortune, Mr. Charles Alexander",male,19,2,263.0,C23 C25 C27,S,1934-06-08,11:47:08,2022-07-22 07:34:41,
-29,"O'Dwyer, Miss. Ellen ""Nellie""",female,,0,7.8792,,Q,1938-03-20,,2022-07-17 12:20:31,
-30,"Todoroff, Mr. Lalio",male,,0,7.8958,,S,1928-02-07,11:06:55,2022-07-17 11:29:11,
-31,"Uruchurtu, Don. Manuel E",male,40,0,27.7208,,C,,11:18:08,2022-08-01 09:00:50,
-32,"Spencer, Mrs. William Augustus (Marie Eugenie)",female,,0,146.5208,B78,C,1904-05-23,17:38:32,2022-08-12 00:23:17,
-33,"Glynn, Miss. Mary Agatha",female,,0,7.75,,Q,1939-10-03,15:15:06,2022-07-26 20:12:13,
-34,"Wheadon, Mr. Edward H",male,66,0,10.5,,S,1907-10-10,18:15:37,2022-07-16 14:14:18,
-35,"Meyer, Mr. Edgar Joseph",male,28,0,82.1708,,C,1919-08-24,15:49:03,2022-07-19 00:44:15,
-36,"Holverson, Mr. Alexander Oskar",male,42,0,52.0,,S,1939-05-24,17:33:36,2022-08-12 14:24:05,
-37,"Mamee, Mr. Hanna",male,,0,7.2292,,C,1917-04-14,17:14:57,2022-08-08 22:40:30,
-38,"Cann, Mr. Ernest Charles",male,21,0,8.05,,S,1934-11-16,11:51:09,2022-08-03 22:37:37,
-39,"Vander Planke, Miss. Augusta Maria",female,18,0,18.0,,S,1914-04-19,15:05:30,2022-08-14 13:54:54,
-40,"Nicola-Yarred, Miss. Jamila",female,14,0,11.2417,,C,1927-09-20,14:07:06,2022-07-18 02:10:45,
-41,"Ahlin, Mrs. Johan (Johanna Persdotter Larsson)",female,40,0,9.475,,S,1907-08-06,15:09:05,,
-42,"Turpin, Mrs. William John Robert (Dorothy Ann Wonnacott)",female,27,0,21.0,,S,1909-04-06,18:17:30,2022-08-11 18:57:36,
-43,"Kraeff, Mr. Theodor",male,,0,7.8958,,C,1929-01-19,,2022-07-30 02:04:47,
-44,"Laroche, Miss. Simonne Marie Anne Andree",female,3,2,41.5792,,C,1939-01-23,,2022-07-25 17:40:43,
-45,"Devaney, Miss. Margaret Delia",female,19,0,7.8792,,Q,1910-09-23,18:36:50,2022-07-16 21:31:16,
-46,"Rogers, Mr. William John",male,,0,8.05,,S,1913-06-12,10:48:51,2022-08-01 00:12:07,
-47,"Lennon, Mr. Denis",male,,0,15.5,,Q,1908-08-05,13:24:32,2022-07-19 06:11:27,
-48,"O'Driscoll, Miss. Bridget",female,,0,7.75,,Q,,16:00:34,2022-07-27 09:24:55,
-49,"Samaan, Mr. Youssef",male,,0,21.6792,,C,1920-09-13,,2022-07-19 15:04:12,
-50,"Arnold-Franchi, Mrs. Josef (Josefine Franchi)",female,18,0,17.8,,S,1907-07-30,13:47:45,2022-08-02 04:21:34,
-51,"Panula, Master. Juha Niilo",male,7,1,39.6875,,S,1923-04-26,14:59:39,2022-07-21 06:35:49,
-52,"Nosworthy, Mr. Richard Cater",male,21,0,7.8,,S,,18:15:31,2022-08-09 08:14:03,
-53,"Harper, Mrs. Henry Sleeper (Myna Haxtun)",female,49,0,76.7292,D33,C,1929-11-03,,2022-08-14 16:38:12,
-54,"Faunthorpe, Mrs. Lizzie (Elizabeth Anne Wilkinson)",female,29,0,26.0,,S,1930-11-19,,2022-08-04 07:10:22,
-55,"Ostby, Mr. Engelhart Cornelius",male,65,1,61.9792,B30,C,1919-04-01,12:29:33,2022-08-13 13:54:25,
-56,"Woolner, Mr. Hugh",male,,0,35.5,C52,S,1905-08-28,18:06:13,2022-08-04 18:15:31,
-57,"Rugg, Miss. Emily",female,21,0,10.5,,S,1905-04-01,10:40:18,2022-07-23 20:19:47,
-58,"Novel, Mr. Mansouer",male,28,0,7.2292,,C,,,2022-07-21 05:22:04,
-59,"West, Miss. Constance Mirium",female,5,2,27.75,,S,1907-07-04,12:45:12,2022-07-22 14:30:14,
-60,"Goodwin, Master. William Frederick",male,11,2,46.9,,S,1910-12-18,15:39:59,2022-07-26 03:24:34,
-61,"Sirayanian, Mr. Orsen",male,22,0,7.2292,,C,1923-11-01,13:27:13,2022-07-23 20:39:22,
-62,"Icard, Miss. Amelie",female,38,0,80.0,B28,,1918-11-02,11:37:34,2022-07-29 05:50:51,
-63,"Harris, Mr. Henry Birkhardt",male,45,0,83.475,C83,S,1939-04-18,13:08:10,2022-08-08 21:01:36,
-64,"Skoog, Master. Harald",male,4,2,27.9,,S,1922-12-21,16:39:09,2022-08-03 20:21:38,
-65,"Stewart, Mr. Albert A",male,,0,27.7208,,C,1913-02-11,11:48:25,2022-07-23 13:46:04,
-66,"Moubarek, Master. Gerios",male,,1,15.2458,,C,,11:20:44,2022-07-16 04:33:36,
-67,"Nye, Mrs. (Elizabeth Ramell)",female,29,0,10.5,F33,S,1912-03-27,14:31:49,2022-07-31 10:35:43,
-68,"Crease, Mr. Ernest James",male,19,0,8.1583,,S,1904-11-07,13:24:11,2022-07-21 01:10:14,
-69,"Andersson, Miss. Erna Alexandra",female,17,2,7.925,,S,1938-08-02,12:15:38,2022-07-26 13:20:55,
-70,"Kink, Mr. Vincenz",male,26,0,8.6625,,S,1939-05-29,,2022-07-23 11:39:22,
-71,"Jenkin, Mr. Stephen Curnow",male,32,0,10.5,,S,1918-12-28,14:40:44,2022-08-15 09:36:35,
-72,"Goodwin, Miss. Lillian Amy",female,16,2,46.9,,S,1927-04-25,14:11:50,2022-07-27 15:43:59,
-73,"Hood, Mr. Ambrose Jr",male,21,0,73.5,,S,1917-12-20,11:50:14,2022-08-08 03:54:50,
-74,"Chronopoulos, Mr. Apostolos",male,26,0,14.4542,,C,1927-01-27,11:35:57,,
-75,"Bing, Mr. Lee",male,32,0,56.4958,,S,1913-03-03,14:24:40,2022-07-19 11:26:13,
-76,"Moen, Mr. Sigurd Hansen",male,25,0,7.65,F G73,S,1930-05-05,,2022-07-29 15:38:10,
-77,"Staneff, Mr. Ivan",male,,0,7.8958,,S,1930-11-08,15:39:49,2022-07-18 07:39:55,
-78,"Moutal, Mr. Rahamin Haim",male,,0,8.05,,S,1938-01-25,15:50:46,2022-07-26 11:25:26,
-79,"Caldwell, Master. Alden Gates",male,1,2,29.0,,S,1922-06-09,15:00:24,2022-08-05 22:45:56,
-80,"Dowdell, Miss. Elizabeth",female,30,0,12.475,,S,1913-04-10,18:38:14,2022-08-10 02:27:56,
-81,"Waelens, Mr. Achille",male,22,0,9.0,,S,1925-07-10,15:40:23,,
-82,"Sheerlinck, Mr. Jan Baptist",male,29,0,9.5,,S,1917-04-21,11:31:25,2022-08-15 09:31:02,
-83,"McDermott, Miss. Brigdet Delia",female,,0,7.7875,,Q,1923-08-06,,2022-07-31 12:54:26,
-84,"Carrau, Mr. Francisco M",male,28,0,47.1,,S,1918-03-28,10:55:34,,
-85,"Ilett, Miss. Bertha",female,17,0,10.5,,S,1913-02-25,16:23:05,,
-86,"Backstrom, Mrs. Karl Alfred (Maria Mathilda Gustafsson)",female,33,0,15.85,,S,1908-12-25,14:02:29,2022-08-10 17:00:53,
-87,"Ford, Mr. William Neal",male,16,3,34.375,,S,1909-03-12,11:39:17,2022-08-10 17:51:51,
-88,"Slocovski, Mr. Selman Francis",male,,0,8.05,,S,1905-08-24,15:29:07,2022-07-22 07:59:40,
-89,"Fortune, Miss. Mabel Helen",female,23,2,263.0,C23 C25 C27,S,1937-06-27,11:33:48,2022-07-26 00:04:03,
-90,"Celotti, Mr. Francesco",male,24,0,8.05,,S,1908-04-29,16:39:25,2022-08-11 20:14:00,
-91,"Christmann, Mr. Emil",male,29,0,8.05,,S,1922-03-26,11:00:57,2022-07-23 20:48:59,
-92,"Andreasson, Mr. Paul Edvin",male,20,0,7.8542,,S,1907-09-26,12:23:54,2022-08-13 01:59:15,
-93,"Chaffee, Mr. Herbert Fuller",male,46,0,61.175,E31,S,1910-11-23,11:14:21,2022-07-24 11:37:37,
-94,"Dean, Mr. Bertram Frank",male,26,2,20.575,,S,1917-04-18,14:53:19,2022-07-21 03:24:15,
-95,"Coxon, Mr. Daniel",male,59,0,7.25,,S,,13:40:37,2022-08-12 01:16:53,
-96,"Shorney, Mr. Charles Joseph",male,,0,8.05,,S,,,2022-08-03 04:01:43,
-97,"Goldschmidt, Mr. George B",male,71,0,34.6542,A5,C,1939-11-11,16:19:26,,
-98,"Greenfield, Mr. William Bertram",male,23,1,63.3583,D10 D12,C,1906-08-03,17:40:23,,
-99,"Doling, Mrs. John T (Ada Julia Bone)",female,34,1,23.0,,S,1908-02-23,16:28:52,,
-100,"Kantor, Mr. Sinai",male,34,0,26.0,,S,1905-09-14,15:34:05,2022-08-13 05:05:35,
-101,"Petranec, Miss. Matilda",female,28,0,7.8958,,S,1929-09-06,12:02:26,2022-07-31 01:58:29,
-102,"Petroff, Mr. Pastcho (""Pentcho"")",male,,0,7.8958,,S,1920-09-25,13:08:52,2022-07-22 20:59:45,
-103,"White, Mr. Richard Frasar",male,21,1,77.2875,D26,S,1921-11-20,17:15:55,2022-08-01 09:52:31,
-104,"Johansson, Mr. Gustaf Joel",male,33,0,8.6542,,S,1937-06-22,16:18:02,2022-07-29 21:07:32,
-105,"Gustafsson, Mr. Anders Vilhelm",male,37,0,7.925,,S,1922-08-09,11:52:27,2022-07-31 05:03:11,
-106,"Mionoff, Mr. Stoytcho",male,28,0,7.8958,,S,1930-06-29,14:21:59,2022-08-14 16:24:06,
-107,"Salkjelsvik, Miss. Anna Kristine",female,21,0,7.65,,S,1928-10-06,12:32:52,2022-07-27 09:47:09,
-108,"Moss, Mr. Albert Johan",male,,0,7.775,,S,1931-03-10,12:29:12,2022-08-12 17:24:54,
-109,"Rekic, Mr. Tido",male,38,0,7.8958,,S,1910-05-05,17:54:22,2022-07-20 05:48:15,
-110,"Moran, Miss. Bertha",female,,0,24.15,,Q,,11:48:14,,
-111,"Porter, Mr. Walter Chamberlain",male,47,0,52.0,C110,S,1930-05-26,17:20:23,2022-07-18 23:40:33,
-112,"Zabour, Miss. Hileni",female,14,0,14.4542,,C,1909-04-06,12:23:47,2022-07-17 06:28:46,
-113,"Barton, Mr. David John",male,22,0,8.05,,S,1930-08-21,11:56:46,,
-114,"Jussila, Miss. Katriina",female,20,0,9.825,,S,1910-05-13,14:21:00,2022-08-03 05:57:39,
-115,"Attalah, Miss. Malake",female,17,0,14.4583,,C,1929-06-15,16:51:29,2022-08-03 02:47:38,
-116,"Pekoniemi, Mr. Edvard",male,21,0,7.925,,S,1903-12-14,12:24:40,2022-08-14 09:47:45,
-117,"Connors, Mr. Patrick",male,70,0,7.75,,Q,,12:33:08,2022-07-16 03:21:18,
-118,"Turpin, Mr. William John Robert",male,29,0,21.0,,S,,14:01:44,2022-08-03 02:13:37,
-119,"Baxter, Mr. Quigg Edmond",male,24,1,247.5208,B58 B60,C,1938-01-13,13:30:10,2022-07-20 12:46:38,
-120,"Andersson, Miss. Ellis Anna Maria",female,2,2,31.275,,S,1917-04-20,,2022-07-17 07:29:16,
-121,"Hickman, Mr. Stanley George",male,21,0,73.5,,S,1918-04-07,,2022-08-10 18:07:12,
-122,"Moore, Mr. Leonard Charles",male,,0,8.05,,S,1936-10-21,16:32:50,2022-07-18 08:54:44,
-123,"Nasser, Mr. Nicholas",male,32,0,30.0708,,C,1933-11-01,12:09:09,2022-07-22 15:27:38,
-124,"Webber, Miss. Susan",female,32,0,13.0,E101,S,1938-06-15,18:23:41,2022-08-06 17:02:25,
-125,"White, Mr. Percival Wayland",male,54,1,77.2875,D26,S,1930-06-22,13:34:01,,
-126,"Nicola-Yarred, Master. Elias",male,12,0,11.2417,,C,1906-12-28,17:03:14,2022-07-28 13:23:15,
-127,"McMahon, Mr. Martin",male,,0,7.75,,Q,1909-07-07,15:52:37,2022-08-08 03:35:52,
-128,"Madsen, Mr. Fridtjof Arne",male,24,0,7.1417,,S,1906-05-15,15:41:39,2022-08-06 10:17:09,
-129,"Peter, Miss. Anna",female,,1,22.3583,F E69,C,1917-02-10,16:47:05,2022-08-11 12:56:53,
-130,"Ekstrom, Mr. Johan",male,45,0,6.975,,S,1913-06-13,11:02:31,2022-08-11 16:42:32,
-131,"Drazenoic, Mr. Jozef",male,33,0,7.8958,,C,1910-12-23,15:32:59,2022-08-02 19:51:22,
-132,"Coelho, Mr. Domingos Fernandeo",male,20,0,7.05,,S,1919-05-16,,2022-08-06 00:05:40,
-133,"Robins, Mrs. Alexander A (Grace Charity Laury)",female,47,0,14.5,,S,1911-05-15,17:03:20,2022-08-02 20:47:37,
-134,"Weisz, Mrs. Leopold (Mathilde Francoise Pede)",female,29,0,26.0,,S,1916-06-30,14:54:51,2022-07-29 02:06:19,
-135,"Sobey, Mr. Samuel James Hayden",male,25,0,13.0,,S,1908-05-20,16:58:22,2022-08-11 17:04:29,
-136,"Richard, Mr. Emile",male,23,0,15.0458,,C,1924-11-26,14:46:08,2022-07-19 11:00:29,
-137,"Newsom, Miss. Helen Monypeny",female,19,2,26.2833,D47,S,1935-08-17,18:24:37,2022-08-10 19:39:16,
-138,"Futrelle, Mr. Jacques Heath",male,37,0,53.1,C123,S,1933-02-08,17:08:34,2022-07-23 10:18:28,
-139,"Osen, Mr. Olaf Elon",male,16,0,9.2167,,S,1914-11-26,,2022-07-31 21:23:43,
-140,"Giglio, Mr. Victor",male,24,0,79.2,B86,C,1909-05-08,14:46:06,2022-08-11 20:57:04,
-141,"Boulos, Mrs. Joseph (Sultana)",female,,2,15.2458,,C,1921-09-19,12:59:25,2022-07-27 12:52:13,
-142,"Nysten, Miss. Anna Sofia",female,22,0,7.75,,S,1930-02-25,17:13:51,2022-07-26 03:59:54,
-143,"Hakkarainen, Mrs. Pekka Pietari (Elin Matilda Dolck)",female,24,0,15.85,,S,1934-11-14,18:04:42,2022-07-18 12:21:53,
-144,"Burke, Mr. Jeremiah",male,19,0,6.75,,Q,1929-12-07,14:32:10,2022-08-02 20:35:07,
-145,"Andrew, Mr. Edgardo Samuel",male,18,0,11.5,,S,1914-05-24,14:28:28,2022-07-30 07:00:52,
-146,"Nicholls, Mr. Joseph Charles",male,19,1,36.75,,S,1914-12-18,14:05:33,2022-08-03 17:46:14,
-147,"Andersson, Mr. August Edvard (""Wennerstrom"")",male,27,0,7.7958,,S,1930-04-13,13:06:37,2022-07-16 05:07:00,
-148,"Ford, Miss. Robina Maggie ""Ruby""",female,9,2,34.375,,S,1923-09-24,,2022-08-14 08:05:37,
-149,"Navratil, Mr. Michel (""Louis M Hoffman"")",male,36,2,26.0,F2,S,1907-11-28,16:39:53,2022-07-19 09:42:51,
-150,"Byles, Rev. Thomas Roussel Davids",male,42,0,13.0,,S,1930-03-29,11:11:45,2022-07-26 21:47:38,
-151,"Bateman, Rev. Robert James",male,51,0,12.525,,S,1912-03-01,14:07:13,2022-08-11 08:21:57,
-152,"Pears, Mrs. Thomas (Edith Wearne)",female,22,0,66.6,C2,S,1929-12-05,16:06:53,2022-08-08 01:58:46,
-153,"Meo, Mr. Alfonzo",male,56,0,8.05,,S,1924-01-07,15:21:11,2022-07-31 00:42:21,
-154,"van Billiard, Mr. Austin Blyler",male,40,2,14.5,,S,,17:34:30,2022-07-21 06:59:37,
-155,"Olsen, Mr. Ole Martin",male,,0,7.3125,,S,1931-09-01,12:46:47,2022-07-28 15:36:41,
-156,"Williams, Mr. Charles Duane",male,51,1,61.3792,,C,1929-08-27,15:40:06,2022-07-31 20:16:03,
-157,"Gilnagh, Miss. Katherine ""Katie""",female,16,0,7.7333,,Q,1927-02-24,10:43:28,2022-07-20 09:09:33,
-158,"Corn, Mr. Harry",male,30,0,8.05,,S,1920-11-18,11:06:09,2022-08-13 21:01:49,
-159,"Smiljanic, Mr. Mile",male,,0,8.6625,,S,1908-03-28,18:27:07,2022-07-31 02:01:49,
-160,"Sage, Master. Thomas Henry",male,,2,69.55,,S,1923-09-29,16:12:15,2022-08-08 07:44:48,
-161,"Cribb, Mr. John Hatfield",male,44,1,16.1,,S,1927-05-01,15:20:52,2022-07-21 16:28:36,
-162,"Watt, Mrs. James (Elizabeth ""Bessie"" Inglis Milne)",female,40,0,15.75,,S,1922-09-22,17:35:38,,
-163,"Bengtsson, Mr. John Viktor",male,26,0,7.775,,S,1903-10-14,,2022-08-08 20:28:10,
-164,"Calic, Mr. Jovo",male,17,0,8.6625,,S,1933-11-14,11:54:13,2022-07-23 21:27:22,
-165,"Panula, Master. Eino Viljami",male,1,1,39.6875,,S,1906-03-07,,2022-07-15 12:33:31,
-166,"Goldsmith, Master. Frank John William ""Frankie""",male,9,2,20.525,,S,1907-08-28,16:56:12,2022-08-10 11:32:46,
-167,"Chibnall, Mrs. (Edith Martha Bowerman)",female,,1,55.0,E33,S,1939-05-22,14:11:55,2022-07-16 05:01:40,
-168,"Skoog, Mrs. William (Anna Bernhardina Karlsson)",female,45,4,27.9,,S,1906-06-03,12:08:47,2022-07-31 12:42:03,
-169,"Baumann, Mr. John D",male,,0,25.925,,S,1905-11-28,13:43:43,2022-07-31 16:34:19,
-170,"Ling, Mr. Lee",male,28,0,56.4958,,S,,11:18:59,2022-08-06 01:21:51,
-171,"Van der hoef, Mr. Wyckoff",male,61,0,33.5,B19,S,1910-05-25,15:50:51,2022-08-10 18:07:18,
-172,"Rice, Master. Arthur",male,4,1,29.125,,Q,1937-03-24,14:02:35,2022-07-27 21:45:02,
-173,"Johnson, Miss. Eleanor Ileen",female,1,1,11.1333,,S,1918-11-20,16:59:44,2022-07-19 04:08:21,
-174,"Sivola, Mr. Antti Wilhelm",male,21,0,7.925,,S,1920-04-10,17:20:36,2022-08-05 18:20:06,
-175,"Smith, Mr. James Clinch",male,56,0,30.6958,A7,C,,17:36:36,2022-07-30 19:43:40,
-176,"Klasen, Mr. Klas Albin",male,18,1,7.8542,,S,1922-09-17,17:35:38,2022-08-11 13:37:52,
-177,"Lefebre, Master. Henry Forbes",male,,1,25.4667,,S,1918-11-15,16:15:55,2022-07-21 09:56:42,
-178,"Isham, Miss. Ann Elizabeth",female,50,0,28.7125,C49,C,1912-04-11,18:27:40,2022-08-01 01:20:21,
-179,"Hale, Mr. Reginald",male,30,0,13.0,,S,1939-02-13,15:43:02,2022-07-24 06:54:39,
-180,"Leonard, Mr. Lionel",male,36,0,0.0,,S,1919-09-02,16:43:15,2022-07-19 20:19:20,
-181,"Sage, Miss. Constance Gladys",female,,2,69.55,,S,1920-11-23,14:46:11,2022-07-23 21:00:23,
-182,"Pernot, Mr. Rene",male,,0,15.05,,C,1921-08-27,,2022-07-28 16:05:20,
-183,"Asplund, Master. Clarence Gustaf Hugo",male,9,2,31.3875,,S,,11:32:25,2022-08-01 20:56:39,
-184,"Becker, Master. Richard F",male,1,1,39.0,F4,S,1910-03-11,12:47:02,2022-07-30 16:45:10,
-185,"Kink-Heilmann, Miss. Luise Gretchen",female,4,2,22.025,,S,1928-12-11,15:47:38,2022-07-31 15:51:39,
-186,"Rood, Mr. Hugh Roscoe",male,,0,50.0,A32,S,1938-08-21,,2022-08-10 23:56:08,
-187,"O'Brien, Mrs. Thomas (Johanna ""Hannah"" Godfrey)",female,,0,15.5,,Q,1928-11-14,11:58:03,,
-188,"Romaine, Mr. Charles Hallace (""Mr C Rolmane"")",male,45,0,26.55,,S,1937-10-28,14:43:47,2022-07-21 11:40:56,
-189,"Bourke, Mr. John",male,40,1,15.5,,Q,1935-05-02,16:57:58,2022-07-28 07:53:59,
-190,"Turcin, Mr. Stjepan",male,36,0,7.8958,,S,1906-03-10,13:44:54,,
-191,"Pinsky, Mrs. (Rosa)",female,32,0,13.0,,S,,18:37:27,2022-08-14 23:22:54,
-192,"Carbines, Mr. William",male,19,0,13.0,,S,1918-12-27,11:53:33,2022-07-19 01:09:58,
-193,"Andersen-Jensen, Miss. Carla Christine Nielsine",female,19,0,7.8542,,S,1928-07-06,17:27:12,2022-08-11 20:24:23,
-194,"Navratil, Master. Michel M",male,3,1,26.0,F2,S,1918-12-26,11:47:12,2022-08-11 02:09:27,
-195,"Brown, Mrs. James Joseph (Margaret Tobin)",female,44,0,27.7208,B4,C,1937-08-16,14:01:56,2022-07-18 11:07:42,
-196,"Lurette, Miss. Elise",female,58,0,146.5208,B80,C,1906-02-04,11:41:04,2022-07-26 03:42:31,
-197,"Mernagh, Mr. Robert",male,,0,7.75,,Q,1916-05-20,15:34:47,2022-08-07 05:29:13,
-198,"Olsen, Mr. Karl Siegwart Andreas",male,42,1,8.4042,,S,1904-01-03,12:17:37,,
-199,"Madigan, Miss. Margaret ""Maggie""",female,,0,7.75,,Q,1939-04-15,14:29:34,2022-08-02 17:25:50,
-200,"Yrois, Miss. Henriette (""Mrs Harbeck"")",female,24,0,13.0,,S,,13:11:24,2022-08-10 19:53:24,
-201,"Vande Walle, Mr. Nestor Cyriel",male,28,0,9.5,,S,1923-01-11,18:15:43,,
-202,"Sage, Mr. Frederick",male,,2,69.55,,S,1920-04-09,14:44:41,2022-08-07 11:18:35,
-203,"Johanson, Mr. Jakob Alfred",male,34,0,6.4958,,S,1903-08-15,15:24:43,2022-08-09 22:29:49,
-204,"Youseff, Mr. Gerious",male,46,0,7.225,,C,,18:00:11,2022-07-25 07:31:21,
-205,"Cohen, Mr. Gurshon ""Gus""",male,18,0,8.05,,S,1936-10-23,18:00:39,2022-07-30 10:17:49,
-206,"Strom, Miss. Telma Matilda",female,2,1,10.4625,G6,S,1930-06-20,15:50:11,2022-07-31 14:45:59,
-207,"Backstrom, Mr. Karl Alfred",male,32,0,15.85,,S,1925-08-19,15:55:28,,
-208,"Albimona, Mr. Nassef Cassem",male,26,0,18.7875,,C,1926-03-23,14:46:47,2022-08-13 11:24:27,
-209,"Carr, Miss. Helen ""Ellen""",female,16,0,7.75,,Q,1904-06-26,17:53:29,2022-07-26 00:44:28,
-210,"Blank, Mr. Henry",male,40,0,31.0,A31,C,1905-07-20,15:40:32,2022-07-21 09:55:45,
-211,"Ali, Mr. Ahmed",male,24,0,7.05,,S,1934-08-10,13:37:58,2022-07-28 11:58:14,
-212,"Cameron, Miss. Clear Annie",female,35,0,21.0,,S,1920-09-07,,2022-08-14 22:04:45,
-213,"Perkin, Mr. John Henry",male,22,0,7.25,,S,1934-05-13,15:17:37,2022-07-28 14:32:23,
-214,"Givard, Mr. Hans Kristensen",male,30,0,13.0,,S,1911-12-14,13:50:48,2022-07-28 21:09:14,
-215,"Kiernan, Mr. Philip",male,,0,7.75,,Q,1906-06-18,14:10:47,,
-216,"Newell, Miss. Madeleine",female,31,0,113.275,D36,C,1922-10-18,13:58:25,,
-217,"Honkanen, Miss. Eliina",female,27,0,7.925,,S,1913-11-22,14:48:51,2022-07-30 06:19:41,
-218,"Jacobsohn, Mr. Sidney Samuel",male,42,0,27.0,,S,1909-03-02,17:54:29,2022-07-23 07:02:24,
-219,"Bazzani, Miss. Albina",female,32,0,76.2917,D15,C,1916-04-22,18:19:26,2022-08-04 03:30:15,
-220,"Harris, Mr. Walter",male,30,0,10.5,,S,1931-05-29,11:07:56,2022-07-25 17:13:44,
-221,"Sunderland, Mr. Victor Francis",male,16,0,8.05,,S,1932-08-11,18:06:49,2022-07-26 09:02:34,
-222,"Bracken, Mr. James H",male,27,0,13.0,,S,,14:48:33,,
-223,"Green, Mr. George Henry",male,51,0,8.05,,S,1933-06-19,14:21:38,,
-224,"Nenkoff, Mr. Christo",male,,0,7.8958,,S,1932-05-05,,,
-225,"Hoyt, Mr. Frederick Maxfield",male,38,0,90.0,C93,S,1906-06-06,11:14:54,2022-08-14 03:10:46,
-226,"Berglund, Mr. Karl Ivar Sven",male,22,0,9.35,,S,1934-01-08,16:30:11,2022-08-12 16:29:13,
-227,"Mellors, Mr. William John",male,19,0,10.5,,S,1931-06-20,,2022-08-15 01:06:12,
-228,"Lovell, Mr. John Hall (""Henry"")",male,20,0,7.25,,S,1921-09-25,15:04:08,2022-07-23 07:54:45,
-229,"Fahlstrom, Mr. Arne Jonas",male,18,0,13.0,,S,1924-04-06,14:18:06,2022-07-30 03:37:32,
-230,"Lefebre, Miss. Mathilde",female,,1,25.4667,,S,1910-08-30,14:38:54,2022-07-23 21:06:23,
-231,"Harris, Mrs. Henry Birkhardt (Irene Wallach)",female,35,0,83.475,C83,S,1931-07-30,17:00:11,2022-08-05 12:57:04,
-232,"Larsson, Mr. Bengt Edvin",male,29,0,7.775,,S,1913-09-18,12:55:59,2022-07-25 15:21:00,
-233,"Sjostedt, Mr. Ernst Adolf",male,59,0,13.5,,S,1907-03-06,18:34:24,,
-234,"Asplund, Miss. Lillian Gertrud",female,5,2,31.3875,,S,1917-04-15,15:45:42,2022-07-24 12:54:29,
-235,"Leyson, Mr. Robert William Norman",male,24,0,10.5,,S,1920-05-02,17:47:42,2022-08-12 03:05:11,
-236,"Harknett, Miss. Alice Phoebe",female,,0,7.55,,S,1927-08-18,15:43:29,2022-08-01 06:14:55,
-237,"Hold, Mr. Stephen",male,44,0,26.0,,S,1927-12-17,13:57:15,2022-08-09 12:26:08,
-238,"Collyer, Miss. Marjorie ""Lottie""",female,8,2,26.25,,S,1927-07-29,15:08:19,2022-07-20 11:57:39,
-239,"Pengelly, Mr. Frederick William",male,19,0,10.5,,S,1931-12-17,14:39:15,,
-240,"Hunt, Mr. George Henry",male,33,0,12.275,,S,1907-03-30,18:39:28,2022-07-16 01:59:53,
-241,"Zabour, Miss. Thamine",female,,0,14.4542,,C,1932-02-26,17:06:40,2022-07-25 10:58:42,
-242,"Murphy, Miss. Katherine ""Kate""",female,,0,15.5,,Q,1909-08-04,13:48:36,2022-07-30 00:09:50,
-243,"Coleridge, Mr. Reginald Charles",male,29,0,10.5,,S,1922-08-01,,2022-07-23 09:14:05,
-244,"Maenpaa, Mr. Matti Alexanteri",male,22,0,7.125,,S,1915-11-27,14:54:10,2022-08-05 01:13:25,
-245,"Attalah, Mr. Sleiman",male,30,0,7.225,,C,1913-04-03,11:17:02,2022-08-10 15:28:13,
-246,"Minahan, Dr. William Edward",male,44,0,90.0,C78,Q,1930-01-07,18:16:02,2022-07-22 07:55:39,
-247,"Lindahl, Miss. Agda Thorilda Viktoria",female,25,0,7.775,,S,1938-04-24,12:43:03,2022-08-13 17:02:01,
-248,"Hamalainen, Mrs. William (Anna)",female,24,2,14.5,,S,1925-06-11,12:15:58,2022-08-09 11:37:56,
-249,"Beckwith, Mr. Richard Leonard",male,37,1,52.5542,D35,S,1938-02-05,14:43:09,2022-08-07 12:24:42,
-250,"Carter, Rev. Ernest Courtenay",male,54,0,26.0,,S,1936-06-27,,2022-07-24 04:49:20,
-251,"Reed, Mr. James George",male,,0,7.25,,S,1932-08-04,13:15:50,2022-08-09 10:08:25,
-252,"Strom, Mrs. Wilhelm (Elna Matilda Persson)",female,29,1,10.4625,G6,S,,17:19:33,2022-07-27 02:32:29,
-253,"Stead, Mr. William Thomas",male,62,0,26.55,C87,S,1908-02-22,13:18:57,2022-07-20 18:13:02,
-254,"Lobb, Mr. William Arthur",male,30,0,16.1,,S,1904-08-24,17:44:37,2022-08-08 13:28:56,
-255,"Rosblom, Mrs. Viktor (Helena Wilhelmina)",female,41,2,20.2125,,S,1935-08-27,14:18:31,2022-08-07 10:30:37,
-256,"Touma, Mrs. Darwis (Hanne Youssef Razi)",female,29,2,15.2458,,C,1918-01-08,14:27:48,2022-08-12 15:50:35,
-257,"Thorne, Mrs. Gertrude Maybelle",female,,0,79.2,,C,1910-08-15,17:22:44,2022-08-07 00:18:19,
-258,"Cherry, Miss. Gladys",female,30,0,86.5,B77,S,1916-08-02,17:09:34,2022-07-31 22:45:33,
-259,"Ward, Miss. Anna",female,35,0,512.3292,,C,1910-04-10,13:19:14,2022-07-21 09:27:17,
-260,"Parrish, Mrs. (Lutie Davis)",female,50,1,26.0,,S,1912-03-06,17:12:46,2022-07-18 17:11:09,
-261,"Smith, Mr. Thomas",male,,0,7.75,,Q,1925-08-25,,2022-07-31 13:45:23,
-262,"Asplund, Master. Edvin Rojj Felix",male,3,2,31.3875,,S,1911-09-18,,2022-08-04 08:06:56,
-263,"Taussig, Mr. Emil",male,52,1,79.65,E67,S,,13:56:59,2022-07-26 15:39:05,
-264,"Harrison, Mr. William",male,40,0,0.0,B94,S,,18:13:16,2022-08-12 17:40:16,
-265,"Henry, Miss. Delia",female,,0,7.75,,Q,1937-06-18,18:38:29,,
-266,"Reeves, Mr. David",male,36,0,10.5,,S,1904-05-02,11:13:28,2022-08-01 23:53:12,
-267,"Panula, Mr. Ernesti Arvid",male,16,1,39.6875,,S,1910-02-21,13:59:21,2022-07-16 02:19:20,
-268,"Persson, Mr. Ernst Ulrik",male,25,0,7.775,,S,1926-02-27,16:09:13,2022-08-04 03:26:45,
-269,"Graham, Mrs. William Thompson (Edith Junkins)",female,58,1,153.4625,C125,S,1935-12-24,13:59:52,2022-07-23 15:52:52,
-270,"Bissette, Miss. Amelia",female,35,0,135.6333,C99,S,1906-03-22,13:20:41,,
-271,"Cairns, Mr. Alexander",male,,0,31.0,,S,1917-02-20,12:54:13,2022-07-25 15:03:25,
-272,"Tornquist, Mr. William Henry",male,25,0,0.0,,S,1915-10-16,12:19:11,2022-08-13 12:07:24,
-273,"Mellinger, Mrs. (Elizabeth Anne Maidment)",female,41,1,19.5,,S,1915-02-19,13:28:52,2022-07-18 01:40:48,
-274,"Natsch, Mr. Charles H",male,37,1,29.7,C118,C,1940-02-08,,2022-08-13 08:10:26,
-275,"Healy, Miss. Hanora ""Nora""",female,,0,7.75,,Q,1932-12-22,11:53:56,,
-276,"Andrews, Miss. Kornelia Theodosia",female,63,0,77.9583,D7,S,1934-04-01,16:17:11,2022-07-27 02:06:05,
-277,"Lindblom, Miss. Augusta Charlotta",female,45,0,7.75,,S,1904-04-10,17:16:42,2022-07-28 09:15:02,
-278,"Parkes, Mr. Francis ""Frank""",male,,0,0.0,,S,1912-07-11,10:41:59,2022-08-06 13:54:45,
-279,"Rice, Master. Eric",male,7,1,29.125,,Q,1920-05-30,18:17:06,2022-08-12 14:28:37,
-280,"Abbott, Mrs. Stanton (Rosa Hunt)",female,35,1,20.25,,S,,,2022-07-30 16:09:32,
-281,"Duane, Mr. Frank",male,65,0,7.75,,Q,1932-08-23,17:19:52,2022-07-17 10:30:40,
-282,"Olsson, Mr. Nils Johan Goransson",male,28,0,7.8542,,S,1923-11-04,16:19:41,2022-07-24 00:07:32,
-283,"de Pelsmaeker, Mr. Alfons",male,16,0,9.5,,S,1906-10-07,18:28:36,2022-08-13 23:06:26,
-284,"Dorking, Mr. Edward Arthur",male,19,0,8.05,,S,1930-01-16,11:07:51,2022-08-04 16:00:42,
-285,"Smith, Mr. Richard William",male,,0,26.0,A19,S,1905-08-18,,2022-08-04 05:18:42,
-286,"Stankovic, Mr. Ivan",male,33,0,8.6625,,C,,12:55:25,2022-07-18 01:10:55,
-287,"de Mulder, Mr. Theodore",male,30,0,9.5,,S,1919-08-25,12:19:30,2022-08-12 09:00:12,
-288,"Naidenoff, Mr. Penko",male,22,0,7.8958,,S,1904-01-22,11:55:15,2022-07-30 01:21:03,
-289,"Hosono, Mr. Masabumi",male,42,0,13.0,,S,1917-01-02,11:50:19,2022-08-01 11:14:32,
-290,"Connolly, Miss. Kate",female,22,0,7.75,,Q,1927-05-03,,2022-08-10 16:46:37,
-291,"Barber, Miss. Ellen ""Nellie""",female,26,0,78.85,,S,1908-01-12,13:32:33,2022-07-31 14:55:00,
-292,"Bishop, Mrs. Dickinson H (Helen Walton)",female,19,0,91.0792,B49,C,1926-06-15,15:35:30,2022-07-29 09:09:25,
-293,"Levy, Mr. Rene Jacques",male,36,0,12.875,D,C,1922-11-25,14:22:01,2022-07-29 12:12:15,
-294,"Haas, Miss. Aloisia",female,24,0,8.85,,S,1912-01-31,16:02:14,2022-07-16 23:04:31,
-295,"Mineff, Mr. Ivan",male,24,0,7.8958,,S,1939-06-28,12:21:45,2022-08-10 05:36:35,
-296,"Lewy, Mr. Ervin G",male,,0,27.7208,,C,1927-07-30,18:34:51,2022-08-07 02:27:31,
-297,"Hanna, Mr. Mansour",male,24,0,7.2292,,C,1932-10-31,14:54:41,2022-08-11 17:54:34,
-298,"Allison, Miss. Helen Loraine",female,2,2,151.55,C22 C26,S,1918-10-06,17:24:22,2022-07-27 21:46:53,
-299,"Saalfeld, Mr. Adolphe",male,,0,30.5,C106,S,1909-10-31,11:41:50,2022-07-21 10:30:05,
-300,"Baxter, Mrs. James (Helene DeLaudeniere Chaput)",female,50,1,247.5208,B58 B60,C,1914-08-16,10:40:06,2022-08-15 06:58:35,
-301,"Kelly, Miss. Anna Katherine ""Annie Kate""",female,,0,7.75,,Q,1925-02-28,17:28:52,2022-07-26 08:06:30,
-302,"McCoy, Mr. Bernard",male,,0,23.25,,Q,1931-11-22,16:56:17,2022-08-13 22:39:12,
-303,"Johnson, Mr. William Cahoone Jr",male,19,0,0.0,,S,1926-04-24,12:40:54,2022-08-14 02:26:30,
-304,"Keane, Miss. Nora A",female,,0,12.35,E101,Q,1928-03-28,14:15:26,2022-08-09 20:39:25,
-305,"Williams, Mr. Howard Hugh ""Harry""",male,,0,8.05,,S,,14:43:34,2022-07-31 04:14:44,
-306,"Allison, Master. Hudson Trevor",male,1,2,151.55,C22 C26,S,1940-02-21,15:58:37,2022-08-09 15:28:24,
-307,"Fleming, Miss. Margaret",female,,0,110.8833,,C,1908-03-25,14:41:30,2022-08-12 02:33:02,
-308,"Penasco y Castellana, Mrs. Victor de Satode (Maria Josefa Perez de Soto y Vallejo)",female,17,0,108.9,C65,C,1905-09-14,17:04:01,2022-07-18 04:13:43,
-309,"Abelson, Mr. Samuel",male,30,0,24.0,,C,,18:19:30,2022-07-25 03:38:19,
-310,"Francatelli, Miss. Laura Mabel",female,30,0,56.9292,E36,C,1916-01-18,13:42:43,2022-07-24 22:28:52,
-311,"Hays, Miss. Margaret Bechstein",female,24,0,83.1583,C54,C,1915-03-07,18:35:27,2022-07-31 20:07:46,
-312,"Ryerson, Miss. Emily Borie",female,18,2,262.375,B57 B59 B63 B66,C,1935-08-28,,2022-08-13 12:30:39,
-313,"Lahtinen, Mrs. William (Anna Sylfven)",female,26,1,26.0,,S,1937-08-06,17:40:46,2022-07-28 15:00:45,
-314,"Hendekovic, Mr. Ignjac",male,28,0,7.8958,,S,1930-11-11,13:19:10,2022-07-22 14:35:23,
-315,"Hart, Mr. Benjamin",male,43,1,26.25,,S,1907-12-06,15:01:19,2022-08-12 17:39:57,
-316,"Nilsson, Miss. Helmina Josefina",female,26,0,7.8542,,S,1921-11-11,14:44:09,2022-07-29 16:14:48,
-317,"Kantor, Mrs. Sinai (Miriam Sternin)",female,24,0,26.0,,S,1922-03-18,13:18:03,2022-07-18 03:27:01,
-318,"Moraweck, Dr. Ernest",male,54,0,14.0,,S,1924-11-10,15:03:22,2022-07-18 15:26:21,
-319,"Wick, Miss. Mary Natalie",female,31,2,164.8667,C7,S,1905-09-09,17:28:31,2022-08-06 04:08:03,
-320,"Spedden, Mrs. Frederic Oakley (Margaretta Corning Stone)",female,40,1,134.5,E34,C,1922-09-28,,2022-07-18 20:45:42,
-321,"Dennis, Mr. Samuel",male,22,0,7.25,,S,1911-01-05,11:52:14,,
-322,"Danoff, Mr. Yoto",male,27,0,7.8958,,S,1922-04-21,13:15:45,,
-323,"Slayter, Miss. Hilda Mary",female,30,0,12.35,,Q,1904-10-03,11:47:03,2022-07-23 06:40:41,
-324,"Caldwell, Mrs. Albert Francis (Sylvia Mae Harbaugh)",female,22,1,29.0,,S,1924-08-29,,2022-07-17 19:00:52,
-325,"Sage, Mr. George John Jr",male,,2,69.55,,S,,12:29:17,2022-08-04 23:00:21,
-326,"Young, Miss. Marie Grice",female,36,0,135.6333,C32,C,1907-05-05,17:42:54,2022-08-08 02:16:32,
-327,"Nysveen, Mr. Johan Hansen",male,61,0,6.2375,,S,1925-05-12,17:09:29,2022-07-27 06:11:50,
-328,"Ball, Mrs. (Ada E Hall)",female,36,0,13.0,D,S,1922-03-11,11:45:44,2022-08-07 17:01:02,
-329,"Goldsmith, Mrs. Frank John (Emily Alice Brown)",female,31,1,20.525,,S,1913-10-10,17:26:36,2022-07-19 23:40:04,
-330,"Hippach, Miss. Jean Gertrude",female,16,1,57.9792,B18,C,1923-11-16,14:52:10,2022-08-12 16:01:25,
-331,"McCoy, Miss. Agnes",female,,0,23.25,,Q,1916-12-31,16:12:58,2022-08-11 02:56:06,
-332,"Partner, Mr. Austen",male,46,0,28.5,C124,S,1932-10-01,18:19:00,2022-07-23 14:44:42,
-333,"Graham, Mr. George Edward",male,38,1,153.4625,C91,S,1932-07-05,11:18:22,2022-08-15 07:59:26,
-334,"Vander Planke, Mr. Leo Edmondus",male,16,0,18.0,,S,1919-05-19,18:39:25,,
-335,"Frauenthal, Mrs. Henry William (Clara Heinsheimer)",female,,0,133.65,,S,1921-05-15,14:01:39,2022-08-06 18:28:30,
-336,"Denkoff, Mr. Mitto",male,,0,7.8958,,S,1907-04-23,11:51:19,2022-08-01 17:05:30,
-337,"Pears, Mr. Thomas Clinton",male,29,0,66.6,C2,S,1916-08-25,17:31:37,,
-338,"Burns, Miss. Elizabeth Margaret",female,41,0,134.5,E40,C,1924-10-30,17:40:58,2022-08-11 03:25:33,
-339,"Dahl, Mr. Karl Edwart",male,45,0,8.05,,S,1938-09-29,12:09:17,2022-07-24 12:47:07,
-340,"Blackwell, Mr. Stephen Weart",male,45,0,35.5,T,S,1930-07-23,17:54:10,2022-08-05 16:34:48,
-341,"Navratil, Master. Edmond Roger",male,2,1,26.0,F2,S,1927-10-16,13:23:48,2022-08-12 02:01:56,
-342,"Fortune, Miss. Alice Elizabeth",female,24,2,263.0,C23 C25 C27,S,,14:22:15,2022-08-11 18:58:57,
-343,"Collander, Mr. Erik Gustaf",male,28,0,13.0,,S,1912-02-07,17:39:08,2022-07-17 09:28:29,
-344,"Sedgwick, Mr. Charles Frederick Waddington",male,25,0,13.0,,S,1930-08-03,13:02:33,2022-07-28 01:25:28,
-345,"Fox, Mr. Stanley Hubert",male,36,0,13.0,,S,1920-06-21,14:13:13,2022-07-19 11:15:36,
-346,"Brown, Miss. Amelia ""Mildred""",female,24,0,13.0,F33,S,1925-04-06,17:49:12,2022-07-27 03:16:04,
-347,"Smith, Miss. Marion Elsie",female,40,0,13.0,,S,1937-09-13,10:44:14,2022-08-03 18:40:05,
-348,"Davison, Mrs. Thomas Henry (Mary E Finck)",female,,0,16.1,,S,1930-10-15,16:21:51,2022-08-04 07:03:48,
-349,"Coutts, Master. William Loch ""William""",male,3,1,15.9,,S,1915-05-28,,2022-08-07 22:02:42,
-350,"Dimic, Mr. Jovan",male,42,0,8.6625,,S,,11:46:41,2022-07-29 20:07:14,
-351,"Odahl, Mr. Nils Martin",male,23,0,9.225,,S,1934-02-01,15:33:07,,
-352,"Williams-Lambert, Mr. Fletcher Fellows",male,,0,35.0,C128,S,1911-12-30,12:28:31,2022-08-06 10:02:10,
-353,"Elias, Mr. Tannous",male,15,1,7.2292,,C,1936-06-14,12:27:10,2022-07-19 13:31:25,
-354,"Arnold-Franchi, Mr. Josef",male,25,0,17.8,,S,1918-03-05,10:51:57,2022-07-20 18:41:32,
-355,"Yousif, Mr. Wazli",male,,0,7.225,,C,1910-10-16,16:16:39,,
-356,"Vanden Steen, Mr. Leo Peter",male,28,0,9.5,,S,1907-07-06,13:16:14,2022-08-13 16:11:00,
-357,"Bowerman, Miss. Elsie Edith",female,22,1,55.0,E33,S,1923-11-13,13:42:43,2022-08-14 07:30:21,
-358,"Funk, Miss. Annie Clemmer",female,38,0,13.0,,S,1936-01-19,15:30:07,2022-07-23 00:38:06,
-359,"McGovern, Miss. Mary",female,,0,7.8792,,Q,1904-03-27,17:40:30,,
-360,"Mockler, Miss. Helen Mary ""Ellie""",female,,0,7.8792,,Q,1914-06-26,13:57:15,2022-07-21 09:02:37,
-361,"Skoog, Mr. Wilhelm",male,40,4,27.9,,S,1905-02-27,18:00:46,2022-08-11 14:15:51,
-362,"del Carlo, Mr. Sebastiano",male,29,0,27.7208,,C,1920-05-02,16:22:55,2022-07-15 13:09:31,
-363,"Barbara, Mrs. (Catherine David)",female,45,1,14.4542,,C,1933-01-25,12:47:47,2022-08-09 04:58:20,
-364,"Asim, Mr. Adola",male,35,0,7.05,,S,1910-05-12,16:08:42,2022-07-21 04:27:16,
-365,"O'Brien, Mr. Thomas",male,,0,15.5,,Q,1933-04-25,11:13:37,2022-07-17 20:45:25,
-366,"Adahl, Mr. Mauritz Nils Martin",male,30,0,7.25,,S,1938-07-05,15:19:11,2022-07-17 06:38:37,
-367,"Warren, Mrs. Frank Manley (Anna Sophia Atkinson)",female,60,0,75.25,D37,C,1903-10-05,15:25:21,2022-07-18 10:41:08,
-368,"Moussa, Mrs. (Mantoura Boulos)",female,,0,7.2292,,C,1925-11-16,12:28:39,2022-08-11 18:53:55,
-369,"Jermyn, Miss. Annie",female,,0,7.75,,Q,1909-04-23,17:26:40,2022-07-16 12:09:25,
-370,"Aubart, Mme. Leontine Pauline",female,24,0,69.3,B35,C,1914-12-10,14:48:01,2022-07-24 11:20:19,
-371,"Harder, Mr. George Achilles",male,25,0,55.4417,E50,C,1911-05-24,14:23:26,2022-07-21 13:56:58,
-372,"Wiklund, Mr. Jakob Alfred",male,18,0,6.4958,,S,1930-06-04,16:01:50,2022-07-21 05:04:11,
-373,"Beavan, Mr. William Thomas",male,19,0,8.05,,S,1925-07-23,15:51:06,2022-08-14 18:23:47,
-374,"Ringhini, Mr. Sante",male,22,0,135.6333,,C,1933-03-09,17:03:10,2022-07-27 20:23:22,
-375,"Palsson, Miss. Stina Viola",female,3,1,21.075,,S,1930-06-30,13:44:36,2022-08-03 22:04:19,
-376,"Meyer, Mrs. Edgar Joseph (Leila Saks)",female,,0,82.1708,,C,1909-11-18,11:17:01,2022-08-15 10:32:05,
-377,"Landergren, Miss. Aurora Adelia",female,22,0,7.25,,S,1911-10-22,17:07:14,2022-07-27 02:15:20,
-378,"Widener, Mr. Harry Elkins",male,27,2,211.5,C82,C,1922-05-16,17:08:26,2022-07-23 21:00:03,
-379,"Betros, Mr. Tannous",male,20,0,4.0125,,C,,18:31:00,2022-08-10 23:59:11,
-380,"Gustafsson, Mr. Karl Gideon",male,19,0,7.775,,S,1910-10-16,14:38:32,2022-08-05 21:46:06,
-381,"Bidois, Miss. Rosalie",female,42,0,227.525,,C,1936-03-22,18:08:55,2022-08-01 19:53:42,
-382,"Nakid, Miss. Maria (""Mary"")",female,1,2,15.7417,,C,1930-08-11,12:53:17,2022-08-01 08:38:35,
-383,"Tikkanen, Mr. Juho",male,32,0,7.925,,S,1931-08-07,14:34:56,2022-08-08 05:57:00,
-384,"Holverson, Mrs. Alexander Oskar (Mary Aline Towner)",female,35,0,52.0,,S,1913-10-21,11:40:57,,
-385,"Plotcharsky, Mr. Vasil",male,,0,7.8958,,S,1918-09-11,14:41:12,2022-07-29 05:50:50,
-386,"Davies, Mr. Charles Henry",male,18,0,73.5,,S,1923-01-28,15:33:36,,
-387,"Goodwin, Master. Sidney Leonard",male,1,2,46.9,,S,1910-05-10,12:32:00,2022-07-29 19:06:58,
-388,"Buss, Miss. Kate",female,36,0,13.0,,S,1913-03-10,14:16:36,,
-389,"Sadlier, Mr. Matthew",male,,0,7.7292,,Q,1935-04-01,12:01:01,2022-08-12 19:48:05,
-390,"Lehmann, Miss. Bertha",female,17,0,12.0,,C,1936-07-12,14:45:54,2022-07-23 19:55:52,
-391,"Carter, Mr. William Ernest",male,36,2,120.0,B96 B98,S,1905-05-05,13:45:34,2022-08-12 09:47:33,
-392,"Jansson, Mr. Carl Olof",male,21,0,7.7958,,S,1917-06-05,16:55:58,2022-08-12 11:39:33,
-393,"Gustafsson, Mr. Johan Birger",male,28,0,7.925,,S,1936-10-09,18:36:52,2022-07-29 03:15:23,
-394,"Newell, Miss. Marjorie",female,23,0,113.275,D36,C,1904-11-17,15:15:48,2022-07-30 09:52:55,
-395,"Sandstrom, Mrs. Hjalmar (Agnes Charlotta Bengtsson)",female,24,2,16.7,G6,S,1922-08-29,11:17:09,2022-08-11 12:02:19,
-396,"Johansson, Mr. Erik",male,22,0,7.7958,,S,1928-09-16,11:49:24,2022-07-31 18:16:38,
-397,"Olsson, Miss. Elina",female,31,0,7.8542,,S,1904-02-10,16:04:28,2022-08-03 22:45:54,
-398,"McKane, Mr. Peter David",male,46,0,26.0,,S,1920-03-24,11:43:51,2022-07-16 01:03:45,
-399,"Pain, Dr. Alfred",male,23,0,10.5,,S,1925-10-12,,2022-07-20 05:17:32,
-400,"Trout, Mrs. William H (Jessie L)",female,28,0,12.65,,S,1931-12-27,12:04:52,2022-07-17 08:37:23,
-401,"Niskanen, Mr. Juha",male,39,0,7.925,,S,1914-05-30,12:58:55,2022-08-03 11:17:50,
-402,"Adams, Mr. John",male,26,0,8.05,,S,1930-09-29,14:35:00,2022-07-26 09:46:28,
-403,"Jussila, Miss. Mari Aina",female,21,0,9.825,,S,1911-02-12,12:38:36,2022-07-26 14:04:11,
-404,"Hakkarainen, Mr. Pekka Pietari",male,28,0,15.85,,S,1919-05-15,14:06:12,2022-08-12 17:09:56,
-405,"Oreskovic, Miss. Marija",female,20,0,8.6625,,S,1937-08-12,17:34:44,2022-08-13 21:44:58,
-406,"Gale, Mr. Shadrach",male,34,0,21.0,,S,1919-07-06,14:11:21,2022-07-15 23:13:50,
-407,"Widegren, Mr. Carl/Charles Peter",male,51,0,7.75,,S,1917-08-16,15:51:06,2022-07-25 05:35:57,
-408,"Richards, Master. William Rowe",male,3,1,18.75,,S,1925-11-11,17:42:06,2022-07-21 15:30:37,
-409,"Birkeland, Mr. Hans Martin Monsen",male,21,0,7.775,,S,1917-04-05,12:30:49,2022-07-26 15:19:15,
-410,"Lefebre, Miss. Ida",female,,1,25.4667,,S,1920-05-03,12:39:02,,
-411,"Sdycoff, Mr. Todor",male,,0,7.8958,,S,1906-07-09,12:12:14,2022-08-12 12:49:59,
-412,"Hart, Mr. Henry",male,,0,6.8583,,Q,1903-10-01,14:16:06,2022-08-11 19:54:53,
-413,"Minahan, Miss. Daisy E",female,33,0,90.0,C78,Q,1911-03-10,10:52:37,2022-07-26 17:40:48,
-414,"Cunningham, Mr. Alfred Fleming",male,,0,0.0,,S,,13:37:45,2022-07-24 09:38:49,
-415,"Sundman, Mr. Johan Julian",male,44,0,7.925,,S,1929-05-31,13:54:46,2022-08-06 22:14:01,
-416,"Meek, Mrs. Thomas (Annie Louise Rowley)",female,,0,8.05,,S,1933-03-24,12:24:11,2022-07-25 13:05:35,
-417,"Drew, Mrs. James Vivian (Lulu Thorne Christian)",female,34,1,32.5,,S,1917-05-09,16:26:16,2022-08-02 03:44:55,
-418,"Silven, Miss. Lyyli Karoliina",female,18,2,13.0,,S,1931-09-03,13:19:25,2022-07-28 07:13:03,
-419,"Matthews, Mr. William John",male,30,0,13.0,,S,1922-02-28,18:21:17,2022-08-11 15:56:42,
-420,"Van Impe, Miss. Catharina",female,10,2,24.15,,S,,,2022-08-06 04:36:54,
-421,"Gheorgheff, Mr. Stanio",male,,0,7.8958,,C,1931-02-26,15:03:32,2022-07-23 07:12:58,
-422,"Charters, Mr. David",male,21,0,7.7333,,Q,1908-01-27,13:59:21,2022-07-30 21:37:07,
-423,"Zimmerman, Mr. Leo",male,29,0,7.875,,S,1904-07-17,15:54:22,2022-08-15 08:39:55,
-424,"Danbom, Mrs. Ernst Gilbert (Anna Sigrid Maria Brogren)",female,28,1,14.4,,S,1906-06-19,16:21:00,,
-425,"Rosblom, Mr. Viktor Richard",male,18,1,20.2125,,S,1925-08-10,11:12:41,2022-07-20 22:37:14,
-426,"Wiseman, Mr. Phillippe",male,,0,7.25,,S,1938-01-22,,2022-07-18 00:01:50,
-427,"Clarke, Mrs. Charles V (Ada Maria Winfield)",female,28,0,26.0,,S,1909-01-08,,2022-07-17 17:12:39,
-428,"Phillips, Miss. Kate Florence (""Mrs Kate Louise Phillips Marshall"")",female,19,0,26.0,,S,1908-12-02,11:26:22,2022-07-27 23:48:56,
-429,"Flynn, Mr. James",male,,0,7.75,,Q,1934-02-16,11:21:37,2022-08-06 07:53:22,
-430,"Pickard, Mr. Berk (Berk Trembisky)",male,32,0,8.05,E10,S,1907-10-16,18:19:30,2022-07-20 10:34:27,
-431,"Bjornstrom-Steffansson, Mr. Mauritz Hakan",male,28,0,26.55,C52,S,1916-04-01,16:28:37,2022-07-21 20:03:36,
-432,"Thorneycroft, Mrs. Percival (Florence Kate White)",female,,0,16.1,,S,1924-03-14,16:09:23,,
-433,"Louch, Mrs. Charles Alexander (Alice Adelaide Slow)",female,42,0,26.0,,S,1931-05-17,11:04:47,2022-07-31 08:26:26,
-434,"Kallio, Mr. Nikolai Erland",male,17,0,7.125,,S,1922-11-07,11:50:46,2022-07-26 08:45:56,
-435,"Silvey, Mr. William Baird",male,50,0,55.9,E44,S,1919-07-26,11:28:09,2022-08-09 02:39:30,
-436,"Carter, Miss. Lucile Polk",female,14,2,120.0,B96 B98,S,1912-08-26,13:20:30,2022-07-18 23:35:35,
-437,"Ford, Miss. Doolina Margaret ""Daisy""",female,21,2,34.375,,S,1937-12-15,16:40:39,2022-08-05 23:14:44,
-438,"Richards, Mrs. Sidney (Emily Hocking)",female,24,3,18.75,,S,1928-04-27,18:37:28,2022-08-12 16:50:33,
-439,"Fortune, Mr. Mark",male,64,4,263.0,C23 C25 C27,S,1905-04-30,17:01:13,2022-08-14 10:39:28,
-440,"Kvillner, Mr. Johan Henrik Johannesson",male,31,0,10.5,,S,1933-12-08,13:22:49,2022-07-17 00:19:41,
-441,"Hart, Mrs. Benjamin (Esther Ada Bloomfield)",female,45,1,26.25,,S,1918-05-19,16:40:52,2022-07-29 14:10:15,
-442,"Hampe, Mr. Leon",male,20,0,9.5,,S,1927-09-28,15:37:41,2022-07-21 12:41:38,
-443,"Petterson, Mr. Johan Emil",male,25,0,7.775,,S,1933-12-02,16:35:18,2022-07-20 17:52:33,
-444,"Reynaldo, Ms. Encarnacion",female,28,0,13.0,,S,1912-07-31,13:23:35,2022-07-20 04:03:48,
-445,"Johannesen-Bratthammer, Mr. Bernt",male,,0,8.1125,,S,1907-04-04,18:13:40,,
-446,"Dodge, Master. Washington",male,4,2,81.8583,A34,S,1919-01-31,14:14:47,2022-07-25 11:01:38,
-447,"Mellinger, Miss. Madeleine Violet",female,13,1,19.5,,S,1917-06-27,,2022-08-08 23:58:00,
-448,"Seward, Mr. Frederic Kimber",male,34,0,26.55,,S,1922-05-11,14:42:49,2022-07-22 20:40:50,
-449,"Baclini, Miss. Marie Catherine",female,5,1,19.2583,,C,1922-09-29,11:05:57,,
-450,"Peuchen, Major. Arthur Godfrey",male,52,0,30.5,C104,S,1912-10-18,11:28:50,2022-08-14 19:28:43,
-451,"West, Mr. Edwy Arthur",male,36,2,27.75,,S,1920-10-02,12:08:53,2022-08-08 03:23:37,
-452,"Hagland, Mr. Ingvald Olai Olsen",male,,0,19.9667,,S,,17:17:39,2022-08-05 21:53:40,
-453,"Foreman, Mr. Benjamin Laventall",male,30,0,27.75,C111,C,1922-08-11,11:11:04,,
-454,"Goldenberg, Mr. Samuel L",male,49,0,89.1042,C92,C,1924-10-04,12:53:14,2022-08-12 16:29:39,
-455,"Peduzzi, Mr. Joseph",male,,0,8.05,,S,1917-03-09,18:38:49,2022-08-15 06:21:00,
-456,"Jalsevac, Mr. Ivan",male,29,0,7.8958,,C,,14:39:12,2022-07-29 04:09:47,
-457,"Millet, Mr. Francis Davis",male,65,0,26.55,E38,S,1911-05-19,11:15:02,,
-458,"Kenyon, Mrs. Frederick R (Marion)",female,,0,51.8625,D21,S,1915-04-08,18:04:51,,
-459,"Toomey, Miss. Ellen",female,50,0,10.5,,S,1904-06-26,15:06:35,2022-08-03 00:14:27,
-460,"O'Connor, Mr. Maurice",male,,0,7.75,,Q,1911-06-01,11:50:47,,
-461,"Anderson, Mr. Harry",male,48,0,26.55,E12,S,1905-09-13,,2022-07-22 11:15:14,
-462,"Morley, Mr. William",male,34,0,8.05,,S,1940-03-18,12:59:27,2022-07-20 15:25:12,
-463,"Gee, Mr. Arthur H",male,47,0,38.5,E63,S,1927-08-18,15:11:23,2022-08-10 21:15:28,
-464,"Milling, Mr. Jacob Christian",male,48,0,13.0,,S,1925-03-09,17:23:17,2022-07-22 18:21:03,
-465,"Maisner, Mr. Simon",male,,0,8.05,,S,1911-12-24,15:33:32,2022-07-20 22:10:35,
-466,"Goncalves, Mr. Manuel Estanslas",male,38,0,7.05,,S,1905-08-22,16:41:37,2022-07-22 12:28:53,
-467,"Campbell, Mr. William",male,,0,0.0,,S,1929-10-01,11:59:53,2022-08-01 04:54:02,
-468,"Smart, Mr. John Montgomery",male,56,0,26.55,,S,1907-03-30,12:11:43,2022-07-23 20:26:05,
-469,"Scanlan, Mr. James",male,,0,7.725,,Q,,18:16:49,2022-07-24 15:27:08,
-470,"Baclini, Miss. Helene Barbara",female,1,1,19.2583,,C,1934-01-05,,2022-08-04 08:19:58,
-471,"Keefe, Mr. Arthur",male,,0,7.25,,S,1938-04-29,15:29:42,2022-08-10 00:59:08,
-472,"Cacic, Mr. Luka",male,38,0,8.6625,,S,1904-05-20,13:15:56,2022-08-03 08:54:11,
-473,"West, Mrs. Edwy Arthur (Ada Mary Worth)",female,33,2,27.75,,S,1934-01-15,16:04:20,2022-07-28 09:35:38,
-474,"Jerwan, Mrs. Amin S (Marie Marthe Thuillard)",female,23,0,13.7917,D,C,1904-03-19,14:48:40,2022-07-31 15:26:29,
-475,"Strandberg, Miss. Ida Sofia",female,22,0,9.8375,,S,1937-03-15,13:41:12,2022-08-04 06:10:46,
-476,"Clifford, Mr. George Quincy",male,,0,52.0,A14,S,1932-09-30,12:19:15,2022-07-25 17:57:19,
-477,"Renouf, Mr. Peter Henry",male,34,0,21.0,,S,1923-06-19,12:19:21,2022-08-02 15:35:55,
-478,"Braund, Mr. Lewis Richard",male,29,0,7.0458,,S,1928-10-05,12:31:16,2022-07-21 12:29:31,
-479,"Karlsson, Mr. Nils August",male,22,0,7.5208,,S,1904-01-02,10:53:58,2022-07-17 12:20:14,
-480,"Hirvonen, Miss. Hildur E",female,2,1,12.2875,,S,1940-05-27,17:51:14,2022-08-14 15:49:03,
-481,"Goodwin, Master. Harold Victor",male,9,2,46.9,,S,,16:49:14,2022-07-28 03:48:04,
-482,"Frost, Mr. Anthony Wood ""Archie""",male,,0,0.0,,S,,13:33:59,,
-483,"Rouse, Mr. Richard Henry",male,50,0,8.05,,S,1932-10-25,,2022-07-26 20:48:24,
-484,"Turkula, Mrs. (Hedwig)",female,63,0,9.5875,,S,1937-11-23,16:40:43,2022-08-05 00:21:01,
-485,"Bishop, Mr. Dickinson H",male,25,0,91.0792,B49,C,1921-05-22,17:01:56,2022-07-24 13:05:03,
-486,"Lefebre, Miss. Jeannie",female,,1,25.4667,,S,1911-06-24,13:34:59,2022-07-21 06:31:35,
-487,"Hoyt, Mrs. Frederick Maxfield (Jane Anne Forby)",female,35,0,90.0,C93,S,1938-07-30,11:52:04,2022-07-21 22:57:59,
-488,"Kent, Mr. Edward Austin",male,58,0,29.7,B37,C,1924-07-03,15:55:36,2022-07-21 05:13:12,
-489,"Somerton, Mr. Francis William",male,30,0,8.05,,S,1910-12-02,11:53:52,2022-08-10 12:58:19,
-490,"Coutts, Master. Eden Leslie ""Neville""",male,9,1,15.9,,S,1929-08-13,17:37:43,2022-08-02 23:35:17,
-491,"Hagland, Mr. Konrad Mathias Reiersen",male,,0,19.9667,,S,,16:03:13,2022-07-26 07:56:02,
-492,"Windelov, Mr. Einar",male,21,0,7.25,,S,1929-11-18,14:35:00,2022-08-02 08:00:37,
-493,"Molson, Mr. Harry Markland",male,55,0,30.5,C30,S,1934-06-23,13:26:04,2022-07-18 13:56:58,
-494,"Artagaveytia, Mr. Ramon",male,71,0,49.5042,,C,1912-04-04,16:13:53,2022-07-30 05:37:18,
-495,"Stanley, Mr. Edward Roland",male,21,0,8.05,,S,1925-11-15,17:14:38,2022-07-16 12:01:50,
-496,"Yousseff, Mr. Gerious",male,,0,14.4583,,C,,11:41:08,2022-08-14 09:18:36,
-497,"Eustis, Miss. Elizabeth Mussey",female,54,0,78.2667,D20,C,1912-04-26,11:57:43,2022-08-01 00:28:34,
-498,"Shellard, Mr. Frederick William",male,,0,15.1,,S,1926-12-20,18:11:53,2022-07-30 09:20:30,
-499,"Allison, Mrs. Hudson J C (Bessie Waldo Daniels)",female,25,2,151.55,C22 C26,S,1924-03-15,13:16:27,2022-07-27 06:24:38,
-500,"Svensson, Mr. Olof",male,24,0,7.7958,,S,1903-12-16,,2022-07-20 02:00:17,
-501,"Calic, Mr. Petar",male,17,0,8.6625,,S,1907-04-03,12:57:54,2022-08-09 03:50:49,
-502,"Canavan, Miss. Mary",female,21,0,7.75,,Q,1921-01-26,12:50:21,2022-08-03 18:01:06,
-503,"O'Sullivan, Miss. Bridget Mary",female,,0,7.6292,,Q,1912-01-12,14:09:55,2022-08-11 21:23:34,
-504,"Laitinen, Miss. Kristina Sofia",female,37,0,9.5875,,S,1930-05-02,10:44:55,2022-08-10 10:25:52,
-505,"Maioni, Miss. Roberta",female,16,0,86.5,B79,S,1910-02-19,12:40:14,2022-08-04 19:07:39,
-506,"Penasco y Castellana, Mr. Victor de Satode",male,18,0,108.9,C65,C,1916-10-11,11:16:02,,
-507,"Quick, Mrs. Frederick Charles (Jane Richards)",female,33,2,26.0,,S,1919-11-01,14:58:38,2022-07-24 22:56:18,
-508,"Bradley, Mr. George (""George Arthur Brayton"")",male,,0,26.55,,S,1913-07-26,15:13:31,2022-08-08 03:08:09,
-509,"Olsen, Mr. Henry Margido",male,28,0,22.525,,S,1926-06-21,14:30:55,2022-08-05 07:59:23,
-510,"Lang, Mr. Fang",male,26,0,56.4958,,S,1906-05-24,16:26:54,2022-07-25 08:39:24,
-511,"Daly, Mr. Eugene Patrick",male,29,0,7.75,,Q,1905-09-10,11:11:28,2022-07-19 21:45:35,
-512,"Webber, Mr. James",male,,0,8.05,,S,1919-11-26,12:42:40,2022-08-10 10:52:05,
-513,"McGough, Mr. James Robert",male,36,0,26.2875,E25,S,1920-05-24,15:00:10,2022-08-15 09:52:25,
-514,"Rothschild, Mrs. Martin (Elizabeth L. Barrett)",female,54,0,59.4,,C,1914-07-16,14:12:28,2022-07-22 21:48:04,
-515,"Coleff, Mr. Satio",male,24,0,7.4958,,S,1904-11-26,11:44:44,2022-07-20 16:49:21,
-516,"Walker, Mr. William Anderson",male,47,0,34.0208,D46,S,1917-10-16,13:03:50,2022-08-03 04:09:54,
-517,"Lemore, Mrs. (Amelia Milley)",female,34,0,10.5,F33,S,1937-02-16,11:55:56,2022-07-17 07:04:02,
-518,"Ryan, Mr. Patrick",male,,0,24.15,,Q,1904-02-13,13:19:16,2022-07-22 20:04:04,
-519,"Angle, Mrs. William A (Florence ""Mary"" Agnes Hughes)",female,36,0,26.0,,S,1926-11-01,13:27:45,2022-07-20 16:00:04,
-520,"Pavlovic, Mr. Stefo",male,32,0,7.8958,,S,1932-07-21,11:15:24,2022-08-09 12:08:49,
-521,"Perreault, Miss. Anne",female,30,0,93.5,B73,S,1932-01-11,13:58:44,2022-08-07 05:41:48,
-522,"Vovk, Mr. Janko",male,22,0,7.8958,,S,1917-06-23,11:17:16,2022-07-24 05:26:43,
-523,"Lahoud, Mr. Sarkis",male,,0,7.225,,C,1909-09-14,14:13:55,2022-08-08 05:13:12,
-524,"Hippach, Mrs. Louis Albert (Ida Sophia Fischer)",female,44,1,57.9792,B18,C,1935-06-16,,2022-08-05 10:50:16,
-525,"Kassem, Mr. Fared",male,,0,7.2292,,C,1904-03-05,12:03:49,2022-08-13 23:57:36,
-526,"Farrell, Mr. James",male,40,0,7.75,,Q,1918-12-02,15:48:11,,
-527,"Ridsdale, Miss. Lucy",female,50,0,10.5,,S,1904-12-26,10:55:04,2022-08-03 17:12:19,
-528,"Farthing, Mr. John",male,,0,221.7792,C95,S,1914-02-13,15:32:06,,
-529,"Salonen, Mr. Johan Werner",male,39,0,7.925,,S,1931-06-09,17:06:57,2022-08-06 11:04:17,
-530,"Hocking, Mr. Richard George",male,23,1,11.5,,S,1928-08-20,13:55:06,2022-08-11 04:30:19,
-531,"Quick, Miss. Phyllis May",female,2,1,26.0,,S,1935-06-04,13:46:20,2022-08-11 04:36:49,
-532,"Toufik, Mr. Nakli",male,,0,7.2292,,C,1936-05-12,,2022-08-08 12:23:08,
-533,"Elias, Mr. Joseph Jr",male,17,1,7.2292,,C,1929-05-09,12:14:21,2022-08-03 09:16:37,
-534,"Peter, Mrs. Catherine (Catherine Rizk)",female,,2,22.3583,,C,1918-05-18,11:50:14,2022-08-09 10:30:40,
-535,"Cacic, Miss. Marija",female,30,0,8.6625,,S,1924-06-19,,2022-08-10 14:16:21,
-536,"Hart, Miss. Eva Miriam",female,7,2,26.25,,S,,17:30:19,2022-07-19 19:04:41,
-537,"Butt, Major. Archibald Willingham",male,45,0,26.55,B38,S,1908-01-04,13:22:22,2022-07-25 09:44:58,
-538,"LeRoy, Miss. Bertha",female,30,0,106.425,,C,1914-05-31,18:35:36,2022-08-01 12:34:09,
-539,"Risien, Mr. Samuel Beard",male,,0,14.5,,S,1914-03-31,13:37:10,2022-07-20 22:46:56,
-540,"Frolicher, Miss. Hedwig Margaritha",female,22,2,49.5,B39,C,1928-04-19,,2022-07-30 07:58:16,
-541,"Crosby, Miss. Harriet R",female,36,2,71.0,B22,S,1939-07-07,11:45:18,2022-07-24 18:20:53,
-542,"Andersson, Miss. Ingeborg Constanzia",female,9,2,31.275,,S,1922-01-16,16:15:58,2022-08-04 14:43:06,
-543,"Andersson, Miss. Sigrid Elisabeth",female,11,2,31.275,,S,1932-10-06,10:39:45,2022-07-23 01:13:04,
-544,"Beane, Mr. Edward",male,32,0,26.0,,S,1927-02-23,11:12:28,2022-08-05 04:23:17,
-545,"Douglas, Mr. Walter Donald",male,50,0,106.425,C86,C,,10:49:18,2022-08-12 09:18:00,
-546,"Nicholson, Mr. Arthur Ernest",male,64,0,26.0,,S,1904-04-11,15:13:32,2022-07-23 01:39:04,
-547,"Beane, Mrs. Edward (Ethel Clarke)",female,19,0,26.0,,S,1935-12-15,17:09:17,2022-08-12 01:33:45,
-548,"Padro y Manent, Mr. Julian",male,,0,13.8625,,C,1916-03-21,12:35:37,2022-08-07 18:42:40,
-549,"Goldsmith, Mr. Frank John",male,33,1,20.525,,S,1904-09-19,15:29:56,2022-07-22 04:09:43,
-550,"Davies, Master. John Morgan Jr",male,8,1,36.75,,S,1936-12-04,,2022-07-22 04:11:09,
-551,"Thayer, Mr. John Borland Jr",male,17,2,110.8833,C70,C,,,2022-07-17 03:21:54,
-552,"Sharp, Mr. Percival James R",male,27,0,26.0,,S,1938-11-29,11:45:29,2022-07-17 14:18:38,
-553,"O'Brien, Mr. Timothy",male,,0,7.8292,,Q,1927-11-20,16:33:41,2022-08-13 08:17:55,
-554,"Leeni, Mr. Fahim (""Philip Zenni"")",male,22,0,7.225,,C,1919-05-16,12:02:47,2022-08-15 05:03:55,
-555,"Ohman, Miss. Velin",female,22,0,7.775,,S,1930-08-15,12:03:22,2022-08-06 05:19:37,
-556,"Wright, Mr. George",male,62,0,26.55,,S,1923-06-21,12:45:30,,
-557,"Duff Gordon, Lady. (Lucille Christiana Sutherland) (""Mrs Morgan"")",female,48,0,39.6,A16,C,1916-02-12,16:26:42,2022-08-15 03:11:07,
-558,"Robbins, Mr. Victor",male,,0,227.525,,C,,16:13:17,,
-559,"Taussig, Mrs. Emil (Tillie Mandelbaum)",female,39,1,79.65,E67,S,,16:20:23,2022-07-26 13:18:20,
-560,"de Messemaeker, Mrs. Guillaume Joseph (Emma)",female,36,0,17.4,,S,1904-10-28,14:09:26,2022-07-21 22:08:04,
-561,"Morrow, Mr. Thomas Rowan",male,,0,7.75,,Q,,15:30:29,2022-07-17 16:00:47,
-562,"Sivic, Mr. Husein",male,40,0,7.8958,,S,1923-01-02,12:07:24,,
-563,"Norman, Mr. Robert Douglas",male,28,0,13.5,,S,1932-04-15,14:21:45,2022-07-25 05:40:54,
-564,"Simmons, Mr. John",male,,0,8.05,,S,1936-04-06,17:47:11,2022-08-06 12:20:51,
-565,"Meanwell, Miss. (Marion Ogden)",female,,0,8.05,,S,,,,
-566,"Davies, Mr. Alfred J",male,24,0,24.15,,S,1932-01-22,,2022-07-26 07:41:28,
-567,"Stoytcheff, Mr. Ilia",male,19,0,7.8958,,S,1904-05-17,11:21:35,2022-07-21 16:24:48,
-568,"Palsson, Mrs. Nils (Alma Cornelia Berglund)",female,29,4,21.075,,S,1931-08-04,13:40:34,2022-07-27 16:45:04,
-569,"Doharr, Mr. Tannous",male,,0,7.2292,,C,1926-09-10,15:04:38,2022-08-05 07:45:10,
-570,"Jonsson, Mr. Carl",male,32,0,7.8542,,S,1927-07-19,13:38:09,2022-08-09 10:31:32,
-571,"Harris, Mr. George",male,62,0,10.5,,S,1938-09-03,18:15:24,2022-07-22 10:30:32,
-572,"Appleton, Mrs. Edward Dale (Charlotte Lamson)",female,53,0,51.4792,C101,S,1912-09-14,11:45:10,2022-07-27 00:52:16,
-573,"Flynn, Mr. John Irwin (""Irving"")",male,36,0,26.3875,E25,S,1907-05-24,10:52:37,2022-08-08 20:10:56,
-574,"Kelly, Miss. Mary",female,,0,7.75,,Q,1938-10-13,18:12:35,2022-07-28 10:30:52,
-575,"Rush, Mr. Alfred George John",male,16,0,8.05,,S,,15:19:25,2022-07-30 08:35:10,
-576,"Patchett, Mr. George",male,19,0,14.5,,S,,14:04:33,2022-07-24 18:02:46,
-577,"Garside, Miss. Ethel",female,34,0,13.0,,S,1925-04-23,13:28:38,2022-07-31 10:07:08,
-578,"Silvey, Mrs. William Baird (Alice Munger)",female,39,0,55.9,E44,S,1935-01-06,,2022-07-25 17:05:11,
-579,"Caram, Mrs. Joseph (Maria Elias)",female,,0,14.4583,,C,1939-11-28,12:49:14,2022-07-29 09:37:15,
-580,"Jussila, Mr. Eiriik",male,32,0,7.925,,S,1906-06-13,17:53:08,2022-08-03 01:35:17,
-581,"Christy, Miss. Julie Rachel",female,25,1,30.0,,S,1927-04-16,16:34:28,2022-07-16 04:52:34,
-582,"Thayer, Mrs. John Borland (Marian Longstreth Morris)",female,39,1,110.8833,C68,C,1909-02-21,,2022-07-24 04:08:23,
-583,"Downton, Mr. William James",male,54,0,26.0,,S,1907-04-25,14:48:33,2022-07-28 17:58:13,
-584,"Ross, Mr. John Hugo",male,36,0,40.125,A10,C,1912-06-19,11:49:01,2022-07-19 03:14:26,
-585,"Paulner, Mr. Uscher",male,,0,8.7125,,C,1914-04-10,13:31:59,2022-08-06 08:22:40,
-586,"Taussig, Miss. Ruth",female,18,2,79.65,E68,S,1906-05-28,12:29:57,2022-08-11 02:16:46,
-587,"Jarvis, Mr. John Denzil",male,47,0,15.0,,S,1904-08-14,15:39:40,2022-07-27 12:00:52,
-588,"Frolicher-Stehli, Mr. Maxmillian",male,60,1,79.2,B41,C,1918-10-18,16:36:18,2022-08-06 13:34:53,
-589,"Gilinski, Mr. Eliezer",male,22,0,8.05,,S,1936-02-10,12:42:56,2022-08-13 01:35:42,
-590,"Murdlin, Mr. Joseph",male,,0,8.05,,S,1940-01-13,13:55:58,2022-07-31 20:15:14,
-591,"Rintamaki, Mr. Matti",male,35,0,7.125,,S,1936-07-26,11:37:26,,
-592,"Stephenson, Mrs. Walter Bertram (Martha Eustis)",female,52,0,78.2667,D20,C,1904-11-23,16:40:12,2022-07-17 16:41:04,
-593,"Elsbury, Mr. William James",male,47,0,7.25,,S,,14:58:13,2022-07-26 11:08:05,
-594,"Bourke, Miss. Mary",female,,2,7.75,,Q,1927-12-17,16:13:02,2022-08-05 06:01:44,
-595,"Chapman, Mr. John Henry",male,37,0,26.0,,S,1904-01-22,14:48:27,,
-596,"Van Impe, Mr. Jean Baptiste",male,36,1,24.15,,S,1936-08-02,11:08:33,2022-07-27 16:44:17,
-597,"Leitch, Miss. Jessie Wills",female,,0,33.0,,S,1909-04-10,16:33:06,2022-07-28 01:51:08,
-598,"Johnson, Mr. Alfred",male,49,0,0.0,,S,1924-08-24,14:23:30,2022-07-15 19:36:46,
-599,"Boulos, Mr. Hanna",male,,0,7.225,,C,1926-10-26,17:36:08,2022-08-11 12:18:25,
-600,"Duff Gordon, Sir. Cosmo Edmund (""Mr Morgan"")",male,49,0,56.9292,A20,C,1930-10-31,16:23:39,2022-07-19 10:53:41,
-601,"Jacobsohn, Mrs. Sidney Samuel (Amy Frances Christy)",female,24,1,27.0,,S,1909-10-28,18:14:28,2022-07-18 06:43:11,
-602,"Slabenoff, Mr. Petco",male,,0,7.8958,,S,1913-02-10,14:24:41,2022-08-07 05:51:16,
-603,"Harrington, Mr. Charles H",male,,0,42.4,,S,1913-08-19,,2022-08-01 01:06:07,
-604,"Torber, Mr. Ernst William",male,44,0,8.05,,S,1924-07-14,17:34:20,,
-605,"Homer, Mr. Harry (""Mr E Haven"")",male,35,0,26.55,,C,1924-08-03,,2022-07-15 12:36:08,
-606,"Lindell, Mr. Edvard Bengtsson",male,36,0,15.55,,S,1919-02-26,15:27:08,,
-607,"Karaic, Mr. Milan",male,30,0,7.8958,,S,1923-02-22,11:48:04,2022-08-14 19:46:21,
-608,"Daniel, Mr. Robert Williams",male,27,0,30.5,,S,1935-04-15,14:13:15,2022-07-21 04:46:27,
-609,"Laroche, Mrs. Joseph (Juliette Marie Louise Lafargue)",female,22,2,41.5792,,C,1915-11-07,13:54:06,2022-08-11 08:10:36,
-610,"Shutes, Miss. Elizabeth W",female,40,0,153.4625,C125,S,1920-06-08,18:05:36,2022-07-17 15:45:52,
-611,"Andersson, Mrs. Anders Johan (Alfrida Konstantia Brogren)",female,39,5,31.275,,S,1940-05-19,13:08:51,2022-07-21 20:22:44,
-612,"Jardin, Mr. Jose Neto",male,,0,7.05,,S,1925-08-18,13:09:31,2022-07-31 22:55:47,
-613,"Murphy, Miss. Margaret Jane",female,,0,15.5,,Q,1915-07-15,14:09:53,2022-07-20 03:00:47,
-614,"Horgan, Mr. John",male,,0,7.75,,Q,1926-07-03,18:22:42,2022-08-08 19:20:57,
-615,"Brocklebank, Mr. William Alfred",male,35,0,8.05,,S,1936-06-14,15:29:20,2022-07-24 18:37:47,
-616,"Herman, Miss. Alice",female,24,2,65.0,,S,1926-03-28,14:19:14,2022-08-14 23:56:25,
-617,"Danbom, Mr. Ernst Gilbert",male,34,1,14.4,,S,1905-04-03,13:12:02,2022-08-08 11:56:11,
-618,"Lobb, Mrs. William Arthur (Cordelia K Stanlick)",female,26,0,16.1,,S,1930-09-06,14:45:16,2022-07-26 00:27:15,
-619,"Becker, Miss. Marion Louise",female,4,1,39.0,F4,S,1926-07-17,13:17:19,2022-08-13 11:12:10,
-620,"Gavey, Mr. Lawrence",male,26,0,10.5,,S,1940-04-03,15:33:06,2022-08-01 15:28:59,
-621,"Yasbeck, Mr. Antoni",male,27,0,14.4542,,C,1925-06-01,11:46:09,,
-622,"Kimball, Mr. Edwin Nelson Jr",male,42,0,52.5542,D19,S,1931-08-27,,2022-07-28 21:14:33,
-623,"Nakid, Mr. Sahid",male,20,1,15.7417,,C,,18:39:09,2022-07-23 09:46:40,
-624,"Hansen, Mr. Henry Damsgaard",male,21,0,7.8542,,S,1931-05-01,12:35:55,2022-08-07 03:22:40,
-625,"Bowen, Mr. David John ""Dai""",male,21,0,16.1,,S,1905-03-13,10:51:11,2022-07-28 08:56:40,
-626,"Sutton, Mr. Frederick",male,61,0,32.3208,D50,S,1922-05-25,11:12:32,2022-07-22 11:30:42,
-627,"Kirkland, Rev. Charles Leonard",male,57,0,12.35,,Q,1918-06-19,15:58:12,2022-07-24 19:46:11,
-628,"Longley, Miss. Gretchen Fiske",female,21,0,77.9583,D9,S,1938-03-28,11:26:35,2022-08-05 04:10:51,
-629,"Bostandyeff, Mr. Guentcho",male,26,0,7.8958,,S,1914-09-15,11:37:33,2022-07-22 10:14:01,
-630,"O'Connell, Mr. Patrick D",male,,0,7.7333,,Q,1929-02-07,11:48:12,2022-07-28 17:58:25,
-631,"Barkworth, Mr. Algernon Henry Wilson",male,80,0,30.0,A23,S,1934-08-11,12:37:32,2022-07-20 16:22:21,
-632,"Lundahl, Mr. Johan Svensson",male,51,0,7.0542,,S,1919-06-27,14:16:59,2022-07-20 16:44:24,
-633,"Stahelin-Maeglin, Dr. Max",male,32,0,30.5,B50,C,1921-01-09,11:09:53,2022-07-26 04:44:19,
-634,"Parr, Mr. William Henry Marsh",male,,0,0.0,,S,1925-08-14,14:17:25,2022-08-01 06:59:37,
-635,"Skoog, Miss. Mabel",female,9,2,27.9,,S,1907-05-07,18:32:37,2022-08-12 06:47:50,
-636,"Davis, Miss. Mary",female,28,0,13.0,,S,1933-08-12,14:26:59,2022-07-21 23:04:28,
-637,"Leinonen, Mr. Antti Gustaf",male,32,0,7.925,,S,1904-09-26,14:04:06,2022-07-27 23:14:44,
-638,"Collyer, Mr. Harvey",male,31,1,26.25,,S,1912-01-19,12:38:01,2022-07-17 23:00:07,
-639,"Panula, Mrs. Juha (Maria Emilia Ojala)",female,41,5,39.6875,,S,,13:07:43,2022-07-25 14:27:12,
-640,"Thorneycroft, Mr. Percival",male,,0,16.1,,S,1933-05-13,17:27:18,2022-08-07 13:10:25,
-641,"Jensen, Mr. Hans Peder",male,20,0,7.8542,,S,1931-05-25,17:18:51,2022-08-03 11:02:38,
-642,"Sagesser, Mlle. Emma",female,24,0,69.3,B35,C,,18:08:39,,
-643,"Skoog, Miss. Margit Elizabeth",female,2,2,27.9,,S,1940-04-07,14:26:41,2022-08-01 21:39:45,
-644,"Foo, Mr. Choong",male,,0,56.4958,,S,1917-01-24,14:35:53,2022-08-10 20:44:59,
-645,"Baclini, Miss. Eugenie",female,1,1,19.2583,,C,1928-03-12,12:27:00,2022-08-03 17:08:25,
-646,"Harper, Mr. Henry Sleeper",male,48,0,76.7292,D33,C,1936-03-02,13:52:30,2022-08-05 13:16:43,
-647,"Cor, Mr. Liudevit",male,19,0,7.8958,,S,1930-03-15,17:26:22,,
-648,"Simonius-Blumer, Col. Oberst Alfons",male,56,0,35.5,A26,C,1910-02-14,13:11:33,2022-08-01 10:30:20,
-649,"Willey, Mr. Edward",male,,0,7.55,,S,1910-11-09,17:41:32,2022-08-09 06:40:40,
-650,"Stanley, Miss. Amy Zillah Elsie",female,23,0,7.55,,S,1913-11-29,10:44:35,2022-08-13 06:16:32,
-651,"Mitkoff, Mr. Mito",male,,0,7.8958,,S,1935-04-16,17:38:02,2022-07-19 02:38:40,
-652,"Doling, Miss. Elsie",female,18,1,23.0,,S,1913-05-28,14:59:12,,
-653,"Kalvik, Mr. Johannes Halvorsen",male,21,0,8.4333,,S,1914-01-23,17:22:38,2022-08-04 02:15:13,
-654,"O'Leary, Miss. Hanora ""Norah""",female,,0,7.8292,,Q,1931-06-15,13:24:04,2022-07-25 06:22:28,
-655,"Hegarty, Miss. Hanora ""Nora""",female,18,0,6.75,,Q,1905-01-26,12:52:04,2022-07-24 17:24:48,
-656,"Hickman, Mr. Leonard Mark",male,24,0,73.5,,S,1937-06-17,15:42:08,2022-07-22 02:00:34,
-657,"Radeff, Mr. Alexander",male,,0,7.8958,,S,1911-12-12,15:43:47,2022-07-29 14:24:22,
-658,"Bourke, Mrs. John (Catherine)",female,32,1,15.5,,Q,1921-12-03,14:29:45,2022-07-17 23:17:01,
-659,"Eitemiller, Mr. George Floyd",male,23,0,13.0,,S,1921-05-23,13:05:18,2022-08-06 07:02:12,
-660,"Newell, Mr. Arthur Webster",male,58,2,113.275,D48,C,1928-05-05,16:15:23,,
-661,"Frauenthal, Dr. Henry William",male,50,0,133.65,,S,1922-10-07,12:48:18,2022-08-14 18:14:25,
-662,"Badt, Mr. Mohamed",male,40,0,7.225,,C,1934-03-26,17:43:07,2022-07-24 00:41:05,
-663,"Colley, Mr. Edward Pomeroy",male,47,0,25.5875,E58,S,1924-12-19,13:52:12,2022-08-15 00:01:23,
-664,"Coleff, Mr. Peju",male,36,0,7.4958,,S,1906-10-14,13:03:03,2022-07-17 05:11:53,
-665,"Lindqvist, Mr. Eino William",male,20,0,7.925,,S,1915-03-03,13:30:47,,
-666,"Hickman, Mr. Lewis",male,32,0,73.5,,S,1914-03-19,12:06:49,2022-08-09 06:44:21,
-667,"Butler, Mr. Reginald Fenton",male,25,0,13.0,,S,1914-02-16,14:20:48,2022-08-05 05:54:13,
-668,"Rommetvedt, Mr. Knud Paust",male,,0,7.775,,S,1911-09-22,15:24:52,2022-07-23 11:16:56,
-669,"Cook, Mr. Jacob",male,43,0,8.05,,S,1938-06-26,16:20:55,2022-07-28 22:36:09,
-670,"Taylor, Mrs. Elmer Zebley (Juliet Cummins Wright)",female,,0,52.0,C126,S,1907-10-07,10:54:34,2022-08-01 03:40:40,
-671,"Brown, Mrs. Thomas William Solomon (Elizabeth Catherine Ford)",female,40,1,39.0,,S,,14:23:15,2022-07-21 22:09:51,
-672,"Davidson, Mr. Thornton",male,31,0,52.0,B71,S,1910-10-11,17:43:27,2022-08-09 03:25:22,
-673,"Mitchell, Mr. Henry Michael",male,70,0,10.5,,S,1923-09-22,17:15:58,2022-08-04 19:26:18,
-674,"Wilhelms, Mr. Charles",male,31,0,13.0,,S,1920-10-07,17:53:47,,
-675,"Watson, Mr. Ennis Hastings",male,,0,0.0,,S,,,,
-676,"Edvardsson, Mr. Gustaf Hjalmar",male,18,0,7.775,,S,1920-03-01,11:51:11,2022-08-13 03:59:45,
-677,"Sawyer, Mr. Frederick Charles",male,24,0,8.05,,S,1929-06-07,11:02:17,2022-07-19 12:48:43,
-678,"Turja, Miss. Anna Sofia",female,18,0,9.8417,,S,1919-12-04,12:00:34,2022-07-22 22:19:18,
-679,"Goodwin, Mrs. Frederick (Augusta Tyler)",female,43,6,46.9,,S,1928-06-27,17:52:31,2022-07-27 08:31:55,
-680,"Cardeza, Mr. Thomas Drake Martinez",male,36,1,512.3292,B51 B53 B55,C,,17:17:00,2022-08-09 15:58:49,
-681,"Peters, Miss. Katie",female,,0,8.1375,,Q,1931-05-26,15:03:42,,
-682,"Hassab, Mr. Hammad",male,27,0,76.7292,D49,C,1921-05-08,18:30:22,2022-07-15 12:21:15,
-683,"Olsvigen, Mr. Thor Anderson",male,20,0,9.225,,S,1908-07-03,16:47:20,2022-08-07 21:48:25,
-684,"Goodwin, Mr. Charles Edward",male,14,2,46.9,,S,1935-02-09,12:56:55,,
-685,"Brown, Mr. Thomas William Solomon",male,60,1,39.0,,S,1923-10-13,11:41:18,2022-07-27 04:32:16,
-686,"Laroche, Mr. Joseph Philippe Lemercier",male,25,2,41.5792,,C,1910-11-25,14:33:22,,
-687,"Panula, Mr. Jaako Arnold",male,14,1,39.6875,,S,1938-03-28,17:56:20,2022-07-29 22:50:08,
-688,"Dakic, Mr. Branko",male,19,0,10.1708,,S,1919-05-20,15:33:28,2022-07-26 21:54:51,
-689,"Fischer, Mr. Eberhard Thelander",male,18,0,7.7958,,S,,,2022-08-10 10:52:56,
-690,"Madill, Miss. Georgette Alexandra",female,15,1,211.3375,B5,S,,,2022-08-14 22:52:20,
-691,"Dick, Mr. Albert Adrian",male,31,0,57.0,B20,S,1925-06-06,12:23:50,,
-692,"Karun, Miss. Manca",female,4,1,13.4167,,C,1937-01-29,,2022-08-02 09:07:56,
-693,"Lam, Mr. Ali",male,,0,56.4958,,S,,17:35:43,2022-08-08 15:33:35,
-694,"Saad, Mr. Khalil",male,25,0,7.225,,C,1932-06-03,13:27:12,,
-695,"Weir, Col. John",male,60,0,26.55,,S,1909-12-07,,2022-08-14 20:54:21,
-696,"Chapman, Mr. Charles Henry",male,52,0,13.5,,S,,13:35:28,2022-08-07 18:37:42,
-697,"Kelly, Mr. James",male,44,0,8.05,,S,1910-09-04,12:58:35,2022-07-21 11:45:54,
-698,"Mullens, Miss. Katherine ""Katie""",female,,0,7.7333,,Q,1923-03-02,12:40:32,2022-07-25 08:33:08,
-699,"Thayer, Mr. John Borland",male,49,1,110.8833,C68,C,1932-01-30,13:00:47,2022-07-29 19:34:53,
-700,"Humblen, Mr. Adolf Mathias Nicolai Olsen",male,42,0,7.65,F G63,S,1926-04-23,13:37:26,2022-08-01 05:46:18,
-701,"Astor, Mrs. John Jacob (Madeleine Talmadge Force)",female,18,0,227.525,C62 C64,C,1922-12-22,17:38:32,2022-08-10 06:37:02,
-702,"Silverthorne, Mr. Spencer Victor",male,35,0,26.2875,E24,S,1920-11-22,12:25:37,2022-08-07 06:30:36,
-703,"Barbara, Miss. Saiide",female,18,1,14.4542,,C,1934-01-17,11:15:07,2022-08-04 22:11:45,
-704,"Gallagher, Mr. Martin",male,25,0,7.7417,,Q,1906-04-27,16:30:13,2022-07-29 07:42:37,
-705,"Hansen, Mr. Henrik Juul",male,26,0,7.8542,,S,,13:01:25,,
-706,"Morley, Mr. Henry Samuel (""Mr Henry Marshall"")",male,39,0,26.0,,S,1929-01-21,12:19:03,2022-07-18 18:56:19,
-707,"Kelly, Mrs. Florence ""Fannie""",female,45,0,13.5,,S,1929-09-23,16:37:00,2022-07-19 01:52:35,
-708,"Calderhead, Mr. Edward Pennington",male,42,0,26.2875,E24,S,1907-03-07,18:30:23,2022-07-18 11:43:22,
-709,"Cleaver, Miss. Alice",female,22,0,151.55,,S,1908-04-06,15:32:33,2022-08-08 06:43:36,
-710,"Moubarek, Master. Halim Gonios (""William George"")",male,,1,15.2458,,C,1930-06-30,11:55:07,2022-07-30 15:05:08,
-711,"Mayne, Mlle. Berthe Antonine (""Mrs de Villiers"")",female,24,0,49.5042,C90,C,1923-06-22,16:42:41,2022-07-27 21:40:50,
-712,"Klaber, Mr. Herman",male,,0,26.55,C124,S,1923-09-05,13:43:03,2022-07-17 01:43:51,
-713,"Taylor, Mr. Elmer Zebley",male,48,0,52.0,C126,S,1904-04-06,13:37:25,2022-07-30 22:28:06,
-714,"Larsson, Mr. August Viktor",male,29,0,9.4833,,S,1928-05-20,12:56:20,2022-07-25 01:50:04,
-715,"Greenberg, Mr. Samuel",male,52,0,13.0,,S,1926-09-27,16:47:25,2022-07-31 16:13:01,
-716,"Soholt, Mr. Peter Andreas Lauritz Andersen",male,19,0,7.65,F G73,S,1931-07-29,14:35:50,2022-07-23 13:50:54,
-717,"Endres, Miss. Caroline Louise",female,38,0,227.525,C45,C,1920-11-11,15:33:08,2022-08-06 03:17:43,
-718,"Troutt, Miss. Edwina Celia ""Winnie""",female,27,0,10.5,E101,S,1908-08-28,17:14:45,2022-07-24 22:04:40,
-719,"McEvoy, Mr. Michael",male,,0,15.5,,Q,1914-02-14,15:11:38,2022-07-18 14:39:51,
-720,"Johnson, Mr. Malkolm Joackim",male,33,0,7.775,,S,1937-06-17,17:00:10,2022-07-19 14:10:39,
-721,"Harper, Miss. Annie Jessie ""Nina""",female,6,1,33.0,,S,1903-07-28,11:59:48,2022-07-23 10:57:00,
-722,"Jensen, Mr. Svend Lauritz",male,17,0,7.0542,,S,1911-03-05,17:39:56,,
-723,"Gillespie, Mr. William Henry",male,34,0,13.0,,S,1916-07-12,17:37:10,2022-07-29 22:19:23,
-724,"Hodges, Mr. Henry Price",male,50,0,13.0,,S,1920-04-25,18:33:16,2022-07-21 04:38:13,
-725,"Chambers, Mr. Norman Campbell",male,27,0,53.1,E8,S,1937-12-29,16:41:10,2022-07-20 16:13:40,
-726,"Oreskovic, Mr. Luka",male,20,0,8.6625,,S,1934-11-11,,2022-07-24 21:25:04,
-727,"Renouf, Mrs. Peter Henry (Lillian Jefferys)",female,30,0,21.0,,S,1906-03-03,16:34:31,2022-08-05 02:47:02,
-728,"Mannion, Miss. Margareth",female,,0,7.7375,,Q,1927-04-02,13:19:47,2022-07-21 03:20:47,
-729,"Bryhl, Mr. Kurt Arnold Gottfrid",male,25,0,26.0,,S,1939-08-03,10:43:41,2022-07-19 19:32:10,
-730,"Ilmakangas, Miss. Pieta Sofia",female,25,0,7.925,,S,1906-07-25,11:06:11,2022-07-23 10:47:29,
-731,"Allen, Miss. Elisabeth Walton",female,29,0,211.3375,B5,S,1940-01-31,11:50:13,2022-07-24 16:41:46,
-732,"Hassan, Mr. Houssein G N",male,11,0,18.7875,,C,1917-09-07,13:18:49,2022-08-06 18:35:05,
-733,"Knight, Mr. Robert J",male,,0,0.0,,S,1925-12-19,11:59:52,2022-08-08 18:07:31,
-734,"Berriman, Mr. William John",male,23,0,13.0,,S,1928-01-16,17:08:59,2022-08-11 14:12:08,
-735,"Troupiansky, Mr. Moses Aaron",male,23,0,13.0,,S,1923-03-27,,,
-736,"Williams, Mr. Leslie",male,28,0,16.1,,S,1926-06-21,16:13:08,2022-08-04 11:57:50,
-737,"Ford, Mrs. Edward (Margaret Ann Watson)",female,48,3,34.375,,S,1931-01-14,13:53:44,2022-07-18 01:52:55,
-738,"Lesurer, Mr. Gustave J",male,35,0,512.3292,B101,C,1913-12-07,16:10:06,2022-07-31 22:44:31,
-739,"Ivanoff, Mr. Kanio",male,,0,7.8958,,S,1923-02-18,11:11:31,2022-08-08 13:46:49,
-740,"Nankoff, Mr. Minko",male,,0,7.8958,,S,1929-01-16,16:46:13,2022-08-10 20:04:01,
-741,"Hawksford, Mr. Walter James",male,,0,30.0,D45,S,1913-05-06,10:53:38,2022-08-10 04:59:04,
-742,"Cavendish, Mr. Tyrell William",male,36,0,78.85,C46,S,1920-07-24,15:01:49,2022-07-26 06:46:55,
-743,"Ryerson, Miss. Susan Parker ""Suzette""",female,21,2,262.375,B57 B59 B63 B66,C,1930-12-17,,2022-07-29 16:36:39,
-744,"McNamee, Mr. Neal",male,24,0,16.1,,S,1905-06-12,11:35:32,2022-07-29 15:43:28,
-745,"Stranden, Mr. Juho",male,31,0,7.925,,S,1925-05-18,17:24:09,2022-08-12 06:23:19,
-746,"Crosby, Capt. Edward Gifford",male,70,1,71.0,B22,S,1909-10-25,12:38:07,2022-07-31 14:53:19,
-747,"Abbott, Mr. Rossmore Edward",male,16,1,20.25,,S,1904-05-05,14:05:15,2022-08-04 21:24:58,
-748,"Sinkkonen, Miss. Anna",female,30,0,13.0,,S,1939-02-28,17:35:12,2022-08-08 14:45:45,
-749,"Marvin, Mr. Daniel Warner",male,19,0,53.1,D30,S,1933-12-30,13:20:05,2022-07-27 09:50:33,
-750,"Connaghton, Mr. Michael",male,31,0,7.75,,Q,1930-05-04,16:03:14,2022-08-07 15:19:48,
-751,"Wells, Miss. Joan",female,4,1,23.0,,S,1927-05-12,15:02:41,2022-08-13 00:08:32,
-752,"Moor, Master. Meier",male,6,1,12.475,E121,S,1915-04-23,13:12:16,2022-07-19 23:17:19,
-753,"Vande Velde, Mr. Johannes Joseph",male,33,0,9.5,,S,1937-03-05,13:54:14,2022-07-28 21:56:14,
-754,"Jonkoff, Mr. Lalio",male,23,0,7.8958,,S,1927-01-15,13:13:38,,
-755,"Herman, Mrs. Samuel (Jane Laver)",female,48,2,65.0,,S,1932-01-11,14:05:47,2022-08-14 23:02:07,
-756,"Hamalainen, Master. Viljo",male,1,1,14.5,,S,1926-12-24,15:55:31,2022-08-02 04:41:38,
-757,"Carlsson, Mr. August Sigfrid",male,28,0,7.7958,,S,,12:25:52,,
-758,"Bailey, Mr. Percy Andrew",male,18,0,11.5,,S,1931-08-19,15:46:53,2022-07-17 18:56:15,
-759,"Theobald, Mr. Thomas Leonard",male,34,0,8.05,,S,,10:48:03,,
-760,"Rothes, the Countess. of (Lucy Noel Martha Dyer-Edwards)",female,33,0,86.5,B77,S,1923-10-03,18:29:09,2022-08-08 13:04:07,
-761,"Garfirth, Mr. John",male,,0,14.5,,S,1928-11-08,10:50:27,2022-07-29 05:05:51,
-762,"Nirva, Mr. Iisakki Antino Aijo",male,41,0,7.125,,S,1908-11-16,11:05:17,2022-08-13 22:43:40,
-763,"Barah, Mr. Hanna Assi",male,20,0,7.2292,,C,1932-02-24,14:11:45,2022-07-30 21:55:00,
-764,"Carter, Mrs. William Ernest (Lucile Polk)",female,36,2,120.0,B96 B98,S,1906-12-20,11:50:28,,
-765,"Eklund, Mr. Hans Linus",male,16,0,7.775,,S,1923-05-06,17:28:59,2022-07-17 01:11:43,
-766,"Hogeboom, Mrs. John C (Anna Andrews)",female,51,0,77.9583,D11,S,1928-07-07,13:36:55,2022-07-25 18:15:08,
-767,"Brewe, Dr. Arthur Jackson",male,,0,39.6,,C,,12:08:12,2022-07-17 05:22:45,
-768,"Mangan, Miss. Mary",female,30,0,7.75,,Q,1907-06-18,10:39:40,2022-07-31 00:36:56,
-769,"Moran, Mr. Daniel J",male,,0,24.15,,Q,,13:06:16,2022-07-20 05:55:12,
-770,"Gronnestad, Mr. Daniel Danielsen",male,32,0,8.3625,,S,1927-04-16,10:55:29,,
-771,"Lievens, Mr. Rene Aime",male,24,0,9.5,,S,,18:05:33,2022-08-03 01:20:59,
-772,"Jensen, Mr. Niels Peder",male,48,0,7.8542,,S,1926-02-09,11:54:52,2022-07-28 08:52:59,
-773,"Mack, Mrs. (Mary)",female,57,0,10.5,E77,S,1929-12-03,18:18:08,2022-07-24 20:32:20,
-774,"Elias, Mr. Dibo",male,,0,7.225,,C,,10:43:27,2022-07-24 06:05:41,
-775,"Hocking, Mrs. Elizabeth (Eliza Needs)",female,54,3,23.0,,S,1924-02-13,11:10:16,2022-07-28 10:35:48,
-776,"Myhrman, Mr. Pehr Fabian Oliver Malkolm",male,18,0,7.75,,S,1911-05-05,16:46:48,2022-08-04 20:42:27,
-777,"Tobin, Mr. Roger",male,,0,7.75,F38,Q,1909-02-03,17:21:32,2022-08-06 22:35:41,
-778,"Emanuel, Miss. Virginia Ethel",female,5,0,12.475,,S,1923-01-16,17:18:31,2022-07-19 02:32:10,
-779,"Kilgannon, Mr. Thomas J",male,,0,7.7375,,Q,1918-05-04,17:28:05,2022-07-31 21:00:47,
-780,"Robert, Mrs. Edward Scott (Elisabeth Walton McMillan)",female,43,1,211.3375,B3,S,1930-09-13,13:20:30,2022-07-27 14:59:00,
-781,"Ayoub, Miss. Banoura",female,13,0,7.2292,,C,1924-10-12,17:04:23,2022-07-29 16:35:21,
-782,"Dick, Mrs. Albert Adrian (Vera Gillespie)",female,17,0,57.0,B20,S,1933-02-20,10:44:13,2022-08-10 07:13:15,
-783,"Long, Mr. Milton Clyde",male,29,0,30.0,D6,S,1916-02-08,16:50:06,,
-784,"Johnston, Mr. Andrew G",male,,2,23.45,,S,1917-02-26,15:41:26,2022-07-21 08:49:13,
-785,"Ali, Mr. William",male,25,0,7.05,,S,1931-07-04,17:52:24,2022-08-01 06:04:45,
-786,"Harmer, Mr. Abraham (David Lishin)",male,25,0,7.25,,S,1909-07-09,12:58:56,2022-08-05 22:39:10,
-787,"Sjoblom, Miss. Anna Sofia",female,18,0,7.4958,,S,1932-02-17,15:23:43,2022-07-30 02:10:32,
-788,"Rice, Master. George Hugh",male,8,1,29.125,,Q,1905-04-23,16:05:49,2022-08-10 06:09:22,
-789,"Dean, Master. Bertram Vere",male,1,2,20.575,,S,1912-06-20,15:26:03,2022-08-14 09:18:08,
-790,"Guggenheim, Mr. Benjamin",male,46,0,79.2,B82 B84,C,1911-06-11,14:08:33,2022-08-14 07:32:34,
-791,"Keane, Mr. Andrew ""Andy""",male,,0,7.75,,Q,1915-03-21,13:03:07,,
-792,"Gaskell, Mr. Alfred",male,16,0,26.0,,S,1906-10-06,11:58:13,2022-08-12 14:47:25,
-793,"Sage, Miss. Stella Anna",female,,2,69.55,,S,1912-03-17,17:15:56,2022-07-24 11:04:59,
-794,"Hoyt, Mr. William Fisher",male,,0,30.6958,,C,1933-11-04,15:48:43,2022-07-22 05:18:54,
-795,"Dantcheff, Mr. Ristiu",male,25,0,7.8958,,S,1905-12-28,13:12:23,2022-08-08 18:48:11,
-796,"Otter, Mr. Richard",male,39,0,13.0,,S,1936-07-26,14:12:57,2022-08-10 10:27:36,
-797,"Leader, Dr. Alice (Farnham)",female,49,0,25.9292,D17,S,1905-08-24,14:08:20,2022-07-15 20:12:35,
-798,"Osman, Mrs. Mara",female,31,0,8.6833,,S,1907-01-13,17:04:19,2022-08-14 08:07:35,
-799,"Ibrahim Shawah, Mr. Yousseff",male,30,0,7.2292,,C,,14:36:39,2022-08-01 17:05:29,
-800,"Van Impe, Mrs. Jean Baptiste (Rosalie Paula Govaert)",female,30,1,24.15,,S,1908-01-15,14:13:48,2022-08-02 03:59:57,
-801,"Ponesell, Mr. Martin",male,34,0,13.0,,S,1930-08-09,15:14:14,2022-07-16 05:12:49,
-802,"Collyer, Mrs. Harvey (Charlotte Annie Tate)",female,31,1,26.25,,S,,,2022-07-24 07:28:00,
-803,"Carter, Master. William Thornton II",male,11,2,120.0,B96 B98,S,1935-01-03,18:23:00,,
-804,"Thomas, Master. Assad Alexander",male,0,1,8.5167,,C,1919-12-26,12:48:05,2022-07-30 14:45:57,
-805,"Hedman, Mr. Oskar Arvid",male,27,0,6.975,,S,1937-02-20,15:14:18,2022-08-01 17:54:05,
-806,"Johansson, Mr. Karl Johan",male,31,0,7.775,,S,1916-01-24,18:13:33,2022-07-19 14:37:59,
-807,"Andrews, Mr. Thomas Jr",male,39,0,0.0,A36,S,1925-11-17,10:50:14,2022-07-17 18:07:59,
-808,"Pettersson, Miss. Ellen Natalia",female,18,0,7.775,,S,,11:32:47,2022-08-08 23:33:25,
-809,"Meyer, Mr. August",male,39,0,13.0,,S,,14:36:42,2022-07-31 14:32:43,
-810,"Chambers, Mrs. Norman Campbell (Bertha Griggs)",female,33,0,53.1,E8,S,1918-05-18,18:07:40,2022-08-07 18:45:56,
-811,"Alexander, Mr. William",male,26,0,7.8875,,S,1925-09-18,,2022-07-28 17:01:54,
-812,"Lester, Mr. James",male,39,0,24.15,,S,1933-07-05,12:19:15,2022-07-25 11:02:13,
-813,"Slemen, Mr. Richard James",male,35,0,10.5,,S,1928-04-01,,2022-08-08 12:17:34,
-814,"Andersson, Miss. Ebba Iris Alfrida",female,6,2,31.275,,S,1910-03-13,18:22:48,2022-07-21 20:49:04,
-815,"Tomlin, Mr. Ernest Portage",male,30,0,8.05,,S,1911-01-12,15:53:22,2022-07-24 10:05:41,
-816,"Fry, Mr. Richard",male,,0,0.0,B102,S,1925-11-17,,2022-08-15 06:39:41,
-817,"Heininen, Miss. Wendla Maria",female,23,0,7.925,,S,1924-09-25,17:22:14,2022-08-02 20:51:22,
-818,"Mallet, Mr. Albert",male,31,1,37.0042,,C,1924-12-17,18:10:18,2022-08-11 08:45:24,
-819,"Holm, Mr. John Fredrik Alexander",male,43,0,6.45,,S,1910-09-20,16:53:34,2022-08-03 15:14:29,
-820,"Skoog, Master. Karl Thorsten",male,10,2,27.9,,S,1922-03-01,14:23:01,,
-821,"Hays, Mrs. Charles Melville (Clara Jennings Gregg)",female,52,1,93.5,B69,S,,14:40:52,2022-08-09 18:01:28,
-822,"Lulic, Mr. Nikola",male,27,0,8.6625,,S,1936-05-18,17:52:23,2022-08-06 13:03:36,
-823,"Reuchlin, Jonkheer. John George",male,38,0,0.0,,S,1936-10-22,10:57:18,2022-08-13 05:21:41,
-824,"Moor, Mrs. (Beila)",female,27,1,12.475,E121,S,1911-02-08,17:57:42,2022-07-18 15:26:57,
-825,"Panula, Master. Urho Abraham",male,2,1,39.6875,,S,,11:31:36,2022-08-07 23:16:07,
-826,"Flynn, Mr. John",male,,0,6.95,,Q,,,,
-827,"Lam, Mr. Len",male,,0,56.4958,,S,1938-07-20,15:45:02,2022-07-22 17:07:09,
-828,"Mallet, Master. Andre",male,1,2,37.0042,,C,1912-01-07,16:24:31,2022-07-27 08:34:46,
-829,"McCormack, Mr. Thomas Joseph",male,,0,7.75,,Q,1909-10-11,13:00:05,2022-07-25 05:26:36,
-830,"Stone, Mrs. George Nelson (Martha Evelyn)",female,62,0,80.0,B28,,1930-11-11,14:43:08,2022-07-29 20:06:53,
-831,"Yasbeck, Mrs. Antoni (Selini Alexander)",female,15,0,14.4542,,C,1937-10-01,18:37:54,2022-07-25 15:15:32,
-832,"Richards, Master. George Sibley",male,1,1,18.75,,S,1933-09-23,17:36:30,2022-07-27 03:09:46,
-833,"Saad, Mr. Amin",male,,0,7.2292,,C,1939-05-29,13:09:26,2022-07-20 01:31:17,
-834,"Augustsson, Mr. Albert",male,23,0,7.8542,,S,1933-03-14,12:28:20,2022-08-11 17:11:31,
-835,"Allum, Mr. Owen George",male,18,0,8.3,,S,1931-06-23,15:57:25,2022-07-25 17:46:16,
-836,"Compton, Miss. Sara Rebecca",female,39,1,83.1583,E49,C,1921-11-13,16:11:34,2022-08-06 14:06:42,
-837,"Pasic, Mr. Jakob",male,21,0,8.6625,,S,1908-11-20,,2022-08-06 01:06:21,
-838,"Sirota, Mr. Maurice",male,,0,8.05,,S,1921-04-12,10:47:49,2022-08-14 21:29:00,
-839,"Chip, Mr. Chang",male,32,0,56.4958,,S,1911-06-03,11:09:09,2022-08-04 12:30:40,
-840,"Marechal, Mr. Pierre",male,,0,29.7,C47,C,1916-03-14,13:27:10,2022-08-03 05:24:52,
-841,"Alhomaki, Mr. Ilmari Rudolf",male,20,0,7.925,,S,1909-02-19,10:40:20,2022-08-05 05:57:09,
-842,"Mudd, Mr. Thomas Charles",male,16,0,10.5,,S,1918-06-23,17:50:25,2022-08-10 19:03:24,
-843,"Serepeca, Miss. Augusta",female,30,0,31.0,,C,1906-09-16,11:15:05,2022-07-24 01:02:07,
-844,"Lemberopolous, Mr. Peter L",male,34,0,6.4375,,C,1932-05-27,18:08:39,,
-845,"Culumovic, Mr. Jeso",male,17,0,8.6625,,S,1925-04-22,12:03:39,,
-846,"Abbing, Mr. Anthony",male,42,0,7.55,,S,,14:02:53,2022-07-31 04:10:32,
-847,"Sage, Mr. Douglas Bullen",male,,2,69.55,,S,1904-08-29,13:08:15,,
-848,"Markoff, Mr. Marin",male,35,0,7.8958,,C,1939-04-14,17:47:02,2022-08-09 01:53:59,
-849,"Harper, Rev. John",male,28,1,33.0,,S,1905-06-20,14:19:47,2022-08-05 04:59:39,
-850,"Goldenberg, Mrs. Samuel L (Edwiga Grabowska)",female,,0,89.1042,C92,C,1919-02-15,18:10:45,2022-07-29 07:54:52,
-851,"Andersson, Master. Sigvard Harald Elias",male,4,2,31.275,,S,1922-12-06,,2022-07-17 16:16:07,
-852,"Svensson, Mr. Johan",male,74,0,7.775,,S,1928-06-17,13:40:30,2022-08-04 10:45:32,
-853,"Boulos, Miss. Nourelain",female,9,1,15.2458,,C,1908-02-05,11:12:58,2022-08-06 16:16:17,
-854,"Lines, Miss. Mary Conover",female,16,1,39.4,D28,S,1916-04-20,13:05:42,2022-08-09 03:43:58,
-855,"Carter, Mrs. Ernest Courtenay (Lilian Hughes)",female,44,0,26.0,,S,1938-09-02,13:39:12,2022-08-09 03:06:29,
-856,"Aks, Mrs. Sam (Leah Rosen)",female,18,1,9.35,,S,1927-10-06,18:20:35,2022-08-14 23:58:10,
-857,"Wick, Mrs. George Dennick (Mary Hitchcock)",female,45,1,164.8667,,S,1908-11-15,12:55:23,2022-08-08 19:08:35,
-858,"Daly, Mr. Peter Denis ",male,51,0,26.55,E17,S,1926-08-15,,2022-07-15 18:30:07,
-859,"Baclini, Mrs. Solomon (Latifa Qurban)",female,24,3,19.2583,,C,1924-03-15,17:34:19,2022-08-08 22:16:32,
-860,"Razi, Mr. Raihed",male,,0,7.2292,,C,1927-01-04,,2022-07-22 06:07:51,
-861,"Hansen, Mr. Claus Peter",male,41,0,14.1083,,S,1914-04-20,18:38:11,2022-07-27 02:23:17,
-862,"Giles, Mr. Frederick Edward",male,21,0,11.5,,S,1923-09-16,16:11:31,2022-08-11 12:10:55,
-863,"Swift, Mrs. Frederick Joel (Margaret Welles Barron)",female,48,0,25.9292,D17,S,1918-06-11,13:24:06,2022-08-12 01:59:41,
-864,"Sage, Miss. Dorothy Edith ""Dolly""",female,,2,69.55,,S,1922-06-20,,2022-08-05 23:57:19,
-865,"Gill, Mr. John William",male,24,0,13.0,,S,1903-12-31,18:04:53,2022-08-12 17:56:13,
-866,"Bystrom, Mrs. (Karolina)",female,42,0,13.0,,S,1905-06-17,17:55:39,,
-867,"Duran y More, Miss. Asuncion",female,27,0,13.8583,,C,1908-04-17,14:07:05,2022-07-28 08:03:10,
-868,"Roebling, Mr. Washington Augustus II",male,31,0,50.4958,A24,S,1924-05-15,14:04:48,2022-07-31 16:36:50,
-869,"van Melkebeke, Mr. Philemon",male,,0,9.5,,S,1919-02-20,13:57:20,2022-07-19 04:52:58,
-870,"Johnson, Master. Harold Theodor",male,4,1,11.1333,,S,1922-01-05,11:08:30,2022-07-15 19:00:57,
-871,"Balkic, Mr. Cerin",male,26,0,7.8958,,S,1907-04-18,11:37:04,2022-08-12 07:11:23,
-872,"Beckwith, Mrs. Richard Leonard (Sallie Monypeny)",female,47,1,52.5542,D35,S,1906-09-22,,2022-08-06 23:54:08,
-873,"Carlsson, Mr. Frans Olof",male,33,0,5.0,B51 B53 B55,S,1935-05-02,13:53:42,2022-08-03 08:57:03,
-874,"Vander Cruyssen, Mr. Victor",male,47,0,9.0,,S,1923-02-25,11:06:07,2022-07-21 13:38:28,
-875,"Abelson, Mrs. Samuel (Hannah Wizosky)",female,28,0,24.0,,C,1930-08-29,15:26:37,2022-07-18 09:35:23,
-876,"Najib, Miss. Adele Kiamie ""Jane""",female,15,0,7.225,,C,1924-10-01,17:31:01,2022-08-07 05:17:34,
-877,"Gustafsson, Mr. Alfred Ossian",male,20,0,9.8458,,S,1908-12-07,13:58:03,2022-08-04 20:00:38,
-878,"Petroff, Mr. Nedelio",male,19,0,7.8958,,S,1906-05-24,11:13:04,2022-08-13 15:51:37,
-879,"Laleff, Mr. Kristo",male,,0,7.8958,,S,1922-11-19,10:43:39,2022-07-17 13:00:02,
-880,"Potter, Mrs. Thomas Jr (Lily Alexenia Wilson)",female,56,1,83.1583,C50,C,1931-11-15,14:37:49,2022-07-19 19:15:57,
-881,"Shelley, Mrs. William (Imanita Parrish Hall)",female,25,1,26.0,,S,1915-06-06,14:08:17,2022-08-15 06:11:18,
-882,"Markun, Mr. Johann",male,33,0,7.8958,,S,1921-11-12,15:55:36,2022-07-18 04:28:15,
-883,"Dahlberg, Miss. Gerda Ulrika",female,22,0,10.5167,,S,,15:36:36,2022-08-05 13:26:26,
-884,"Banfield, Mr. Frederick James",male,28,0,10.5,,S,1934-09-04,16:10:24,2022-08-06 03:44:50,
-885,"Sutehall, Mr. Henry Jr",male,25,0,7.05,,S,1938-03-07,17:36:02,2022-08-02 02:29:17,
-886,"Rice, Mrs. William (Margaret Norton)",female,39,5,29.125,,Q,1923-05-27,15:55:39,,
-887,"Montvila, Rev. Juozas",male,27,0,13.0,,S,1918-09-16,13:58:18,2022-08-02 17:29:12,
-888,"Graham, Miss. Margaret Edith",female,19,0,30.0,B42,S,1911-04-28,11:43:34,2022-07-30 03:35:42,
-889,"Johnston, Miss. Catherine Helen ""Carrie""",female,,2,23.45,,S,1939-03-18,14:41:36,,
-890,"Behr, Mr. Karl Howell",male,26,0,30.0,C148,C,1905-04-16,13:37:08,2022-07-23 08:04:22,
-891,"Dooley, Mr. Patrick",male,32,0,7.75,,Q,,17:21:32,2022-08-01 11:07:59,
+PassengerId,Name,Sex,Age,Parch,Ticket,Fare,Cabin,Embarked,Birthday,Board time,Married since,all_NA
+1,"Braund, Mr. Owen Harris",male,22,0,A/5 21171,7.25,,S,1937-10-28,15:53:04,2022-08-05 04:43:34,
+2,"Cumings, Mrs. John Bradley (Florence Briggs Thayer)",female,38,0,PC 17599,71.2833,C85,C,,12:26:00,2022-08-07 01:56:33,
+3,"Heikkinen, Miss. Laina",female,26,0,STON/O2. 3101282,7.925,,S,1931-09-24,16:08:25,2022-08-04 20:27:37,
+4,"Futrelle, Mrs. Jacques Heath (Lily May Peel)",female,35,0,113803,53.1,C123,S,1936-11-30,,2022-08-07 07:05:55,
+5,"Allen, Mr. William Henry",male,35,0,373450,8.05,,S,1918-11-07,10:59:08,2022-08-02 15:13:34,
+6,"Moran, Mr. James",male,,0,330877,8.4583,,Q,1923-06-02,16:28:33,2022-07-28 14:37:30,
+7,"McCarthy, Mr. Timothy J",male,54,0,17463,51.8625,E46,S,1928-07-02,17:20:04,2022-07-18 20:20:09,
+8,"Palsson, Master. Gosta Leonard",male,2,1,349909,21.075,,S,1918-03-12,17:56:40,2022-08-02 03:42:58,
+9,"Johnson, Mrs. Oscar W (Elisabeth Vilhelmina Berg)",female,27,2,347742,11.1333,,S,1909-11-16,16:33:50,2022-08-07 04:06:24,
+10,"Nasser, Mrs. Nicholas (Adele Achem)",female,14,0,237736,30.0708,,C,,17:28:21,2022-07-17 22:55:10,
+11,"Sandstrom, Miss. Marguerite Rut",female,4,1,PP 9549,16.7,G6,S,1903-10-30,16:41:34,2022-07-24 19:18:18,
+12,"Bonnell, Miss. Elizabeth",female,58,0,113783,26.55,C103,S,1938-12-31,17:32:25,2022-07-23 03:46:49,
+13,"Saundercock, Mr. William Henry",male,20,0,A/5. 2151,8.05,,S,1932-05-01,11:09:30,2022-07-27 10:47:33,
+14,"Andersson, Mr. Anders Johan",male,39,5,347082,31.275,,S,1933-03-06,14:16:15,2022-08-04 18:49:36,
+15,"Vestrom, Miss. Hulda Amanda Adolfina",female,14,0,350406,7.8542,,S,1908-05-26,18:36:24,2022-08-10 22:17:32,
+16,"Hewlett, Mrs. (Mary D Kingcome) ",female,55,0,248706,16.0,,S,1906-05-01,17:46:34,,
+17,"Rice, Master. Eugene",male,2,1,382652,29.125,,Q,1909-05-19,15:39:25,2022-08-06 22:46:12,
+18,"Williams, Mr. Charles Eugene",male,,0,244373,13.0,,S,1916-12-15,15:00:45,2022-07-24 10:54:46,
+19,"Vander Planke, Mrs. Julius (Emelia Maria Vandemoortele)",female,31,0,345763,18.0,,S,1938-02-27,17:27:11,2022-08-15 03:39:59,
+20,"Masselmani, Mrs. Fatima",female,,0,2649,7.225,,C,1921-08-01,13:01:05,2022-08-09 03:06:51,
+21,"Fynney, Mr. Joseph J",male,35,0,239865,26.0,,S,1920-09-17,12:11:48,2022-07-31 12:30:35,
+22,"Beesley, Mr. Lawrence",male,34,0,248698,13.0,D56,S,1928-09-03,18:30:54,2022-07-15 12:58:08,
+23,"McGowan, Miss. Anna ""Annie""",female,15,0,330923,8.0292,,Q,1939-03-28,14:10:42,,
+24,"Sloper, Mr. William Thompson",male,28,0,113788,35.5,A6,S,1926-03-20,12:19:12,2022-07-25 06:31:32,
+25,"Palsson, Miss. Torborg Danira",female,8,1,349909,21.075,,S,1938-06-17,,2022-07-25 00:25:51,
+26,"Asplund, Mrs. Carl Oscar (Selma Augusta Emilia Johansson)",female,38,5,347077,31.3875,,S,,18:15:57,2022-08-10 05:31:28,
+27,"Emir, Mr. Farred Chehab",male,,0,2631,7.225,,C,1921-12-24,,2022-08-09 15:16:19,
+28,"Fortune, Mr. Charles Alexander",male,19,2,19950,263.0,C23 C25 C27,S,1934-06-08,11:47:08,2022-07-22 07:34:41,
+29,"O'Dwyer, Miss. Ellen ""Nellie""",female,,0,330959,7.8792,,Q,1938-03-20,,2022-07-17 12:20:31,
+30,"Todoroff, Mr. Lalio",male,,0,349216,7.8958,,S,1928-02-07,11:06:55,2022-07-17 11:29:11,
+31,"Uruchurtu, Don. Manuel E",male,40,0,PC 17601,27.7208,,C,,11:18:08,2022-08-01 09:00:50,
+32,"Spencer, Mrs. William Augustus (Marie Eugenie)",female,,0,PC 17569,146.5208,B78,C,1904-05-23,17:38:32,2022-08-12 00:23:17,
+33,"Glynn, Miss. Mary Agatha",female,,0,335677,7.75,,Q,1939-10-03,15:15:06,2022-07-26 20:12:13,
+34,"Wheadon, Mr. Edward H",male,66,0,C.A. 24579,10.5,,S,1907-10-10,18:15:37,2022-07-16 14:14:18,
+35,"Meyer, Mr. Edgar Joseph",male,28,0,PC 17604,82.1708,,C,1919-08-24,15:49:03,2022-07-19 00:44:15,
+36,"Holverson, Mr. Alexander Oskar",male,42,0,113789,52.0,,S,1939-05-24,17:33:36,2022-08-12 14:24:05,
+37,"Mamee, Mr. Hanna",male,,0,2677,7.2292,,C,1917-04-14,17:14:57,2022-08-08 22:40:30,
+38,"Cann, Mr. Ernest Charles",male,21,0,A./5. 2152,8.05,,S,1934-11-16,11:51:09,2022-08-03 22:37:37,
+39,"Vander Planke, Miss. Augusta Maria",female,18,0,345764,18.0,,S,1914-04-19,15:05:30,2022-08-14 13:54:54,
+40,"Nicola-Yarred, Miss. Jamila",female,14,0,2651,11.2417,,C,1927-09-20,14:07:06,2022-07-18 02:10:45,
+41,"Ahlin, Mrs. Johan (Johanna Persdotter Larsson)",female,40,0,7546,9.475,,S,1907-08-06,15:09:05,,
+42,"Turpin, Mrs. William John Robert (Dorothy Ann Wonnacott)",female,27,0,11668,21.0,,S,1909-04-06,18:17:30,2022-08-11 18:57:36,
+43,"Kraeff, Mr. Theodor",male,,0,349253,7.8958,,C,1929-01-19,,2022-07-30 02:04:47,
+44,"Laroche, Miss. Simonne Marie Anne Andree",female,3,2,SC/Paris 2123,41.5792,,C,1939-01-23,,2022-07-25 17:40:43,
+45,"Devaney, Miss. Margaret Delia",female,19,0,330958,7.8792,,Q,1910-09-23,18:36:50,2022-07-16 21:31:16,
+46,"Rogers, Mr. William John",male,,0,S.C./A.4. 23567,8.05,,S,1913-06-12,10:48:51,2022-08-01 00:12:07,
+47,"Lennon, Mr. Denis",male,,0,370371,15.5,,Q,1908-08-05,13:24:32,2022-07-19 06:11:27,
+48,"O'Driscoll, Miss. Bridget",female,,0,14311,7.75,,Q,,16:00:34,2022-07-27 09:24:55,
+49,"Samaan, Mr. Youssef",male,,0,2662,21.6792,,C,1920-09-13,,2022-07-19 15:04:12,
+50,"Arnold-Franchi, Mrs. Josef (Josefine Franchi)",female,18,0,349237,17.8,,S,1907-07-30,13:47:45,2022-08-02 04:21:34,
+51,"Panula, Master. Juha Niilo",male,7,1,3101295,39.6875,,S,1923-04-26,14:59:39,2022-07-21 06:35:49,
+52,"Nosworthy, Mr. Richard Cater",male,21,0,A/4. 39886,7.8,,S,,18:15:31,2022-08-09 08:14:03,
+53,"Harper, Mrs. Henry Sleeper (Myna Haxtun)",female,49,0,PC 17572,76.7292,D33,C,1929-11-03,,2022-08-14 16:38:12,
+54,"Faunthorpe, Mrs. Lizzie (Elizabeth Anne Wilkinson)",female,29,0,2926,26.0,,S,1930-11-19,,2022-08-04 07:10:22,
+55,"Ostby, Mr. Engelhart Cornelius",male,65,1,113509,61.9792,B30,C,1919-04-01,12:29:33,2022-08-13 13:54:25,
+56,"Woolner, Mr. Hugh",male,,0,19947,35.5,C52,S,1905-08-28,18:06:13,2022-08-04 18:15:31,
+57,"Rugg, Miss. Emily",female,21,0,C.A. 31026,10.5,,S,1905-04-01,10:40:18,2022-07-23 20:19:47,
+58,"Novel, Mr. Mansouer",male,28,0,2697,7.2292,,C,,,2022-07-21 05:22:04,
+59,"West, Miss. Constance Mirium",female,5,2,C.A. 34651,27.75,,S,1907-07-04,12:45:12,2022-07-22 14:30:14,
+60,"Goodwin, Master. William Frederick",male,11,2,CA 2144,46.9,,S,1910-12-18,15:39:59,2022-07-26 03:24:34,
+61,"Sirayanian, Mr. Orsen",male,22,0,2669,7.2292,,C,1923-11-01,13:27:13,2022-07-23 20:39:22,
+62,"Icard, Miss. Amelie",female,38,0,113572,80.0,B28,,1918-11-02,11:37:34,2022-07-29 05:50:51,
+63,"Harris, Mr. Henry Birkhardt",male,45,0,36973,83.475,C83,S,1939-04-18,13:08:10,2022-08-08 21:01:36,
+64,"Skoog, Master. Harald",male,4,2,347088,27.9,,S,1922-12-21,16:39:09,2022-08-03 20:21:38,
+65,"Stewart, Mr. Albert A",male,,0,PC 17605,27.7208,,C,1913-02-11,11:48:25,2022-07-23 13:46:04,
+66,"Moubarek, Master. Gerios",male,,1,2661,15.2458,,C,,11:20:44,2022-07-16 04:33:36,
+67,"Nye, Mrs. (Elizabeth Ramell)",female,29,0,C.A. 29395,10.5,F33,S,1912-03-27,14:31:49,2022-07-31 10:35:43,
+68,"Crease, Mr. Ernest James",male,19,0,S.P. 3464,8.1583,,S,1904-11-07,13:24:11,2022-07-21 01:10:14,
+69,"Andersson, Miss. Erna Alexandra",female,17,2,3101281,7.925,,S,1938-08-02,12:15:38,2022-07-26 13:20:55,
+70,"Kink, Mr. Vincenz",male,26,0,315151,8.6625,,S,1939-05-29,,2022-07-23 11:39:22,
+71,"Jenkin, Mr. Stephen Curnow",male,32,0,C.A. 33111,10.5,,S,1918-12-28,14:40:44,2022-08-15 09:36:35,
+72,"Goodwin, Miss. Lillian Amy",female,16,2,CA 2144,46.9,,S,1927-04-25,14:11:50,2022-07-27 15:43:59,
+73,"Hood, Mr. Ambrose Jr",male,21,0,S.O.C. 14879,73.5,,S,1917-12-20,11:50:14,2022-08-08 03:54:50,
+74,"Chronopoulos, Mr. Apostolos",male,26,0,2680,14.4542,,C,1927-01-27,11:35:57,,
+75,"Bing, Mr. Lee",male,32,0,1601,56.4958,,S,1913-03-03,14:24:40,2022-07-19 11:26:13,
+76,"Moen, Mr. Sigurd Hansen",male,25,0,348123,7.65,F G73,S,1930-05-05,,2022-07-29 15:38:10,
+77,"Staneff, Mr. Ivan",male,,0,349208,7.8958,,S,1930-11-08,15:39:49,2022-07-18 07:39:55,
+78,"Moutal, Mr. Rahamin Haim",male,,0,374746,8.05,,S,1938-01-25,15:50:46,2022-07-26 11:25:26,
+79,"Caldwell, Master. Alden Gates",male,1,2,248738,29.0,,S,1922-06-09,15:00:24,2022-08-05 22:45:56,
+80,"Dowdell, Miss. Elizabeth",female,30,0,364516,12.475,,S,1913-04-10,18:38:14,2022-08-10 02:27:56,
+81,"Waelens, Mr. Achille",male,22,0,345767,9.0,,S,1925-07-10,15:40:23,,
+82,"Sheerlinck, Mr. Jan Baptist",male,29,0,345779,9.5,,S,1917-04-21,11:31:25,2022-08-15 09:31:02,
+83,"McDermott, Miss. Brigdet Delia",female,,0,330932,7.7875,,Q,1923-08-06,,2022-07-31 12:54:26,
+84,"Carrau, Mr. Francisco M",male,28,0,113059,47.1,,S,1918-03-28,10:55:34,,
+85,"Ilett, Miss. Bertha",female,17,0,SO/C 14885,10.5,,S,1913-02-25,16:23:05,,
+86,"Backstrom, Mrs. Karl Alfred (Maria Mathilda Gustafsson)",female,33,0,3101278,15.85,,S,1908-12-25,14:02:29,2022-08-10 17:00:53,
+87,"Ford, Mr. William Neal",male,16,3,W./C. 6608,34.375,,S,1909-03-12,11:39:17,2022-08-10 17:51:51,
+88,"Slocovski, Mr. Selman Francis",male,,0,SOTON/OQ 392086,8.05,,S,1905-08-24,15:29:07,2022-07-22 07:59:40,
+89,"Fortune, Miss. Mabel Helen",female,23,2,19950,263.0,C23 C25 C27,S,1937-06-27,11:33:48,2022-07-26 00:04:03,
+90,"Celotti, Mr. Francesco",male,24,0,343275,8.05,,S,1908-04-29,16:39:25,2022-08-11 20:14:00,
+91,"Christmann, Mr. Emil",male,29,0,343276,8.05,,S,1922-03-26,11:00:57,2022-07-23 20:48:59,
+92,"Andreasson, Mr. Paul Edvin",male,20,0,347466,7.8542,,S,1907-09-26,12:23:54,2022-08-13 01:59:15,
+93,"Chaffee, Mr. Herbert Fuller",male,46,0,W.E.P. 5734,61.175,E31,S,1910-11-23,11:14:21,2022-07-24 11:37:37,
+94,"Dean, Mr. Bertram Frank",male,26,2,C.A. 2315,20.575,,S,1917-04-18,14:53:19,2022-07-21 03:24:15,
+95,"Coxon, Mr. Daniel",male,59,0,364500,7.25,,S,,13:40:37,2022-08-12 01:16:53,
+96,"Shorney, Mr. Charles Joseph",male,,0,374910,8.05,,S,,,2022-08-03 04:01:43,
+97,"Goldschmidt, Mr. George B",male,71,0,PC 17754,34.6542,A5,C,1939-11-11,16:19:26,,
+98,"Greenfield, Mr. William Bertram",male,23,1,PC 17759,63.3583,D10 D12,C,1906-08-03,17:40:23,,
+99,"Doling, Mrs. John T (Ada Julia Bone)",female,34,1,231919,23.0,,S,1908-02-23,16:28:52,,
+100,"Kantor, Mr. Sinai",male,34,0,244367,26.0,,S,1905-09-14,15:34:05,2022-08-13 05:05:35,
+101,"Petranec, Miss. Matilda",female,28,0,349245,7.8958,,S,1929-09-06,12:02:26,2022-07-31 01:58:29,
+102,"Petroff, Mr. Pastcho (""Pentcho"")",male,,0,349215,7.8958,,S,1920-09-25,13:08:52,2022-07-22 20:59:45,
+103,"White, Mr. Richard Frasar",male,21,1,35281,77.2875,D26,S,1921-11-20,17:15:55,2022-08-01 09:52:31,
+104,"Johansson, Mr. Gustaf Joel",male,33,0,7540,8.6542,,S,1937-06-22,16:18:02,2022-07-29 21:07:32,
+105,"Gustafsson, Mr. Anders Vilhelm",male,37,0,3101276,7.925,,S,1922-08-09,11:52:27,2022-07-31 05:03:11,
+106,"Mionoff, Mr. Stoytcho",male,28,0,349207,7.8958,,S,1930-06-29,14:21:59,2022-08-14 16:24:06,
+107,"Salkjelsvik, Miss. Anna Kristine",female,21,0,343120,7.65,,S,1928-10-06,12:32:52,2022-07-27 09:47:09,
+108,"Moss, Mr. Albert Johan",male,,0,312991,7.775,,S,1931-03-10,12:29:12,2022-08-12 17:24:54,
+109,"Rekic, Mr. Tido",male,38,0,349249,7.8958,,S,1910-05-05,17:54:22,2022-07-20 05:48:15,
+110,"Moran, Miss. Bertha",female,,0,371110,24.15,,Q,,11:48:14,,
+111,"Porter, Mr. Walter Chamberlain",male,47,0,110465,52.0,C110,S,1930-05-26,17:20:23,2022-07-18 23:40:33,
+112,"Zabour, Miss. Hileni",female,14,0,2665,14.4542,,C,1909-04-06,12:23:47,2022-07-17 06:28:46,
+113,"Barton, Mr. David John",male,22,0,324669,8.05,,S,1930-08-21,11:56:46,,
+114,"Jussila, Miss. Katriina",female,20,0,4136,9.825,,S,1910-05-13,14:21:00,2022-08-03 05:57:39,
+115,"Attalah, Miss. Malake",female,17,0,2627,14.4583,,C,1929-06-15,16:51:29,2022-08-03 02:47:38,
+116,"Pekoniemi, Mr. Edvard",male,21,0,STON/O 2. 3101294,7.925,,S,1903-12-14,12:24:40,2022-08-14 09:47:45,
+117,"Connors, Mr. Patrick",male,70,0,370369,7.75,,Q,,12:33:08,2022-07-16 03:21:18,
+118,"Turpin, Mr. William John Robert",male,29,0,11668,21.0,,S,,14:01:44,2022-08-03 02:13:37,
+119,"Baxter, Mr. Quigg Edmond",male,24,1,PC 17558,247.5208,B58 B60,C,1938-01-13,13:30:10,2022-07-20 12:46:38,
+120,"Andersson, Miss. Ellis Anna Maria",female,2,2,347082,31.275,,S,1917-04-20,,2022-07-17 07:29:16,
+121,"Hickman, Mr. Stanley George",male,21,0,S.O.C. 14879,73.5,,S,1918-04-07,,2022-08-10 18:07:12,
+122,"Moore, Mr. Leonard Charles",male,,0,A4. 54510,8.05,,S,1936-10-21,16:32:50,2022-07-18 08:54:44,
+123,"Nasser, Mr. Nicholas",male,32,0,237736,30.0708,,C,1933-11-01,12:09:09,2022-07-22 15:27:38,
+124,"Webber, Miss. Susan",female,32,0,27267,13.0,E101,S,1938-06-15,18:23:41,2022-08-06 17:02:25,
+125,"White, Mr. Percival Wayland",male,54,1,35281,77.2875,D26,S,1930-06-22,13:34:01,,
+126,"Nicola-Yarred, Master. Elias",male,12,0,2651,11.2417,,C,1906-12-28,17:03:14,2022-07-28 13:23:15,
+127,"McMahon, Mr. Martin",male,,0,370372,7.75,,Q,1909-07-07,15:52:37,2022-08-08 03:35:52,
+128,"Madsen, Mr. Fridtjof Arne",male,24,0,C 17369,7.1417,,S,1906-05-15,15:41:39,2022-08-06 10:17:09,
+129,"Peter, Miss. Anna",female,,1,2668,22.3583,F E69,C,1917-02-10,16:47:05,2022-08-11 12:56:53,
+130,"Ekstrom, Mr. Johan",male,45,0,347061,6.975,,S,1913-06-13,11:02:31,2022-08-11 16:42:32,
+131,"Drazenoic, Mr. Jozef",male,33,0,349241,7.8958,,C,1910-12-23,15:32:59,2022-08-02 19:51:22,
+132,"Coelho, Mr. Domingos Fernandeo",male,20,0,SOTON/O.Q. 3101307,7.05,,S,1919-05-16,,2022-08-06 00:05:40,
+133,"Robins, Mrs. Alexander A (Grace Charity Laury)",female,47,0,A/5. 3337,14.5,,S,1911-05-15,17:03:20,2022-08-02 20:47:37,
+134,"Weisz, Mrs. Leopold (Mathilde Francoise Pede)",female,29,0,228414,26.0,,S,1916-06-30,14:54:51,2022-07-29 02:06:19,
+135,"Sobey, Mr. Samuel James Hayden",male,25,0,C.A. 29178,13.0,,S,1908-05-20,16:58:22,2022-08-11 17:04:29,
+136,"Richard, Mr. Emile",male,23,0,SC/PARIS 2133,15.0458,,C,1924-11-26,14:46:08,2022-07-19 11:00:29,
+137,"Newsom, Miss. Helen Monypeny",female,19,2,11752,26.2833,D47,S,1935-08-17,18:24:37,2022-08-10 19:39:16,
+138,"Futrelle, Mr. Jacques Heath",male,37,0,113803,53.1,C123,S,1933-02-08,17:08:34,2022-07-23 10:18:28,
+139,"Osen, Mr. Olaf Elon",male,16,0,7534,9.2167,,S,1914-11-26,,2022-07-31 21:23:43,
+140,"Giglio, Mr. Victor",male,24,0,PC 17593,79.2,B86,C,1909-05-08,14:46:06,2022-08-11 20:57:04,
+141,"Boulos, Mrs. Joseph (Sultana)",female,,2,2678,15.2458,,C,1921-09-19,12:59:25,2022-07-27 12:52:13,
+142,"Nysten, Miss. Anna Sofia",female,22,0,347081,7.75,,S,1930-02-25,17:13:51,2022-07-26 03:59:54,
+143,"Hakkarainen, Mrs. Pekka Pietari (Elin Matilda Dolck)",female,24,0,STON/O2. 3101279,15.85,,S,1934-11-14,18:04:42,2022-07-18 12:21:53,
+144,"Burke, Mr. Jeremiah",male,19,0,365222,6.75,,Q,1929-12-07,14:32:10,2022-08-02 20:35:07,
+145,"Andrew, Mr. Edgardo Samuel",male,18,0,231945,11.5,,S,1914-05-24,14:28:28,2022-07-30 07:00:52,
+146,"Nicholls, Mr. Joseph Charles",male,19,1,C.A. 33112,36.75,,S,1914-12-18,14:05:33,2022-08-03 17:46:14,
+147,"Andersson, Mr. August Edvard (""Wennerstrom"")",male,27,0,350043,7.7958,,S,1930-04-13,13:06:37,2022-07-16 05:07:00,
+148,"Ford, Miss. Robina Maggie ""Ruby""",female,9,2,W./C. 6608,34.375,,S,1923-09-24,,2022-08-14 08:05:37,
+149,"Navratil, Mr. Michel (""Louis M Hoffman"")",male,36,2,230080,26.0,F2,S,1907-11-28,16:39:53,2022-07-19 09:42:51,
+150,"Byles, Rev. Thomas Roussel Davids",male,42,0,244310,13.0,,S,1930-03-29,11:11:45,2022-07-26 21:47:38,
+151,"Bateman, Rev. Robert James",male,51,0,S.O.P. 1166,12.525,,S,1912-03-01,14:07:13,2022-08-11 08:21:57,
+152,"Pears, Mrs. Thomas (Edith Wearne)",female,22,0,113776,66.6,C2,S,1929-12-05,16:06:53,2022-08-08 01:58:46,
+153,"Meo, Mr. Alfonzo",male,56,0,A.5. 11206,8.05,,S,1924-01-07,15:21:11,2022-07-31 00:42:21,
+154,"van Billiard, Mr. Austin Blyler",male,40,2,A/5. 851,14.5,,S,,17:34:30,2022-07-21 06:59:37,
+155,"Olsen, Mr. Ole Martin",male,,0,Fa 265302,7.3125,,S,1931-09-01,12:46:47,2022-07-28 15:36:41,
+156,"Williams, Mr. Charles Duane",male,51,1,PC 17597,61.3792,,C,1929-08-27,15:40:06,2022-07-31 20:16:03,
+157,"Gilnagh, Miss. Katherine ""Katie""",female,16,0,35851,7.7333,,Q,1927-02-24,10:43:28,2022-07-20 09:09:33,
+158,"Corn, Mr. Harry",male,30,0,SOTON/OQ 392090,8.05,,S,1920-11-18,11:06:09,2022-08-13 21:01:49,
+159,"Smiljanic, Mr. Mile",male,,0,315037,8.6625,,S,1908-03-28,18:27:07,2022-07-31 02:01:49,
+160,"Sage, Master. Thomas Henry",male,,2,CA. 2343,69.55,,S,1923-09-29,16:12:15,2022-08-08 07:44:48,
+161,"Cribb, Mr. John Hatfield",male,44,1,371362,16.1,,S,1927-05-01,15:20:52,2022-07-21 16:28:36,
+162,"Watt, Mrs. James (Elizabeth ""Bessie"" Inglis Milne)",female,40,0,C.A. 33595,15.75,,S,1922-09-22,17:35:38,,
+163,"Bengtsson, Mr. John Viktor",male,26,0,347068,7.775,,S,1903-10-14,,2022-08-08 20:28:10,
+164,"Calic, Mr. Jovo",male,17,0,315093,8.6625,,S,1933-11-14,11:54:13,2022-07-23 21:27:22,
+165,"Panula, Master. Eino Viljami",male,1,1,3101295,39.6875,,S,1906-03-07,,2022-07-15 12:33:31,
+166,"Goldsmith, Master. Frank John William ""Frankie""",male,9,2,363291,20.525,,S,1907-08-28,16:56:12,2022-08-10 11:32:46,
+167,"Chibnall, Mrs. (Edith Martha Bowerman)",female,,1,113505,55.0,E33,S,1939-05-22,14:11:55,2022-07-16 05:01:40,
+168,"Skoog, Mrs. William (Anna Bernhardina Karlsson)",female,45,4,347088,27.9,,S,1906-06-03,12:08:47,2022-07-31 12:42:03,
+169,"Baumann, Mr. John D",male,,0,PC 17318,25.925,,S,1905-11-28,13:43:43,2022-07-31 16:34:19,
+170,"Ling, Mr. Lee",male,28,0,1601,56.4958,,S,,11:18:59,2022-08-06 01:21:51,
+171,"Van der hoef, Mr. Wyckoff",male,61,0,111240,33.5,B19,S,1910-05-25,15:50:51,2022-08-10 18:07:18,
+172,"Rice, Master. Arthur",male,4,1,382652,29.125,,Q,1937-03-24,14:02:35,2022-07-27 21:45:02,
+173,"Johnson, Miss. Eleanor Ileen",female,1,1,347742,11.1333,,S,1918-11-20,16:59:44,2022-07-19 04:08:21,
+174,"Sivola, Mr. Antti Wilhelm",male,21,0,STON/O 2. 3101280,7.925,,S,1920-04-10,17:20:36,2022-08-05 18:20:06,
+175,"Smith, Mr. James Clinch",male,56,0,17764,30.6958,A7,C,,17:36:36,2022-07-30 19:43:40,
+176,"Klasen, Mr. Klas Albin",male,18,1,350404,7.8542,,S,1922-09-17,17:35:38,2022-08-11 13:37:52,
+177,"Lefebre, Master. Henry Forbes",male,,1,4133,25.4667,,S,1918-11-15,16:15:55,2022-07-21 09:56:42,
+178,"Isham, Miss. Ann Elizabeth",female,50,0,PC 17595,28.7125,C49,C,1912-04-11,18:27:40,2022-08-01 01:20:21,
+179,"Hale, Mr. Reginald",male,30,0,250653,13.0,,S,1939-02-13,15:43:02,2022-07-24 06:54:39,
+180,"Leonard, Mr. Lionel",male,36,0,LINE,0.0,,S,1919-09-02,16:43:15,2022-07-19 20:19:20,
+181,"Sage, Miss. Constance Gladys",female,,2,CA. 2343,69.55,,S,1920-11-23,14:46:11,2022-07-23 21:00:23,
+182,"Pernot, Mr. Rene",male,,0,SC/PARIS 2131,15.05,,C,1921-08-27,,2022-07-28 16:05:20,
+183,"Asplund, Master. Clarence Gustaf Hugo",male,9,2,347077,31.3875,,S,,11:32:25,2022-08-01 20:56:39,
+184,"Becker, Master. Richard F",male,1,1,230136,39.0,F4,S,1910-03-11,12:47:02,2022-07-30 16:45:10,
+185,"Kink-Heilmann, Miss. Luise Gretchen",female,4,2,315153,22.025,,S,1928-12-11,15:47:38,2022-07-31 15:51:39,
+186,"Rood, Mr. Hugh Roscoe",male,,0,113767,50.0,A32,S,1938-08-21,,2022-08-10 23:56:08,
+187,"O'Brien, Mrs. Thomas (Johanna ""Hannah"" Godfrey)",female,,0,370365,15.5,,Q,1928-11-14,11:58:03,,
+188,"Romaine, Mr. Charles Hallace (""Mr C Rolmane"")",male,45,0,111428,26.55,,S,1937-10-28,14:43:47,2022-07-21 11:40:56,
+189,"Bourke, Mr. John",male,40,1,364849,15.5,,Q,1935-05-02,16:57:58,2022-07-28 07:53:59,
+190,"Turcin, Mr. Stjepan",male,36,0,349247,7.8958,,S,1906-03-10,13:44:54,,
+191,"Pinsky, Mrs. (Rosa)",female,32,0,234604,13.0,,S,,18:37:27,2022-08-14 23:22:54,
+192,"Carbines, Mr. William",male,19,0,28424,13.0,,S,1918-12-27,11:53:33,2022-07-19 01:09:58,
+193,"Andersen-Jensen, Miss. Carla Christine Nielsine",female,19,0,350046,7.8542,,S,1928-07-06,17:27:12,2022-08-11 20:24:23,
+194,"Navratil, Master. Michel M",male,3,1,230080,26.0,F2,S,1918-12-26,11:47:12,2022-08-11 02:09:27,
+195,"Brown, Mrs. James Joseph (Margaret Tobin)",female,44,0,PC 17610,27.7208,B4,C,1937-08-16,14:01:56,2022-07-18 11:07:42,
+196,"Lurette, Miss. Elise",female,58,0,PC 17569,146.5208,B80,C,1906-02-04,11:41:04,2022-07-26 03:42:31,
+197,"Mernagh, Mr. Robert",male,,0,368703,7.75,,Q,1916-05-20,15:34:47,2022-08-07 05:29:13,
+198,"Olsen, Mr. Karl Siegwart Andreas",male,42,1,4579,8.4042,,S,1904-01-03,12:17:37,,
+199,"Madigan, Miss. Margaret ""Maggie""",female,,0,370370,7.75,,Q,1939-04-15,14:29:34,2022-08-02 17:25:50,
+200,"Yrois, Miss. Henriette (""Mrs Harbeck"")",female,24,0,248747,13.0,,S,,13:11:24,2022-08-10 19:53:24,
+201,"Vande Walle, Mr. Nestor Cyriel",male,28,0,345770,9.5,,S,1923-01-11,18:15:43,,
+202,"Sage, Mr. Frederick",male,,2,CA. 2343,69.55,,S,1920-04-09,14:44:41,2022-08-07 11:18:35,
+203,"Johanson, Mr. Jakob Alfred",male,34,0,3101264,6.4958,,S,1903-08-15,15:24:43,2022-08-09 22:29:49,
+204,"Youseff, Mr. Gerious",male,46,0,2628,7.225,,C,,18:00:11,2022-07-25 07:31:21,
+205,"Cohen, Mr. Gurshon ""Gus""",male,18,0,A/5 3540,8.05,,S,1936-10-23,18:00:39,2022-07-30 10:17:49,
+206,"Strom, Miss. Telma Matilda",female,2,1,347054,10.4625,G6,S,1930-06-20,15:50:11,2022-07-31 14:45:59,
+207,"Backstrom, Mr. Karl Alfred",male,32,0,3101278,15.85,,S,1925-08-19,15:55:28,,
+208,"Albimona, Mr. Nassef Cassem",male,26,0,2699,18.7875,,C,1926-03-23,14:46:47,2022-08-13 11:24:27,
+209,"Carr, Miss. Helen ""Ellen""",female,16,0,367231,7.75,,Q,1904-06-26,17:53:29,2022-07-26 00:44:28,
+210,"Blank, Mr. Henry",male,40,0,112277,31.0,A31,C,1905-07-20,15:40:32,2022-07-21 09:55:45,
+211,"Ali, Mr. Ahmed",male,24,0,SOTON/O.Q. 3101311,7.05,,S,1934-08-10,13:37:58,2022-07-28 11:58:14,
+212,"Cameron, Miss. Clear Annie",female,35,0,F.C.C. 13528,21.0,,S,1920-09-07,,2022-08-14 22:04:45,
+213,"Perkin, Mr. John Henry",male,22,0,A/5 21174,7.25,,S,1934-05-13,15:17:37,2022-07-28 14:32:23,
+214,"Givard, Mr. Hans Kristensen",male,30,0,250646,13.0,,S,1911-12-14,13:50:48,2022-07-28 21:09:14,
+215,"Kiernan, Mr. Philip",male,,0,367229,7.75,,Q,1906-06-18,14:10:47,,
+216,"Newell, Miss. Madeleine",female,31,0,35273,113.275,D36,C,1922-10-18,13:58:25,,
+217,"Honkanen, Miss. Eliina",female,27,0,STON/O2. 3101283,7.925,,S,1913-11-22,14:48:51,2022-07-30 06:19:41,
+218,"Jacobsohn, Mr. Sidney Samuel",male,42,0,243847,27.0,,S,1909-03-02,17:54:29,2022-07-23 07:02:24,
+219,"Bazzani, Miss. Albina",female,32,0,11813,76.2917,D15,C,1916-04-22,18:19:26,2022-08-04 03:30:15,
+220,"Harris, Mr. Walter",male,30,0,W/C 14208,10.5,,S,1931-05-29,11:07:56,2022-07-25 17:13:44,
+221,"Sunderland, Mr. Victor Francis",male,16,0,SOTON/OQ 392089,8.05,,S,1932-08-11,18:06:49,2022-07-26 09:02:34,
+222,"Bracken, Mr. James H",male,27,0,220367,13.0,,S,,14:48:33,,
+223,"Green, Mr. George Henry",male,51,0,21440,8.05,,S,1933-06-19,14:21:38,,
+224,"Nenkoff, Mr. Christo",male,,0,349234,7.8958,,S,1932-05-05,,,
+225,"Hoyt, Mr. Frederick Maxfield",male,38,0,19943,90.0,C93,S,1906-06-06,11:14:54,2022-08-14 03:10:46,
+226,"Berglund, Mr. Karl Ivar Sven",male,22,0,PP 4348,9.35,,S,1934-01-08,16:30:11,2022-08-12 16:29:13,
+227,"Mellors, Mr. William John",male,19,0,SW/PP 751,10.5,,S,1931-06-20,,2022-08-15 01:06:12,
+228,"Lovell, Mr. John Hall (""Henry"")",male,20,0,A/5 21173,7.25,,S,1921-09-25,15:04:08,2022-07-23 07:54:45,
+229,"Fahlstrom, Mr. Arne Jonas",male,18,0,236171,13.0,,S,1924-04-06,14:18:06,2022-07-30 03:37:32,
+230,"Lefebre, Miss. Mathilde",female,,1,4133,25.4667,,S,1910-08-30,14:38:54,2022-07-23 21:06:23,
+231,"Harris, Mrs. Henry Birkhardt (Irene Wallach)",female,35,0,36973,83.475,C83,S,1931-07-30,17:00:11,2022-08-05 12:57:04,
+232,"Larsson, Mr. Bengt Edvin",male,29,0,347067,7.775,,S,1913-09-18,12:55:59,2022-07-25 15:21:00,
+233,"Sjostedt, Mr. Ernst Adolf",male,59,0,237442,13.5,,S,1907-03-06,18:34:24,,
+234,"Asplund, Miss. Lillian Gertrud",female,5,2,347077,31.3875,,S,1917-04-15,15:45:42,2022-07-24 12:54:29,
+235,"Leyson, Mr. Robert William Norman",male,24,0,C.A. 29566,10.5,,S,1920-05-02,17:47:42,2022-08-12 03:05:11,
+236,"Harknett, Miss. Alice Phoebe",female,,0,W./C. 6609,7.55,,S,1927-08-18,15:43:29,2022-08-01 06:14:55,
+237,"Hold, Mr. Stephen",male,44,0,26707,26.0,,S,1927-12-17,13:57:15,2022-08-09 12:26:08,
+238,"Collyer, Miss. Marjorie ""Lottie""",female,8,2,C.A. 31921,26.25,,S,1927-07-29,15:08:19,2022-07-20 11:57:39,
+239,"Pengelly, Mr. Frederick William",male,19,0,28665,10.5,,S,1931-12-17,14:39:15,,
+240,"Hunt, Mr. George Henry",male,33,0,SCO/W 1585,12.275,,S,1907-03-30,18:39:28,2022-07-16 01:59:53,
+241,"Zabour, Miss. Thamine",female,,0,2665,14.4542,,C,1932-02-26,17:06:40,2022-07-25 10:58:42,
+242,"Murphy, Miss. Katherine ""Kate""",female,,0,367230,15.5,,Q,1909-08-04,13:48:36,2022-07-30 00:09:50,
+243,"Coleridge, Mr. Reginald Charles",male,29,0,W./C. 14263,10.5,,S,1922-08-01,,2022-07-23 09:14:05,
+244,"Maenpaa, Mr. Matti Alexanteri",male,22,0,STON/O 2. 3101275,7.125,,S,1915-11-27,14:54:10,2022-08-05 01:13:25,
+245,"Attalah, Mr. Sleiman",male,30,0,2694,7.225,,C,1913-04-03,11:17:02,2022-08-10 15:28:13,
+246,"Minahan, Dr. William Edward",male,44,0,19928,90.0,C78,Q,1930-01-07,18:16:02,2022-07-22 07:55:39,
+247,"Lindahl, Miss. Agda Thorilda Viktoria",female,25,0,347071,7.775,,S,1938-04-24,12:43:03,2022-08-13 17:02:01,
+248,"Hamalainen, Mrs. William (Anna)",female,24,2,250649,14.5,,S,1925-06-11,12:15:58,2022-08-09 11:37:56,
+249,"Beckwith, Mr. Richard Leonard",male,37,1,11751,52.5542,D35,S,1938-02-05,14:43:09,2022-08-07 12:24:42,
+250,"Carter, Rev. Ernest Courtenay",male,54,0,244252,26.0,,S,1936-06-27,,2022-07-24 04:49:20,
+251,"Reed, Mr. James George",male,,0,362316,7.25,,S,1932-08-04,13:15:50,2022-08-09 10:08:25,
+252,"Strom, Mrs. Wilhelm (Elna Matilda Persson)",female,29,1,347054,10.4625,G6,S,,17:19:33,2022-07-27 02:32:29,
+253,"Stead, Mr. William Thomas",male,62,0,113514,26.55,C87,S,1908-02-22,13:18:57,2022-07-20 18:13:02,
+254,"Lobb, Mr. William Arthur",male,30,0,A/5. 3336,16.1,,S,1904-08-24,17:44:37,2022-08-08 13:28:56,
+255,"Rosblom, Mrs. Viktor (Helena Wilhelmina)",female,41,2,370129,20.2125,,S,1935-08-27,14:18:31,2022-08-07 10:30:37,
+256,"Touma, Mrs. Darwis (Hanne Youssef Razi)",female,29,2,2650,15.2458,,C,1918-01-08,14:27:48,2022-08-12 15:50:35,
+257,"Thorne, Mrs. Gertrude Maybelle",female,,0,PC 17585,79.2,,C,1910-08-15,17:22:44,2022-08-07 00:18:19,
+258,"Cherry, Miss. Gladys",female,30,0,110152,86.5,B77,S,1916-08-02,17:09:34,2022-07-31 22:45:33,
+259,"Ward, Miss. Anna",female,35,0,PC 17755,512.3292,,C,1910-04-10,13:19:14,2022-07-21 09:27:17,
+260,"Parrish, Mrs. (Lutie Davis)",female,50,1,230433,26.0,,S,1912-03-06,17:12:46,2022-07-18 17:11:09,
+261,"Smith, Mr. Thomas",male,,0,384461,7.75,,Q,1925-08-25,,2022-07-31 13:45:23,
+262,"Asplund, Master. Edvin Rojj Felix",male,3,2,347077,31.3875,,S,1911-09-18,,2022-08-04 08:06:56,
+263,"Taussig, Mr. Emil",male,52,1,110413,79.65,E67,S,,13:56:59,2022-07-26 15:39:05,
+264,"Harrison, Mr. William",male,40,0,112059,0.0,B94,S,,18:13:16,2022-08-12 17:40:16,
+265,"Henry, Miss. Delia",female,,0,382649,7.75,,Q,1937-06-18,18:38:29,,
+266,"Reeves, Mr. David",male,36,0,C.A. 17248,10.5,,S,1904-05-02,11:13:28,2022-08-01 23:53:12,
+267,"Panula, Mr. Ernesti Arvid",male,16,1,3101295,39.6875,,S,1910-02-21,13:59:21,2022-07-16 02:19:20,
+268,"Persson, Mr. Ernst Ulrik",male,25,0,347083,7.775,,S,1926-02-27,16:09:13,2022-08-04 03:26:45,
+269,"Graham, Mrs. William Thompson (Edith Junkins)",female,58,1,PC 17582,153.4625,C125,S,1935-12-24,13:59:52,2022-07-23 15:52:52,
+270,"Bissette, Miss. Amelia",female,35,0,PC 17760,135.6333,C99,S,1906-03-22,13:20:41,,
+271,"Cairns, Mr. Alexander",male,,0,113798,31.0,,S,1917-02-20,12:54:13,2022-07-25 15:03:25,
+272,"Tornquist, Mr. William Henry",male,25,0,LINE,0.0,,S,1915-10-16,12:19:11,2022-08-13 12:07:24,
+273,"Mellinger, Mrs. (Elizabeth Anne Maidment)",female,41,1,250644,19.5,,S,1915-02-19,13:28:52,2022-07-18 01:40:48,
+274,"Natsch, Mr. Charles H",male,37,1,PC 17596,29.7,C118,C,1940-02-08,,2022-08-13 08:10:26,
+275,"Healy, Miss. Hanora ""Nora""",female,,0,370375,7.75,,Q,1932-12-22,11:53:56,,
+276,"Andrews, Miss. Kornelia Theodosia",female,63,0,13502,77.9583,D7,S,1934-04-01,16:17:11,2022-07-27 02:06:05,
+277,"Lindblom, Miss. Augusta Charlotta",female,45,0,347073,7.75,,S,1904-04-10,17:16:42,2022-07-28 09:15:02,
+278,"Parkes, Mr. Francis ""Frank""",male,,0,239853,0.0,,S,1912-07-11,10:41:59,2022-08-06 13:54:45,
+279,"Rice, Master. Eric",male,7,1,382652,29.125,,Q,1920-05-30,18:17:06,2022-08-12 14:28:37,
+280,"Abbott, Mrs. Stanton (Rosa Hunt)",female,35,1,C.A. 2673,20.25,,S,,,2022-07-30 16:09:32,
+281,"Duane, Mr. Frank",male,65,0,336439,7.75,,Q,1932-08-23,17:19:52,2022-07-17 10:30:40,
+282,"Olsson, Mr. Nils Johan Goransson",male,28,0,347464,7.8542,,S,1923-11-04,16:19:41,2022-07-24 00:07:32,
+283,"de Pelsmaeker, Mr. Alfons",male,16,0,345778,9.5,,S,1906-10-07,18:28:36,2022-08-13 23:06:26,
+284,"Dorking, Mr. Edward Arthur",male,19,0,A/5. 10482,8.05,,S,1930-01-16,11:07:51,2022-08-04 16:00:42,
+285,"Smith, Mr. Richard William",male,,0,113056,26.0,A19,S,1905-08-18,,2022-08-04 05:18:42,
+286,"Stankovic, Mr. Ivan",male,33,0,349239,8.6625,,C,,12:55:25,2022-07-18 01:10:55,
+287,"de Mulder, Mr. Theodore",male,30,0,345774,9.5,,S,1919-08-25,12:19:30,2022-08-12 09:00:12,
+288,"Naidenoff, Mr. Penko",male,22,0,349206,7.8958,,S,1904-01-22,11:55:15,2022-07-30 01:21:03,
+289,"Hosono, Mr. Masabumi",male,42,0,237798,13.0,,S,1917-01-02,11:50:19,2022-08-01 11:14:32,
+290,"Connolly, Miss. Kate",female,22,0,370373,7.75,,Q,1927-05-03,,2022-08-10 16:46:37,
+291,"Barber, Miss. Ellen ""Nellie""",female,26,0,19877,78.85,,S,1908-01-12,13:32:33,2022-07-31 14:55:00,
+292,"Bishop, Mrs. Dickinson H (Helen Walton)",female,19,0,11967,91.0792,B49,C,1926-06-15,15:35:30,2022-07-29 09:09:25,
+293,"Levy, Mr. Rene Jacques",male,36,0,SC/Paris 2163,12.875,D,C,1922-11-25,14:22:01,2022-07-29 12:12:15,
+294,"Haas, Miss. Aloisia",female,24,0,349236,8.85,,S,1912-01-31,16:02:14,2022-07-16 23:04:31,
+295,"Mineff, Mr. Ivan",male,24,0,349233,7.8958,,S,1939-06-28,12:21:45,2022-08-10 05:36:35,
+296,"Lewy, Mr. Ervin G",male,,0,PC 17612,27.7208,,C,1927-07-30,18:34:51,2022-08-07 02:27:31,
+297,"Hanna, Mr. Mansour",male,24,0,2693,7.2292,,C,1932-10-31,14:54:41,2022-08-11 17:54:34,
+298,"Allison, Miss. Helen Loraine",female,2,2,113781,151.55,C22 C26,S,1918-10-06,17:24:22,2022-07-27 21:46:53,
+299,"Saalfeld, Mr. Adolphe",male,,0,19988,30.5,C106,S,1909-10-31,11:41:50,2022-07-21 10:30:05,
+300,"Baxter, Mrs. James (Helene DeLaudeniere Chaput)",female,50,1,PC 17558,247.5208,B58 B60,C,1914-08-16,10:40:06,2022-08-15 06:58:35,
+301,"Kelly, Miss. Anna Katherine ""Annie Kate""",female,,0,9234,7.75,,Q,1925-02-28,17:28:52,2022-07-26 08:06:30,
+302,"McCoy, Mr. Bernard",male,,0,367226,23.25,,Q,1931-11-22,16:56:17,2022-08-13 22:39:12,
+303,"Johnson, Mr. William Cahoone Jr",male,19,0,LINE,0.0,,S,1926-04-24,12:40:54,2022-08-14 02:26:30,
+304,"Keane, Miss. Nora A",female,,0,226593,12.35,E101,Q,1928-03-28,14:15:26,2022-08-09 20:39:25,
+305,"Williams, Mr. Howard Hugh ""Harry""",male,,0,A/5 2466,8.05,,S,,14:43:34,2022-07-31 04:14:44,
+306,"Allison, Master. Hudson Trevor",male,1,2,113781,151.55,C22 C26,S,1940-02-21,15:58:37,2022-08-09 15:28:24,
+307,"Fleming, Miss. Margaret",female,,0,17421,110.8833,,C,1908-03-25,14:41:30,2022-08-12 02:33:02,
+308,"Penasco y Castellana, Mrs. Victor de Satode (Maria Josefa Perez de Soto y Vallejo)",female,17,0,PC 17758,108.9,C65,C,1905-09-14,17:04:01,2022-07-18 04:13:43,
+309,"Abelson, Mr. Samuel",male,30,0,P/PP 3381,24.0,,C,,18:19:30,2022-07-25 03:38:19,
+310,"Francatelli, Miss. Laura Mabel",female,30,0,PC 17485,56.9292,E36,C,1916-01-18,13:42:43,2022-07-24 22:28:52,
+311,"Hays, Miss. Margaret Bechstein",female,24,0,11767,83.1583,C54,C,1915-03-07,18:35:27,2022-07-31 20:07:46,
+312,"Ryerson, Miss. Emily Borie",female,18,2,PC 17608,262.375,B57 B59 B63 B66,C,1935-08-28,,2022-08-13 12:30:39,
+313,"Lahtinen, Mrs. William (Anna Sylfven)",female,26,1,250651,26.0,,S,1937-08-06,17:40:46,2022-07-28 15:00:45,
+314,"Hendekovic, Mr. Ignjac",male,28,0,349243,7.8958,,S,1930-11-11,13:19:10,2022-07-22 14:35:23,
+315,"Hart, Mr. Benjamin",male,43,1,F.C.C. 13529,26.25,,S,1907-12-06,15:01:19,2022-08-12 17:39:57,
+316,"Nilsson, Miss. Helmina Josefina",female,26,0,347470,7.8542,,S,1921-11-11,14:44:09,2022-07-29 16:14:48,
+317,"Kantor, Mrs. Sinai (Miriam Sternin)",female,24,0,244367,26.0,,S,1922-03-18,13:18:03,2022-07-18 03:27:01,
+318,"Moraweck, Dr. Ernest",male,54,0,29011,14.0,,S,1924-11-10,15:03:22,2022-07-18 15:26:21,
+319,"Wick, Miss. Mary Natalie",female,31,2,36928,164.8667,C7,S,1905-09-09,17:28:31,2022-08-06 04:08:03,
+320,"Spedden, Mrs. Frederic Oakley (Margaretta Corning Stone)",female,40,1,16966,134.5,E34,C,1922-09-28,,2022-07-18 20:45:42,
+321,"Dennis, Mr. Samuel",male,22,0,A/5 21172,7.25,,S,1911-01-05,11:52:14,,
+322,"Danoff, Mr. Yoto",male,27,0,349219,7.8958,,S,1922-04-21,13:15:45,,
+323,"Slayter, Miss. Hilda Mary",female,30,0,234818,12.35,,Q,1904-10-03,11:47:03,2022-07-23 06:40:41,
+324,"Caldwell, Mrs. Albert Francis (Sylvia Mae Harbaugh)",female,22,1,248738,29.0,,S,1924-08-29,,2022-07-17 19:00:52,
+325,"Sage, Mr. George John Jr",male,,2,CA. 2343,69.55,,S,,12:29:17,2022-08-04 23:00:21,
+326,"Young, Miss. Marie Grice",female,36,0,PC 17760,135.6333,C32,C,1907-05-05,17:42:54,2022-08-08 02:16:32,
+327,"Nysveen, Mr. Johan Hansen",male,61,0,345364,6.2375,,S,1925-05-12,17:09:29,2022-07-27 06:11:50,
+328,"Ball, Mrs. (Ada E Hall)",female,36,0,28551,13.0,D,S,1922-03-11,11:45:44,2022-08-07 17:01:02,
+329,"Goldsmith, Mrs. Frank John (Emily Alice Brown)",female,31,1,363291,20.525,,S,1913-10-10,17:26:36,2022-07-19 23:40:04,
+330,"Hippach, Miss. Jean Gertrude",female,16,1,111361,57.9792,B18,C,1923-11-16,14:52:10,2022-08-12 16:01:25,
+331,"McCoy, Miss. Agnes",female,,0,367226,23.25,,Q,1916-12-31,16:12:58,2022-08-11 02:56:06,
+332,"Partner, Mr. Austen",male,46,0,113043,28.5,C124,S,1932-10-01,18:19:00,2022-07-23 14:44:42,
+333,"Graham, Mr. George Edward",male,38,1,PC 17582,153.4625,C91,S,1932-07-05,11:18:22,2022-08-15 07:59:26,
+334,"Vander Planke, Mr. Leo Edmondus",male,16,0,345764,18.0,,S,1919-05-19,18:39:25,,
+335,"Frauenthal, Mrs. Henry William (Clara Heinsheimer)",female,,0,PC 17611,133.65,,S,1921-05-15,14:01:39,2022-08-06 18:28:30,
+336,"Denkoff, Mr. Mitto",male,,0,349225,7.8958,,S,1907-04-23,11:51:19,2022-08-01 17:05:30,
+337,"Pears, Mr. Thomas Clinton",male,29,0,113776,66.6,C2,S,1916-08-25,17:31:37,,
+338,"Burns, Miss. Elizabeth Margaret",female,41,0,16966,134.5,E40,C,1924-10-30,17:40:58,2022-08-11 03:25:33,
+339,"Dahl, Mr. Karl Edwart",male,45,0,7598,8.05,,S,1938-09-29,12:09:17,2022-07-24 12:47:07,
+340,"Blackwell, Mr. Stephen Weart",male,45,0,113784,35.5,T,S,1930-07-23,17:54:10,2022-08-05 16:34:48,
+341,"Navratil, Master. Edmond Roger",male,2,1,230080,26.0,F2,S,1927-10-16,13:23:48,2022-08-12 02:01:56,
+342,"Fortune, Miss. Alice Elizabeth",female,24,2,19950,263.0,C23 C25 C27,S,,14:22:15,2022-08-11 18:58:57,
+343,"Collander, Mr. Erik Gustaf",male,28,0,248740,13.0,,S,1912-02-07,17:39:08,2022-07-17 09:28:29,
+344,"Sedgwick, Mr. Charles Frederick Waddington",male,25,0,244361,13.0,,S,1930-08-03,13:02:33,2022-07-28 01:25:28,
+345,"Fox, Mr. Stanley Hubert",male,36,0,229236,13.0,,S,1920-06-21,14:13:13,2022-07-19 11:15:36,
+346,"Brown, Miss. Amelia ""Mildred""",female,24,0,248733,13.0,F33,S,1925-04-06,17:49:12,2022-07-27 03:16:04,
+347,"Smith, Miss. Marion Elsie",female,40,0,31418,13.0,,S,1937-09-13,10:44:14,2022-08-03 18:40:05,
+348,"Davison, Mrs. Thomas Henry (Mary E Finck)",female,,0,386525,16.1,,S,1930-10-15,16:21:51,2022-08-04 07:03:48,
+349,"Coutts, Master. William Loch ""William""",male,3,1,C.A. 37671,15.9,,S,1915-05-28,,2022-08-07 22:02:42,
+350,"Dimic, Mr. Jovan",male,42,0,315088,8.6625,,S,,11:46:41,2022-07-29 20:07:14,
+351,"Odahl, Mr. Nils Martin",male,23,0,7267,9.225,,S,1934-02-01,15:33:07,,
+352,"Williams-Lambert, Mr. Fletcher Fellows",male,,0,113510,35.0,C128,S,1911-12-30,12:28:31,2022-08-06 10:02:10,
+353,"Elias, Mr. Tannous",male,15,1,2695,7.2292,,C,1936-06-14,12:27:10,2022-07-19 13:31:25,
+354,"Arnold-Franchi, Mr. Josef",male,25,0,349237,17.8,,S,1918-03-05,10:51:57,2022-07-20 18:41:32,
+355,"Yousif, Mr. Wazli",male,,0,2647,7.225,,C,1910-10-16,16:16:39,,
+356,"Vanden Steen, Mr. Leo Peter",male,28,0,345783,9.5,,S,1907-07-06,13:16:14,2022-08-13 16:11:00,
+357,"Bowerman, Miss. Elsie Edith",female,22,1,113505,55.0,E33,S,1923-11-13,13:42:43,2022-08-14 07:30:21,
+358,"Funk, Miss. Annie Clemmer",female,38,0,237671,13.0,,S,1936-01-19,15:30:07,2022-07-23 00:38:06,
+359,"McGovern, Miss. Mary",female,,0,330931,7.8792,,Q,1904-03-27,17:40:30,,
+360,"Mockler, Miss. Helen Mary ""Ellie""",female,,0,330980,7.8792,,Q,1914-06-26,13:57:15,2022-07-21 09:02:37,
+361,"Skoog, Mr. Wilhelm",male,40,4,347088,27.9,,S,1905-02-27,18:00:46,2022-08-11 14:15:51,
+362,"del Carlo, Mr. Sebastiano",male,29,0,SC/PARIS 2167,27.7208,,C,1920-05-02,16:22:55,2022-07-15 13:09:31,
+363,"Barbara, Mrs. (Catherine David)",female,45,1,2691,14.4542,,C,1933-01-25,12:47:47,2022-08-09 04:58:20,
+364,"Asim, Mr. Adola",male,35,0,SOTON/O.Q. 3101310,7.05,,S,1910-05-12,16:08:42,2022-07-21 04:27:16,
+365,"O'Brien, Mr. Thomas",male,,0,370365,15.5,,Q,1933-04-25,11:13:37,2022-07-17 20:45:25,
+366,"Adahl, Mr. Mauritz Nils Martin",male,30,0,C 7076,7.25,,S,1938-07-05,15:19:11,2022-07-17 06:38:37,
+367,"Warren, Mrs. Frank Manley (Anna Sophia Atkinson)",female,60,0,110813,75.25,D37,C,1903-10-05,15:25:21,2022-07-18 10:41:08,
+368,"Moussa, Mrs. (Mantoura Boulos)",female,,0,2626,7.2292,,C,1925-11-16,12:28:39,2022-08-11 18:53:55,
+369,"Jermyn, Miss. Annie",female,,0,14313,7.75,,Q,1909-04-23,17:26:40,2022-07-16 12:09:25,
+370,"Aubart, Mme. Leontine Pauline",female,24,0,PC 17477,69.3,B35,C,1914-12-10,14:48:01,2022-07-24 11:20:19,
+371,"Harder, Mr. George Achilles",male,25,0,11765,55.4417,E50,C,1911-05-24,14:23:26,2022-07-21 13:56:58,
+372,"Wiklund, Mr. Jakob Alfred",male,18,0,3101267,6.4958,,S,1930-06-04,16:01:50,2022-07-21 05:04:11,
+373,"Beavan, Mr. William Thomas",male,19,0,323951,8.05,,S,1925-07-23,15:51:06,2022-08-14 18:23:47,
+374,"Ringhini, Mr. Sante",male,22,0,PC 17760,135.6333,,C,1933-03-09,17:03:10,2022-07-27 20:23:22,
+375,"Palsson, Miss. Stina Viola",female,3,1,349909,21.075,,S,1930-06-30,13:44:36,2022-08-03 22:04:19,
+376,"Meyer, Mrs. Edgar Joseph (Leila Saks)",female,,0,PC 17604,82.1708,,C,1909-11-18,11:17:01,2022-08-15 10:32:05,
+377,"Landergren, Miss. Aurora Adelia",female,22,0,C 7077,7.25,,S,1911-10-22,17:07:14,2022-07-27 02:15:20,
+378,"Widener, Mr. Harry Elkins",male,27,2,113503,211.5,C82,C,1922-05-16,17:08:26,2022-07-23 21:00:03,
+379,"Betros, Mr. Tannous",male,20,0,2648,4.0125,,C,,18:31:00,2022-08-10 23:59:11,
+380,"Gustafsson, Mr. Karl Gideon",male,19,0,347069,7.775,,S,1910-10-16,14:38:32,2022-08-05 21:46:06,
+381,"Bidois, Miss. Rosalie",female,42,0,PC 17757,227.525,,C,1936-03-22,18:08:55,2022-08-01 19:53:42,
+382,"Nakid, Miss. Maria (""Mary"")",female,1,2,2653,15.7417,,C,1930-08-11,12:53:17,2022-08-01 08:38:35,
+383,"Tikkanen, Mr. Juho",male,32,0,STON/O 2. 3101293,7.925,,S,1931-08-07,14:34:56,2022-08-08 05:57:00,
+384,"Holverson, Mrs. Alexander Oskar (Mary Aline Towner)",female,35,0,113789,52.0,,S,1913-10-21,11:40:57,,
+385,"Plotcharsky, Mr. Vasil",male,,0,349227,7.8958,,S,1918-09-11,14:41:12,2022-07-29 05:50:50,
+386,"Davies, Mr. Charles Henry",male,18,0,S.O.C. 14879,73.5,,S,1923-01-28,15:33:36,,
+387,"Goodwin, Master. Sidney Leonard",male,1,2,CA 2144,46.9,,S,1910-05-10,12:32:00,2022-07-29 19:06:58,
+388,"Buss, Miss. Kate",female,36,0,27849,13.0,,S,1913-03-10,14:16:36,,
+389,"Sadlier, Mr. Matthew",male,,0,367655,7.7292,,Q,1935-04-01,12:01:01,2022-08-12 19:48:05,
+390,"Lehmann, Miss. Bertha",female,17,0,SC 1748,12.0,,C,1936-07-12,14:45:54,2022-07-23 19:55:52,
+391,"Carter, Mr. William Ernest",male,36,2,113760,120.0,B96 B98,S,1905-05-05,13:45:34,2022-08-12 09:47:33,
+392,"Jansson, Mr. Carl Olof",male,21,0,350034,7.7958,,S,1917-06-05,16:55:58,2022-08-12 11:39:33,
+393,"Gustafsson, Mr. Johan Birger",male,28,0,3101277,7.925,,S,1936-10-09,18:36:52,2022-07-29 03:15:23,
+394,"Newell, Miss. Marjorie",female,23,0,35273,113.275,D36,C,1904-11-17,15:15:48,2022-07-30 09:52:55,
+395,"Sandstrom, Mrs. Hjalmar (Agnes Charlotta Bengtsson)",female,24,2,PP 9549,16.7,G6,S,1922-08-29,11:17:09,2022-08-11 12:02:19,
+396,"Johansson, Mr. Erik",male,22,0,350052,7.7958,,S,1928-09-16,11:49:24,2022-07-31 18:16:38,
+397,"Olsson, Miss. Elina",female,31,0,350407,7.8542,,S,1904-02-10,16:04:28,2022-08-03 22:45:54,
+398,"McKane, Mr. Peter David",male,46,0,28403,26.0,,S,1920-03-24,11:43:51,2022-07-16 01:03:45,
+399,"Pain, Dr. Alfred",male,23,0,244278,10.5,,S,1925-10-12,,2022-07-20 05:17:32,
+400,"Trout, Mrs. William H (Jessie L)",female,28,0,240929,12.65,,S,1931-12-27,12:04:52,2022-07-17 08:37:23,
+401,"Niskanen, Mr. Juha",male,39,0,STON/O 2. 3101289,7.925,,S,1914-05-30,12:58:55,2022-08-03 11:17:50,
+402,"Adams, Mr. John",male,26,0,341826,8.05,,S,1930-09-29,14:35:00,2022-07-26 09:46:28,
+403,"Jussila, Miss. Mari Aina",female,21,0,4137,9.825,,S,1911-02-12,12:38:36,2022-07-26 14:04:11,
+404,"Hakkarainen, Mr. Pekka Pietari",male,28,0,STON/O2. 3101279,15.85,,S,1919-05-15,14:06:12,2022-08-12 17:09:56,
+405,"Oreskovic, Miss. Marija",female,20,0,315096,8.6625,,S,1937-08-12,17:34:44,2022-08-13 21:44:58,
+406,"Gale, Mr. Shadrach",male,34,0,28664,21.0,,S,1919-07-06,14:11:21,2022-07-15 23:13:50,
+407,"Widegren, Mr. Carl/Charles Peter",male,51,0,347064,7.75,,S,1917-08-16,15:51:06,2022-07-25 05:35:57,
+408,"Richards, Master. William Rowe",male,3,1,29106,18.75,,S,1925-11-11,17:42:06,2022-07-21 15:30:37,
+409,"Birkeland, Mr. Hans Martin Monsen",male,21,0,312992,7.775,,S,1917-04-05,12:30:49,2022-07-26 15:19:15,
+410,"Lefebre, Miss. Ida",female,,1,4133,25.4667,,S,1920-05-03,12:39:02,,
+411,"Sdycoff, Mr. Todor",male,,0,349222,7.8958,,S,1906-07-09,12:12:14,2022-08-12 12:49:59,
+412,"Hart, Mr. Henry",male,,0,394140,6.8583,,Q,1903-10-01,14:16:06,2022-08-11 19:54:53,
+413,"Minahan, Miss. Daisy E",female,33,0,19928,90.0,C78,Q,1911-03-10,10:52:37,2022-07-26 17:40:48,
+414,"Cunningham, Mr. Alfred Fleming",male,,0,239853,0.0,,S,,13:37:45,2022-07-24 09:38:49,
+415,"Sundman, Mr. Johan Julian",male,44,0,STON/O 2. 3101269,7.925,,S,1929-05-31,13:54:46,2022-08-06 22:14:01,
+416,"Meek, Mrs. Thomas (Annie Louise Rowley)",female,,0,343095,8.05,,S,1933-03-24,12:24:11,2022-07-25 13:05:35,
+417,"Drew, Mrs. James Vivian (Lulu Thorne Christian)",female,34,1,28220,32.5,,S,1917-05-09,16:26:16,2022-08-02 03:44:55,
+418,"Silven, Miss. Lyyli Karoliina",female,18,2,250652,13.0,,S,1931-09-03,13:19:25,2022-07-28 07:13:03,
+419,"Matthews, Mr. William John",male,30,0,28228,13.0,,S,1922-02-28,18:21:17,2022-08-11 15:56:42,
+420,"Van Impe, Miss. Catharina",female,10,2,345773,24.15,,S,,,2022-08-06 04:36:54,
+421,"Gheorgheff, Mr. Stanio",male,,0,349254,7.8958,,C,1931-02-26,15:03:32,2022-07-23 07:12:58,
+422,"Charters, Mr. David",male,21,0,A/5. 13032,7.7333,,Q,1908-01-27,13:59:21,2022-07-30 21:37:07,
+423,"Zimmerman, Mr. Leo",male,29,0,315082,7.875,,S,1904-07-17,15:54:22,2022-08-15 08:39:55,
+424,"Danbom, Mrs. Ernst Gilbert (Anna Sigrid Maria Brogren)",female,28,1,347080,14.4,,S,1906-06-19,16:21:00,,
+425,"Rosblom, Mr. Viktor Richard",male,18,1,370129,20.2125,,S,1925-08-10,11:12:41,2022-07-20 22:37:14,
+426,"Wiseman, Mr. Phillippe",male,,0,A/4. 34244,7.25,,S,1938-01-22,,2022-07-18 00:01:50,
+427,"Clarke, Mrs. Charles V (Ada Maria Winfield)",female,28,0,2003,26.0,,S,1909-01-08,,2022-07-17 17:12:39,
+428,"Phillips, Miss. Kate Florence (""Mrs Kate Louise Phillips Marshall"")",female,19,0,250655,26.0,,S,1908-12-02,11:26:22,2022-07-27 23:48:56,
+429,"Flynn, Mr. James",male,,0,364851,7.75,,Q,1934-02-16,11:21:37,2022-08-06 07:53:22,
+430,"Pickard, Mr. Berk (Berk Trembisky)",male,32,0,SOTON/O.Q. 392078,8.05,E10,S,1907-10-16,18:19:30,2022-07-20 10:34:27,
+431,"Bjornstrom-Steffansson, Mr. Mauritz Hakan",male,28,0,110564,26.55,C52,S,1916-04-01,16:28:37,2022-07-21 20:03:36,
+432,"Thorneycroft, Mrs. Percival (Florence Kate White)",female,,0,376564,16.1,,S,1924-03-14,16:09:23,,
+433,"Louch, Mrs. Charles Alexander (Alice Adelaide Slow)",female,42,0,SC/AH 3085,26.0,,S,1931-05-17,11:04:47,2022-07-31 08:26:26,
+434,"Kallio, Mr. Nikolai Erland",male,17,0,STON/O 2. 3101274,7.125,,S,1922-11-07,11:50:46,2022-07-26 08:45:56,
+435,"Silvey, Mr. William Baird",male,50,0,13507,55.9,E44,S,1919-07-26,11:28:09,2022-08-09 02:39:30,
+436,"Carter, Miss. Lucile Polk",female,14,2,113760,120.0,B96 B98,S,1912-08-26,13:20:30,2022-07-18 23:35:35,
+437,"Ford, Miss. Doolina Margaret ""Daisy""",female,21,2,W./C. 6608,34.375,,S,1937-12-15,16:40:39,2022-08-05 23:14:44,
+438,"Richards, Mrs. Sidney (Emily Hocking)",female,24,3,29106,18.75,,S,1928-04-27,18:37:28,2022-08-12 16:50:33,
+439,"Fortune, Mr. Mark",male,64,4,19950,263.0,C23 C25 C27,S,1905-04-30,17:01:13,2022-08-14 10:39:28,
+440,"Kvillner, Mr. Johan Henrik Johannesson",male,31,0,C.A. 18723,10.5,,S,1933-12-08,13:22:49,2022-07-17 00:19:41,
+441,"Hart, Mrs. Benjamin (Esther Ada Bloomfield)",female,45,1,F.C.C. 13529,26.25,,S,1918-05-19,16:40:52,2022-07-29 14:10:15,
+442,"Hampe, Mr. Leon",male,20,0,345769,9.5,,S,1927-09-28,15:37:41,2022-07-21 12:41:38,
+443,"Petterson, Mr. Johan Emil",male,25,0,347076,7.775,,S,1933-12-02,16:35:18,2022-07-20 17:52:33,
+444,"Reynaldo, Ms. Encarnacion",female,28,0,230434,13.0,,S,1912-07-31,13:23:35,2022-07-20 04:03:48,
+445,"Johannesen-Bratthammer, Mr. Bernt",male,,0,65306,8.1125,,S,1907-04-04,18:13:40,,
+446,"Dodge, Master. Washington",male,4,2,33638,81.8583,A34,S,1919-01-31,14:14:47,2022-07-25 11:01:38,
+447,"Mellinger, Miss. Madeleine Violet",female,13,1,250644,19.5,,S,1917-06-27,,2022-08-08 23:58:00,
+448,"Seward, Mr. Frederic Kimber",male,34,0,113794,26.55,,S,1922-05-11,14:42:49,2022-07-22 20:40:50,
+449,"Baclini, Miss. Marie Catherine",female,5,1,2666,19.2583,,C,1922-09-29,11:05:57,,
+450,"Peuchen, Major. Arthur Godfrey",male,52,0,113786,30.5,C104,S,1912-10-18,11:28:50,2022-08-14 19:28:43,
+451,"West, Mr. Edwy Arthur",male,36,2,C.A. 34651,27.75,,S,1920-10-02,12:08:53,2022-08-08 03:23:37,
+452,"Hagland, Mr. Ingvald Olai Olsen",male,,0,65303,19.9667,,S,,17:17:39,2022-08-05 21:53:40,
+453,"Foreman, Mr. Benjamin Laventall",male,30,0,113051,27.75,C111,C,1922-08-11,11:11:04,,
+454,"Goldenberg, Mr. Samuel L",male,49,0,17453,89.1042,C92,C,1924-10-04,12:53:14,2022-08-12 16:29:39,
+455,"Peduzzi, Mr. Joseph",male,,0,A/5 2817,8.05,,S,1917-03-09,18:38:49,2022-08-15 06:21:00,
+456,"Jalsevac, Mr. Ivan",male,29,0,349240,7.8958,,C,,14:39:12,2022-07-29 04:09:47,
+457,"Millet, Mr. Francis Davis",male,65,0,13509,26.55,E38,S,1911-05-19,11:15:02,,
+458,"Kenyon, Mrs. Frederick R (Marion)",female,,0,17464,51.8625,D21,S,1915-04-08,18:04:51,,
+459,"Toomey, Miss. Ellen",female,50,0,F.C.C. 13531,10.5,,S,1904-06-26,15:06:35,2022-08-03 00:14:27,
+460,"O'Connor, Mr. Maurice",male,,0,371060,7.75,,Q,1911-06-01,11:50:47,,
+461,"Anderson, Mr. Harry",male,48,0,19952,26.55,E12,S,1905-09-13,,2022-07-22 11:15:14,
+462,"Morley, Mr. William",male,34,0,364506,8.05,,S,1940-03-18,12:59:27,2022-07-20 15:25:12,
+463,"Gee, Mr. Arthur H",male,47,0,111320,38.5,E63,S,1927-08-18,15:11:23,2022-08-10 21:15:28,
+464,"Milling, Mr. Jacob Christian",male,48,0,234360,13.0,,S,1925-03-09,17:23:17,2022-07-22 18:21:03,
+465,"Maisner, Mr. Simon",male,,0,A/S 2816,8.05,,S,1911-12-24,15:33:32,2022-07-20 22:10:35,
+466,"Goncalves, Mr. Manuel Estanslas",male,38,0,SOTON/O.Q. 3101306,7.05,,S,1905-08-22,16:41:37,2022-07-22 12:28:53,
+467,"Campbell, Mr. William",male,,0,239853,0.0,,S,1929-10-01,11:59:53,2022-08-01 04:54:02,
+468,"Smart, Mr. John Montgomery",male,56,0,113792,26.55,,S,1907-03-30,12:11:43,2022-07-23 20:26:05,
+469,"Scanlan, Mr. James",male,,0,36209,7.725,,Q,,18:16:49,2022-07-24 15:27:08,
+470,"Baclini, Miss. Helene Barbara",female,1,1,2666,19.2583,,C,1934-01-05,,2022-08-04 08:19:58,
+471,"Keefe, Mr. Arthur",male,,0,323592,7.25,,S,1938-04-29,15:29:42,2022-08-10 00:59:08,
+472,"Cacic, Mr. Luka",male,38,0,315089,8.6625,,S,1904-05-20,13:15:56,2022-08-03 08:54:11,
+473,"West, Mrs. Edwy Arthur (Ada Mary Worth)",female,33,2,C.A. 34651,27.75,,S,1934-01-15,16:04:20,2022-07-28 09:35:38,
+474,"Jerwan, Mrs. Amin S (Marie Marthe Thuillard)",female,23,0,SC/AH Basle 541,13.7917,D,C,1904-03-19,14:48:40,2022-07-31 15:26:29,
+475,"Strandberg, Miss. Ida Sofia",female,22,0,7553,9.8375,,S,1937-03-15,13:41:12,2022-08-04 06:10:46,
+476,"Clifford, Mr. George Quincy",male,,0,110465,52.0,A14,S,1932-09-30,12:19:15,2022-07-25 17:57:19,
+477,"Renouf, Mr. Peter Henry",male,34,0,31027,21.0,,S,1923-06-19,12:19:21,2022-08-02 15:35:55,
+478,"Braund, Mr. Lewis Richard",male,29,0,3460,7.0458,,S,1928-10-05,12:31:16,2022-07-21 12:29:31,
+479,"Karlsson, Mr. Nils August",male,22,0,350060,7.5208,,S,1904-01-02,10:53:58,2022-07-17 12:20:14,
+480,"Hirvonen, Miss. Hildur E",female,2,1,3101298,12.2875,,S,1940-05-27,17:51:14,2022-08-14 15:49:03,
+481,"Goodwin, Master. Harold Victor",male,9,2,CA 2144,46.9,,S,,16:49:14,2022-07-28 03:48:04,
+482,"Frost, Mr. Anthony Wood ""Archie""",male,,0,239854,0.0,,S,,13:33:59,,
+483,"Rouse, Mr. Richard Henry",male,50,0,A/5 3594,8.05,,S,1932-10-25,,2022-07-26 20:48:24,
+484,"Turkula, Mrs. (Hedwig)",female,63,0,4134,9.5875,,S,1937-11-23,16:40:43,2022-08-05 00:21:01,
+485,"Bishop, Mr. Dickinson H",male,25,0,11967,91.0792,B49,C,1921-05-22,17:01:56,2022-07-24 13:05:03,
+486,"Lefebre, Miss. Jeannie",female,,1,4133,25.4667,,S,1911-06-24,13:34:59,2022-07-21 06:31:35,
+487,"Hoyt, Mrs. Frederick Maxfield (Jane Anne Forby)",female,35,0,19943,90.0,C93,S,1938-07-30,11:52:04,2022-07-21 22:57:59,
+488,"Kent, Mr. Edward Austin",male,58,0,11771,29.7,B37,C,1924-07-03,15:55:36,2022-07-21 05:13:12,
+489,"Somerton, Mr. Francis William",male,30,0,A.5. 18509,8.05,,S,1910-12-02,11:53:52,2022-08-10 12:58:19,
+490,"Coutts, Master. Eden Leslie ""Neville""",male,9,1,C.A. 37671,15.9,,S,1929-08-13,17:37:43,2022-08-02 23:35:17,
+491,"Hagland, Mr. Konrad Mathias Reiersen",male,,0,65304,19.9667,,S,,16:03:13,2022-07-26 07:56:02,
+492,"Windelov, Mr. Einar",male,21,0,SOTON/OQ 3101317,7.25,,S,1929-11-18,14:35:00,2022-08-02 08:00:37,
+493,"Molson, Mr. Harry Markland",male,55,0,113787,30.5,C30,S,1934-06-23,13:26:04,2022-07-18 13:56:58,
+494,"Artagaveytia, Mr. Ramon",male,71,0,PC 17609,49.5042,,C,1912-04-04,16:13:53,2022-07-30 05:37:18,
+495,"Stanley, Mr. Edward Roland",male,21,0,A/4 45380,8.05,,S,1925-11-15,17:14:38,2022-07-16 12:01:50,
+496,"Yousseff, Mr. Gerious",male,,0,2627,14.4583,,C,,11:41:08,2022-08-14 09:18:36,
+497,"Eustis, Miss. Elizabeth Mussey",female,54,0,36947,78.2667,D20,C,1912-04-26,11:57:43,2022-08-01 00:28:34,
+498,"Shellard, Mr. Frederick William",male,,0,C.A. 6212,15.1,,S,1926-12-20,18:11:53,2022-07-30 09:20:30,
+499,"Allison, Mrs. Hudson J C (Bessie Waldo Daniels)",female,25,2,113781,151.55,C22 C26,S,1924-03-15,13:16:27,2022-07-27 06:24:38,
+500,"Svensson, Mr. Olof",male,24,0,350035,7.7958,,S,1903-12-16,,2022-07-20 02:00:17,
+501,"Calic, Mr. Petar",male,17,0,315086,8.6625,,S,1907-04-03,12:57:54,2022-08-09 03:50:49,
+502,"Canavan, Miss. Mary",female,21,0,364846,7.75,,Q,1921-01-26,12:50:21,2022-08-03 18:01:06,
+503,"O'Sullivan, Miss. Bridget Mary",female,,0,330909,7.6292,,Q,1912-01-12,14:09:55,2022-08-11 21:23:34,
+504,"Laitinen, Miss. Kristina Sofia",female,37,0,4135,9.5875,,S,1930-05-02,10:44:55,2022-08-10 10:25:52,
+505,"Maioni, Miss. Roberta",female,16,0,110152,86.5,B79,S,1910-02-19,12:40:14,2022-08-04 19:07:39,
+506,"Penasco y Castellana, Mr. Victor de Satode",male,18,0,PC 17758,108.9,C65,C,1916-10-11,11:16:02,,
+507,"Quick, Mrs. Frederick Charles (Jane Richards)",female,33,2,26360,26.0,,S,1919-11-01,14:58:38,2022-07-24 22:56:18,
+508,"Bradley, Mr. George (""George Arthur Brayton"")",male,,0,111427,26.55,,S,1913-07-26,15:13:31,2022-08-08 03:08:09,
+509,"Olsen, Mr. Henry Margido",male,28,0,C 4001,22.525,,S,1926-06-21,14:30:55,2022-08-05 07:59:23,
+510,"Lang, Mr. Fang",male,26,0,1601,56.4958,,S,1906-05-24,16:26:54,2022-07-25 08:39:24,
+511,"Daly, Mr. Eugene Patrick",male,29,0,382651,7.75,,Q,1905-09-10,11:11:28,2022-07-19 21:45:35,
+512,"Webber, Mr. James",male,,0,SOTON/OQ 3101316,8.05,,S,1919-11-26,12:42:40,2022-08-10 10:52:05,
+513,"McGough, Mr. James Robert",male,36,0,PC 17473,26.2875,E25,S,1920-05-24,15:00:10,2022-08-15 09:52:25,
+514,"Rothschild, Mrs. Martin (Elizabeth L. Barrett)",female,54,0,PC 17603,59.4,,C,1914-07-16,14:12:28,2022-07-22 21:48:04,
+515,"Coleff, Mr. Satio",male,24,0,349209,7.4958,,S,1904-11-26,11:44:44,2022-07-20 16:49:21,
+516,"Walker, Mr. William Anderson",male,47,0,36967,34.0208,D46,S,1917-10-16,13:03:50,2022-08-03 04:09:54,
+517,"Lemore, Mrs. (Amelia Milley)",female,34,0,C.A. 34260,10.5,F33,S,1937-02-16,11:55:56,2022-07-17 07:04:02,
+518,"Ryan, Mr. Patrick",male,,0,371110,24.15,,Q,1904-02-13,13:19:16,2022-07-22 20:04:04,
+519,"Angle, Mrs. William A (Florence ""Mary"" Agnes Hughes)",female,36,0,226875,26.0,,S,1926-11-01,13:27:45,2022-07-20 16:00:04,
+520,"Pavlovic, Mr. Stefo",male,32,0,349242,7.8958,,S,1932-07-21,11:15:24,2022-08-09 12:08:49,
+521,"Perreault, Miss. Anne",female,30,0,12749,93.5,B73,S,1932-01-11,13:58:44,2022-08-07 05:41:48,
+522,"Vovk, Mr. Janko",male,22,0,349252,7.8958,,S,1917-06-23,11:17:16,2022-07-24 05:26:43,
+523,"Lahoud, Mr. Sarkis",male,,0,2624,7.225,,C,1909-09-14,14:13:55,2022-08-08 05:13:12,
+524,"Hippach, Mrs. Louis Albert (Ida Sophia Fischer)",female,44,1,111361,57.9792,B18,C,1935-06-16,,2022-08-05 10:50:16,
+525,"Kassem, Mr. Fared",male,,0,2700,7.2292,,C,1904-03-05,12:03:49,2022-08-13 23:57:36,
+526,"Farrell, Mr. James",male,40,0,367232,7.75,,Q,1918-12-02,15:48:11,,
+527,"Ridsdale, Miss. Lucy",female,50,0,W./C. 14258,10.5,,S,1904-12-26,10:55:04,2022-08-03 17:12:19,
+528,"Farthing, Mr. John",male,,0,PC 17483,221.7792,C95,S,1914-02-13,15:32:06,,
+529,"Salonen, Mr. Johan Werner",male,39,0,3101296,7.925,,S,1931-06-09,17:06:57,2022-08-06 11:04:17,
+530,"Hocking, Mr. Richard George",male,23,1,29104,11.5,,S,1928-08-20,13:55:06,2022-08-11 04:30:19,
+531,"Quick, Miss. Phyllis May",female,2,1,26360,26.0,,S,1935-06-04,13:46:20,2022-08-11 04:36:49,
+532,"Toufik, Mr. Nakli",male,,0,2641,7.2292,,C,1936-05-12,,2022-08-08 12:23:08,
+533,"Elias, Mr. Joseph Jr",male,17,1,2690,7.2292,,C,1929-05-09,12:14:21,2022-08-03 09:16:37,
+534,"Peter, Mrs. Catherine (Catherine Rizk)",female,,2,2668,22.3583,,C,1918-05-18,11:50:14,2022-08-09 10:30:40,
+535,"Cacic, Miss. Marija",female,30,0,315084,8.6625,,S,1924-06-19,,2022-08-10 14:16:21,
+536,"Hart, Miss. Eva Miriam",female,7,2,F.C.C. 13529,26.25,,S,,17:30:19,2022-07-19 19:04:41,
+537,"Butt, Major. Archibald Willingham",male,45,0,113050,26.55,B38,S,1908-01-04,13:22:22,2022-07-25 09:44:58,
+538,"LeRoy, Miss. Bertha",female,30,0,PC 17761,106.425,,C,1914-05-31,18:35:36,2022-08-01 12:34:09,
+539,"Risien, Mr. Samuel Beard",male,,0,364498,14.5,,S,1914-03-31,13:37:10,2022-07-20 22:46:56,
+540,"Frolicher, Miss. Hedwig Margaritha",female,22,2,13568,49.5,B39,C,1928-04-19,,2022-07-30 07:58:16,
+541,"Crosby, Miss. Harriet R",female,36,2,WE/P 5735,71.0,B22,S,1939-07-07,11:45:18,2022-07-24 18:20:53,
+542,"Andersson, Miss. Ingeborg Constanzia",female,9,2,347082,31.275,,S,1922-01-16,16:15:58,2022-08-04 14:43:06,
+543,"Andersson, Miss. Sigrid Elisabeth",female,11,2,347082,31.275,,S,1932-10-06,10:39:45,2022-07-23 01:13:04,
+544,"Beane, Mr. Edward",male,32,0,2908,26.0,,S,1927-02-23,11:12:28,2022-08-05 04:23:17,
+545,"Douglas, Mr. Walter Donald",male,50,0,PC 17761,106.425,C86,C,,10:49:18,2022-08-12 09:18:00,
+546,"Nicholson, Mr. Arthur Ernest",male,64,0,693,26.0,,S,1904-04-11,15:13:32,2022-07-23 01:39:04,
+547,"Beane, Mrs. Edward (Ethel Clarke)",female,19,0,2908,26.0,,S,1935-12-15,17:09:17,2022-08-12 01:33:45,
+548,"Padro y Manent, Mr. Julian",male,,0,SC/PARIS 2146,13.8625,,C,1916-03-21,12:35:37,2022-08-07 18:42:40,
+549,"Goldsmith, Mr. Frank John",male,33,1,363291,20.525,,S,1904-09-19,15:29:56,2022-07-22 04:09:43,
+550,"Davies, Master. John Morgan Jr",male,8,1,C.A. 33112,36.75,,S,1936-12-04,,2022-07-22 04:11:09,
+551,"Thayer, Mr. John Borland Jr",male,17,2,17421,110.8833,C70,C,,,2022-07-17 03:21:54,
+552,"Sharp, Mr. Percival James R",male,27,0,244358,26.0,,S,1938-11-29,11:45:29,2022-07-17 14:18:38,
+553,"O'Brien, Mr. Timothy",male,,0,330979,7.8292,,Q,1927-11-20,16:33:41,2022-08-13 08:17:55,
+554,"Leeni, Mr. Fahim (""Philip Zenni"")",male,22,0,2620,7.225,,C,1919-05-16,12:02:47,2022-08-15 05:03:55,
+555,"Ohman, Miss. Velin",female,22,0,347085,7.775,,S,1930-08-15,12:03:22,2022-08-06 05:19:37,
+556,"Wright, Mr. George",male,62,0,113807,26.55,,S,1923-06-21,12:45:30,,
+557,"Duff Gordon, Lady. (Lucille Christiana Sutherland) (""Mrs Morgan"")",female,48,0,11755,39.6,A16,C,1916-02-12,16:26:42,2022-08-15 03:11:07,
+558,"Robbins, Mr. Victor",male,,0,PC 17757,227.525,,C,,16:13:17,,
+559,"Taussig, Mrs. Emil (Tillie Mandelbaum)",female,39,1,110413,79.65,E67,S,,16:20:23,2022-07-26 13:18:20,
+560,"de Messemaeker, Mrs. Guillaume Joseph (Emma)",female,36,0,345572,17.4,,S,1904-10-28,14:09:26,2022-07-21 22:08:04,
+561,"Morrow, Mr. Thomas Rowan",male,,0,372622,7.75,,Q,,15:30:29,2022-07-17 16:00:47,
+562,"Sivic, Mr. Husein",male,40,0,349251,7.8958,,S,1923-01-02,12:07:24,,
+563,"Norman, Mr. Robert Douglas",male,28,0,218629,13.5,,S,1932-04-15,14:21:45,2022-07-25 05:40:54,
+564,"Simmons, Mr. John",male,,0,SOTON/OQ 392082,8.05,,S,1936-04-06,17:47:11,2022-08-06 12:20:51,
+565,"Meanwell, Miss. (Marion Ogden)",female,,0,SOTON/O.Q. 392087,8.05,,S,,,,
+566,"Davies, Mr. Alfred J",male,24,0,A/4 48871,24.15,,S,1932-01-22,,2022-07-26 07:41:28,
+567,"Stoytcheff, Mr. Ilia",male,19,0,349205,7.8958,,S,1904-05-17,11:21:35,2022-07-21 16:24:48,
+568,"Palsson, Mrs. Nils (Alma Cornelia Berglund)",female,29,4,349909,21.075,,S,1931-08-04,13:40:34,2022-07-27 16:45:04,
+569,"Doharr, Mr. Tannous",male,,0,2686,7.2292,,C,1926-09-10,15:04:38,2022-08-05 07:45:10,
+570,"Jonsson, Mr. Carl",male,32,0,350417,7.8542,,S,1927-07-19,13:38:09,2022-08-09 10:31:32,
+571,"Harris, Mr. George",male,62,0,S.W./PP 752,10.5,,S,1938-09-03,18:15:24,2022-07-22 10:30:32,
+572,"Appleton, Mrs. Edward Dale (Charlotte Lamson)",female,53,0,11769,51.4792,C101,S,1912-09-14,11:45:10,2022-07-27 00:52:16,
+573,"Flynn, Mr. John Irwin (""Irving"")",male,36,0,PC 17474,26.3875,E25,S,1907-05-24,10:52:37,2022-08-08 20:10:56,
+574,"Kelly, Miss. Mary",female,,0,14312,7.75,,Q,1938-10-13,18:12:35,2022-07-28 10:30:52,
+575,"Rush, Mr. Alfred George John",male,16,0,A/4. 20589,8.05,,S,,15:19:25,2022-07-30 08:35:10,
+576,"Patchett, Mr. George",male,19,0,358585,14.5,,S,,14:04:33,2022-07-24 18:02:46,
+577,"Garside, Miss. Ethel",female,34,0,243880,13.0,,S,1925-04-23,13:28:38,2022-07-31 10:07:08,
+578,"Silvey, Mrs. William Baird (Alice Munger)",female,39,0,13507,55.9,E44,S,1935-01-06,,2022-07-25 17:05:11,
+579,"Caram, Mrs. Joseph (Maria Elias)",female,,0,2689,14.4583,,C,1939-11-28,12:49:14,2022-07-29 09:37:15,
+580,"Jussila, Mr. Eiriik",male,32,0,STON/O 2. 3101286,7.925,,S,1906-06-13,17:53:08,2022-08-03 01:35:17,
+581,"Christy, Miss. Julie Rachel",female,25,1,237789,30.0,,S,1927-04-16,16:34:28,2022-07-16 04:52:34,
+582,"Thayer, Mrs. John Borland (Marian Longstreth Morris)",female,39,1,17421,110.8833,C68,C,1909-02-21,,2022-07-24 04:08:23,
+583,"Downton, Mr. William James",male,54,0,28403,26.0,,S,1907-04-25,14:48:33,2022-07-28 17:58:13,
+584,"Ross, Mr. John Hugo",male,36,0,13049,40.125,A10,C,1912-06-19,11:49:01,2022-07-19 03:14:26,
+585,"Paulner, Mr. Uscher",male,,0,3411,8.7125,,C,1914-04-10,13:31:59,2022-08-06 08:22:40,
+586,"Taussig, Miss. Ruth",female,18,2,110413,79.65,E68,S,1906-05-28,12:29:57,2022-08-11 02:16:46,
+587,"Jarvis, Mr. John Denzil",male,47,0,237565,15.0,,S,1904-08-14,15:39:40,2022-07-27 12:00:52,
+588,"Frolicher-Stehli, Mr. Maxmillian",male,60,1,13567,79.2,B41,C,1918-10-18,16:36:18,2022-08-06 13:34:53,
+589,"Gilinski, Mr. Eliezer",male,22,0,14973,8.05,,S,1936-02-10,12:42:56,2022-08-13 01:35:42,
+590,"Murdlin, Mr. Joseph",male,,0,A./5. 3235,8.05,,S,1940-01-13,13:55:58,2022-07-31 20:15:14,
+591,"Rintamaki, Mr. Matti",male,35,0,STON/O 2. 3101273,7.125,,S,1936-07-26,11:37:26,,
+592,"Stephenson, Mrs. Walter Bertram (Martha Eustis)",female,52,0,36947,78.2667,D20,C,1904-11-23,16:40:12,2022-07-17 16:41:04,
+593,"Elsbury, Mr. William James",male,47,0,A/5 3902,7.25,,S,,14:58:13,2022-07-26 11:08:05,
+594,"Bourke, Miss. Mary",female,,2,364848,7.75,,Q,1927-12-17,16:13:02,2022-08-05 06:01:44,
+595,"Chapman, Mr. John Henry",male,37,0,SC/AH 29037,26.0,,S,1904-01-22,14:48:27,,
+596,"Van Impe, Mr. Jean Baptiste",male,36,1,345773,24.15,,S,1936-08-02,11:08:33,2022-07-27 16:44:17,
+597,"Leitch, Miss. Jessie Wills",female,,0,248727,33.0,,S,1909-04-10,16:33:06,2022-07-28 01:51:08,
+598,"Johnson, Mr. Alfred",male,49,0,LINE,0.0,,S,1924-08-24,14:23:30,2022-07-15 19:36:46,
+599,"Boulos, Mr. Hanna",male,,0,2664,7.225,,C,1926-10-26,17:36:08,2022-08-11 12:18:25,
+600,"Duff Gordon, Sir. Cosmo Edmund (""Mr Morgan"")",male,49,0,PC 17485,56.9292,A20,C,1930-10-31,16:23:39,2022-07-19 10:53:41,
+601,"Jacobsohn, Mrs. Sidney Samuel (Amy Frances Christy)",female,24,1,243847,27.0,,S,1909-10-28,18:14:28,2022-07-18 06:43:11,
+602,"Slabenoff, Mr. Petco",male,,0,349214,7.8958,,S,1913-02-10,14:24:41,2022-08-07 05:51:16,
+603,"Harrington, Mr. Charles H",male,,0,113796,42.4,,S,1913-08-19,,2022-08-01 01:06:07,
+604,"Torber, Mr. Ernst William",male,44,0,364511,8.05,,S,1924-07-14,17:34:20,,
+605,"Homer, Mr. Harry (""Mr E Haven"")",male,35,0,111426,26.55,,C,1924-08-03,,2022-07-15 12:36:08,
+606,"Lindell, Mr. Edvard Bengtsson",male,36,0,349910,15.55,,S,1919-02-26,15:27:08,,
+607,"Karaic, Mr. Milan",male,30,0,349246,7.8958,,S,1923-02-22,11:48:04,2022-08-14 19:46:21,
+608,"Daniel, Mr. Robert Williams",male,27,0,113804,30.5,,S,1935-04-15,14:13:15,2022-07-21 04:46:27,
+609,"Laroche, Mrs. Joseph (Juliette Marie Louise Lafargue)",female,22,2,SC/Paris 2123,41.5792,,C,1915-11-07,13:54:06,2022-08-11 08:10:36,
+610,"Shutes, Miss. Elizabeth W",female,40,0,PC 17582,153.4625,C125,S,1920-06-08,18:05:36,2022-07-17 15:45:52,
+611,"Andersson, Mrs. Anders Johan (Alfrida Konstantia Brogren)",female,39,5,347082,31.275,,S,1940-05-19,13:08:51,2022-07-21 20:22:44,
+612,"Jardin, Mr. Jose Neto",male,,0,SOTON/O.Q. 3101305,7.05,,S,1925-08-18,13:09:31,2022-07-31 22:55:47,
+613,"Murphy, Miss. Margaret Jane",female,,0,367230,15.5,,Q,1915-07-15,14:09:53,2022-07-20 03:00:47,
+614,"Horgan, Mr. John",male,,0,370377,7.75,,Q,1926-07-03,18:22:42,2022-08-08 19:20:57,
+615,"Brocklebank, Mr. William Alfred",male,35,0,364512,8.05,,S,1936-06-14,15:29:20,2022-07-24 18:37:47,
+616,"Herman, Miss. Alice",female,24,2,220845,65.0,,S,1926-03-28,14:19:14,2022-08-14 23:56:25,
+617,"Danbom, Mr. Ernst Gilbert",male,34,1,347080,14.4,,S,1905-04-03,13:12:02,2022-08-08 11:56:11,
+618,"Lobb, Mrs. William Arthur (Cordelia K Stanlick)",female,26,0,A/5. 3336,16.1,,S,1930-09-06,14:45:16,2022-07-26 00:27:15,
+619,"Becker, Miss. Marion Louise",female,4,1,230136,39.0,F4,S,1926-07-17,13:17:19,2022-08-13 11:12:10,
+620,"Gavey, Mr. Lawrence",male,26,0,31028,10.5,,S,1940-04-03,15:33:06,2022-08-01 15:28:59,
+621,"Yasbeck, Mr. Antoni",male,27,0,2659,14.4542,,C,1925-06-01,11:46:09,,
+622,"Kimball, Mr. Edwin Nelson Jr",male,42,0,11753,52.5542,D19,S,1931-08-27,,2022-07-28 21:14:33,
+623,"Nakid, Mr. Sahid",male,20,1,2653,15.7417,,C,,18:39:09,2022-07-23 09:46:40,
+624,"Hansen, Mr. Henry Damsgaard",male,21,0,350029,7.8542,,S,1931-05-01,12:35:55,2022-08-07 03:22:40,
+625,"Bowen, Mr. David John ""Dai""",male,21,0,54636,16.1,,S,1905-03-13,10:51:11,2022-07-28 08:56:40,
+626,"Sutton, Mr. Frederick",male,61,0,36963,32.3208,D50,S,1922-05-25,11:12:32,2022-07-22 11:30:42,
+627,"Kirkland, Rev. Charles Leonard",male,57,0,219533,12.35,,Q,1918-06-19,15:58:12,2022-07-24 19:46:11,
+628,"Longley, Miss. Gretchen Fiske",female,21,0,13502,77.9583,D9,S,1938-03-28,11:26:35,2022-08-05 04:10:51,
+629,"Bostandyeff, Mr. Guentcho",male,26,0,349224,7.8958,,S,1914-09-15,11:37:33,2022-07-22 10:14:01,
+630,"O'Connell, Mr. Patrick D",male,,0,334912,7.7333,,Q,1929-02-07,11:48:12,2022-07-28 17:58:25,
+631,"Barkworth, Mr. Algernon Henry Wilson",male,80,0,27042,30.0,A23,S,1934-08-11,12:37:32,2022-07-20 16:22:21,
+632,"Lundahl, Mr. Johan Svensson",male,51,0,347743,7.0542,,S,1919-06-27,14:16:59,2022-07-20 16:44:24,
+633,"Stahelin-Maeglin, Dr. Max",male,32,0,13214,30.5,B50,C,1921-01-09,11:09:53,2022-07-26 04:44:19,
+634,"Parr, Mr. William Henry Marsh",male,,0,112052,0.0,,S,1925-08-14,14:17:25,2022-08-01 06:59:37,
+635,"Skoog, Miss. Mabel",female,9,2,347088,27.9,,S,1907-05-07,18:32:37,2022-08-12 06:47:50,
+636,"Davis, Miss. Mary",female,28,0,237668,13.0,,S,1933-08-12,14:26:59,2022-07-21 23:04:28,
+637,"Leinonen, Mr. Antti Gustaf",male,32,0,STON/O 2. 3101292,7.925,,S,1904-09-26,14:04:06,2022-07-27 23:14:44,
+638,"Collyer, Mr. Harvey",male,31,1,C.A. 31921,26.25,,S,1912-01-19,12:38:01,2022-07-17 23:00:07,
+639,"Panula, Mrs. Juha (Maria Emilia Ojala)",female,41,5,3101295,39.6875,,S,,13:07:43,2022-07-25 14:27:12,
+640,"Thorneycroft, Mr. Percival",male,,0,376564,16.1,,S,1933-05-13,17:27:18,2022-08-07 13:10:25,
+641,"Jensen, Mr. Hans Peder",male,20,0,350050,7.8542,,S,1931-05-25,17:18:51,2022-08-03 11:02:38,
+642,"Sagesser, Mlle. Emma",female,24,0,PC 17477,69.3,B35,C,,18:08:39,,
+643,"Skoog, Miss. Margit Elizabeth",female,2,2,347088,27.9,,S,1940-04-07,14:26:41,2022-08-01 21:39:45,
+644,"Foo, Mr. Choong",male,,0,1601,56.4958,,S,1917-01-24,14:35:53,2022-08-10 20:44:59,
+645,"Baclini, Miss. Eugenie",female,1,1,2666,19.2583,,C,1928-03-12,12:27:00,2022-08-03 17:08:25,
+646,"Harper, Mr. Henry Sleeper",male,48,0,PC 17572,76.7292,D33,C,1936-03-02,13:52:30,2022-08-05 13:16:43,
+647,"Cor, Mr. Liudevit",male,19,0,349231,7.8958,,S,1930-03-15,17:26:22,,
+648,"Simonius-Blumer, Col. Oberst Alfons",male,56,0,13213,35.5,A26,C,1910-02-14,13:11:33,2022-08-01 10:30:20,
+649,"Willey, Mr. Edward",male,,0,S.O./P.P. 751,7.55,,S,1910-11-09,17:41:32,2022-08-09 06:40:40,
+650,"Stanley, Miss. Amy Zillah Elsie",female,23,0,CA. 2314,7.55,,S,1913-11-29,10:44:35,2022-08-13 06:16:32,
+651,"Mitkoff, Mr. Mito",male,,0,349221,7.8958,,S,1935-04-16,17:38:02,2022-07-19 02:38:40,
+652,"Doling, Miss. Elsie",female,18,1,231919,23.0,,S,1913-05-28,14:59:12,,
+653,"Kalvik, Mr. Johannes Halvorsen",male,21,0,8475,8.4333,,S,1914-01-23,17:22:38,2022-08-04 02:15:13,
+654,"O'Leary, Miss. Hanora ""Norah""",female,,0,330919,7.8292,,Q,1931-06-15,13:24:04,2022-07-25 06:22:28,
+655,"Hegarty, Miss. Hanora ""Nora""",female,18,0,365226,6.75,,Q,1905-01-26,12:52:04,2022-07-24 17:24:48,
+656,"Hickman, Mr. Leonard Mark",male,24,0,S.O.C. 14879,73.5,,S,1937-06-17,15:42:08,2022-07-22 02:00:34,
+657,"Radeff, Mr. Alexander",male,,0,349223,7.8958,,S,1911-12-12,15:43:47,2022-07-29 14:24:22,
+658,"Bourke, Mrs. John (Catherine)",female,32,1,364849,15.5,,Q,1921-12-03,14:29:45,2022-07-17 23:17:01,
+659,"Eitemiller, Mr. George Floyd",male,23,0,29751,13.0,,S,1921-05-23,13:05:18,2022-08-06 07:02:12,
+660,"Newell, Mr. Arthur Webster",male,58,2,35273,113.275,D48,C,1928-05-05,16:15:23,,
+661,"Frauenthal, Dr. Henry William",male,50,0,PC 17611,133.65,,S,1922-10-07,12:48:18,2022-08-14 18:14:25,
+662,"Badt, Mr. Mohamed",male,40,0,2623,7.225,,C,1934-03-26,17:43:07,2022-07-24 00:41:05,
+663,"Colley, Mr. Edward Pomeroy",male,47,0,5727,25.5875,E58,S,1924-12-19,13:52:12,2022-08-15 00:01:23,
+664,"Coleff, Mr. Peju",male,36,0,349210,7.4958,,S,1906-10-14,13:03:03,2022-07-17 05:11:53,
+665,"Lindqvist, Mr. Eino William",male,20,0,STON/O 2. 3101285,7.925,,S,1915-03-03,13:30:47,,
+666,"Hickman, Mr. Lewis",male,32,0,S.O.C. 14879,73.5,,S,1914-03-19,12:06:49,2022-08-09 06:44:21,
+667,"Butler, Mr. Reginald Fenton",male,25,0,234686,13.0,,S,1914-02-16,14:20:48,2022-08-05 05:54:13,
+668,"Rommetvedt, Mr. Knud Paust",male,,0,312993,7.775,,S,1911-09-22,15:24:52,2022-07-23 11:16:56,
+669,"Cook, Mr. Jacob",male,43,0,A/5 3536,8.05,,S,1938-06-26,16:20:55,2022-07-28 22:36:09,
+670,"Taylor, Mrs. Elmer Zebley (Juliet Cummins Wright)",female,,0,19996,52.0,C126,S,1907-10-07,10:54:34,2022-08-01 03:40:40,
+671,"Brown, Mrs. Thomas William Solomon (Elizabeth Catherine Ford)",female,40,1,29750,39.0,,S,,14:23:15,2022-07-21 22:09:51,
+672,"Davidson, Mr. Thornton",male,31,0,F.C. 12750,52.0,B71,S,1910-10-11,17:43:27,2022-08-09 03:25:22,
+673,"Mitchell, Mr. Henry Michael",male,70,0,C.A. 24580,10.5,,S,1923-09-22,17:15:58,2022-08-04 19:26:18,
+674,"Wilhelms, Mr. Charles",male,31,0,244270,13.0,,S,1920-10-07,17:53:47,,
+675,"Watson, Mr. Ennis Hastings",male,,0,239856,0.0,,S,,,,
+676,"Edvardsson, Mr. Gustaf Hjalmar",male,18,0,349912,7.775,,S,1920-03-01,11:51:11,2022-08-13 03:59:45,
+677,"Sawyer, Mr. Frederick Charles",male,24,0,342826,8.05,,S,1929-06-07,11:02:17,2022-07-19 12:48:43,
+678,"Turja, Miss. Anna Sofia",female,18,0,4138,9.8417,,S,1919-12-04,12:00:34,2022-07-22 22:19:18,
+679,"Goodwin, Mrs. Frederick (Augusta Tyler)",female,43,6,CA 2144,46.9,,S,1928-06-27,17:52:31,2022-07-27 08:31:55,
+680,"Cardeza, Mr. Thomas Drake Martinez",male,36,1,PC 17755,512.3292,B51 B53 B55,C,,17:17:00,2022-08-09 15:58:49,
+681,"Peters, Miss. Katie",female,,0,330935,8.1375,,Q,1931-05-26,15:03:42,,
+682,"Hassab, Mr. Hammad",male,27,0,PC 17572,76.7292,D49,C,1921-05-08,18:30:22,2022-07-15 12:21:15,
+683,"Olsvigen, Mr. Thor Anderson",male,20,0,6563,9.225,,S,1908-07-03,16:47:20,2022-08-07 21:48:25,
+684,"Goodwin, Mr. Charles Edward",male,14,2,CA 2144,46.9,,S,1935-02-09,12:56:55,,
+685,"Brown, Mr. Thomas William Solomon",male,60,1,29750,39.0,,S,1923-10-13,11:41:18,2022-07-27 04:32:16,
+686,"Laroche, Mr. Joseph Philippe Lemercier",male,25,2,SC/Paris 2123,41.5792,,C,1910-11-25,14:33:22,,
+687,"Panula, Mr. Jaako Arnold",male,14,1,3101295,39.6875,,S,1938-03-28,17:56:20,2022-07-29 22:50:08,
+688,"Dakic, Mr. Branko",male,19,0,349228,10.1708,,S,1919-05-20,15:33:28,2022-07-26 21:54:51,
+689,"Fischer, Mr. Eberhard Thelander",male,18,0,350036,7.7958,,S,,,2022-08-10 10:52:56,
+690,"Madill, Miss. Georgette Alexandra",female,15,1,24160,211.3375,B5,S,,,2022-08-14 22:52:20,
+691,"Dick, Mr. Albert Adrian",male,31,0,17474,57.0,B20,S,1925-06-06,12:23:50,,
+692,"Karun, Miss. Manca",female,4,1,349256,13.4167,,C,1937-01-29,,2022-08-02 09:07:56,
+693,"Lam, Mr. Ali",male,,0,1601,56.4958,,S,,17:35:43,2022-08-08 15:33:35,
+694,"Saad, Mr. Khalil",male,25,0,2672,7.225,,C,1932-06-03,13:27:12,,
+695,"Weir, Col. John",male,60,0,113800,26.55,,S,1909-12-07,,2022-08-14 20:54:21,
+696,"Chapman, Mr. Charles Henry",male,52,0,248731,13.5,,S,,13:35:28,2022-08-07 18:37:42,
+697,"Kelly, Mr. James",male,44,0,363592,8.05,,S,1910-09-04,12:58:35,2022-07-21 11:45:54,
+698,"Mullens, Miss. Katherine ""Katie""",female,,0,35852,7.7333,,Q,1923-03-02,12:40:32,2022-07-25 08:33:08,
+699,"Thayer, Mr. John Borland",male,49,1,17421,110.8833,C68,C,1932-01-30,13:00:47,2022-07-29 19:34:53,
+700,"Humblen, Mr. Adolf Mathias Nicolai Olsen",male,42,0,348121,7.65,F G63,S,1926-04-23,13:37:26,2022-08-01 05:46:18,
+701,"Astor, Mrs. John Jacob (Madeleine Talmadge Force)",female,18,0,PC 17757,227.525,C62 C64,C,1922-12-22,17:38:32,2022-08-10 06:37:02,
+702,"Silverthorne, Mr. Spencer Victor",male,35,0,PC 17475,26.2875,E24,S,1920-11-22,12:25:37,2022-08-07 06:30:36,
+703,"Barbara, Miss. Saiide",female,18,1,2691,14.4542,,C,1934-01-17,11:15:07,2022-08-04 22:11:45,
+704,"Gallagher, Mr. Martin",male,25,0,36864,7.7417,,Q,1906-04-27,16:30:13,2022-07-29 07:42:37,
+705,"Hansen, Mr. Henrik Juul",male,26,0,350025,7.8542,,S,,13:01:25,,
+706,"Morley, Mr. Henry Samuel (""Mr Henry Marshall"")",male,39,0,250655,26.0,,S,1929-01-21,12:19:03,2022-07-18 18:56:19,
+707,"Kelly, Mrs. Florence ""Fannie""",female,45,0,223596,13.5,,S,1929-09-23,16:37:00,2022-07-19 01:52:35,
+708,"Calderhead, Mr. Edward Pennington",male,42,0,PC 17476,26.2875,E24,S,1907-03-07,18:30:23,2022-07-18 11:43:22,
+709,"Cleaver, Miss. Alice",female,22,0,113781,151.55,,S,1908-04-06,15:32:33,2022-08-08 06:43:36,
+710,"Moubarek, Master. Halim Gonios (""William George"")",male,,1,2661,15.2458,,C,1930-06-30,11:55:07,2022-07-30 15:05:08,
+711,"Mayne, Mlle. Berthe Antonine (""Mrs de Villiers"")",female,24,0,PC 17482,49.5042,C90,C,1923-06-22,16:42:41,2022-07-27 21:40:50,
+712,"Klaber, Mr. Herman",male,,0,113028,26.55,C124,S,1923-09-05,13:43:03,2022-07-17 01:43:51,
+713,"Taylor, Mr. Elmer Zebley",male,48,0,19996,52.0,C126,S,1904-04-06,13:37:25,2022-07-30 22:28:06,
+714,"Larsson, Mr. August Viktor",male,29,0,7545,9.4833,,S,1928-05-20,12:56:20,2022-07-25 01:50:04,
+715,"Greenberg, Mr. Samuel",male,52,0,250647,13.0,,S,1926-09-27,16:47:25,2022-07-31 16:13:01,
+716,"Soholt, Mr. Peter Andreas Lauritz Andersen",male,19,0,348124,7.65,F G73,S,1931-07-29,14:35:50,2022-07-23 13:50:54,
+717,"Endres, Miss. Caroline Louise",female,38,0,PC 17757,227.525,C45,C,1920-11-11,15:33:08,2022-08-06 03:17:43,
+718,"Troutt, Miss. Edwina Celia ""Winnie""",female,27,0,34218,10.5,E101,S,1908-08-28,17:14:45,2022-07-24 22:04:40,
+719,"McEvoy, Mr. Michael",male,,0,36568,15.5,,Q,1914-02-14,15:11:38,2022-07-18 14:39:51,
+720,"Johnson, Mr. Malkolm Joackim",male,33,0,347062,7.775,,S,1937-06-17,17:00:10,2022-07-19 14:10:39,
+721,"Harper, Miss. Annie Jessie ""Nina""",female,6,1,248727,33.0,,S,1903-07-28,11:59:48,2022-07-23 10:57:00,
+722,"Jensen, Mr. Svend Lauritz",male,17,0,350048,7.0542,,S,1911-03-05,17:39:56,,
+723,"Gillespie, Mr. William Henry",male,34,0,12233,13.0,,S,1916-07-12,17:37:10,2022-07-29 22:19:23,
+724,"Hodges, Mr. Henry Price",male,50,0,250643,13.0,,S,1920-04-25,18:33:16,2022-07-21 04:38:13,
+725,"Chambers, Mr. Norman Campbell",male,27,0,113806,53.1,E8,S,1937-12-29,16:41:10,2022-07-20 16:13:40,
+726,"Oreskovic, Mr. Luka",male,20,0,315094,8.6625,,S,1934-11-11,,2022-07-24 21:25:04,
+727,"Renouf, Mrs. Peter Henry (Lillian Jefferys)",female,30,0,31027,21.0,,S,1906-03-03,16:34:31,2022-08-05 02:47:02,
+728,"Mannion, Miss. Margareth",female,,0,36866,7.7375,,Q,1927-04-02,13:19:47,2022-07-21 03:20:47,
+729,"Bryhl, Mr. Kurt Arnold Gottfrid",male,25,0,236853,26.0,,S,1939-08-03,10:43:41,2022-07-19 19:32:10,
+730,"Ilmakangas, Miss. Pieta Sofia",female,25,0,STON/O2. 3101271,7.925,,S,1906-07-25,11:06:11,2022-07-23 10:47:29,
+731,"Allen, Miss. Elisabeth Walton",female,29,0,24160,211.3375,B5,S,1940-01-31,11:50:13,2022-07-24 16:41:46,
+732,"Hassan, Mr. Houssein G N",male,11,0,2699,18.7875,,C,1917-09-07,13:18:49,2022-08-06 18:35:05,
+733,"Knight, Mr. Robert J",male,,0,239855,0.0,,S,1925-12-19,11:59:52,2022-08-08 18:07:31,
+734,"Berriman, Mr. William John",male,23,0,28425,13.0,,S,1928-01-16,17:08:59,2022-08-11 14:12:08,
+735,"Troupiansky, Mr. Moses Aaron",male,23,0,233639,13.0,,S,1923-03-27,,,
+736,"Williams, Mr. Leslie",male,28,0,54636,16.1,,S,1926-06-21,16:13:08,2022-08-04 11:57:50,
+737,"Ford, Mrs. Edward (Margaret Ann Watson)",female,48,3,W./C. 6608,34.375,,S,1931-01-14,13:53:44,2022-07-18 01:52:55,
+738,"Lesurer, Mr. Gustave J",male,35,0,PC 17755,512.3292,B101,C,1913-12-07,16:10:06,2022-07-31 22:44:31,
+739,"Ivanoff, Mr. Kanio",male,,0,349201,7.8958,,S,1923-02-18,11:11:31,2022-08-08 13:46:49,
+740,"Nankoff, Mr. Minko",male,,0,349218,7.8958,,S,1929-01-16,16:46:13,2022-08-10 20:04:01,
+741,"Hawksford, Mr. Walter James",male,,0,16988,30.0,D45,S,1913-05-06,10:53:38,2022-08-10 04:59:04,
+742,"Cavendish, Mr. Tyrell William",male,36,0,19877,78.85,C46,S,1920-07-24,15:01:49,2022-07-26 06:46:55,
+743,"Ryerson, Miss. Susan Parker ""Suzette""",female,21,2,PC 17608,262.375,B57 B59 B63 B66,C,1930-12-17,,2022-07-29 16:36:39,
+744,"McNamee, Mr. Neal",male,24,0,376566,16.1,,S,1905-06-12,11:35:32,2022-07-29 15:43:28,
+745,"Stranden, Mr. Juho",male,31,0,STON/O 2. 3101288,7.925,,S,1925-05-18,17:24:09,2022-08-12 06:23:19,
+746,"Crosby, Capt. Edward Gifford",male,70,1,WE/P 5735,71.0,B22,S,1909-10-25,12:38:07,2022-07-31 14:53:19,
+747,"Abbott, Mr. Rossmore Edward",male,16,1,C.A. 2673,20.25,,S,1904-05-05,14:05:15,2022-08-04 21:24:58,
+748,"Sinkkonen, Miss. Anna",female,30,0,250648,13.0,,S,1939-02-28,17:35:12,2022-08-08 14:45:45,
+749,"Marvin, Mr. Daniel Warner",male,19,0,113773,53.1,D30,S,1933-12-30,13:20:05,2022-07-27 09:50:33,
+750,"Connaghton, Mr. Michael",male,31,0,335097,7.75,,Q,1930-05-04,16:03:14,2022-08-07 15:19:48,
+751,"Wells, Miss. Joan",female,4,1,29103,23.0,,S,1927-05-12,15:02:41,2022-08-13 00:08:32,
+752,"Moor, Master. Meier",male,6,1,392096,12.475,E121,S,1915-04-23,13:12:16,2022-07-19 23:17:19,
+753,"Vande Velde, Mr. Johannes Joseph",male,33,0,345780,9.5,,S,1937-03-05,13:54:14,2022-07-28 21:56:14,
+754,"Jonkoff, Mr. Lalio",male,23,0,349204,7.8958,,S,1927-01-15,13:13:38,,
+755,"Herman, Mrs. Samuel (Jane Laver)",female,48,2,220845,65.0,,S,1932-01-11,14:05:47,2022-08-14 23:02:07,
+756,"Hamalainen, Master. Viljo",male,1,1,250649,14.5,,S,1926-12-24,15:55:31,2022-08-02 04:41:38,
+757,"Carlsson, Mr. August Sigfrid",male,28,0,350042,7.7958,,S,,12:25:52,,
+758,"Bailey, Mr. Percy Andrew",male,18,0,29108,11.5,,S,1931-08-19,15:46:53,2022-07-17 18:56:15,
+759,"Theobald, Mr. Thomas Leonard",male,34,0,363294,8.05,,S,,10:48:03,,
+760,"Rothes, the Countess. of (Lucy Noel Martha Dyer-Edwards)",female,33,0,110152,86.5,B77,S,1923-10-03,18:29:09,2022-08-08 13:04:07,
+761,"Garfirth, Mr. John",male,,0,358585,14.5,,S,1928-11-08,10:50:27,2022-07-29 05:05:51,
+762,"Nirva, Mr. Iisakki Antino Aijo",male,41,0,SOTON/O2 3101272,7.125,,S,1908-11-16,11:05:17,2022-08-13 22:43:40,
+763,"Barah, Mr. Hanna Assi",male,20,0,2663,7.2292,,C,1932-02-24,14:11:45,2022-07-30 21:55:00,
+764,"Carter, Mrs. William Ernest (Lucile Polk)",female,36,2,113760,120.0,B96 B98,S,1906-12-20,11:50:28,,
+765,"Eklund, Mr. Hans Linus",male,16,0,347074,7.775,,S,1923-05-06,17:28:59,2022-07-17 01:11:43,
+766,"Hogeboom, Mrs. John C (Anna Andrews)",female,51,0,13502,77.9583,D11,S,1928-07-07,13:36:55,2022-07-25 18:15:08,
+767,"Brewe, Dr. Arthur Jackson",male,,0,112379,39.6,,C,,12:08:12,2022-07-17 05:22:45,
+768,"Mangan, Miss. Mary",female,30,0,364850,7.75,,Q,1907-06-18,10:39:40,2022-07-31 00:36:56,
+769,"Moran, Mr. Daniel J",male,,0,371110,24.15,,Q,,13:06:16,2022-07-20 05:55:12,
+770,"Gronnestad, Mr. Daniel Danielsen",male,32,0,8471,8.3625,,S,1927-04-16,10:55:29,,
+771,"Lievens, Mr. Rene Aime",male,24,0,345781,9.5,,S,,18:05:33,2022-08-03 01:20:59,
+772,"Jensen, Mr. Niels Peder",male,48,0,350047,7.8542,,S,1926-02-09,11:54:52,2022-07-28 08:52:59,
+773,"Mack, Mrs. (Mary)",female,57,0,S.O./P.P. 3,10.5,E77,S,1929-12-03,18:18:08,2022-07-24 20:32:20,
+774,"Elias, Mr. Dibo",male,,0,2674,7.225,,C,,10:43:27,2022-07-24 06:05:41,
+775,"Hocking, Mrs. Elizabeth (Eliza Needs)",female,54,3,29105,23.0,,S,1924-02-13,11:10:16,2022-07-28 10:35:48,
+776,"Myhrman, Mr. Pehr Fabian Oliver Malkolm",male,18,0,347078,7.75,,S,1911-05-05,16:46:48,2022-08-04 20:42:27,
+777,"Tobin, Mr. Roger",male,,0,383121,7.75,F38,Q,1909-02-03,17:21:32,2022-08-06 22:35:41,
+778,"Emanuel, Miss. Virginia Ethel",female,5,0,364516,12.475,,S,1923-01-16,17:18:31,2022-07-19 02:32:10,
+779,"Kilgannon, Mr. Thomas J",male,,0,36865,7.7375,,Q,1918-05-04,17:28:05,2022-07-31 21:00:47,
+780,"Robert, Mrs. Edward Scott (Elisabeth Walton McMillan)",female,43,1,24160,211.3375,B3,S,1930-09-13,13:20:30,2022-07-27 14:59:00,
+781,"Ayoub, Miss. Banoura",female,13,0,2687,7.2292,,C,1924-10-12,17:04:23,2022-07-29 16:35:21,
+782,"Dick, Mrs. Albert Adrian (Vera Gillespie)",female,17,0,17474,57.0,B20,S,1933-02-20,10:44:13,2022-08-10 07:13:15,
+783,"Long, Mr. Milton Clyde",male,29,0,113501,30.0,D6,S,1916-02-08,16:50:06,,
+784,"Johnston, Mr. Andrew G",male,,2,W./C. 6607,23.45,,S,1917-02-26,15:41:26,2022-07-21 08:49:13,
+785,"Ali, Mr. William",male,25,0,SOTON/O.Q. 3101312,7.05,,S,1931-07-04,17:52:24,2022-08-01 06:04:45,
+786,"Harmer, Mr. Abraham (David Lishin)",male,25,0,374887,7.25,,S,1909-07-09,12:58:56,2022-08-05 22:39:10,
+787,"Sjoblom, Miss. Anna Sofia",female,18,0,3101265,7.4958,,S,1932-02-17,15:23:43,2022-07-30 02:10:32,
+788,"Rice, Master. George Hugh",male,8,1,382652,29.125,,Q,1905-04-23,16:05:49,2022-08-10 06:09:22,
+789,"Dean, Master. Bertram Vere",male,1,2,C.A. 2315,20.575,,S,1912-06-20,15:26:03,2022-08-14 09:18:08,
+790,"Guggenheim, Mr. Benjamin",male,46,0,PC 17593,79.2,B82 B84,C,1911-06-11,14:08:33,2022-08-14 07:32:34,
+791,"Keane, Mr. Andrew ""Andy""",male,,0,12460,7.75,,Q,1915-03-21,13:03:07,,
+792,"Gaskell, Mr. Alfred",male,16,0,239865,26.0,,S,1906-10-06,11:58:13,2022-08-12 14:47:25,
+793,"Sage, Miss. Stella Anna",female,,2,CA. 2343,69.55,,S,1912-03-17,17:15:56,2022-07-24 11:04:59,
+794,"Hoyt, Mr. William Fisher",male,,0,PC 17600,30.6958,,C,1933-11-04,15:48:43,2022-07-22 05:18:54,
+795,"Dantcheff, Mr. Ristiu",male,25,0,349203,7.8958,,S,1905-12-28,13:12:23,2022-08-08 18:48:11,
+796,"Otter, Mr. Richard",male,39,0,28213,13.0,,S,1936-07-26,14:12:57,2022-08-10 10:27:36,
+797,"Leader, Dr. Alice (Farnham)",female,49,0,17465,25.9292,D17,S,1905-08-24,14:08:20,2022-07-15 20:12:35,
+798,"Osman, Mrs. Mara",female,31,0,349244,8.6833,,S,1907-01-13,17:04:19,2022-08-14 08:07:35,
+799,"Ibrahim Shawah, Mr. Yousseff",male,30,0,2685,7.2292,,C,,14:36:39,2022-08-01 17:05:29,
+800,"Van Impe, Mrs. Jean Baptiste (Rosalie Paula Govaert)",female,30,1,345773,24.15,,S,1908-01-15,14:13:48,2022-08-02 03:59:57,
+801,"Ponesell, Mr. Martin",male,34,0,250647,13.0,,S,1930-08-09,15:14:14,2022-07-16 05:12:49,
+802,"Collyer, Mrs. Harvey (Charlotte Annie Tate)",female,31,1,C.A. 31921,26.25,,S,,,2022-07-24 07:28:00,
+803,"Carter, Master. William Thornton II",male,11,2,113760,120.0,B96 B98,S,1935-01-03,18:23:00,,
+804,"Thomas, Master. Assad Alexander",male,0,1,2625,8.5167,,C,1919-12-26,12:48:05,2022-07-30 14:45:57,
+805,"Hedman, Mr. Oskar Arvid",male,27,0,347089,6.975,,S,1937-02-20,15:14:18,2022-08-01 17:54:05,
+806,"Johansson, Mr. Karl Johan",male,31,0,347063,7.775,,S,1916-01-24,18:13:33,2022-07-19 14:37:59,
+807,"Andrews, Mr. Thomas Jr",male,39,0,112050,0.0,A36,S,1925-11-17,10:50:14,2022-07-17 18:07:59,
+808,"Pettersson, Miss. Ellen Natalia",female,18,0,347087,7.775,,S,,11:32:47,2022-08-08 23:33:25,
+809,"Meyer, Mr. August",male,39,0,248723,13.0,,S,,14:36:42,2022-07-31 14:32:43,
+810,"Chambers, Mrs. Norman Campbell (Bertha Griggs)",female,33,0,113806,53.1,E8,S,1918-05-18,18:07:40,2022-08-07 18:45:56,
+811,"Alexander, Mr. William",male,26,0,3474,7.8875,,S,1925-09-18,,2022-07-28 17:01:54,
+812,"Lester, Mr. James",male,39,0,A/4 48871,24.15,,S,1933-07-05,12:19:15,2022-07-25 11:02:13,
+813,"Slemen, Mr. Richard James",male,35,0,28206,10.5,,S,1928-04-01,,2022-08-08 12:17:34,
+814,"Andersson, Miss. Ebba Iris Alfrida",female,6,2,347082,31.275,,S,1910-03-13,18:22:48,2022-07-21 20:49:04,
+815,"Tomlin, Mr. Ernest Portage",male,30,0,364499,8.05,,S,1911-01-12,15:53:22,2022-07-24 10:05:41,
+816,"Fry, Mr. Richard",male,,0,112058,0.0,B102,S,1925-11-17,,2022-08-15 06:39:41,
+817,"Heininen, Miss. Wendla Maria",female,23,0,STON/O2. 3101290,7.925,,S,1924-09-25,17:22:14,2022-08-02 20:51:22,
+818,"Mallet, Mr. Albert",male,31,1,S.C./PARIS 2079,37.0042,,C,1924-12-17,18:10:18,2022-08-11 08:45:24,
+819,"Holm, Mr. John Fredrik Alexander",male,43,0,C 7075,6.45,,S,1910-09-20,16:53:34,2022-08-03 15:14:29,
+820,"Skoog, Master. Karl Thorsten",male,10,2,347088,27.9,,S,1922-03-01,14:23:01,,
+821,"Hays, Mrs. Charles Melville (Clara Jennings Gregg)",female,52,1,12749,93.5,B69,S,,14:40:52,2022-08-09 18:01:28,
+822,"Lulic, Mr. Nikola",male,27,0,315098,8.6625,,S,1936-05-18,17:52:23,2022-08-06 13:03:36,
+823,"Reuchlin, Jonkheer. John George",male,38,0,19972,0.0,,S,1936-10-22,10:57:18,2022-08-13 05:21:41,
+824,"Moor, Mrs. (Beila)",female,27,1,392096,12.475,E121,S,1911-02-08,17:57:42,2022-07-18 15:26:57,
+825,"Panula, Master. Urho Abraham",male,2,1,3101295,39.6875,,S,,11:31:36,2022-08-07 23:16:07,
+826,"Flynn, Mr. John",male,,0,368323,6.95,,Q,,,,
+827,"Lam, Mr. Len",male,,0,1601,56.4958,,S,1938-07-20,15:45:02,2022-07-22 17:07:09,
+828,"Mallet, Master. Andre",male,1,2,S.C./PARIS 2079,37.0042,,C,1912-01-07,16:24:31,2022-07-27 08:34:46,
+829,"McCormack, Mr. Thomas Joseph",male,,0,367228,7.75,,Q,1909-10-11,13:00:05,2022-07-25 05:26:36,
+830,"Stone, Mrs. George Nelson (Martha Evelyn)",female,62,0,113572,80.0,B28,,1930-11-11,14:43:08,2022-07-29 20:06:53,
+831,"Yasbeck, Mrs. Antoni (Selini Alexander)",female,15,0,2659,14.4542,,C,1937-10-01,18:37:54,2022-07-25 15:15:32,
+832,"Richards, Master. George Sibley",male,1,1,29106,18.75,,S,1933-09-23,17:36:30,2022-07-27 03:09:46,
+833,"Saad, Mr. Amin",male,,0,2671,7.2292,,C,1939-05-29,13:09:26,2022-07-20 01:31:17,
+834,"Augustsson, Mr. Albert",male,23,0,347468,7.8542,,S,1933-03-14,12:28:20,2022-08-11 17:11:31,
+835,"Allum, Mr. Owen George",male,18,0,2223,8.3,,S,1931-06-23,15:57:25,2022-07-25 17:46:16,
+836,"Compton, Miss. Sara Rebecca",female,39,1,PC 17756,83.1583,E49,C,1921-11-13,16:11:34,2022-08-06 14:06:42,
+837,"Pasic, Mr. Jakob",male,21,0,315097,8.6625,,S,1908-11-20,,2022-08-06 01:06:21,
+838,"Sirota, Mr. Maurice",male,,0,392092,8.05,,S,1921-04-12,10:47:49,2022-08-14 21:29:00,
+839,"Chip, Mr. Chang",male,32,0,1601,56.4958,,S,1911-06-03,11:09:09,2022-08-04 12:30:40,
+840,"Marechal, Mr. Pierre",male,,0,11774,29.7,C47,C,1916-03-14,13:27:10,2022-08-03 05:24:52,
+841,"Alhomaki, Mr. Ilmari Rudolf",male,20,0,SOTON/O2 3101287,7.925,,S,1909-02-19,10:40:20,2022-08-05 05:57:09,
+842,"Mudd, Mr. Thomas Charles",male,16,0,S.O./P.P. 3,10.5,,S,1918-06-23,17:50:25,2022-08-10 19:03:24,
+843,"Serepeca, Miss. Augusta",female,30,0,113798,31.0,,C,1906-09-16,11:15:05,2022-07-24 01:02:07,
+844,"Lemberopolous, Mr. Peter L",male,34,0,2683,6.4375,,C,1932-05-27,18:08:39,,
+845,"Culumovic, Mr. Jeso",male,17,0,315090,8.6625,,S,1925-04-22,12:03:39,,
+846,"Abbing, Mr. Anthony",male,42,0,C.A. 5547,7.55,,S,,14:02:53,2022-07-31 04:10:32,
+847,"Sage, Mr. Douglas Bullen",male,,2,CA. 2343,69.55,,S,1904-08-29,13:08:15,,
+848,"Markoff, Mr. Marin",male,35,0,349213,7.8958,,C,1939-04-14,17:47:02,2022-08-09 01:53:59,
+849,"Harper, Rev. John",male,28,1,248727,33.0,,S,1905-06-20,14:19:47,2022-08-05 04:59:39,
+850,"Goldenberg, Mrs. Samuel L (Edwiga Grabowska)",female,,0,17453,89.1042,C92,C,1919-02-15,18:10:45,2022-07-29 07:54:52,
+851,"Andersson, Master. Sigvard Harald Elias",male,4,2,347082,31.275,,S,1922-12-06,,2022-07-17 16:16:07,
+852,"Svensson, Mr. Johan",male,74,0,347060,7.775,,S,1928-06-17,13:40:30,2022-08-04 10:45:32,
+853,"Boulos, Miss. Nourelain",female,9,1,2678,15.2458,,C,1908-02-05,11:12:58,2022-08-06 16:16:17,
+854,"Lines, Miss. Mary Conover",female,16,1,PC 17592,39.4,D28,S,1916-04-20,13:05:42,2022-08-09 03:43:58,
+855,"Carter, Mrs. Ernest Courtenay (Lilian Hughes)",female,44,0,244252,26.0,,S,1938-09-02,13:39:12,2022-08-09 03:06:29,
+856,"Aks, Mrs. Sam (Leah Rosen)",female,18,1,392091,9.35,,S,1927-10-06,18:20:35,2022-08-14 23:58:10,
+857,"Wick, Mrs. George Dennick (Mary Hitchcock)",female,45,1,36928,164.8667,,S,1908-11-15,12:55:23,2022-08-08 19:08:35,
+858,"Daly, Mr. Peter Denis ",male,51,0,113055,26.55,E17,S,1926-08-15,,2022-07-15 18:30:07,
+859,"Baclini, Mrs. Solomon (Latifa Qurban)",female,24,3,2666,19.2583,,C,1924-03-15,17:34:19,2022-08-08 22:16:32,
+860,"Razi, Mr. Raihed",male,,0,2629,7.2292,,C,1927-01-04,,2022-07-22 06:07:51,
+861,"Hansen, Mr. Claus Peter",male,41,0,350026,14.1083,,S,1914-04-20,18:38:11,2022-07-27 02:23:17,
+862,"Giles, Mr. Frederick Edward",male,21,0,28134,11.5,,S,1923-09-16,16:11:31,2022-08-11 12:10:55,
+863,"Swift, Mrs. Frederick Joel (Margaret Welles Barron)",female,48,0,17466,25.9292,D17,S,1918-06-11,13:24:06,2022-08-12 01:59:41,
+864,"Sage, Miss. Dorothy Edith ""Dolly""",female,,2,CA. 2343,69.55,,S,1922-06-20,,2022-08-05 23:57:19,
+865,"Gill, Mr. John William",male,24,0,233866,13.0,,S,1903-12-31,18:04:53,2022-08-12 17:56:13,
+866,"Bystrom, Mrs. (Karolina)",female,42,0,236852,13.0,,S,1905-06-17,17:55:39,,
+867,"Duran y More, Miss. Asuncion",female,27,0,SC/PARIS 2149,13.8583,,C,1908-04-17,14:07:05,2022-07-28 08:03:10,
+868,"Roebling, Mr. Washington Augustus II",male,31,0,PC 17590,50.4958,A24,S,1924-05-15,14:04:48,2022-07-31 16:36:50,
+869,"van Melkebeke, Mr. Philemon",male,,0,345777,9.5,,S,1919-02-20,13:57:20,2022-07-19 04:52:58,
+870,"Johnson, Master. Harold Theodor",male,4,1,347742,11.1333,,S,1922-01-05,11:08:30,2022-07-15 19:00:57,
+871,"Balkic, Mr. Cerin",male,26,0,349248,7.8958,,S,1907-04-18,11:37:04,2022-08-12 07:11:23,
+872,"Beckwith, Mrs. Richard Leonard (Sallie Monypeny)",female,47,1,11751,52.5542,D35,S,1906-09-22,,2022-08-06 23:54:08,
+873,"Carlsson, Mr. Frans Olof",male,33,0,695,5.0,B51 B53 B55,S,1935-05-02,13:53:42,2022-08-03 08:57:03,
+874,"Vander Cruyssen, Mr. Victor",male,47,0,345765,9.0,,S,1923-02-25,11:06:07,2022-07-21 13:38:28,
+875,"Abelson, Mrs. Samuel (Hannah Wizosky)",female,28,0,P/PP 3381,24.0,,C,1930-08-29,15:26:37,2022-07-18 09:35:23,
+876,"Najib, Miss. Adele Kiamie ""Jane""",female,15,0,2667,7.225,,C,1924-10-01,17:31:01,2022-08-07 05:17:34,
+877,"Gustafsson, Mr. Alfred Ossian",male,20,0,7534,9.8458,,S,1908-12-07,13:58:03,2022-08-04 20:00:38,
+878,"Petroff, Mr. Nedelio",male,19,0,349212,7.8958,,S,1906-05-24,11:13:04,2022-08-13 15:51:37,
+879,"Laleff, Mr. Kristo",male,,0,349217,7.8958,,S,1922-11-19,10:43:39,2022-07-17 13:00:02,
+880,"Potter, Mrs. Thomas Jr (Lily Alexenia Wilson)",female,56,1,11767,83.1583,C50,C,1931-11-15,14:37:49,2022-07-19 19:15:57,
+881,"Shelley, Mrs. William (Imanita Parrish Hall)",female,25,1,230433,26.0,,S,1915-06-06,14:08:17,2022-08-15 06:11:18,
+882,"Markun, Mr. Johann",male,33,0,349257,7.8958,,S,1921-11-12,15:55:36,2022-07-18 04:28:15,
+883,"Dahlberg, Miss. Gerda Ulrika",female,22,0,7552,10.5167,,S,,15:36:36,2022-08-05 13:26:26,
+884,"Banfield, Mr. Frederick James",male,28,0,C.A./SOTON 34068,10.5,,S,1934-09-04,16:10:24,2022-08-06 03:44:50,
+885,"Sutehall, Mr. Henry Jr",male,25,0,SOTON/OQ 392076,7.05,,S,1938-03-07,17:36:02,2022-08-02 02:29:17,
+886,"Rice, Mrs. William (Margaret Norton)",female,39,5,382652,29.125,,Q,1923-05-27,15:55:39,,
+887,"Montvila, Rev. Juozas",male,27,0,211536,13.0,,S,1918-09-16,13:58:18,2022-08-02 17:29:12,
+888,"Graham, Miss. Margaret Edith",female,19,0,112053,30.0,B42,S,1911-04-28,11:43:34,2022-07-30 03:35:42,
+889,"Johnston, Miss. Catherine Helen ""Carrie""",female,,2,W./C. 6607,23.45,,S,1939-03-18,14:41:36,,
+890,"Behr, Mr. Karl Howell",male,26,0,111369,30.0,C148,C,1905-04-16,13:37:08,2022-07-23 08:04:22,
+891,"Dooley, Mr. Patrick",male,32,0,370376,7.75,,Q,,17:21:32,2022-08-01 11:07:59,
diff --git a/metasynth/distribution/base.py b/metasynth/distribution/base.py
index 4ede9de6..c4d21061 100644
--- a/metasynth/distribution/base.py
+++ b/metasynth/distribution/base.py
@@ -23,6 +23,7 @@ class BaseDistribution(ABC):
provenance: str = "builtin"
privacy: str = "none"
is_unique: bool = False
+ version: str = "1.0"
@classmethod
def fit(cls, series: Union[Sequence, pl.Series],
@@ -68,17 +69,20 @@ def draw(self) -> object:
def draw_reset(self) -> None:
"""Reset the drawing of elements to start again."""
- def __str__(self) -> str:
- """Return an easy to read formatted string for the distribution."""
- params_formatted = "\n".join(
+ @property
+ def _params_formatted(self) -> str:
+ return "\n".join(
f"\t- {param}: {value}" for param,
value in self._param_dict().items()
)
+
+ def __str__(self) -> str:
+ """Return an easy to read formatted string for the distribution."""
return (
f"- Type: {self.implements}\n"
f"- Provenance: {self.provenance}\n"
f"- Parameters:\n"
- f"{params_formatted}\n"
+ f"{self._params_formatted}\n"
)
@abstractmethod
@@ -89,6 +93,7 @@ def to_dict(self) -> dict:
"""Convert the distribution to a dictionary."""
return {
"implements": self.implements,
+ "version": self.version,
"provenance": self.provenance,
"class_name": self.__class__.__name__,
"parameters": deepcopy(self._param_dict()),
@@ -106,6 +111,7 @@ def schema(cls) -> dict:
"type": "object",
"properties": {
"implements": {"const": cls.implements},
+ "version": {"type": "string"},
"provenance": {"const": cls.provenance},
"class_name": {"const": cls.__name__},
"parameters": {
@@ -164,6 +170,7 @@ def metadist(
provenance: Optional[str] = None,
var_type: Optional[Union[str, list[str]]] = None,
is_unique: Optional[bool] = None,
+ version: Optional[str] = None,
privacy: Optional[str] = None):
"""Decorate class to create a distribution with the right properties.
@@ -179,6 +186,9 @@ def metadist(
Whether the distribution is unique or not.
privacy:
Privacy class/implementation of the distribution.
+ version:
+ Version of the distribution. Increment this to ensure that compatibility is
+ properly handled.
Returns
-------
@@ -196,6 +206,8 @@ def _wrap(cls):
cls.is_unique = is_unique
if privacy is not None:
cls.privacy = privacy
+ if version is not None:
+ cls.version = version
return cls
return _wrap
diff --git a/metasynth/distribution/legacy/__init__.py b/metasynth/distribution/legacy/__init__.py
new file mode 100644
index 00000000..2a8074c9
--- /dev/null
+++ b/metasynth/distribution/legacy/__init__.py
@@ -0,0 +1,7 @@
+"""Legacy distributions that will be removed in the future."""
+
+from metasynth.distribution.legacy.regex import RegexDistribution
+from metasynth.distribution.legacy.regex import UniqueRegexDistribution
+
+
+__all__ = ["RegexDistribution", "UniqueRegexDistribution"]
diff --git a/metasynth/distribution/legacy/regex/__init__.py b/metasynth/distribution/legacy/regex/__init__.py
new file mode 100644
index 00000000..2150934d
--- /dev/null
+++ b/metasynth/distribution/legacy/regex/__init__.py
@@ -0,0 +1,6 @@
+"""Package for fitting regexes to strings."""
+
+from metasynth.distribution.legacy.regex.base import (RegexDistribution,
+ UniqueRegexDistribution)
+
+__all__ = ["RegexDistribution", "UniqueRegexDistribution"]
diff --git a/metasynth/distribution/regex/base.py b/metasynth/distribution/legacy/regex/base.py
similarity index 94%
rename from metasynth/distribution/regex/base.py
rename to metasynth/distribution/legacy/regex/base.py
index 3bb6bafa..9411bb75 100644
--- a/metasynth/distribution/regex/base.py
+++ b/metasynth/distribution/legacy/regex/base.py
@@ -7,11 +7,11 @@
import numpy as np
from metasynth.distribution.base import metadist, BaseDistribution
-from metasynth.distribution.regex.element import (AlphaNumericRegex, AnyRegex,
- BaseRegexElement, DigitRegex,
- LettersRegex, LowercaseRegex,
- SingleRegex, UppercaseRegex)
-from metasynth.distribution.regex.optimizer import RegexOptimizer
+from metasynth.distribution.legacy.regex.element import (AlphaNumericRegex, AnyRegex,
+ BaseRegexElement, DigitRegex,
+ LettersRegex, LowercaseRegex,
+ SingleRegex, UppercaseRegex)
+from metasynth.distribution.legacy.regex.optimizer import RegexOptimizer
def _get_gradient_start(values: Sequence[str], new_values: Sequence[str],
diff --git a/metasynth/distribution/regex/element.py b/metasynth/distribution/legacy/regex/element.py
similarity index 99%
rename from metasynth/distribution/regex/element.py
rename to metasynth/distribution/legacy/regex/element.py
index cc97085e..d7368c58 100644
--- a/metasynth/distribution/regex/element.py
+++ b/metasynth/distribution/legacy/regex/element.py
@@ -11,7 +11,7 @@
import numpy as np
from sklearn.feature_extraction.text import CountVectorizer
-from metasynth.distribution.regex.optimizer import RegexOptimizer
+from metasynth.distribution.legacy.regex.optimizer import RegexOptimizer
class BaseRegexElement(ABC):
diff --git a/metasynth/distribution/regex/optimizer.py b/metasynth/distribution/legacy/regex/optimizer.py
similarity index 100%
rename from metasynth/distribution/regex/optimizer.py
rename to metasynth/distribution/legacy/regex/optimizer.py
diff --git a/metasynth/distribution/regex.py b/metasynth/distribution/regex.py
new file mode 100644
index 00000000..b02e6676
--- /dev/null
+++ b/metasynth/distribution/regex.py
@@ -0,0 +1,114 @@
+"""Distribution for structured strings, using regexes."""
+from __future__ import annotations
+
+from typing import Union, Optional
+
+from regexmodel import RegexModel, NotFittedError
+
+from metasynth.distribution.base import metadist, BaseDistribution, UniqueDistributionMixin
+
+
+@metadist(implements="core.regex", var_type="string", version="2.0")
+class RegexDistribution(BaseDistribution):
+ """Distribution for structured strings.
+
+ Main implementation details in the regexmodel package:
+ https://github.com/sodascience/regexmodel
+
+ This distribution tries to create a regex that fits the variable. This
+ regex also contains statistical information about the probabilities if the
+ regex has multiple options (e.g. a|b). The regex is only a subset what is provided
+ by the python re package. What is currently implemented:
+
+ - Parentheses with multiple options and no modifiers, e.g. ([a]|[b]|[c])
+ - Square brackets without negation, e.g. [abc]
+ - Ranges [A-Z], [a-z], [0-9], but not subranges (e.g. [0-3])
+ - Repetition quantifiers (curly brackets) with minimum and maximum [A-Z]{3,6}, but not [A-Z]{6}.
+
+ When fitting the RegexDistribution using the fit method, pay attention to the
+ count_thres and method parameters. By default these will be dynamic and take reasonable
+ values for the input, but in some cases it can be important to set them manually.
+ The count_thres parameter sets the minimum number of times a regex element needs to
+ be used. So, if count_thres=2, and there is only one value starting with "a", then the regex
+ will never start with "a". In effect, a higher value will provide more privacy, less
+ utility and a faster fit. The other parameter "method" has a small effect on the accuracy
+ of the regex, and a larger effect on the worst case time consumption for fitting.
+ Set to "accurate" for the best result, and "fast" for the fastest result.
+
+ Examples that this distribution should work reasonably for are: email,
+ ID's, telephone numbers, ip addresses, etc.
+
+ Parameters
+ ----------
+ regex_data:
+ Valid inputs for the regex model are:
+ - str: String with a regex (that falls within the specifications, see above).
+ - dict: Serialized version of the regex model, as it is coming from a JSON file.
+ - RegexModel: Initialized regex model.
+ """
+
+ def __init__(self, regex_data: Union[str, dict, RegexModel]):
+ self.regex_model = RegexModel(regex_data)
+
+ @classmethod
+ def _fit(cls, values, count_thres: Optional[int] = None, method: str = "auto"):
+ """Fit a regex to structured strings.
+
+ Arguments
+ ---------
+ values:
+ Values to be fitted (pl.Series).
+ count_thres:
+ Threshold for regex elements, so that a regex element can only be used if
+ the number of values satisfying said element is higher than the threshold.
+ method:
+ Method for fitting the regex model. Possible values are ["accurate", "fast", "auto"]
+ The "auto" method switches between the "accurate" and "fast" methods depending on
+ the number of characters (fast if #char > 10000) in the series.
+ """
+ if method == "auto":
+ if values.str.lengths().mean() > 10:
+ method = "fast"
+ else:
+ method = "accurate"
+
+ # Make count_thres ~= #values/100 up to 50 if in auto mode.
+ if count_thres is None:
+ count_thres = min(50, max(2, round(len(values)/50)))
+
+ # Try to fit the values, if it cannot be fit, then use the default distribution.
+ try:
+ model = RegexModel.fit(values, count_thres=count_thres, method=method)
+ except NotFittedError:
+ return cls.default_distribution()
+ return cls(model)
+
+ def draw(self):
+ return self.regex_model.draw()
+
+ def _param_dict(self):
+ return {"regex_data": self.regex_model.serialize()}
+
+ @property
+ def _params_formatted(self):
+ return f"\t- regex: {self.regex_model.regex}"
+
+ @classmethod
+ def _param_schema(cls):
+ return {
+ "regex": {
+ "type": "string"
+ },
+ "counts": {
+ "type": "array"
+ }
+ }
+
+ @classmethod
+ def default_distribution(cls):
+ return cls(r"[ABC][0-9]{3,4}")
+
+
+@metadist(implements="core.unique_regex", var_type="string", is_unique=True)
+class UniqueRegexDistribution(UniqueDistributionMixin, RegexDistribution):
+ """Unique variant of the regex distribution."""
diff --git a/metasynth/distribution/regex/__init__.py b/metasynth/distribution/regex/__init__.py
deleted file mode 100644
index 7ea8d7f2..00000000
--- a/metasynth/distribution/regex/__init__.py
+++ /dev/null
@@ -1,6 +0,0 @@
-"""Package for fitting regexes to strings."""
-
-from metasynth.distribution.regex.base import (RegexDistribution,
- UniqueRegexDistribution)
-
-__all__ = ["RegexDistribution", "UniqueRegexDistribution"]
diff --git a/metasynth/provider.py b/metasynth/provider.py
index 1293811e..66403941 100644
--- a/metasynth/provider.py
+++ b/metasynth/provider.py
@@ -36,8 +36,9 @@
from metasynth.distribution.faker import (FakerDistribution,
UniqueFakerDistribution,
FreeTextDistribution)
-from metasynth.distribution.regex.base import (RegexDistribution,
- UniqueRegexDistribution)
+from metasynth.distribution.regex import (RegexDistribution,
+ UniqueRegexDistribution)
+from metasynth.distribution import legacy
from metasynth.privacy import BasePrivacy, BasicPrivacy
@@ -50,6 +51,7 @@ class BaseDistributionProvider(ABC):
name = ""
version = ""
distributions: list[type[BaseDistribution]] = []
+ legacy_distributions: list[type[BaseDistribution]] = []
def __init__(self):
# Perform internal consistency check.
@@ -57,13 +59,16 @@ def __init__(self):
assert len(self.version) > 0
assert len(self.distributions) > 0
- def get_dist_list(self, var_type: str) -> List[Type[BaseDistribution]]:
+ def get_dist_list(self, var_type: str,
+ use_legacy: bool = False) -> List[Type[BaseDistribution]]:
"""Get all distributions for a certain variable type.
Parameters
----------
var_type:
Variable type to get the distributions for.
+ use_legacy:
+ Whether to find the distributions in the legacy distribution list.
Returns
-------
@@ -71,7 +76,11 @@ def get_dist_list(self, var_type: str) -> List[Type[BaseDistribution]]:
List of distributions with that variable type.
"""
dist_list = []
- for dist_class in self.distributions:
+ if use_legacy:
+ distributions = self.legacy_distributions
+ else:
+ distributions = self.distributions
+ for dist_class in distributions:
str_chk = (isinstance(dist_class.var_type, str) and var_type == dist_class.var_type)
lst_chk = (not isinstance(dist_class.var_type, str) and var_type in dist_class.var_type)
if str_chk or lst_chk:
@@ -94,7 +103,7 @@ class BuiltinDistributionProvider(BaseDistributionProvider):
"""Distribution tree that includes the builtin distributions."""
name = "builtin"
- version = "1.0"
+ version = "1.1"
distributions = [
DiscreteUniformDistribution, PoissonDistribution, UniqueKeyDistribution,
UniformDistribution, NormalDistribution, LogNormalDistribution,
@@ -106,6 +115,9 @@ class BuiltinDistributionProvider(BaseDistributionProvider):
UniformTimeDistribution,
UniformDateTimeDistribution,
]
+ legacy_distributions = [
+ legacy.RegexDistribution, legacy.UniqueRegexDistribution
+ ]
class DistributionProviderList():
@@ -226,8 +238,11 @@ def _find_best_fit(self, series: pl.Series, var_type: str,
f"that have unique == {unique}.")
return dist_instances[np.argmin(dist_aic)]
- def find_distribution(self, dist_name: str, privacy: BasePrivacy = BasicPrivacy(),
- ) -> type[BaseDistribution]:
+ def find_distribution(self, # pylint: disable=too-many-branches
+ dist_name: str,
+ privacy: BasePrivacy = BasicPrivacy(),
+ var_type: Optional[str] = None,
+ version: Optional[str] = None) -> type[BaseDistribution]:
"""Find a distribution and fit keyword arguments from a name.
Parameters
@@ -237,6 +252,11 @@ def find_distribution(self, dist_name: str, privacy: BasePrivacy = BasicPrivacy(
uniform distribution: "uniform", "core.uniform", "UniformDistribution".
privacy:
Type of privacy to be applied.
+ var_type:
+ Type of the variable to find. If var_type is None, then do not check the
+ variable type.
+ version:
+ Version of the distribution to get. If necessary get them from legacy.
Returns
-------
@@ -246,10 +266,43 @@ def find_distribution(self, dist_name: str, privacy: BasePrivacy = BasicPrivacy(
if NADistribution.matches_name(dist_name):
return NADistribution
- for dist_class in self._get_dist_list(privacy) + [NADistribution]:
- if dist_class.matches_name(dist_name) and dist_class.privacy == privacy.name:
- return dist_class
- raise ValueError(f"Cannot find distribution with name '{dist_name}'.")
+ versions_found = []
+ for dist_class in self._get_dist_list(privacy, var_type=var_type) + [NADistribution]:
+ if dist_class.matches_name(dist_name):
+ if version is None or version == dist_class.version:
+ return dist_class
+ versions_found.append(dist_class)
+
+ # Look for distribution in legacy
+ warnings.simplefilter("always")
+ legacy_versions: list[Type[BaseDistribution]] = []
+ for dist_class in self._get_dist_list(privacy, use_legacy=True, var_type=var_type):
+ if dist_class.matches_name(dist_name):
+ if version is None or version == dist_class.version:
+ if len(versions_found) == 0:
+ warnings.warn("Distribution with name '{dist_name}' is deprecated and "
+ "will be removed in the future.")
+ return dist_class
+ warnings.warn("Version ({version}) of distribution with name '{dist_name}'"
+ " is deprecated and will be removed in the future.")
+ if version is not None:
+ major_version = version.split(".")[0]
+ for dist_class in versions_found:
+ if dist_class.version.split(".")[0] == major_version:
+ warnings.warn("Version mismatch ({version}) versus ({dist_class.version})")
+ return dist_class
+ for dist_class in legacy_versions:
+ if dist_class.version.split(".")[0] == major_version:
+ warnings.warn("Version mismatch ({version}) versus ({dist_class.version})"
+ " for '{dist_name}")
+ warnings.warn("(Major) Version ({dist_classversion}) of distribution is"
+ " deprecated")
+ return dist_class
+ if len(legacy_versions+versions_found) == 0:
+ raise ValueError(f"Cannot find distribution with name '{dist_name}'.")
+ raise ValueError(
+ f"Cannot find compatible version for distribution '{dist_name}', available: "
+ f"{legacy_versions+versions_found}")
def _fit_distribution(self, series: pl.Series,
dist: Union[str, Type[BaseDistribution], BaseDistribution],
@@ -293,13 +346,15 @@ def _fit_distribution(self, series: pl.Series,
return dist_instance
def _get_dist_list(self, privacy: Optional[BasePrivacy] = None,
- var_type: Optional[str] = None) -> list[type[BaseDistribution]]:
+ var_type: Optional[str] = None,
+ use_legacy: bool = False) -> list[type[BaseDistribution]]:
dist_list = []
for dist_provider in self.dist_packages:
if var_type is None:
dist_list.extend(dist_provider.distributions)
else:
- dist_list.extend(dist_provider.get_dist_list(var_type))
+ dist_list.extend(dist_provider.get_dist_list(var_type,
+ use_legacy=use_legacy))
if privacy is None:
return dist_list
@@ -319,12 +374,11 @@ def from_dict(self, var_dict: dict[str, Any]) -> BaseDistribution:
BaseDistribution:
Distribution representing the dictionary.
"""
- for dist_class in self._get_dist_list(var_type=var_dict["type"]) + [NADistribution]:
- if dist_class.implements == var_dict["distribution"]["implements"]:
- return dist_class.from_dict(var_dict["distribution"])
- raise ValueError(f"Cannot find distribution with name "
- f"'{var_dict['distribution']['implements']}'"
- f"and type '{var_dict['type']}'.")
+ dist_name = var_dict["distribution"]["implements"]
+ version = var_dict["distribution"].get("version", "1.0")
+ var_type = var_dict["type"]
+ dist_class = self.find_distribution(dist_name, version=version, var_type=var_type)
+ return dist_class.from_dict(var_dict["distribution"])
def _get_all_providers() -> dict[str, EntryPoint]:
diff --git a/pyproject.toml b/pyproject.toml
index d45bffd8..8d03e51d 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -37,6 +37,7 @@ dependencies = [
"importlib-metadata;python_version<'3.10'",
"importlib-resources;python_version<'3.9'",
"wget",
+ "regexmodel>=0.2.1"
]
dynamic = ["version"]
@@ -79,6 +80,7 @@ ignore_missing_imports = true
[tool.pylint.'MASTER']
ignore-patterns="_version.py"
+ignore-paths = "^metasynth/distribution/legacy.*$"
[tool.pylint.'FORMAT']
max-line-length=100
diff --git a/tests/test_regex.py b/tests/test_regex.py
deleted file mode 100644
index 2b4caebe..00000000
--- a/tests/test_regex.py
+++ /dev/null
@@ -1,106 +0,0 @@
-import string
-from random import choice
-
-import numpy as np
-import pandas as pd
-import polars as pl
-from pytest import mark, raises
-
-from metasynth.distribution.regex import RegexDistribution, UniqueRegexDistribution
-from metasynth.distribution.regex.element import SingleRegex,\
- DigitRegex, AlphaNumericRegex, LettersRegex, LowercaseRegex, UppercaseRegex,\
- AnyRegex
-
-
-@mark.parametrize("series_type", [pd.Series, pl.Series])
-def test_regex_single_digit(series_type):
- series = series_type(["R123", "R837", "R354", "R456", "R578", "R699"])
- dist = RegexDistribution.fit(series)
- dist_unique = UniqueRegexDistribution.fit(series)
- assert dist.information_criterion(series) < dist_unique.information_criterion(series)
-
- def check_regex_dist(dist):
- assert len(dist.re_list) == 2
- assert isinstance(dist.re_list[0], SingleRegex)
- assert isinstance(dist.re_list[1], DigitRegex)
- assert dist.re_list[0].character_selection == ["R"]
- assert dist.re_list[1].min_digit == 3
- assert dist.re_list[1].max_digit == 3
- assert dist.regex_string == r"[R]\d{3,3}"
-
- for draw_str in [dist.draw() for _ in range(10)]:
- assert len(draw_str) == 4
- assert draw_str[0] == "R"
-
- check_regex_dist(dist)
-
- re_string_list = dist.to_dict()["parameters"]["re_list"]
- new_dist = RegexDistribution(re_string_list)
- check_regex_dist(new_dist)
-
-
-@mark.parametrize("series_type", [pd.Series, pl.Series])
-def test_regex_unique(series_type):
- series = series_type(["R1", "R2", "R3", "R4", "R5", "R6"])
- dist = UniqueRegexDistribution.fit(series)
- values = [dist.draw() for _ in range(10)]
- assert len(set(values)) == 10
- assert set(values) == set(["R" + x for x in string.digits])
- with raises(ValueError):
- dist.draw()
- dist.draw_reset()
- dist.draw()
-
-
-@mark.parametrize(
- "dist_class,regex_str,regex_str_alt",
- [
- (AlphaNumericRegex, r"\w{1,1}", r"\w"),
- (LettersRegex, r"[a-zA-Z]{1,1}", r"[a-zA-Z]"),
- (LowercaseRegex, r"[a-z]{1,1}", r"[a-z]"),
- (UppercaseRegex, r"[A-Z]{1,1}", r"[A-Z]"),
- (DigitRegex, r"\d{1,1}", r"\d"),
- (AnyRegex, r".[]{1,1}", r".[]"),
- ]
-)
-def test_optional_length(dist_class, regex_str, regex_str_alt):
- dist, _ = dist_class.from_string(regex_str)
- dist_alt, _ = dist_class.from_string(regex_str_alt)
- assert str(dist) == str(dist_alt)
-
-
-@mark.parametrize(
- "digit_set,dist_class,regex_str,n_digits",
- [
- (string.ascii_letters+string.digits, AlphaNumericRegex, r"\w{10,10}", 10),
- (string.ascii_letters, LettersRegex, r"[a-zA-Z]{10,10}", 10),
- (string.digits, DigitRegex, r"\d{10,10}", 10),
- (string.ascii_lowercase, LowercaseRegex, r"[a-z]{10,10}", 10),
- (string.ascii_uppercase, UppercaseRegex, r"[A-Z]{10,10}", 10),
- ]
-)
-@mark.parametrize("series_type", [pd.Series, pl.Series])
-def test_digits(digit_set, dist_class, regex_str, n_digits, series_type):
- def draw():
- draw_str = ""
- for _ in range(n_digits):
- draw_str += choice(digit_set)
- return draw_str
-
- series = series_type([draw() for _ in range(100)])
- dist = RegexDistribution.fit(series)
- assert len(dist.re_list) == 1
- assert isinstance(dist.re_list[0], dist_class)
- assert dist.re_list[0].min_digit == n_digits
- assert dist.re_list[0].max_digit == n_digits
- assert dist.to_dict()["parameters"]["re_list"][0][0] == regex_str
- assert np.all([len(dist.draw()) == n_digits for _ in range(100)])
- assert np.all([c in digit_set for c in dist.draw()])
- new_dist = dist_class.from_string(dist.regex_string, 1.0)[0]
- with raises(ValueError):
- dist_class.from_string(dist.regex_string, 3)[0]
- assert isinstance(new_dist, dist_class)
- assert new_dist.min_digit == dist.re_list[0].min_digit
- assert new_dist.max_digit == dist.re_list[0].max_digit
-
-
diff --git a/tests/test_var.py b/tests/test_var.py
index 404fd4d2..445e2126 100644
--- a/tests/test_var.py
+++ b/tests/test_var.py
@@ -4,13 +4,12 @@
import polars as pl
import numpy as np
from metasynth.var import MetaVar
-from metasynth.distribution import NormalDistribution, RegexDistribution
+from metasynth.distribution import NormalDistribution, RegexDistribution, UniqueRegexDistribution
from metasynth.distribution import DiscreteUniformDistribution
from metasynth.distribution import UniformDistribution
from pytest import mark, raises
from metasynth.dataset import _jsonify
from metasynth.distribution.discrete import UniqueKeyDistribution
-from metasynth.distribution.regex import UniqueRegexDistribution
from metasynth.distribution.continuous import TruncatedNormalDistribution
from metasynth.distribution.categorical import MultinoulliDistribution